/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#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;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: #65b616;
    border-color: #65b616;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: #65b616;
    border-color: #65b616;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: #0169b0;
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        /* height: 100%; */
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-11.png) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: #0169b0;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
    border-radius: 10px;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    /* border: 5px solid var(--primary); */
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}


/*** Footer ***/
.ok2{
     background-image: url(../img/bg2.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    margin-top:-50px;
       margin-bottom:-70px;
    background-color: rgb(19, 19, 19);
}
.ok3{
     background-image: url(../img/bg1.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    margin-top:-50px;
       margin-bottom:30px;
    background-color: rgb(19, 19, 19);
}

.footer{
    padding: 40px 0px 0px;
    background-color: #ffffff;
    border-top: 1px dashed #65b616;
    background-image: url(../img/bg-shape-1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    background-color: rgb(19, 19, 19);
}
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #000000;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color:#000000;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color:#000000;
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
    background-color: #65b616;
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: white;
}



/* For laptop and desktop only */
@media (min-width: 992px) {
  .navbar-brand img {
    width: 200px;
    height: 100px;
    margin-top: 3px;
  }


  .ok{
        margin-top: -25px;
    margin-bottom: -20px;
  }
}

/* For smaller devices (tablet & mobile), you can adjust separately */
@media (max-width: 991px) {
  .navbar-brand img {
    width: 120px;
    height: 60px;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .header-carousel .owl-dots {
    display: none !important;
  }
}




    /* Container to limit width */
    .container1 {
      max-width: 1100px;
      margin: 0 auto;
      padding: 10px;
    }

    .categories {
      display: grid;
      grid-template-columns: 1fr;
      gap: 20px;
    }

    /* Tablet */
    @media (min-width: 600px) {
      .categories {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Desktop */
    @media (min-width: 900px) {
      .categories {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .card {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s ease;
    }

    .card:hover {
      transform: translateY(-5px);
    }

    .card img {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .card-body {
      padding: 20px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      text-align: center;
    }

    .card-body h3 {
      margin: 10px 0;
      color: #000000;
      font-size: 25px;
    }

    .card-body p {
      font-size: 14px;
      color: #000000;
      margin: 10px 0 20px;
      flex-grow: 1;
    }

    .btn1 {
      display: inline-block;
      padding: 10px 20px;
      background: #0073e6;
      color: #fff;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.3s ease;
    }

    .btn1:hover {
      background: #005bb5;
      color:white;
    }


    .ok1{
        background-image: url(../img/bg-shape-7.jpg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    }

        .service-box {
      background: #036ab5;/* Blue background */
      color: #fff;
      padding: 25px;
      border-radius: 10px;
      text-align: center;
      margin-bottom: 20px;
      min-height: 250px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }
    .service-box i {
      font-size: 40px;
      margin-bottom: 15px;
    }
    .service-box h5 {
      font-weight: bold;
      margin-bottom: 10px;
      color:white;
      font-size:25px;
      margin-top:15px;
    }


    .service-box p{
        color:white;
        text-align: center;
    }


        .cta-section {
      position: relative;
      background: url('your-background.jpg') center center/cover no-repeat;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      text-align: center;
      color: #fff;
    }
    .cta-overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
       background: rgb(3 106 180);
         background-image: url(../img/booknow.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    opacity: 1px;
    background-color: rgb(19, 19, 19);
    }
    .cta-content {
      position: relative;
      z-index: 2;
      max-width: 700px;
      padding: 20px;
    }
    .cta-content h2 {
      font-weight: 700;
      letter-spacing: 2px;
      color:white;
    }
        .cta-content p{
      /* font-weight: 700; */
text-align: center;   
color:white; }







.testimonials-wrap {
			padding: 40px 0;
      background-color: #3e8cda;

          padding: 20px 0px 20px;
    background-color: #ffffff;
    /* border-top: 1px dashed #3f91de; */
   background-image: url(../img/testimonial.png);
        background-size: cover; 
        background-position: center; 
        background-repeat: no-repeat; 
        background-attachment:fixed; 
        width: 100%;
  
        opacity: 1px;;
        /* background-color: rgb(19, 19, 19); */
		}
		.heading-section {
			text-align: center;
		}
		.sub-heading {
			font-family: 'Lato', sans-serif;
		    font-size: 12px;
		    display: block;
		    font-weight: 600;
		    color: #3e8cda;
		    text-transform: uppercase;
		    letter-spacing: 2px;
		}
		.heading-section h2 {
			font-size: 28px;
		    font-weight: 600;
		    padding-top: 10px;
		    padding-bottom: 15px;
		}
		.testimonial-box {
		    display: block;
		    position: relative;
		    padding: 30px 20px;
		    background: #fff;
		    border: 1px solid rgba(0,0,0,.03);
		    border-radius: 5px;
		    box-shadow: 0 0 20px rgba(0, 0, 0, .08);
		}
		.user-img {
		    width: 80px;
		    height: 80px;
		    border-radius: 50%;
		    position: relative;
			min-width: 80px;
			background-size: 100%;
		}

		.carousel-testimonial .item {
			padding: 30px 10px;
		}
		.quotee {
			position: absolute;
		    top: -23px;
		    color: black;
		    font-size: 27px;
		}
		.name {
			margin-bottom: 0;
		    line-height: 14px;
		    font-size: 17px;
		    font-weight: 500;
		}
		.position {
			color: #adadad;
			font-size: 14px;
		}
		.carousel-testimonial .owl-nav {
			text-align: center;
		}
		.carousel-testimonial .owl-nav button.owl-next, 
		.carousel-testimonial .owl-nav button.owl-prev {
		    padding: 0 12px !important;
		}
		.carousel-testimonial .owl-nav button {
			outline: none;
			padding: 0;
		}
		.carousel-testimonial .owl-nav button.owl-next span, 
		.carousel-testimonial .owl-nav button.owl-prev span {
			display: block;
		    font-size: 40px;
		    width: 25px;
		    height: 25px;
		    vertical-align: 0px;
		    line-height: 16px;
		}
		.carousel-testimonial .owl-nav button.owl-next.disabled, 
		.carousel-testimonial .owl-nav button.owl-prev.disabled {
			opacity: 0.5;
		}
    .custom-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top:10px;
}

.custom-prev,
.custom-next {
    background-color: white;
    color: #3e8cda;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.custom-prev:hover,
.custom-next:hover {
   background-color: white;
    color:  #3e8cda;
}
@media (max-width: 767px) {
  .testimonial-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .testimonial-box .user-img {
    margin: 0 auto 15px;
  }

  .testimonial-box .text {
    padding-left: 0 !important;
  }

  .quotee {
    position: static;
    font-size: 24px;
    margin-bottom: 10px;
  }

  .carousel-testimonial .item {
    padding: 10px 5px;
  }

  .heading-section h2 {
    font-size: 20px;
  }

  .custom-prev,
  .custom-next {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .testimonial-box {
    padding: 20px 10px;
  }

  .name {
    font-size: 14px;
  }

  .quotee {
    font-size: 20px;
  }
}@media (max-width: 767px) {
  .carousel-testimonial .item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .testimonial-box {
    width: 100% !important;
    max-width: 90%;
    margin: 0 auto;
    display: block;
  }

  .testimonial-box:not(:first-child) {
    display: none !important;
  }
}

.owl-prev, .owl-next {
    font-size: 0 !important;  /* Hides the "prev" and "next" text */
}

.owl-nav button {
    font-size: 0 !important;  /* In case buttons show default text */
}

  .choose-section {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      padding: 50px 20px;
      /* background: #fff; */
      max-width: 1200px;
      margin: auto;
      /* box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
      border-radius: 10px;
    }
    .choose-content {
      flex: 1 1 400px;
          padding: 5px;
      
    }
    .choose-content h2 {
      color: #1f2b6c;
      font-size: 28px;
      margin-bottom: 10px;
      text-align: left;
    }
    .choose-content p {
      color: #000000;
      font-size: 14px;
      line-height: 1.6;
     margin-top: 10px;
    margin-bottom: 13px;
    }
    .feature-list {
      display: flex;
      flex-wrap: wrap;
      gap: 15px;
    }
    .feature-item {
      flex: 1 1 45%;
      background: #f0f8ff;
      padding: 10px 15px;
      border-radius: 8px;
          font-size: 15px;
      display: flex;
      align-items: center;
      box-shadow: 0 1px 5px rgba(0,0,0,0.1);
    }
    .feature-item i {
      color: #006ab4;
      margin-right: 8px;
    }
    .choose-button {
      margin-top: 20px;
    }
    .choose-button a {
      background: #006ab4;
      color: #fff;
          padding: 12px 30px;
    font-size: 15px;
      border-radius: 5px;
      text-decoration: none;
      display: inline-block;
      transition: background 0.3s ease;
    }
    .choose-button a:hover {
      background: #0056b3;
    }
    .choose-image {
        flex: 0 0 40%;
    position: sticky;   /* Keeps the image visible even when accordion scrolls */
    top: 0;            /* Stick from the top */
    align-self: flex-start;
    }
    .choose-image img {
      max-width: 100%;
      border-radius: 10px;
    }
    
    @media only screen and (max-width: 768px) {
    .choose-image {
        flex: 0 0 100%;
    }
}
    @media (max-width: 768px) {
      .feature-item {
        flex: 1 1 100%;
      }
    }

.accordion {
     flex: 0 0 60%;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    margin-top:70px;
}

.accordion__item {
    border: 1px solid #e5f3fa;
    /* border-radius: 10px; */
    overflow: hidden;
}

.accordion__header {
padding: 17px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    color:black;
}

.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

.accordion__header.active {
    background: #e5f3fa;
}

.accordion__header.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}


.accordion__header.active {
    background: #006ab4; /* Set active background color to red */
    color: white;    /* Optional: Change text color for better visibility */
}


.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

/* Flip icon only if this class present */
.accordion__header.icon-flip::after {
    transform: rotateX(180deg);
}










.accordion__headerr {
padding: 17px 25px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    font-size: 16px;
    background: #006ab4;
    color: white;
}

.accordion__headerr::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

.accordion__headerr.active {
    background: #e5f3fa;
}

.accordion__headerr.active::after {
    transform: rotateX(180deg);
}

.accordion__item .accordion__content {
    padding: 0 25px;
    max-height: 0;
    transition: .5s;
    overflow: hidden;
}


.accordion__headerr.active {
    background: #006ab4; /* Set active background color to red */
    color: white;    /* Optional: Change text color for better visibility */
}


.accordion__header::after {
    content: '';
    background: url(https://www.svgrepo.com/show/357035/angle-down.svg) no-repeat center;
    width: 20px;
    height: 20px;
    transition: .4s;
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 20px;
    z-index: 1;
}

/* Flip icon only if this class present */
.accordion__header.icon-flip::after {
    transform: rotateX(180deg);
}

@media only screen and (max-width: 768px) {
  .ok2 {
    margin-top: -445px;
  }
}







.main {
  .container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 1rem;
    justify-content: center;
    align-items: center;
  }

  .card {
    color: $color-black;
    border-radius: 2px;
    background: $color-white;
    box-shadow: $box-shadow;

    &-image {
      position: relative;
      display: block;
      width: 100%;
      padding-top: 70%;
      background: $color-white;

      img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
  }
}

@media only screen and (max-width: 600px) {
  .main {
    .container {
      display: grid;
      grid-template-columns: 1fr;
      grid-gap: 1rem;
    }
  }
}



.mission-vision-section {
  padding: 60px 20px;
  background: #18509a;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.mission-vision-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.mv-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.mv-text {
  flex: 1 1 500px;
}

.mv-text h2 {
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 25px;
  position: relative;
}

.mv-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffffff;
  margin-top: 8px;
  border-radius: 2px;
}

.mv-box {
  background: #ffffff;
  padding: 20px 25px;
  margin-bottom: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s;
}

.mv-box:hover {
  transform: translateY(-5px);
}

.mv-box h3 {
  color: #18509a;
  font-size: 1.4rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.mv-box h3 i {
  color: #ff6b6b;
}

.mv-box p {
  color: #000000;
  line-height: 1.6;
}

.mv-image {
  flex: 1 1 400px;
  text-align: center;
}

.mv-image img {
  max-width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.mv-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 991px) {
  .mv-content {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .mv-content {
    flex-direction: column-reverse;
  }

  .mv-text h2 {
    font-size: 2rem;
  }
}
 

.expertise-section {
  padding: 60px 20px;
  /* background: #f0f4f8; */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.expertise-content {
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.expertise-text {
  flex: 1 1 550px;
}

.expertise-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #1a1a1a;
  position: relative;
}

.expertise-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ffffff;
  margin-top: 8px;
  border-radius: 2px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.expertise-card {
  background: #ffffff;
  padding: 20px 15px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.expertise-card i {
  font-size: 2rem;
  color: #ff6b6b;
  margin-bottom: 10px;
  display: block;
}

.expertise-card h3 {
  font-size: 1.3rem;
  margin-bottom: 8px;
  color: #164b93;
}

.expertise-card p {
  font-size: 0.95rem;
  color: #000000;
  line-height: 1.5;
}

.expertise-image {
  flex: 1 1 500px;
  text-align: center;
}

.expertise-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.expertise-image img:hover {
  transform: scale(1.03);
}

/* Responsive */
@media (max-width: 991px) {
  .expertise-content {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .expertise-content {
    flex-direction: column-reverse;
  }

  .expertise-text h2 {
    font-size: 2rem;
  }

  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}



.our-presence-section {
  padding: 60px 20px;
  background: #f7f8fa;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.presence-content {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: auto;
}

.presence-image {
  flex: 1 1 45%;
  text-align: center;
}

.presence-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.presence-image img:hover {
  transform: scale(1.03);
}

.presence-text {
  flex: 1 1 50%;
}

.presence-text h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #205dab;
  position: relative;
}

.presence-text h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #205dab;
  margin-top: 10px;
  border-radius: 2px;
}

.location-box {
display: flex
;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 7px 18px;
    border-radius: 12px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    margin-top: -10px;
}

.location-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

.location-box i {
  font-size: 2rem;
  color: #ff6b6b;
}

.location-box h3 {
  font-size: 1.2rem;
  margin: 0;
  color: #1a1a1a;
}

.location-box p {
  margin: 0;
  font-size: 1rem;
  color: #555555;
}

.presence-description {
  margin-top: 15px;
  font-size: 1rem;
  color: #333333;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 991px) {
  .presence-content {
    gap: 30px;
  }
}

@media (max-width: 767px) {
  .presence-content {
    flex-direction: column-reverse;
  }

  .presence-text h2 {
    font-size: 2rem;
  }
}



    .category-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: #fff;
    }
    .category-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 8px 18px rgba(0,0,0,0.2);
    }
    .category-card img {
      height: 220px;
      width: 100%;
      object-fit: cover;
    }
    .category-card .card-body {
      text-align: center;
      padding: 1.2rem;
    }
    .category-card h5 {
      font-weight: 600;
      color: #333;
    }
    .category-card p {
      font-size: 0.95rem;
      color: #555;
    }
    .section-heading {
      text-align: center;
      margin-bottom: 2.5rem;
    }
    .section-heading h2 {
      font-weight: 700;
      font-size: 2rem;
    }
    .section-heading p {
      color: #666;
      font-size: 1rem;
    }




        .highlight-section {
      /* background: linear-gradient(135deg, #f9f9f9, #ffffff); */
      padding: 60px 20px;
      border-radius: 15px;
      box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    }
    .highlight-section h2 {
      text-align: center;
      font-weight: 700;
      margin-bottom: 40px;
      color: #222;
    }
    .highlight-box {
      text-align: center;
      padding: 25px;
      border-radius: 12px;
      background: #fff;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    .highlight-box:hover {
      transform: translateY(-6px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    }
    .highlight-box i {
      font-size: 40px;
      color: #18509a;
      margin-bottom: 15px;
    }
    .highlight-box h5 {
      font-weight: 600;
      margin-bottom: 10px;
      color: #333;
    }
    .highlight-box p {
      font-size: 0.95rem;
      color: #555;
    }