* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Lato';
}

html {
  scroll-behavior: smooth;
}

.icon-black {
  filter: invert(0%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(0%);
}

/* GLOBAL */
body {

  background: #ffffff;
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  margin: 0;
  padding: 0;
}


/* Member Vendor sale */
#member {
  transition: opacity 0.1s;
}

/* NAVBAR MAIN */
.nav-navbar {
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.nav-brand img {
    width: 130px;
}


/* SEARCH ICON */
.nav-search-btn {
    padding: 3px 8px 3px 8px;
    background: #838485;
    color: white;
    border-radius: 50%;
    cursor: pointer;
}
.nav-search-btn:hover {
    background: #beb6b6;
    color: black;
    transition: .6s;
}

/* NAV LINKS */
.nav-menu .nav-link {
    font-size: 16px;
    /* font-weight: 500; */
    padding: 8px 14px;
    color: #333;
}
.nav-menu .nav-link:hover {
    color: #111;
}

/* Hover effect on li */
.nav-menu li:hover {
    font-weight: 600;
}


/* MAIN BUTTON */
.nav-main-btn {
    display: inline-block;
    background: #cacaca;
    color: #333;
    border: 1px solid #000;
    padding: 4px 6px;
    border-radius: 30px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: color .3s ease;
}

.nav-main-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    width: 0%;
    height: 100%;
    background: #ababab;
    z-index: 0;
    transition: width .3s ease;
}

.nav-main-btn:hover::before {
    width: 100%;
}

.nav-main-btn span {
    position: relative;
    z-index: 1;
}



/* RESPONSIVE FIXES of NavBar */
@media (max-width: 1024px) {
    .nav-brand img {
        width: 100px;
    }

    .nav-main-btn {
        padding: 6px 14px;
        font-size: .85rem;
    }

    .nav-search-btn {
        padding: 2px 5px 2px 5px;
    }

    .nav-right {
        gap: .7rem;
    }
}

@media (max-width: 991px) {
    .nav-menu {
        margin-top: 10px;
        text-align: center;
    }

    .nav-main-btn {
        margin: auto;
        margin-bottom: 10px;
    }

    .nav-search-btn {
        display: none;
    }

    .nav-icon {
        display: block;
        margin: 0 auto;
    }
}
/* HERO */
.hero-section {
  padding-top: 140px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
}

/* LOGIN CARD */
/* Dark Gradient Transparent Glass Card */
.login-card {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.6), rgba(20, 20, 20, 0.4));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  color: white;
  transition: transform .3s ease, box-shadow .3s ease;
}

/* social media */


/* Hover Animation */
.login-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

/* Make form controls match dark theme */
.login-card .form-control {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: white;
}

.login-card .form-control::placeholder {
  color: rgba(255, 255, 255, 0.55);
}

/* Social Icons */
.login-card i {
  background: linear-gradient(135deg, #a5aab1, #646869);
  color: white;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s;
}

.login-card .fa-facebook-f {
  color: #3a2cf9;
}

.login-card .fa-google {
  color: red;
}

.login-card .fa-twitter {
  color: blue;
}

.login-card .fa-instagram {
  color: orangered;
}

.login-card i:hover {
  transform: scale(1.12);
  box-shadow: 0 6px 14px rgba(0, 0, 0, .4);
}

.herobtn button:hover {
  background-color: #9da1a1;
  transition: 0.4s all;
}

.herobtn span {
  cursor: pointer;
}

/* ========== RESPONSIVE FIXES ========== */

/* Tablet (1024px) */
@media (max-width: 1024px) {
  .login-card {
    padding: 25px !important;
  }

  .login-card h3 {
    font-size: 1.35rem;
  }
}

/* Mobile (768px) */
@media (max-width: 768px) {
  .R-hero {
    display: flex;
    justify-content: center;
    /* background-color: #3a2cf9; */
  }

  .login-card {
    margin-top: 50px !important;
    padding: 20px !important;
  }

  .login-card h3 {
    font-size: 1.25rem;
  }
}

/* Small Phones (480px) */
@media (max-width: 480px) {
  .login-card {
    padding: 18px !important;
  }

  .login-card h3 {
    font-size: 1.1rem;
  }

  .login-card .form-control {
    font-size: 0.85rem;
  }
}

/* Core Expertise */
/* SECTION BACKGROUND */
.section-bg {
  background: rgba(245, 245, 245, 0.8);
  backdrop-filter: blur(10px);
}

/* EXPERT BOX */
.expert-card {
  background: #fff;
  border-radius: 10px;
  text-align: center;
  height: 70%;
  /* equal height */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* centers content */
  transition: transform .3s ease, box-shadow .3s ease;
}

.expert-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.expert-card img {
  margin-top: 10px;
  width: 60px;
  height: 60px;
  object-fit: contain;
}
.stats-section {
  width: 100%;
  padding: 80px 0;
  background: #ffffff; /* WHITE BACKGROUND ✅ */
  display: flex;
  justify-content: center;
  align-items: center;
}

.stats-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 50px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  border-radius: 18px;
  background: #fafafa;
  box-shadow: 0 4px 14px rgba(0,0,0,0.07);
  transition: 0.3s ease-in-out;
  width: 200px;
}

.circle {
  width: 85px;
  height: 85px;
  background: #222; /* Dark circle border */
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 12px;
  position: relative;
  transition: 0.3s;
}

.circle .inner {
  width: 35px;
  height: 35px;
  background: #23c55e; /* Green inner circle */
  border-radius: 50%;
  transition: 0.3s;
}

.number {
  font-size: 42px;
  font-weight: 800;
  color: #111; /* BLACK TEXT ✅ */
  margin-bottom: 5px;
}

.stat-box p {
  font-size: 17px;
  font-weight: 500;
  color: #444;
}

/* HOVER EFFECTS ✨ */
.stat-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 6px 22px rgba(0,0,0,0.12);
}

.stat-box:hover .circle {
  background: #000; /* circle turns deeper black */
  box-shadow: 0 0 25px rgba(0,0,0,0.2), 0 0 10px rgba(35,197,94,0.5); 
}

.stat-box:hover .circle .inner {
  transform: scale(1.3);
  background: #4ade80; /* lighter green glow */
  box-shadow: 0 0 20px rgba(74,222,128,0.8);
}

.stat-box:hover .number {
  color: #23c55e;
  text-shadow: 0 0 18px rgba(35,197,94,0.6);
}

.stat-box:hover p {
  color: #111;
}


/* PORTFOLIO */
.info-box {
  background: #fff;
  border-left: 3px solid #222;
}

.port-hTag {
  color: rgba(36, 179, 255, 1)
}

/* PRINCIPLES  VISION MISSION*/
/* LEFT IMAGE BOX */
.vmv-image-box img {
  width: 80%;
  border-radius: 20px;
}

/* VERTICAL LINE */
.timeline-line {
  position: absolute;
  left: 40px;
  top: 0;
  width: 2px;
  height: 100%;
  background: rgba(255, 255, 255, 0.4);
}

/* WRAPPER FOR EACH BOX */
.vmv-box {
  position: relative;
  margin-bottom: 80px;
  padding-left: 90px;
}

/* CIRCLE — ATTACHED TO BOX */
.circle {
  width: 70px;
  height: 70px;
  background: white;
  border-radius: 50%;
  position: absolute;
  left: 2%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 20px;
  color: #00363d;
  border: 6px solid #f0f0f0;
  /* creates merging effect */
  margin-right: -35px;
  /* attaches circle to box */
}

.vmv-box:hover {
  transform: translateY(10px);
  transition: all 0.7s;
}

.circle:hover {
  background-color: greenyellow;
  transition: 0.7s all;
}

/* BOX DESIGN */
.box-content {
  background: #ffffff;
  border-radius: 15px;
  padding: 30px;
  border-left: 0;
}

.box-content h5 {
  font-weight: 700;
}

.box-content p {
  font-size: 14px;
  color: #555;
}

.read-more {
  font-weight: 600;
  color: #00363d;
  text-decoration: none;
}



/* SCROLL ANIMATION */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}


/* MOBILE FIXES */
@media (max-width: 768px) {
  .hero-section {
    text-align: center;
  }

  .login-card {
    width: 100%;
    margin-top: 20px;
  }

  .expert-card img {
    width: 50px;
  }
}



/* Data Flashing */
body {
  background: #ffffff;
  font-family: "Poppins", sans-serif;
}

.stats-full {
  position: relative;
}

/* FULL WIDTH ARC SVG */
/* Responsive text size */
.arc-svg text.number {
  font-size: 45px;
  font-weight: bold;
}

.arc-svg text.label {
  font-size: 20px;
  font-weight: normal;
}

/* Adjust font size for smaller screens */
@media (max-width: 1200px) {
  .arc-svg text.number {
    font-size: 20px;
  }

  .arc-svg text.label {
    font-size: 14px;
  }
}

@media (max-width: 768px) {
  .arc-svg text.number {
    font-size: 16px;
  }

  .arc-svg text.label {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .arc-svg text.number {
    font-size: 14px;
  }

  .arc-svg text.label {
    font-size: 10px;
  }
}



/* SECTION LAYOUT */
.business-section {
  width: 100%;
  padding: 60px 0;
  background: #f8f9fa;
}

.flex-section {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* LEFT TEXT */
.left-content {
  flex: 1;
  min-width: 280px;
}

.section-tag {
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  letter-spacing: 1px;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  margin: 15px 0;
}

.section-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 20px;
}

.btn-view {
  display: inline-block;
  padding: 10px 22px;
  background: #0d6efd;
  color: #fff;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.3s;
}

.btn-view:hover {
  background: #084298;
}

/* SLIDER SETUP */
.right-cards {
  flex: 2;
  min-width: 320px;
  overflow: hidden;
  position: relative;
}

.card-track {
  display: flex;
  width: max-content;
  gap: 25px;
  animation: scrollRL 15s linear infinite;
}

@keyframes scrollRL {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* PAUSE WHEN HOVER */
.card-track:hover {
  animation-play-state: paused;
}

/* CARD DESIGN */
.business-card {
  width: 260px;
  flex-shrink: 0;
  background: #fff;
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
}

.business-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(13, 110, 253, 0.18);
}

.card-img img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
}

.card-title {
  font-size: 18px;
  font-weight: 700;
  margin: 12px 0 8px;
}

.card-text {
  font-size: 14px;
  color: #666;
}



/* ======== GENERAL ======== */
.business-section {
  padding: 80px 0;
  background: #f9f9f9;
}

.flex-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.left-content {
  flex: 1 1 45%;
}

.left-content .section-tag {
  font-weight: bold;
  color: #0a84ff;
  margin-bottom: 10px;
}

.left-content .section-title {
  font-size: 36px;
  margin-bottom: 20px;
}

.left-content .section-desc {
  font-size: 16px;
  color: #555;
  margin-bottom: 30px;
}

.left-content .btn-view {
  display: inline-block;
  padding: 12px 30px;
  background: #0a84ff;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.3s;
}

.left-content .btn-view:hover {
  background: #0666cc;
}

/* ======== RIGHT SLIDER ======== */
.right-slider {
  flex: 1 1 50%;
  position: relative;
}

.cards-wrapper {
  display: flex;
  gap: 20px;
  overflow: hidden;
}

.card {
  flex: 0 0 calc(50% - 10px); /* 2 cards per view */
  background: #fff;
  padding: 25px 20px;
  border-radius: 20px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 0 15px rgba(0,0,0,0.08);
  transition: 0.5s;
  opacity: 0;
  transform: translateY(40px);
}


.card.show {
  opacity: 1;
  transform: translateY(0);
}

.card:hover {
  background-color: #0a84ff;
  color: #fff; /* text turns white */
}

/* leave the image as is on hover */
.card-icon img {
  width: 120px;  /* increase from 70px */
  height: 120px; /* increase from 70px */
  margin-bottom: 15px;
  object-fit: contain; /* ensures image maintains aspect ratio */
}


.card-title {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}

.card-text {
  font-size: 14px;
  color: #555;
}

/* Arrows */
.nav-arrows {
  position: absolute;
  top: -40px;
  right: 0;
  display: flex;
  gap: 10px;
}

.arrow-btn {
  background: #0a84ff;
  color: #fff;
  border: none;
  padding: 8px 15px;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.arrow-btn:hover {
  background: #0666cc;
}

/* Pagination Dots */
.dots {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  width: 12px;
  height: 12px;
  background: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  width: 30px;
  background: #0a84ff;
  border-radius: 10px;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 992px) {
  .cards-wrapper .card {
    flex: 0 0 calc(50% - 10px);
  }
}

@media (max-width: 768px) {
  .flex-section {
    flex-direction: column;
  }

  .left-content, .right-slider {
    flex: 1 1 100%;
  }

  .cards-wrapper .card {
    flex: 0 0 90%;
  }

  .nav-arrows {
    display: none;
  }
}














/* ================================
   TEAM CARDS
==================================*/
.team-section {
  color: #000;
  padding: 40px 0;
}

.team-card {
  position: relative;
  border-radius: 15px;
  height: 380px;
  width: 100%;
  overflow: hidden;
  border: 2px solid #ffffff80;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);
  transition: 0.3s ease;
}

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

.team-card:hover {
  transform: translateY(-8px);
  border-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.team-info {
  position: absolute;
  bottom: 0;
  padding: 18px;
  width: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.team-info h5 {
  margin: 0;
  font-weight: 600;
}

.team-info p {
  font-size: 14px;
  margin-top: 3px;
  opacity: 0.9;
}

/* Responsive team card */
@media (max-width: 576px) {
  .team-card {
    height: 300px;
  }
}




/* ================================
   PRICING CARDS
==================================*/
.pricing-section {
  padding: 40px 0;
}

.pricing-card {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #ddd;
  background: #fff;
  transition: 0.3s ease;
  height: auto;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Card Header Images */
.card1,
.card2,
.card3 {
  height: 250px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card1 {
  background-image: url('../images/cardImages/cardImage1.png');
}

.card2 {
  background-image: url('../images/cardImages/cardImage2.png');
}

.card3 {
  background-image: url('../images/cardImages/cardImage3.png');
}

.pricing-header {
  padding: 20px;
  text-align: left;
}

.pricing-body {
  padding: 20px;
}

.pricing-body ul {
  padding-left: 18px;
}

.pricing-body ul li {
  font-size: 15px;
  margin-bottom: 10px;
}

.pricing-footer {
  padding: 20px;
  background: #f8f9fa;
}

.pricing-footer h4 {
  font-size: 24px;
  font-weight: bold;
}

/* Responsive pricing cards */
@media (max-width: 576px) {

  .card1,
  .card2,
  .card3 {
    height: 160px;
  }

  .pricing-footer h4 {
    font-size: 20px;
  }
}




/* FAQ Section */

/* ===============================
   MAIN FAQ SECTION STYLING
   =============================== */
.faq-section {
  background: #fafafa;
  padding: 60px 0;
}

/* Title */
.faq-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
}

/* Subtitle */
.faq-section p {
  color: #555;
  font-size: 16px;
}

/* Badge */
.faq-section .badge {
  border-radius: 6px;
  font-weight: 600;
}

/* ===============================
   ACCORDION – MERGED STYLES
   =============================== */
.accordion-item {
  border-radius: 10px !important;
  overflow: hidden;
  border: none;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.08);
  background: #fff;
}

/* Accordion Header Button */
.accordion-button {
  font-size: 20px;
  font-weight: 600;
  color: #111 !important;
  background: #fff;
  padding: 18px 20px;
  border-radius: 8px;
  transition: 0.3s ease-in-out;
}

/* When opened */
.accordion-button:not(.collapsed) {
  background: #8ebdec;
  color: #000 !important;
  box-shadow: none;
}

/* Custom + icon */
.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='black' class='bi bi-plus-lg' viewBox='0 0 16 16'%3e%3cpath d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2'/%3e%3c/svg%3e");
}

/* Custom – icon when open */
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='black' class='bi bi-dash-lg' viewBox='0 0 16 16'%3e%3cpath d='M2 8a.5.5 0 0 1 .5-.5h11a.5.5 0 0 1 0 1h-11A.5.5 0 0 1 2 8'/%3e%3c/svg%3e");
}

/* Accordion Body */
.accordion-body {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  padding: 20px;
}

/* ===============================
   RESPONSIVE BREAKPOINTS
   =============================== */

/* Tablets */
@media (max-width: 992px) {
  .faq-section h2 {
    font-size: 28px;
  }
}

/* Mobile Large (768px) */
@media (max-width: 768px) {
  .faq-section h2 {
    font-size: 26px;
  }

  .faq-section p {
    font-size: 14px;
  }

  .accordion-button {
    font-size: 18px;
    padding: 16px;
  }

  .accordion-body {
    font-size: 14px;
  }
}

/* Mobile Medium (576px) */
@media (max-width: 576px) {
  .faq-section h2 {
    font-size: 24px;
  }

  .accordion-button {
    font-size: 16px;
    padding: 14px;
  }

  .accordion-body {
    font-size: 13px;
    padding: 14px;
  }
}

/* Extra Small Phones (≤400px) */
@media (max-width: 400px) {
  .faq-section h2 {
    font-size: 22px;
  }

  .accordion-button {
    font-size: 15px;
    padding: 12px;
  }

  .accordion-body {
    font-size: 12px;
  }
}





/* Team section */
/* =====================================================
   TEAM SECTION (Your Glass Look + Responsive)
   ===================================================== */

.team-section {
  color: #000;
}

/* Team Cards */
.team-card {
  position: relative;
  border-radius: 15px;
  height: 400px;
  width: 90%;
  margin: 0 auto;
  overflow: hidden;

  /* Your Glass Effect */
  border: 2px solid #ffffff80;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(8px);

  transition: 0.3s;
}

/* Image */
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hover Effect */
.team-card:hover {
  transform: translateY(-8px);
  border-color: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* Text Overlay */
.team-info {
  position: absolute;
  bottom: 0;
  padding: 20px;
  width: 100%;
  color: white;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
}

.team-info h5 {
  margin: 0;
  font-weight: 600;
}

.team-info p {
  font-size: 14px;
  margin: 2px 0 0;
  opacity: 0.9;
}

/* =====================================================
   RESPONSIVE BREAKPOINTS
   ===================================================== */

/* Large Tablets */
@media (max-width: 992px) {
  .team-card {
    height: 360px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .team-card {
    height: 320px;
    width: 100%;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .team-card {
    height: 280px;
    width: 100%;
    max-width: 340px;
  }

  .team-info {
    padding: 15px;
  }

  .team-info h5 {
    font-size: 16px;
  }

  .team-info p {
    font-size: 13px;
  }
}

/* Extra Small Mobile */
@media (max-width: 400px) {
  .team-card {
    height: 250px;
  }
}




/* testomonial section */
/* =========================================================
    TESTIMONIAL SECTION (Merged + Fully Responsive)
   ========================================================= */

.testimonial-section {
  padding-bottom: 120px;
}

/* Arrows (static on desktop, hidden on mobile) */
.arrow-btn {
  font-size: 32px;
  cursor: default;
  user-select: none;
  padding: 5px 2px;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .arrow-btn {
    display: none;
  }
}

/* Testimonial row content */
.testimonial-content {
  width: 70%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

/* Image wrapper */
.testimonial-img-wrapper {
  width: 230px;
  height: 230px;
  position: relative;
}

.testimonial-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Quote bubble */
.quote-icon {
  width: 65px;
  height: 65px;
  background: #3a2cf9;
  color: black;
  font-size: 38px;
  font-weight: 900;
  border-radius: 50%;
  position: absolute;
  bottom: 5px;
  left: -15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Text styling */
.testimonial-text p {
  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   PARTNER LOGOS BOX (Clean + Responsive)
   ========================================================= */

.partner-logos {
  background: black;
}

.partner-logo {
  width: 130px;
  opacity: 0.9;
  transition: 0.3s;
}

.partner-logo:hover {
  opacity: 1;
}

.MarImg img {
  height: 50px;
}


/* Modern marquee fix for mobile */
.logo-wrapper {
  overflow: hidden;
  white-space: nowrap;
}

.logo-track {
  display: inline-block;
  animation: logoScroll 22s linear infinite;
}

.logo-track img {
  width: 110px;
  margin: 0 25px;
  object-fit: contain;
}

/* Scroll Animation */
@keyframes logoScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =========================================================
   RESPONSIVE FIXES
   ========================================================= */

/* Tablets */
@media (max-width: 992px) {
  .testimonial-content {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .testimonial-img-wrapper {
    width: 200px;
    height: 200px;
  }

  .quote-icon {
    width: 55px;
    height: 55px;
    font-size: 30px;
    bottom: 0px;
    left: -10px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .testimonial-img-wrapper {
    width: 150px;
    height: 150px;
  }

  .quote-icon {
    width: 45px;
    height: 45px;
    font-size: 24px;
    left: -5px;
    bottom: -5px;
  }

  .testimonial-text p {
    font-size: 14px;
  }

  .logo-track img {
    width: 70px;
    margin: 0 10px;
  }
}

/* =========================================================
    FOOTER (Your original code kept as-is)
   ========================================================= */
/* FOOTER SECTION */
.footer-section {
  background: #ffffff;
  color: #000;
  font-family: 'Poppins', sans-serif;
}

/* Footer Links */
.footer-links li {
  margin-bottom: 8px;
}

.footer-links li a {
  color: #555;
  text-decoration: none;
  display: inline-block;
  padding: 3px 0;
  transition: 0.3s;
}

.footer-links li a:hover {
  color: #000;
  margin-left: 3px;
}

/* Social Icons */
.social-icon {
  width: 40px;
  height: 40px;
  background: #f1f1f1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #000;
  font-size: 18px;
  transition: 0.3s ease;
}

.social-icon:hover {
  background: #000;
  color: #fff;
}

/* Footer Images */
#Footer .footImg img {
  max-width: 120px;
}

/* Responsive */
@media (max-width: 768px) {
  #Footer {
    text-align: center;
  }

  #Footer .btn {
    width: 100%;
    margin-bottom: 10px;
  }

  #Footer .footImg img {
    max-width: 110px;
  }
}

@media (max-width: 576px) {
  #Footer img {
    max-width: 100%;
  }

  #Footer .social-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

/* Make the navbar menu sit closer to the right buttons */
.navbar-nav {
    margin-right: 15px; /* adjust spacing between menu and button */
}

.navbar .d-flex.align-items-center {
    margin-left: 0; /* ensure buttons stay aligned to the right without extra space */
}

.login-card {
  margin-left: auto;
}

/* HERO SECTION BACKGROUND */
.hero-section {
  background: url("../images/company/herobanner.jpg") center center no-repeat;
  background-size: cover;
  padding: 80px 0;
  position: relative;
}

/* DARK OVERLAY FOR TEXT VISIBILITY */
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45); /* better readability */
  z-index: 1;
}

/* ENSURE HERO CONTENT IS ABOVE OVERLAY */
.hero-section .container {
  position: relative;
  z-index: 2;
}

/* MAKE ALL TEXT WHITE */
.hero-section,
.hero-section h1,
.hero-section h2,
.hero-section p,
.hero-section span,
.hero-section a {
  color: #fff !important;
}


.expert-card {
  margin: 10px;
}

.stats-card h3 {
  font-size: 40px;
  font-weight: 700;
}

.stats-card {
  margin-top: 20px;
}

/* ===== CORE EXPERTISE SECTION ===== */
#CoreExpertise {
  position: relative;
  background: #f9fbff;
  padding: 60px 0;
}

.section-subtitle {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5865f2;
  font-weight: 600;
  text-align: center;
}

h2.fw-bold {
  font-size: 2.1rem;
  text-align: center;
  color: #1a1f36;
}

.core-text {
  max-width: 550px;
  font-size: 1rem;
  color: #6c757d;
  margin: 0 auto;
  text-align: center;
}

/* ===== EXPERT CARDS ===== */
.expert-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s ease, background-color 0.35s ease;
  border: 1.4px solid rgba(0, 0, 0, 0.03);
  cursor: pointer;
}

.expert-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 20px 40px rgba(31, 41, 55, 0.08);
  border-color: rgba(88, 101, 242, 0.3);

  /* 🌈 LIGHT HOVER BG COLOR */
  background-color: #f4f8ff; /* light sky blue shade */
}

.expert-card:hover h6 {
  color: #5865f2;
  transition: 0.3s ease;
}

.expert-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  background: rgba(88, 101, 242, 0.07);
  display: flex;
  align-items: center;
  justify-content: center;
}

.expert-icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.expert-card h6 {
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.4;
  color: #1a1f36;
  margin: 0;
}

/* ===== STATS CARDS ===== */
.stats-row {
  display: flex;
  justify-content: center;
  text-align: center;
}

.stats-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 22px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0,0,0,0.02);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(31, 41, 55, 0.07);
}

.stats-card h3 {
  font-size: 1.9rem;
  font-weight: 700;
  color: #1a1f36;
  margin-bottom: 6px;
}

.stats-card p {
  font-size: 0.96rem;
  color: #6c757d;
  margin: 0;
}

.stats-sub {
  font-size: 0.85rem;
  opacity: 0.8;
  color: #6c757d;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 576px) {
  h2.fw-bold {
    font-size: 1.6rem;
  }

  .expert-card {
    padding: 18px 14px;
    align-items: center;
    text-align: center;
  }

  .expert-card h6 {
    font-size: 0.9rem;
  }

  .stats-card {
    padding: 22px;
  }

  .stats-card h3 {
    font-size: 1.6rem;
  }
}

/* Section background & spacing */
.clients-section {
  padding: 60px 0;
  background: linear-gradient(135deg, #007c88, #00b894); /* teal gradient */
  color: #ffffff;
}

/* Centered container */
.clients-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading with vertical line */
.clients-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}

.clients-header h2 {
  font-size: 28px;
  font-weight: 600;
  margin: 0;
}

.heading-line {
  width: 3px;
  height: 32px;
  background-color: #ffffff;
  border-radius: 999px;
}

/* Logo grid (all logos visible) */
.client-slider {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)); /* 4 in a row like screenshot */
  gap: 24px;
}

/* Logo card */
.client-slider .item {
  background: #ffffff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

/* Logo image sizing (all look similar) */
.client-slider .item img {
  max-width: 100%;
  min-height: 120px;  /* control logo height */
  object-fit: contain;
}

/* Responsive: 2 per row on tablets */
@media (max-width: 992px) {
  .client-slider {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Responsive: 1 per row on mobile */
@media (max-width: 576px) {
  .client-slider {
    grid-template-columns: 1fr;
  }
}

/* Section background */
.ceo-section {
  background-color: #f7fbff; /* light background similar to screenshot */
}

/* Left card (photo + name) */
.ceo-card {
  background: #e5f0f7;
  border-radius: 28px;
  padding: 24px 20px 18px;
  border: 4px solid #006b54;   /* green border like sample */
}

/* Image wrapper with rounded corners */
.ceo-photo-wrapper {
  background: #c4dced;
  border-radius: 22px;
  overflow: hidden;
}

.ceo-photo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Name & designation text */
.ceo-name {
  font-size: 1.1rem;
  font-weight: 600;
  color: #004437;
}

.ceo-title,
.ceo-company {
  font-size: 0.9rem;
  color: #6b757e;
}

/* Right side label + heading */
.ceo-label {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: #008060;
}

.ceo-heading {
  font-size: 1.8rem;
  line-height: 1.4;
  color: #12212f;
}

/* Normal paragraph text */
.ceo-section p {
  color: #4b5a68;
}

/* Signature image */
.ceo-signature {
  max-height: 60px;
  width: auto;
}

/* Read More button styled like screenshot */
.ceo-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 22px;
  border: none;
  background: #008060;
  color: #ffffff;
  font-weight: 500;
}

.ceo-btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #ffffff;
  color: #008060;
  font-size: 0.8rem;
}

/* Info boxes under text (you already had similar styles) */
.info-box {
  background: #ffffff;
  border-radius: 16px;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
  .ceo-card {
    max-width: 320px;
    margin: 0 auto;
  }

  .ceo-heading {
    font-size: 1.5rem;
  }
}


.hero-section {
  background-size: cover;
  background-position: center;
  transition: background-image 1s ease;
}

