/* ===== TOP GREEN BAR ===== */
        .top-green-bar {
            background: #f2f4f3;
            font-size: 14px;
            padding: 6px 0;
        }
        .top-green-bar span {
            color: green;
            font-weight: 600;
        }

        /* ===== HEADER SECTION ===== */
        .main-header {
            padding: 15px 0;
            background: #ffffff;
        }
        .company-logo img {
            height: 65px;
        }
        .company-name {
            font-size: 22px;
            font-weight: 700;
            color: #1e73be;
        }

        .header-info i {
            font-size: 22px;
            color: #00a0df;
            margin-right: 8px;
        }
        .header-info {
            font-size: 14px;
        }

        .btn-quote {
            background: #ffc107;
            color: #fff;
            font-weight: 600;
            padding: 10px 20px;
            border-radius: 4px;
        }

        /* ===== NAVBAR ===== */
        .main-navbar {
            background: #0b2b42;
        }
        .main-navbar .nav-link {
            color: #fff !important;
            font-weight: 600;
            padding: 15px 18px;
        }
        .main-navbar .nav-link:hover {
            background: #062033;
        }
       .btn-quote {
    background-color: #ff9800 !important;
    color: #ffffff !important;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 4px;
    border: none;
}
.btn-quote:hover {
    background-color: #e68900 !important;
}
/* ===== MAIN NAV ===== */
.main-menu {
    list-style: none;
    display: flex;
    justify-content: space-between;
    margin: 0;
    padding: 0;
}

.main-menu > li {
    position: relative;
}

.main-menu > li > a {
    display: block;
    padding: 16px 18px;
    color: #fff;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
}

/* ===== SUBMENU ===== */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    background: #0b2b42;
    display: none;
    padding: 0;
    margin: 0;
    z-index: 999;
}

.submenu li a {
    padding: 12px 16px;
    display: block;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
}

/* ===== SUBMENU (WHITE) ===== */
.submenu {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 260px;
    background: #ffffff;          /* WHITE BG */
    display: none;
    padding: 0;
    margin: 0;
    z-index: 999;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

.submenu li a {
    padding: 12px 16px;
    display: block;
    color: #333333;               /* DARK TEXT */
    text-decoration: none;
    font-size: 14px;
}

/* HOVER EFFECT */
.submenu li a:hover {
    background: #f2f4f7;          /* LIGHT GREY HOVER */
    color: #0b2b42;
}


/* ===== AUTO DROPDOWN ===== */
.has-t-submenu:hover > .submenu {
    display: block;
}


#imageSlider .carousel-item img {
    height: 520px;
    width: 100%;
    object-fit: cover;
}

.carousel-item {
    transition: transform 0.6s ease-in-out;
}
#imageSlider {
    width: 100%;
    overflow: hidden;
}

#imageSlider .carousel-item img {
    width: 100%;
    height: 520px;
    object-fit: cover;
}
.services-section {
    padding: 60px 0;
    background: #f8f9fa;
}

.services-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #0b2b42;
    margin-bottom: 10px;
}

.title-line {
    width: 70px;
    height: 3px;
    background: #ff9800;
    margin: 0 auto 30px;
}

.services-content {
    max-width: 900px;
    margin: 0 auto;
    font-size: 16px;
    color: #333;
    line-height: 1.8;
}

.services-content p {
    margin-bottom: 15px;
}
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 20px;
    background: #f5f5f5;
  }

  h2 {
    text-align: center;
    margin-bottom: 30px;
  }

  .services {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .service-item {
    position: relative;
    overflow: hidden;
    width: 250px;
    height: 180px;
    border-radius: 10px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
  }

  .service-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s, filter 0.5s;
  }

  .service-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.8);
  }

  /* Fullscreen overlay */
  .fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
  }

  .fullscreen-overlay img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    animation: fadeIn 0.3s ease;
  }

  @keyframes fadeIn {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
  }
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
  }

  .policy-section {
    text-align: center;
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
  }

  .policy-section h2 {
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 15px;
    line-height: 1.4;
    color: #222;
  }

  .policy-section p {
    font-size: 14px;
    color: #666;
    margin-bottom: 50px;
  }

  .policy-items {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
  }

  .policy-item {
    flex: 1;
    min-width: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    padding: 0 20px;
  }

  .policy-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: #ccc;
  }

  .policy-item img {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    object-fit: contain;
  }

  .policy-item span {
    font-weight: bold;
    color: #555;
    font-size: 14px;
    text-align: center;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .policy-items {
      flex-direction: column;
    }
    .policy-item:not(:last-child)::after {
      display: none;
    }
  }
 body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background: #fff;
  }

  .clients-testimonial {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
  }

  /* Client logos */
  .client-logos {
    flex: 1;
    min-width: 300px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
    justify-items: center;
  }

  .client-logos div {
    text-align: center;
  }

  .client-logos img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    margin-bottom: 5px;
  }

  .client-logos span {
    font-size: 12px;
    display: block;
    color: #333;
    margin-top: 2px;
  }

  /* Testimonial */
  .testimonial {
    flex: 1;
    min-width: 300px;
    background: url('assets/images/bg.jpg') no-repeat center/cover;
    color: #fff;
    padding: 30px;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  .testimonial img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 15px;
    border: 2px solid #fff;
  }

  .testimonial h3 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
  }

  .testimonial p.role {
    font-size: 14px;
    margin: 5px 0 10px;
    color: #ddd;
  }

  .testimonial p.text {
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
  }

  .testimonial .stars {
    color: #FFD700;
    margin: 10px 0;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .clients-testimonial {
      flex-direction: column;
      gap: 40px;
    }

    .client-logos {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 600px) {
    .client-logos {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  .testimonial-section {
  background-image: url('assets/images/bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 400px; /* ensures background is visible */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 50px 20px;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.9); /* optional: make content readable */
  padding: 30px;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}
.cta-strip {
    background: #FFC107; /* Yellow color */
    padding: 40px 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.cta-inner h2 {
    color: #fff;
    font-weight: 700;
    font-size: 32px;
    margin: 0;
    text-transform: uppercase;
}

.cta-btn {
    background: #000;
    color: #fff;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #222;
    color: #fff;
}
.about-section {
    padding: 70px 0;
}

.about-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

/* Slideshow */
.about-slider {
    position: relative;
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 12px;
}

.about-slider img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.about-slider img.active {
    opacity: 1;
}
.gallery-section {
    padding: 70px 0;
    background: #f4f4f4;
}

.gallery-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
}

.gallery-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* IMAGE STRIP */
.gallery-track {
    display: flex;
    gap: 20px;
    overflow: hidden;
    width: 100%;
}

/* IMAGE BOX */
.gallery-item {
    min-width: 260px;
    height: 180px;
    position: relative;
    cursor: pointer;
    border-radius: 10px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* PLUS ICON */
.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
    color: #fff;
    font-size: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .overlay {
    opacity: 1;
}

/* BUTTONS */
.nav-btn {
    background: #000;
    color: #fff;
    border: none;
    font-size: 26px;
    padding: 12px 16px;
    border-radius: 50%;
    cursor: pointer;
}

.nav-btn:hover {
    background: #333;
}

/* MODAL */
.image-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.image-modal img {
    max-width: 85%;
    max-height: 85%;
    border-radius: 12px;
}

.latest-news {
    padding: 70px 0;
    background: #fff;
}

.news-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* CARD */
.news-card {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: #f8f8f8;
    border-left: 5px solid #FFC107;
    border-radius: 8px;
}

/* DATE */
.news-date {
    background: #FFC107;
    color: #fff;
    padding: 18px;
    text-align: center;
    border-radius: 6px;
    min-width: 90px;
}

.news-date .day {
    display: block;
    font-size: 30px;
    font-weight: 700;
}

.news-date .month {
    font-size: 16px;
}

/* CONTENT */
.news-content {
    flex: 1;
}

.news-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 6px;
}

.news-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 10px;
}

.news-content p {
    font-size: 16px;
    color: #555;
}

/* IMAGE */
.news-image img {
    width: 160px;
    height: auto;
    border-radius: 6px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .news-card {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-image img {
        width: 100%;
    }
}
/* Ensure the slider has a consistent height */
#imageSlider .carousel-item {
    height: 500px; /* Adjust this height as needed */
    background-color: #000;
}

#imageSlider .carousel-item img {
    height: 100%;
    object-fit: cover; /* This prevents images from stretching ugly-ly */
    width: 100%;
}

/* Optional: Smooth fade transition instead of sliding */
.carousel-fade .carousel-item {
    transition-property: opacity;
}

/* ================================
   EXTRA SMALL DEVICES (300–350px)
================================ */
@media (max-width: 350px) {

  /* BODY */
  body {
    padding: 0;
    font-size: 13px;
  }

  /* TOP BAR */
  .top-green-bar {
    font-size: 11px;
    padding: 6px 8px;
  }
  .top-green-bar span {
    display: block;
    text-align: center;
  }

  /* HEADER */
  .main-header {
    padding: 10px 0;
  }
  .company-logo img {
    height: 45px;
  }
  .company-name {
    font-size: 16px;
    line-height: 1.2;
  }
  .header-info {
    font-size: 12px;
    text-align: center;
  }
  .header-info i {
    font-size: 16px;
  }
  .btn-quote {
    padding: 8px 14px;
    font-size: 12px;
    margin-top: 8px;
  }

  /* NAVBAR */
  .main-menu {
    flex-direction: column;
    width: 100%;
  }
  .main-menu > li > a {
    padding: 12px;
    font-size: 13px;
    text-align: left;
  }
  .submenu {
    position: static;
    box-shadow: none;
  }

  /* SLIDER */
  #imageSlider .carousel-item {
    height: 220px;
  }
  #imageSlider .carousel-item img {
    height: 100%;
    object-fit: cover;
  }

  /* SERVICES TEXT */
  .services-section {
    padding: 40px 15px;
  }
  .services-title h2 {
    font-size: 22px;
  }
  .services-content {
    font-size: 14px;
    line-height: 1.6;
  }

  /* SERVICES IMAGES */
  .services {
    gap: 12px;
  }
  .service-item {
    width: 100%;
    height: 160px;
  }

  /* POLICY SECTION */
  .policy-section {
    padding: 40px 15px;
  }
  .policy-section h2 {
    font-size: 18px;
  }
  .policy-items {
    flex-direction: column;
  }
  .policy-item {
    padding: 15px 0;
  }

  /* CLIENT LOGOS */
  .client-logos {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .client-logos img {
    max-width: 80px;
  }

  /* TESTIMONIAL */
  .testimonial {
    padding: 20px;
    font-size: 13px;
  }

  /* CTA STRIP */
  .cta-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  .cta-inner h2 {
    font-size: 18px;
    line-height: 1.3;
  }

  /* ABOUT SECTION */
  .about-title {
    font-size: 24px;
  }
  .about-slider {
    height: 220px;
    margin-top: 20px;
  }

  /* GALLERY */
  .gallery-item {
    min-width: 200px;
    height: 140px;
  }
  .nav-btn {
    font-size: 20px;
    padding: 8px 12px;
  }

  /* NEWS */
  .news-card {
    flex-direction: column;
    gap: 15px;
  }
  .news-date {
    min-width: auto;
    width: 100%;
  }
  .news-content h3 {
    font-size: 18px;
  }
}
/* FIX BOOTSTRAP COLLAPSE */
@media (max-width: 991px) {
  .main-menu {
    display: block !important;
  }

  .submenu {
    position: static;
    display: none;
    box-shadow: none;
  }

  .has-t-submenu.active > .submenu {
    display: block;
  }
}







/* ===============================
   FOOTER
================================ */
/* =========================
   CTA STRIP
========================= */
.footer-cta {
    background: #1f4b6e;
    padding: 20px 0;
    color: #fff;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-btn {
    background: #ffc107;
    padding: 10px 22px;
    color: #000;
    font-weight: 600;
    border-radius: 4px;
    text-decoration: none;
}

/* =========================
   FOOTER
========================= */
.main-footer {
    min-height: 100vh;
    background: url('assets/images/bg.jpg') no-repeat center center / cover;
    color: #fff;
    position: relative;
}

/* NO DARK OVERLAY */
.footer-overlay {
    background: transparent;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 70px 0 0;
}

/* =========================
   LOGO CARD
========================= */
.footer-card {
    background: #fff;
    padding: 25px;
    border-radius: 4px;
    color: #000;
}

.footer-logo {
    width: 100%;
    margin-bottom: 15px;
}

.read-more {
    color: #0dcaf0;
    text-decoration: none;
    font-weight: 500;
}

/* =========================
   SOCIAL ICONS
========================= */
.social-icons {
    margin-top: 15px;
}

.social-icons a {
    margin-right: 10px;
    color: #555;
    font-size: 18px;
}

/* =========================
   TITLES
========================= */
.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    position: relative;
}

.footer-title::after {
    content: '';
    width: 40px;
    height: 2px;
    background: #0dcaf0;
    position: absolute;
    bottom: -8px;
    left: 0;
}

/* =========================
   LINKS
========================= */
.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

/* =========================
   CONTACT INFO
========================= */
.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
}

.footer-contact i {
    color: #0dcaf0;
    font-size: 18px;
}

/* =========================
   TEXT VISIBILITY (NO BG)
========================= */
.main-footer h4,
.main-footer p,
.main-footer li,
.main-footer a {
    text-shadow: 0 2px 6px rgba(0,0,0,0.6);
}

/* =========================
   COPYRIGHT
========================= */
.footer-bottom {
    background: rgba(0,0,0,0.6);
    text-align: center;
    padding: 15px;
    font-size: 14px;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 768px) {
    .cta-flex {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}




/* =========================
   CLEAN TESTIMONIAL SECTION
========================= */

/* ===============================
   TESTIMONIALS – CLEAN & ELEGANT
=============================== */

.testimonial-parea {
    padding: 60px 0;
    background: #fff;
}

.testimonial-col-p {
    padding: 40px 0;
    border-bottom: 1px solid #e6e6e6;
}

.testimonial-col-p:last-child {
    border-bottom: none;
}

/* Layout */
.testimonial-p {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Logo / Image */
.testimonial-p .media-left img {
    max-width: 140px;
    height: auto;
    opacity: 0.9;
}

/* Heading */
.testimonial-p .media-body h3 {
    font-size: 20px;
    font-weight: 500;
    color: #111;
    margin-bottom: 10px;
    letter-spacing: 0.3px;
}

/* Description text */
.testimonial-p .media-body p {
    font-size: 15px;
    line-height: 1.9;
    color: #777;
    margin-bottom: 10px;
    max-width: 650px;
}

/* Author */
.testimonial-p .media-body a {
    font-size: 15px;
    font-weight: 500;
    color: #00a7c6;
    text-decoration: none;
}

/* ===============================
   MOBILE RESPONSIVE (300–350px)
=============================== */

@media (max-width: 576px) {

    .testimonial-col-p {
        padding: 30px 15px;
    }

    .testimonial-p {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .testimonial-p .media-left img {
        max-width: 110px;
    }

    .testimonial-p .media-body h3 {
        font-size: 18px;
    }

    .testimonial-p .media-body p {
        font-size: 14px;
        line-height: 1.8;
    }
}











 .about-banner {
    position: relative;
    width: 100%;
    height: 260px;
    background: url('assets/images/bg.jpg') center center / cover no-repeat;
}

.about-banner-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 75, 110, 0.85); /* blue overlay like image */
    display: flex;
    align-items: center;
    padding-left: 80px;
}

.about-banner-overlay h1 {
    color: #ffffff;
    font-size: 56px;
    font-weight: 700;
    margin: 0;
}






.inner-banner2 {
    position: relative;
    width: 100%;
    height: 260px;
    background: url("<?= base_url('assets/images/bg.jpg'); ?>") center center / cover no-repeat;
}

.inner-banner2::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 75, 110, 0.85);
}

.inner-banner2 .container {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.inner-banner2 h2 {
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    margin: 0;
}
.about-buttons a {
    display: block;
    padding: 15px 20px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    text-decoration: none;
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
}

.about-buttons a.active,
.about-buttons a:hover {
    background: #009fb7;
    color: #fff;
    border-color: #009fb7;
}

.about-content h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.about-content .line {
    width: 50px;
    height: 3px;
    background: #f4b400;
    display: inline-block;
    margin-bottom: 20px;
}

.about-content p {
    color: #777;
    line-height: 26px;
}
.about-tab-box {
    margin-top: 60px;   /* adjust 40–80px if needed */
}
.inner-banner2 {
    margin-bottom: 80px;
}

.about-tab-box {
    margin-bottom: 80px;
}
.team-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.section-title h2 {
    font-weight: 700;
    margin-bottom: 10px;
}

.title-line {
    width: 60px;
    height: 3px;
    background: #f4b400;
    display: inline-block;
    margin-bottom: 50px;
}

.team-card h4 {
    margin-top: 20px;
    margin-bottom: 5px;
    font-weight: 600;
}

.team-card p {
    color: #777;
    margin-bottom: 0;
}

/* Image box */
.team-img {
    position: relative;
    overflow: hidden;
}

.team-img img {
    width: 100%;
    transition: all 0.4s ease;
}

/* Blue hover overlay */
.team-img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 75, 110, 0.75);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-card:hover .team-img::after {
    opacity: 1;
}

.team-card:hover .team-img img {
    transform: scale(1.05);
}
.team-row {
    margin-top: 40px;
}

.team-card {
    text-align: center;
    padding: 15px;
}

.team-img img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    transition: 0.4s ease;
}

.client-says-section {
    background: #f7f7f7;
    padding: 80px 0;
}

.section-title {
    position: relative;
    margin-bottom: 50px;
}

.section-title h2 {
    font-weight: 700;
    letter-spacing: 1px;
}

.section-title .underline {
    display: block;
    width: 60px;
    height: 3px;
    background: #f4b400;
    margin-top: 10px;
}

.testimonial-arrows {
    position: absolute;
    right: 0;
    top: 10px;
}

.testimonial-arrows span {
    display: inline-block;
    background: #5bbcc3;
    color: #fff;
    padding: 8px 14px;
    margin-left: 5px;
    cursor: pointer;
    font-size: 20px;
}

.left-icon {
    width: 90px;
}

.testimonial-box {
    background: #fff;
    padding: 30px;
    border: 1px solid #e5e5e5;
    position: relative;
    min-height: 260px;
}

.testimonial-box:before {
    content: "";
    position: absolute;
    left: -15px;
    top: 40px;
    border-width: 15px;
    border-style: solid;
    border-color: transparent #fff transparent transparent;
}

.testimonial-box p {
    color: #777;
    line-height: 26px;
}

.testimonial-box .author {
    display: block;
    margin-top: 15px;
    color: #f4b400;
    font-style: italic;
}

.client-logo-circle {
    width: 140px;
    height: 140px;
    background: #eef2f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
}

.client-logo-circle img {
    max-width: 80px;
}
.our-awards-section {
    padding: 80px 0;
    background: #f8f8f8;
}

.award-box {
    padding: 15px;
    text-align: center;
}

.award-box img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 8px;
    transition: 0.4s ease;
}

/* Hover Zoom */
.award-box img:hover {
    transform: scale(1.05);
}
.tab-pane {
    display: none; /* Hide all panes by default */
}

.tab-pane.active {
    display: block; /* Show the active pane */
}

/* Optional: Smooth transition */
.fade {
    opacity: 0;
    transition: opacity 0.15s linear;
}
.fade.in {
    opacity: 1;
}