/* color code */
body {
    font-family: "Roboto", serif;
    text-transform: capitalize;
}
html, body {
    overflow-x: hidden;
}
:root {
    /* --themecolor:#ad155e; */
    --themecolor:linear-gradient(45deg, #ad155e, #50105c);
    --singletheme:#ad155e;
    --textcolor:#50105c;
    --themebg:#f2f2f2;
    --white:#fff;
    --hovercolor:linear-gradient(45deg, #50105c, #ad155e);
    
}

.underline {
    text-decoration: underline;
}

.accordion-button:not(.collapsed)::after {
    background-image:url('../images/collapse-arrow.png');
        transform: inherit;
}
/* reset css */
ul, li, a {
    list-style: none;
    text-decoration: none;
    padding: 0;
    margin: 0;
    text-transform: capitalize;
}
h1, h2, h3, h4, h5, h6,  p {
    margin: 0;
    padding: 0;
}
p {
    color: #767676;
    text-align: justify;
}
.navbtn {
    display: none;
}
.navbtn i {
        font-size:  32px;

}

p, h1, h2, h3, h4, h5, h6, a,  bold, .section-tittle, strong {
  text-transform: lowercase; /* make whole text lowercase */
}
strong::first-letter {
    text-transform: capitalize !important;
}

p::first-letter,
h1::first-letter,
h2::first-letter,
h3::first-letter,
h4::first-letter,
h5::first-letter,
h6::first-letter,
a::first-letter,

b::first-letter,
.section-tittle:first-letter{
  text-transform: uppercase; /* सिर्फ पहला अक्षर uppercase हो */
} 
/* header css */
.topbar {
    padding: 15px 0;
    width: 100%;
    display: inline-block;
    background: var(--themecolor);
}
.topbar .location ul, .topbar .social ul {
    display: flex;
    column-gap: 25px;
}
.topbar a {
    color: var(--white);
    font-size: 18px;
}
.social a {
    background: var(--textcolor);
    padding: 7px 10px;
    border-radius: 50%;
    color: var(--white);
}
.menubar {
    background-color: var(--themebg);
}
.menu ul {
    display: inline-block;
    width: 100%;
}

.menu ul li {
    display: inline-block;
    position: relative;
    padding: 10px 0;
}

.menu ul li a {
    font-size: 18px;
    padding: 0 17px;
    font-weight: 500;
    color: #000;
    text-transform: capitalize;
    text-decoration: none; /* Remove default underline */
    position: relative;
    transition: color 0.3s ease; /* Smooth color transition */
}



.menu ul li:hover > a {
    color: #ad155e; 
}

.menu ul li ul li:hover > a {
    color: #ffff; 
}

.menu ul li:hover > a:before {
    width: 100%; /* Underline will expand */
}

.menu ul li ul {
    display: none;
    background-color: #ad155e; /* Background color of dropdown */
    position: absolute;
    top: 100%;
    left: 0;
    width: 200px; /* Width of the dropdown */
    padding: 10px 0;
    z-index: 100;
    border-radius: 5px; /* Smooth corners for dropdown */
    text-align:left;
}

.menu ul li:hover > ul {
    display: block; /* Shows dropdown when hovering over the parent list item */
}

.menu ul li ul li {
    padding: 0;
    width: 100%;
}

.menu ul li ul li a {
    font-size: 16px;
    color: white;
    transition: background-color 0.3s ease;
    width: 100%;
    display: inline-block;
    padding: 10px 13px;
}

.menu ul li ul li a:hover {
    background-color: #9c114c; /* Darker shade for hover effect */
    color: white; /* White text on hover */
}
.menubar.sticky {
    width: 100%;
    z-index: 11;
    position: fixed;
    top: 0;
    box-shadow: 0 0 15px #00000061;
}


/* banner */

/*.banner img {*/
/*    height: 650px;*/
/*    object-fit: cover;*/
/*}*/

.banner {
    position: relative;
    background-image: url(../images/banner.jpg);
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.banner h1 {
    font-size: 55px;
    font-weight: bold;
    font-family: "Playfair", serif;
}
.bannercontent {
   position: absolute;
   top: 50%;
   transform: translateY(-50%);
   z-index: 2;
   color: #fff;
   left: 100px;
   max-width: 70%;
   -webkit-transform: translateY(-50%);
   -moz-transform: translateY(-50%);
   -ms-transform: translateY(-50%);
   -o-transform: translateY(-50%);
}
.banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00000086;
}

.themebtn {
    background: var(--themecolor);
    border: transparent;
    color: #fff;
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 17px;
    font-weight: bold;
    text-transform: capitalize;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.themebtn:hover {
    background:var(--hovercolor) ;
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}

.cardCollection {
    background: var(--themecolor);
    text-align: center;
    color: var(--white);
    padding: 40px;
    border-radius: 13px;
   text-transform: capitalize;
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.4s ease-in-out;
    -moz-transition: 0.4s ease-in-out;
    -ms-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
}
.cardCollection:hover {
    background: var(--hovercolor);
    transition: 0.4s ease-in-out;
    -webkit-transition: 0.;
    -moz-transition: 0.;
    -ms-transition: 0.;
    -o-transition: 0.;
    transform: translateY(-10px);
    -webkit-transform: translateY(-10px);
    -moz-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    -o-transform: translateY(-10px);
}
.shortcart {
    transform: translateY(-64px);
    -webkit-transform: translateY(-64px);
    -moz-transform: translateY(-64px);
    -ms-transform: translateY(-64px);
    -o-transform: translateY(-64px);
}
.cardCollection i {
    font-size: 54px;
}
/* ===================about-start================= */
#about-main {
    width: 100%;
    display: inline-block;
}

.about-icon {
    width: 100px;
    float: left;
}
.about-icon img {
    width: 80px;
    height: 80px;
}
.about-text {
    width: 100%;
   display: flex;
    align-items: center;
  background: var(--white);
    padding: 10px;
    height: 100%;
    border-radius: 5px;
}
.about-right-text {
    width: calc(100% - 100px);
    float: right;
}
.asecond {
        text-align: center;
        box-shadow: inset 0 0 15px #99969636;
        background: #f3f3f38c;
        border-radius: 5px;
        padding: 20px;
        height: 355px;
    }

    .vision {
        z-index: 1;
        position: relative;
    }

    .homeservice {
        width: 850px;
        margin: 0 auto;
    }
/* ===================about-end================= */
/* ===================section-text-start================= */
.section-text {
    width: 100%;
    display: inherit;
    z-index: 1;
    position: sticky;
    width: 100%;
    max-width: 75%;
    margin: 0 auto;
 
}
.sub-taxt {
    font-size: 20px;
    color: var(--singletheme);
}
.section-tittle {
     font-family: "Playfair", serif;
    font-weight: bold;
    font-size: 35px;

}
.small-text {
    font-size: 21px;
    color: var(--black-color);
    text-transform: capitalize;
    width: 100%;
}
.big-text {
    font-size: 50px;
    color: var(--white);
}
/* ===================section-text-end================= */
/* service-start */
#service-main  {
    width: 100%;
    display: inline-block;
    vertical-align: top;
    }

    .service-content {
        width: 100%;
        background-image: var(--hovercolor);
        border: 2px solid transparent;
        border-radius: 10px;
        padding: 30px;
        position: relative;
        transition: 0.3s ease-in-out;
        z-index: 0;
        -webkit-transition: 0.3s ease-in-out;
        -moz-transition: 0.3s ease-in-out;
        -ms-transition: 0.3s ease-in-out;
        -o-transition: 0.3s ease-in-out;
    }
    
    /* Default after pseudo-element style */
    .service-content::after {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0px;
        left: 0px;
        background: #fff;
        border-radius: 10px;
        z-index: -1;
        transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
        -webkit-transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
        -moz-transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
        -ms-transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
        -o-transition: transform 0.3s ease-in-out, box-shadow 0.5s ease-in-out;
    }
    
    /* Hover effect */
    .service-content:hover::after {
        transform: translate(-10px, -10px);
        box-shadow: 0px 11px 68px 0px rgba(0, 0, 0, 0.14);
    }
    
    /* Active class style */
    .service-content.active::after {
        transform: translate(-10px, -10px);
        box-shadow: 0px 11px 68px 0px rgba(0, 0, 0, 0.14);
    }
    
    .service-icon i {
        font-size: 50px;
        color: var(--singletheme);
    }



    
/* service-end */

/* our-main-start */
#our-main {
    width: 100%;
    display: flex;
    background-image: url(../images/our.png);
   aspect-ratio: 5/1;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    justify-content: center;
    align-items: center;
}

.our {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    color: var(--white);
    height: 100%;
}
.our ul {
    display: inline-flex;
    align-items: center;
    column-gap: 150px;
}

#our-main .vision {
        padding: 10px 25px;
    box-shadow: 0 0 10px #3a3737;
    background: #45454578;
}

/* our-main-end */


/* testimonial-start */

#testimonial-main  {
    width: 100%;
    display: flex;
    background-image: url(../images/testimonial.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    position: relative;
    justify-content: center;
    align-items: center;
}
#testimonial-main::after , #footer-main::after , #our-main::after  , #breadcrumb-main::after  {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000000a3;
}
.alltestimonial.slick-initialized.slick-slider {
    z-index: 1;
}
.testimonial {
    /* z-index: 1; */
    background: var(--white);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin: 0 10px;
}
.testimonial-content img {
    width: 100px;
    border: 1px solid #767676;
    padding: 5px;
    height: 100px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
}
.testimonial-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.brand-main {
    z-index: 1;
    position: relative;
}
/* testimonial-end */



/*#footer-main {*/
/*   background-image: url(../images/footer.jpg);*/
/*   background-repeat: no-repeat;*/
/*   background-size: cover;*/
/*   position: relative;*/
/*}*/

#footer-main {
    background-image: url(../images/footer.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-attachment: fixed;
    background-position: 100% 100%;
}
.footer-top {
    z-index: 1;
    position: sticky;
}
.footer-logo img {
    width: 300px;
}
.footer ul li {
    padding-bottom: 10px;
}
.footer ul li a , .footer p {
    color: var(--white);
}
.social ul li {
    display: inline-block;
}
.footer-text {
    width: 100%;
    display: inline-block;
}
.footer-icon {
    width: 50px;
    float: left;
}
.footerdetails {
    width: calc(100%  - 50px);
    float: right;
}
 
.footer-bottom {
    text-align: center;
    z-index: 1;
    position: sticky;
    padding: 10px 0;
}

.getin {
    z-index: 1;
    position: sticky;
    text-align: center;
    max-width: 70%;
    color: #fff;
    display: inherit;
    margin: 0 auto;
}


.accordion-item:first-of-type , .accordion-item {
    border: 1px solid var(--singletheme);
}
.accordion-button:not(.collapsed) {
    background: var(--hovercolor);
    color: var(--white);
}
.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) .Outsource {
    background:#000;
    color: var(--singletheme);
}
.accordion {
    z-index: 1;
    position: relative;
}
.Outsource {
    font-size: 30px;
    margin-right: 18px;
    width: 80px;
    height: 80px;
    padding: 5px;
    background: var(--hovercolor);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: var(--white);
}

/* breadcrumb-start */
#breadcrumb-main {
    width: 100%;
    display: inline-block;
    aspect-ratio: 7 / 1;
    background-image: url(../images/about-us.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}
.breadcrumb-text {
    position: absolute;
    top: 50%;
    left: 50%;
    color: var(--white);
    z-index: 1;
    transform: translate(-50%, -50%);
    text-align: center;
}

.breadcrumb-text ul li {
    display: inline-block;
}
.breadcrumb-text ul li a {
    color: var(--white);
}

/* breadcrumb-end */

/* ===================service-start================= */
.double {
    width: 100%;
    display: inline-block;
    background: var(--hovercolor);
}

.cardCollection-img  {
   width: 100px;
    height: 100px;
    background: var(--hovercolor);
    border-radius: 50px;
}
.cardCollection-img img {
    width: 100px;
    height: 100px;
    padding: 20px;
}
/* ===================service-end================= */

.as-img img {
    aspect-ratio: 6 / 5;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}



/* ===================our-team-start================= */
.our-team {
    width: 100%;
    display: inline-block;
    box-shadow: 0 0 15px #ddd;
    border-radius: 15px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    -ms-border-radius: 15px;
    -o-border-radius: 15px;
}
.our-team-img img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: top;
    border-radius: 25px;
}
.our-text {
    text-align: center;
    padding: 40px
}
.our-text ul li {
    width: 45px;
    height: 45px;
    border-radius: 50px;
    display: inline-block;
    background-image:var(--hovercolor);

}
.our-text ul li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    font-size: 20px;
    color: var(--white);
}
/* ===================our-team-end================= */

.left-service-img img {
    width: 100%;
}
.left-service-img img {
    width: 100%;
    aspect-ratio: 8 / 4;
    object-fit: cover;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
ul.ser-det-ben li {
    padding: 5px 0;
}
.right-service {
    background: var(--singletheme);
    border-radius: 10px;
    padding: 30px;
}
.right-service ul li {
    padding-bottom: 9px;
}
.right-service ul li a {
   color: var(--white);
}
.servicead {
    position: relative;
}
.servicead img {
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.servicead-content {
    width: 100%;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--white);
}
.quiryform {
    border: 1px solid;
    border-radius: 10px;
    padding: 30px;
    color: var(--singletheme);
}
.quiryform .form-control {
    border-color: var(--singletheme);
}
.subleft-serviceimg {
    width: 30%;
    float: left;
}

.subleft-servicetext {
    /*width: calc(100% - 30%);*/
    /*float: right;*/
    padding: 20px;
}
.subleft-service {
    box-shadow: 0 0 15px #ddd;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 5px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    -o-border-radius: 5px;
    height: 100%;
}








/* blog-details start */

.blog-left-img  img{
    width: 100%;
    aspect-ratio: 7 / 4;
    object-fit: cover;
    object-position: top;
}
.blog-left-img {
    position: relative;
}
span.date {
    position: absolute;
    bottom: -22px;
    left: 39px;
    padding: 10px;
    background: var(--singletheme);
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}
span.date:after, span.date:before {
    content: '';
    position: absolute;
    left: 100%;
    top: 0;
    bottom: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 15px solid var(--singletheme);
}
span.date::after {
left: auto;
right: 100%;
border-left: none;
border-right: 15px solid var(--singletheme);

}
span.date::before {
    left: auto;
    left: 100%;
    border-left: none;
    border-left: 15px solid var(--singletheme);
}
.blog-left ul {
    display: flex;
    justify-content: space-between;
}

.blogdetails-comment {
    width: 100%;
    display: inline-block;
    overflow-y: scroll;
    height: 250px;
}
.blogdetails-comment-img {
    width: 15%;
    float: left;
}
.blogdetails-comment-img img {
    width: 90px;
    height: 90px;
    border-radius: 50px;
    object-fit: cover;
    object-position: top;
}
.blogdetails-comment-text {
    width: calc(100% - 15%);
    float: right;
}
.blogleft-comment {
    display: flex;
    justify-content: center;
    align-items: center;
}
.blog-details-category ul , .recent-contentright   {
    box-shadow: 0 0 15px #00000059;
    padding: 20px;
    border-radius: 10px;
}
.blog-details-category ul li a {
    color: var(--singletheme);
    text-decoration: none;
    display: flex;
    justify-content: space-between;
}


.blog-details-category ul li  {
    padding: 7px 0;
    border-bottom: 1px solid var(--singletheme);
}
.blog-details-category ul li:last-child {
    border-bottom: none;
}
 .blog-details-tag ul {
    padding: 20px;
    box-shadow: 0 0 15px #00000059;
    margin-top: 20px;
}

.recent-content {
    width: 100%;
    display: inline-block;
    padding-bottom: 15px;
}
.recent-img {
    width: 30%;
    float: left;
    overflow: hidden;

}
.recent-img img {
    width: 100%;
    border-radius: 5px;
    transition: 0.3s ease-in-out;


}
.recent-img img:hover {
    transition: 0.3s ease-in-out;
    transform: scale(1.3);
    -webkit-transform: scale(1.3);
    -moz-transform: scale(1.3);
    -ms-transform: scale(1.3);
    -o-transform: scale(1.3);
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
}
.recent-text {
    width: calc(100% - 30%);
    float: right;
    padding-left: 15px;

}

/* ===================contact-start================= */
#contact-main {
    width: 100%;
    display: inline-block;

}
.contact {
    width: 100%;
    max-width: 1100px;
    display: flex;
    margin: 0 auto;
    text-align: center;
}
.contact-content {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 2px solid var(--singletheme);
    background-color: var(--white);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 0 15px #dddddd54;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
}
.contact-icon {
    width: 120px;
    float: left;
}
.contact-icon i {
    width: 90px;
    height: 90px;
    background: var(--hovercolor);
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 40px;
    color: var(--white);
}
.contact-text {
    width: calc(100% - 120px);
    float: right;
    text-align: left;

}
.contact-form {
    width: 100%;
    padding: 40px;
    display: inline-block;
    box-shadow: 0 0 15px #ddd;
    border-radius: 25px;
    margin-top: 130px;
}
.contact-form input , textarea#exampleInputmessage {
    border-radius: 10px;
    padding: 10px 30px;
    width: 100%;
    text-transform: capitalize;
}
/* ===================contact-end================= */


/* ===================join-start================= */
.join {
    box-shadow: inset 0 0 15px #99969636;
    display: flex;
    justify-content: space-between;
    padding: 40px;
    border-radius: 10px;
}
/* ===================join-end================= */

.form-select {
    border: 1px solid var(--singletheme) ;
}




/* blog-start */
.blog {
    width: 100%;
    height:100%;
    display: inline-block;
    background: var(--hovercolor);
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
    color: var(--white);
    overflow: hidden;
    transition: 0.3s ease-in-out;
}
.blog-img {
    overflow: hidden;
}
.blog-img img {
    width: 100%;
    border-radius: 10px 10px 0 0;
    -webkit-border-radius: 10px 10px 0 0;
    -moz-border-radius: 10px 10px 0 0;
    -ms-border-radius: 10px 10px 0 0;
    -o-border-radius: 10px 10px 0 0;
    transition: 0.3s ease-in-out;
        aspect-ratio: 6 / 3;
    object-fit: cover;
}
.blog-img img:hover {
    transition: 0.3s ease-in-out;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition: 0.3s ease-in-out;
    -ms-transition: 0.3s ease-in-out;
    -o-transition: 0.3s ease-in-out;
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
}
.blog-text {
    padding: 20px;
}
  ul.ser-det-ben li {
         float: left;
    width: 47% !important;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--singletheme);
    margin-bottom: 10px;
    border-radius: 5px;
    padding: 10px;
    margin: 0 15px 10px 0px;
    color: var(--singletheme);
    font-weight: 600;
    font-size: 18px;
}

