
/*** Spinner Start ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}
/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    transition: 0.5s;
    z-index: 99;
}


  
/*phone icon*/

/*whatsapp*/
.whatsapp{
    position: fixed;
	right: 30px;
    bottom: 40px;
    transition: 0.5s;
    z-index: 99;
    margin: auto;
    height: 55px;
    width: 55px;
    text-align: center;
}

/*Social media popup*/


.social-media {
    position: fixed;
	top: 0;
	bottom: 0;
	right: 25px;
    transition: 0.5s;
    z-index: 99;
    margin: auto;
    height: 55px;
    width: 55px;
    background-color:#ee1c2d;
    text-align: center;
    border-radius: 50%;
}
.fa-user-plus{
    margin-top: 18px;
    margin-left: 4%;
    font-size: 18px;
    display: block;
    cursor: pointer;
    transition: .7s;
  }
.menu_group {
    position: fixed;
    top: 0;
    bottom: 0;
    right: 3px;
    height: 85px;
    width: 85px;
    margin: auto;
    /* Left half colored, right half transparent */
    background: linear-gradient(to right, transparent 50%, transparent 50%);
    border-radius: 50%;
    z-index: 98;
    transform: scale(0);
    transition: 0.7s;
}
.menu_group a {
    position: absolute;
    display: inline-block;
    font-size: 12px;
    color: #000000;
}



/* Positions of each menu item */
a:nth-child(1) { /*whatsapp*/
    top: 0;
    left: 31px;
}
a:nth-child(2) { /*instagram*/
    top: 14px;
    left: 13px;
}
a:nth-child(3) { /*facebook*/
    top: 33px;
    left: 4px;
}
a:nth-child(4) { /*gmail*/
    top: 65px;
    left: 29px;
}
a:nth-child(5) { /*telegram*/
    top: 52px;
    left: 10px;
}


.sicon {
    height: 13px;
    color: #ee1c2d;
}

a:hover {
    color: #2c3e50;
}

  

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 40px;
    height: 40px;
}

.btn-lg-square {
    width: 46px;
    height: 46px;
}

.btn-xl-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square,
.btn-xl-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn.btn-primary {
    color: var(--bs-white);
    background-color: #ee1c2d;
    border: none;
}

.btn.btn-primary:hover {
    background-color: #1d2635;
    color: var(--bs-white);
}

.btn.btn-light {
    color: #ee1c2d;
    border: none;
}

.btn.btn-light:hover {
    color: var(--bs-white);
    background-color: #ee1c2d;
}


/*** Navbar Start ***/

.header-top .topbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
    color: #1d2635;
}

.header-top .topbar .dropdown .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light);
    padding-top: 12px;
    border: 0;
    transition: .5s;
    opacity: 1;
}

.header-top {
    height: 135px;
    position: relative;
    display: flex; /* Use flexbox to make navbar-brand and topbar independent */
    justify-content: space-between; /* Ensures the navbar and topbar are on their sides */
    align-items: center;
    flex-wrap: wrap;
}
.navbar-brand {
    max-width: 350px;
    width: 100%;
    height: 150px;
    margin-left: 20px;
    margin-top: -3px;
}
.topbar {
    flex-grow: 1; /* Allows the topbar to take up remaining space */
    margin-left: 250px; /* Adjust spacing between navbar-brand and topbar */
}

.header-top::after {
    content: "";
    position: absolute;
    overflow: hidden;
    width: 25%;
    height: 100%;
    top: 50%;
    left: -4%;
    background: var(--bs-white);
    z-index: 1;
    transform: translateY(-50%) skew(-26deg, 0deg);
}
.navbar-brand img {
    max-width: 100%; /* Responsive width */
    height: auto;    /* Maintain aspect ratio */
}


@media(max-width:2000px){
    .navbar-brand {
        width: 300px;
        margin-top:10px;
    }
}
@media(max-width:1585px){
    .navbar-brand {
        width: 250px;
        margin-top: 15px;
    }
}
@media(max-width:1285px){
    .navbar-brand {
        width: 200px;
        margin-top: 25px;
    }
}
@media (min-width: 992px) {
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 45px;
        top: 0;
        right: 0;
        background: #1d2635 ;
        z-index: -1;
    }
    .navbar-brand img {
        max-width: 100%; /* Responsive width */
        height: auto;    /* Maintain aspect ratio */
    }

    .navbar-brand-2 {
        display: none;
    }
    .navbar-brand-2 img{
        display: none;
    }
}


@media (max-width: 992px) {
    
    .navbar-brand {
        display: none;
    }
    .header-top {
        height: 150px;
        display: flex;
        justify-content: space-between;
        align-items: start;
    }
    .header-top::after {
        display: none;}
    .header-top::before {
        content: "";
        position: absolute;
        overflow: hidden;
        width: 100%;
        height: 62px;
        top: 0;
        right: 0;
        background: #1d2635 ;
        z-index: -1;
    }
    .header-top .container{
        height: 250px;
    }
    
    .topbar {
        padding: 10px;
        height: 30px;
        width: 100%;
        margin-left: 0;
    }

    /* Remove extra padding and align the location/mail/social media icons */

    .social-media-col {
        justify-content: flex-end; /* Social media icons remain right-aligned */

    }

    /* Adjust padding for location and mail icons */
    .location-col i,
    .mail-col i {
        font-size: 15px;
        padding-left: 3px; /* Adjust padding as needed */
    }

    /* Adjust padding for social media icons */
    .social-media-col a {
        padding-right: 10px; /* Adjust padding as needed */
    }
    .topbar .d-flex {
        justify-content: center;
    }

    
      /* Reduce margin around the icons */


    .navbar {
        top: 55px;
    }

    .nav-bar{
        height: 10px;
    }
    
    .navbar.navbar-expand-lg{
        margin-top: -20px;
        left: -120px;
        width: 100%;
    }
    .navbar-brand-2 {
        position: relative;
        width: 100%;
        max-width: 230px;
        display: flex;
        align-items: center;
        z-index: 99;
    }
   
    .navbar-brand-2 img {
        max-width: 446px; 
        width: 100%;
        bottom:80px;
        z-index: 99;
        
    }

    
    .navbar.navbar-light {
        height: 100%;
        padding: 0;
    }
    .navbar .navbar-collapse {
        margin-top: 10px;
    }
    /* Adjust as the screen width reduces */



}
@media (max-width: 768px) {
    .header-top::before {
        height: 45px;
    }
    .navbar.navbar-expand-lg{
        left: -250px;
        width: 446px;
    }
    .topbar .social-media-col{
        display: none;
    }
    .location-col i,
    .mail-col i {
        font-size: 20px;
    }
  }
@media (max-width: 529px) {
    .navbar.navbar-expand-lg{
        left: -240px;
        width: 350px;
    }
    

  }
@media (max-width:380px){
    .navbar.navbar-expand-lg{
        left: -270px;
        width: 350px;
    }
}
@media (max-width:355px){
    .navbar.navbar-expand-lg{
        left: -270px;
        width: 300px;
    }
    .navbar-brand-2{
        position: relative;
        width: 100%;
        max-width: 200px;
        display: flex;
        align-items: center;
        z-index: 99;
    }
}
@media (max-width:326px){
    .navbar.navbar-expand-lg{
        left: -250px;
        width: 250px;
    }
    .navbar-brand-2{
        position: relative;
        width: 100%;
        max-width: 150px;
        display: flex;
        align-items: center;
        z-index: 99;
    }
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 3px 9px;
        background-color: #ee7171;
        border: 1px solid #ee1c2d;
        color:#1d2635 ;
    }
}




.navbar-light .navbar-brand img {
    max-height: 60px;
    transition: .5s;
}
.nav-bar{
    flex-grow: 1;
    margin-left: 250px;
}
.nav-bar .navbar {
    z-index: 9;
}

.nav-bar .navbar-light .navbar-brand img {
    max-height: 50px;
}

.navbar .navbar-nav .nav-item .nav-link {
    padding: 0;
}

.navbar .navbar-nav .nav-item {
    display: flex;
    align-items: center;
    padding: 0;
    margin-right: 20px;
}

.navbar-light .navbar-nav .nav-item:hover,
.navbar-light .navbar-nav .nav-item.active,
.navbar-light .navbar-nav .nav-item:hover .nav-link,
.navbar-light .navbar-nav .nav-item.active .nav-link {
    color: #ee1c2d;
}

@media (max-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .navbar-nav .nav-link {
        padding: 0;
    }

    .navbar .navbar-nav .nav-item {
        display: flex;
        padding: 12px;
        flex-direction: column;
        justify-content: start;
        align-items: start;
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        justify-content: start;
        flex-direction: column;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        margin-top: 20px;
        padding-bottom: 20px;
        margin-left: 50px;
        background: var(--bs-light);
    }

    .navbar .navbar-nav .nav-btn {
        display: flex;
        flex-direction: row;
    }

    .navbar .navbar-nav .nav-btn a.btn {
        margin-right: 15px;
    }

    
    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 8px 15px;
        background-color: transparent;
        border: transparent;
        color:transparent ;
    }

}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    vertical-align: middle;
    margin-left: 8px;
}

.dropdown .dropdown-menu .dropdown-item:hover {
    background: #ee1c2d;
    color: var(--bs-white);
}

@media (min-width: 992px) {
    .navbar {
        padding: 20px 0;
    }

    .navbar .nav-btn {
        display: flex;
        align-items: center;
        justify-content: end;
    }

    .navbar .navbar-nav {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--bs-light);
        border-radius: 10px;
    }

    .navbar .navbar-nav .nav-btn {
        width: 100%;
        display: flex;
        margin-left: auto;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        margin-top: 19px;
        background: var(--bs-white);
        transition: .5s;
        opacity: 1;
    }

    .header-top .navbar-brand {
        position: absolute;
    left: 0; /* Ensure it starts from the very left */
    padding-left: 0; /* Remove any padding */
    z-index: 2;
    }
}
/*** Navbar End ***/




    /*** Carousel Hero Header Start ***/
    .hero-section1{
        background-image: url(../img/header-4.1.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width:100%;
        max-width: 1800px;
        margin: 0 auto;
        height: 300px;
        display: flex;
        align-items: center;
        position: relative;
        object-fit: none;
        object-position: bottom center;
    }
.hero-section2 {
        background-image: url(../img/Mashushreenew1.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width:100%;
        max-width: 1800px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        object-fit: none;
        object-position: bottom center
    }

.hero-section3 {
        background-image: url(../img/header-1.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width:100%;
        max-width: 1800px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        position: relative;
        object-fit: none;
        object-position: bottom center
    }
.hero-section4 {
        background-image: url(../img/MAdhushreenew2.jpg);
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
        width:100%;
        max-width: 1800px;
        margin: 0 auto;
        height: 700px;
        display: flex;
        align-items: center;
        position: relative;
        object-fit: none;
        object-position: bottom center
    }
 
  
/*** Carousel Hero Header Start ***/
.header-carousel .header-carousel-item {
    height: 750px;
}


.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--bs-white);
    color: #ee1c2d;
    font-size: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev {
    bottom: 30px;
    left: 0;
}
.header-carousel .owl-nav .owl-next {
    bottom: 30px;
    right: 0;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 0 0 65px 0 #ee1c2d;
    color: var(--bs-dark);
}

.header-carousel .header-carousel-item .carousel-caption {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, .2);
    display: flex;
    align-items: center;
    z-index: 9;
}
@media (max-width:992px){
    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height:500px;
    }
}

@media (max-width: 550px) {
    .header-carousel .header-carousel-item .carousel-caption {  
        font-size: 2.5rem;
    }
    .header-carousel-item .carousel-caption h4{
        font-size: 1.5rem;
    }
    .header-carousel.owl-carousel,
    .header-carousel .header-carousel-item {
        height:300px;
    }
    .hero-section2 {
        position: absolute;
    }
        /* For the mobile carousel, each item should be displayed one at a time */
        .header-carousel1 .header-carousel1-item {
            display: block;
        }
        .header-carousel-item1 .carousel-caption h4 {
            font-size: 1.5rem; /* Reduce the size of the h4 */
        }
    
        .header-carousel-item1 .carousel-caption {
            position: relative; /* Ensures positioning works */
            padding-top: 100px; /* Add padding to move text downwards */
            padding-right: 100px;
        }
}


/*** Carousel Hero Header End ***/

/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url(../img/banner-img.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 60px 0 60px 0;
    transition: 0.5s;
}

.bg-breadcrumb .breadcrumb {
    position: relative;
}

.bg-breadcrumb .breadcrumb .breadcrumb-item a {
    color: var(--bs-white);
}
/*** Single Page Hero Header End ***/

.position-relative {
    .img-fluid {
        object-fit: cover;
    }
}

#countUp {
    font-size: 4rem; 
    font-weight: bold;
    color: #fff;
}
.year{
    background-color: #ee1c2d;
}
.redcolor{
    color: #ee1c2d;
}
/*** Banner Start ***/
.banner {
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/Banner1.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.banner .container {
    position: relative;
    z-index: 99;
}

.banner::after {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    top: -200px;
    left: 0;
    background-color:#ee1c2d;
    transform: rotate(45deg);
    z-index: 1;
}

.banner::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 500px;
    bottom: -200px;
    right: 0;
    background-color:#ee1c2d;
    transform: rotate(45deg);
    z-index: 1;
}


/*** Banner End ***/

/*** Service Start ***/
.service .nav .nav-item {
    width: 75%;
    border: 1px solid #ee1c2d;
    background: var(--bs-light);
}

.service .nav .nav-item a {
    display: flex;
    justify-content: center;
}


.owl-stage-outer {
    margin-right: -1px;
}
.service .nav-item a.active {
    background: #ee1c2d;
}

.service .nav-item a span {
    color: var(--bs-dark);
}

.service .nav-item a.active span {
    color: var(--bs-white);
}

.service-carousel .owl-nav .owl-prev,
.service-carousel .owl-nav .owl-next {
    position: absolute;
    padding: 10px 35px;
    border: 1px solid #ee1c2d;
    color: var(--bs-dark);
    background: var(--bs-light);
    transition: 0.5s;
}

.service-carousel .owl-nav .owl-prev:hover,
.service-carousel .owl-nav .owl-next:hover {
    background: #ee1c2d;
    color: var(--bs-white);
}
.service-item .border{
    height: 200px;
}
@media (min-width: 992px) {
    .service-carousel .owl-nav .owl-prev {
        top: 0;
        left: -115px;
    }
    
    .service-carousel .owl-nav .owl-next {
        bottom: 0;
        left: -115px;
    }
}

@media (max-width: 992px) {
    .owl-stage-outer {
        margin-bottom: 70px;
    }
    .service-carousel .owl-nav .owl-prev {
        bottom: -70px;
        left: 0;
    }

    .service-carousel .owl-nav .owl-next {
        bottom: -70px;
        right: 0;
    }

    .service .nav {
        display: flex;
        justify-content: center;
    }
}
/*** Service End ***/

/*** Projects Start ***/
.projects .nav-item {
    box-shadow: 0 0 30px rgba(0, 0, 0, .09);
}

.projects-item .projects-content {
    box-shadow: 0 0 30px rgba(0, 0, 0, .1);
    height: 218px;
}

.projects .nav-item a.active {
    background: #ee1c2d;
}

.projects .nav-item a span {
    color: var(--bs-dark);
}

.projects .nav-item a.active span {
    color: var(--bs-white);
}

.projects .nav-item a.active .projects-icon {
    background: var(--bs-dark) !important;
}

.projects .nav-item a.active .projects-icon span {
    color: #ee1c2d;
}
/*** Projects End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img img {
    transition: 0.5s;
}

.team .team-item:hover .team-img img {
    transform: scale(1.1);
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: 20px; right: -100%;
    z-index: 9;
    transition: 0.5s;
}

.team .team-item:hover .team-img .team-icon {
    right: 25px;
}

.team .team-item .team-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(215, 50, 50, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.team .team-item:hover .team-img::after {
    height: 100%;
}

.team .team-item .team-content {
    transition: 0.5s;
}

.team .team-item:hover .team-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}
.team-phone-link {
    display: flex;
    align-items: center; /* Align items vertically */
    position: relative;
}

@media (max-width: 767px){
    .team-phone-link {
        display: flex;
        align-items: center; /* Align items vertically */
        margin-left: 45px;
    }
}

/*** Team End ***/



/*** projectpage Start ***/
.projectpage .projectpage-item {
    align-items:center;
    justify-items: space-between;
    width: 100%;
    margin-bottom: 30px;
}
.projectpage .projectpage-item .projectpage-img {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 350px
}

.projectpage .projectpage-item .projectpage-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.projectpage .projectpage-item:hover .projectpage-img img {
    transform: scale(1.1);
}

.projectpage .projectpage-item .projectpage-img .projectpage-icon {
    position: absolute;
    bottom: 20px; right: -100%;
    z-index: 9;
    transition: 0.5s;
    width: 50px;
}

.projectpage .projectpage-item:hover .projectpage-img .projectpage-icon {
    right: 25px;
}


.projectpage .projectpage-item .projectpage-img::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: rgba(215, 50, 50, 0.2);
    transition: 0.5s;
    z-index: 1;
}

.projectpage .projectpage-item:hover .projectpage-img::after {
    height: 100%;
}

.projectpage .projectpage-item .projectpage-content {
    padding: 20px;
    transition: 0.5s;
    background-color: #f8f9fa;
    text-align: center;
    width: 100%;
}

.projectpage .projectpage-item:hover .projectpage-content {
    box-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

/*** projectpage End ***/



/*** Testimonial Start ***/

.testimonial-carousel .owl-stage-outer {
    margin-right: -1px;
}
.testimonial{
    background-color: #1d2635;
}
.testimonial .testimonial-item {
    position: relative;
    margin-top: 35px;
}

.testimonial .testimonial-item .customer-text {
    border: 1px solid #ee1c2d;
    border-top: none;
    height: 280px;

}

.testimonial .testimonial-item .testimonial-quote {
    position: absolute;
    width: 50px;
    height: 50px;
    top: 0;
    right: 25px;
    transform: translateY(-50%);
    color: var(--bs-dark);
    background: #ee1c2d;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    align-items: center;
    background: var(--bs-white);
}

.testimonial .testimonial-item .testimonial-inner img {
    width: 100px; 
    height: 100px;
    border: 2px solid var(--bs-primary);
}

.testimonial-carousel .owl-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 30px;
    height: 30px;
    margin: 30px 10px 0 10px;
    background: var(--bs-white);
    transition: 0.5s;
}

@media (max-width: 992px) {
    .testimonial-carousel .owl-dots .owl-dot {
        margin: 0 10px 0 10px;
    }
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 30px;
    height: 30px;
    background: #ee1c2d;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    margin-right: -1px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.testimonial-carousel .owl-dots .owl-dot.active span::after {
    background: var(--bs-white);
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    width: 15px;
    height: 15px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: #ee1c2d;
    transition: 0.5s;
}
/*** Testimonial End ***/

/*** FAQs Start ***/
.faq-section .accordion .accordion-item {
    margin-bottom: 20px;
    box-shadow: 0 0 30px rgba(0, 0, 0, .08);
    border: none;
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button {
    color: var(--bs-white);
    background: #ee1c2d ;
    font-size: 18px;
    
}

.faq-section .accordion .accordion-item .accordion-header .accordion-button.collapsed {
    color: var(--bs-dark);
    background: var(--bs-light);
    
}
.brochure {
    height: 180px;
    width: 100%; /* Adjust width to fit properly */
    position: relative;
    overflow: hidden;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url(../img/images10.jpg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 9;
}

.brochure .button {
    position: absolute;
    top: 30%;
    bottom: 60px; /* Adjust for spacing from bottom */
    left: 50%;
    width: 300px;
    transform: translateX(-50%);
    padding: 10px 20px;
    background-color: #ee1c2d; /* Button color */
    color: #fff; /* Text color */
    text-align: center;
    border-radius: 5px;
    text-decoration: none; /* Remove default link underline */  
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

    /*** Youtube video and faq ***/
    .video-container {
        .video-container-item {
            position: relative;
            padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
            height: 0;
            overflow: hidden;
    
            iframe {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                border: 0;
            }
        }
    
        /* Owl Carousel Modifications */
        .owl-carousel {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
    
            .owl-nav {
                display: flex;
                justify-content: space-between;
                width: 100%;
    
                .owl-prev,
                .owl-next {
                    background-color: #007bff;
                    color: #fff;
                    padding: 10px 20px;
                    border-radius: 5px;
                    transition: all 0.3s ease;
    
                    &:hover {
                        background-color: #0056b3;
                    }
                }
            }
    
            .owl-dots {
                text-align: center;
                margin-top: 15px;
    
                .owl-dot {
                    width: 10px;
                    height: 10px;
                    background-color: #007bff;
                    border-radius: 50%;
                    display: inline-block;
                    margin: 0 5px;
                    transition: background-color 0.3s ease;
    
                    &.active {
                        background-color: #0056b3;
                    }
                }
            }
        }
    }
    
    
/*** Footer Start ***/
.footer {
    background: #1d2635;  
}


.footer .footer-item a {
    line-height: 35px;
    color: var(--bs-white);
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 1px;
    color: #ee1c2d;
}

.footer .footer-item .footer-btn a {
    transition: 0.5s;
}

.footer .footer-item .footer-btn a:hover {
    background: var(--bs-white);
}

.footer .footer-item .footer-btn a:hover {
    color: var(--bs-primary);
}
.fa{
    color: #ee1c2d;
}

.fas {
    color: #ee1c2d;/* Adjust size as needed */
}
.fa-map-marked-alt{
    color: white;
}
.fa-file-pdf{
    color: white;
}



.circle { 
    display: flex;
    justify-content: center;
    align-items: center;
    width: 35px; /* Circle diameter */
    height: 35px; /* Circle diameter */
    background-color: #ee1c2d; /* Grey color */
    border-radius: 50%; /* Makes it a circle */
    margin-right: 5px; /* Space between icon and phone number */
}

.phone-link {
    display: flex;
    align-items: center; /* Align items vertically */
}

/*** Footer End ***/

/*** copyright Start ***/
.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: #1d2635 ;
}
/*** copyright end ***/





