* {
  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;
  max-width: 100%;
  height: auto;
}

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

.nav-search-btn:hover {
  background: #beb6b6;
  color: black;
}

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

.nav-menu .nav-link:hover {
  color: #111;
}

.nav-menu li:hover {
  font-weight: 600;
}

.navbar-nav {
  margin-right: 15px;
}

.navbar .d-flex.align-items-center {
  margin-left: 0;
}

/* MAIN BUTTONS */
.nav-main-btn,
.nav-main-btn2 {
  display: inline-block;
  padding: 4px 6px;
  border-radius: 30px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transition: color .3s ease;
}

.nav-main-btn {
  background: blue;
  color: white;
  border: 1px solid #000;
}

.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;
}

.nav-main-btn2 {
  background: #198754;
  color: #fff;
  border: 1px solid #000;
}

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

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

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

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

/* Extra small devices (320px) */
@media (max-width: 360px) {
  .nav-brand img {
    width: 90px;
  }

  .nav-menu .nav-link {
    font-size: 13px;
    padding: 6px 8px;
  }

  .nav-main-btn,
  .nav-main-btn2 {
    padding: 4px 10px;
    font-size: 0.7rem;
  }

  .nav-right {
    flex-direction: column;
    gap: 0.5rem;
  }

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

  .nav-icon {
    display: block;
    margin: 5px auto 0;
    width: 30px;
  }
}

/* Small devices (up to 576px) */
@media (max-width: 576px) {
  .nav-brand img {
    width: 100px;
  }

  .nav-menu {
    text-align: center;
    margin-top: 10px;
  }

  .nav-main-btn,
  .nav-main-btn2 {
    width: 100%;
    text-align: center;
    margin-bottom: 6px;
  }
}

/* Medium devices (up to 768px) */
@media (max-width: 768px) {
  .nav-brand img {
    width: 110px;
  }

  .nav-menu .nav-link {
    font-size: 14px;
    padding: 6px 10px;
  }

  .nav-right {
    flex-wrap: wrap;
    gap: 0.5rem;
  }
}

/* Large devices (up to 991px) */
@media (max-width: 991px) {
  .nav-search-btn {
    display: none;
  }

  .nav-icon {
    display: block;
    margin: 0 auto;
    width: 35px;
  }
}

/* Extra large devices (up to 1200px) */
@media (max-width: 1200px) {
  .nav-brand img {
    width: 120px;
  }

  .nav-menu .nav-link {
    font-size: 15px;
  }
}

/* ===============================
   NAVBAR OPTIMIZATION FOR LAPTOP (1024px)
================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .nav-brand img {
    width: 125px;
    /* slightly smaller than full desktop */
  }

  .nav-menu .nav-link {
    font-size: 15px;
    /* comfortable size for laptop */
    padding: 8px 12px;
    /* balanced spacing */
  }

  .nav-main-btn,
  .nav-main-btn2 {
    padding: 6px 14px;
    /* slightly bigger for laptop view */
    font-size: 0.9rem;
  }

  .nav-right {
    gap: 1rem;
    /* adjust spacing between buttons */
  }

  .nav-search-btn {
    font-size: 1.1rem;
    padding: 6px 10px;
  }

  .nav-icon {
    width: 40px;
    /* maintain proportional size */
  }
}





/* COMPANY partner */
.company-partner-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  /* spacing between images */
  padding: 40px 0;
  background: #f7f7f7;
}

.company-partner-logos img {
  max-width: 180px;
  /* adjust image size */
  height: auto;
}

@media (max-width: 768px) {
  .company-partner-logos {
    flex-wrap: wrap;
    gap: 20px;
  }
}



/* 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;
  color: #000;
  /* 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;
}


/* Counter start*/
.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;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 280px;
  height: 200px;
}

.circle {
  width: 55px;
  height: 55px;
  background: #222;
  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: 65px;
  font-weight: 800;
  color: #111;
  /* BLACK TEXT ✅ */
  margin-bottom: 5px;
}

.stat-box p {

  font-size: 25px;
  font-weight: 500;
  color: #444;
}

.stat-box:hover {
  transform: scale(1.1);
  color: rgb(38, 216, 38);
}

.stat-box:hover h3 {
  color: rgb(38, 216, 38);
}

.stat-box:hover p {
  color: rgb(38, 216, 38);
}

/* Counter Closed */

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

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



.layer-box-section {
  padding: 60px 0;
}

.layer-box {
  background: #fff;
  border-radius: 15px;
  padding: 40px 20px 30px;
  /* extra top padding for icon */
  text-align: center;
  border: 1px solid #e0e0e0;
  transition: all 0.4s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  overflow: hidden;
}

/* Hover effect */
.layer-box:hover {
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px);
}

/* Icon styling */
.layer-box .icon {
  font-size: 50px;
  color: #0f1010;
  margin-bottom: 25px;
  /* space between icon and title */
  transition: all 0.3s ease;
}

.layer-box:hover .icon {
  color: #121313;
  transform: scale(1.2);
}

/* Title */
.layer-box h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #090909;
}

/* Paragraph */
.layer-box p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0;
}

/* Responsive */
@media (max-width: 992px) {
  .layer-box {
    padding: 35px 20px 25px;
  }
}

/* PRINCIPLES  VISION MISSION*/
/* LEFT IMAGE BOX */

/* 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;
  margin-right: -35px;
}

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




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




/* ===============================
   BUSINESS SECTION LAYOUT
================================ */
.business-section {
  width: 100%;
  padding: 80px 0;
  background: #f9f9f9;
  overflow-x: hidden;
}

/* FLEX WRAPPER */
.flex-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* ===============================
   LEFT CONTENT (30%)
================================ */
.left-content {
  flex: 0 0 30%;
  max-width: 30%;
}

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

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

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

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

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

/* ===============================
   RIGHT CARDS (70%)
================================ */
.right-cards {
  flex: 0 0 70%;
  max-width: 70%;
  overflow: hidden;
  position: relative;
}

/* CARD TRACK */
.card-track {
  display: flex;
  gap: 25px;
  width: max-content;
  animation: scrollRL 22s linear infinite;
  will-change: transform;
}

@keyframes scrollRL {
  from {
    transform: translateX(0);
  }

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

/* Pause on hover (desktop) */
.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;
}

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

/* Tablets */
@media (max-width: 992px) {
  .left-content {
    flex: 0 0 35%;
    max-width: 35%;
  }

  .right-cards {
    flex: 0 0 65%;
    max-width: 65%;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .flex-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }

  .left-content,
  .right-cards {
    width: 100%;
    max-width: 100%;
  }

  /* cards niche */
  .right-cards {
    margin-top: 10px;
    overflow-x: hidden;
    /* animation ke liye important */
  }

  /* auto scroll ON (mobile) */
  .card-track {
    animation: scrollRL 28s linear infinite;
  }

  .business-card {
    width: 240px;
  }
}

/* 🔥 320px SAFETY */
@media (max-width: 360px) {

  html,
  body {
    overflow-x: hidden;
  }

  .business-card {
    width: 220px;
  }
}

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

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

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

/* ================================
   PRICING IMAGE (HTML IMG)
================================ */
.pricing-header {
  width: 100%;
  height: 250px;
  overflow: hidden;
  border-radius: 14px 14px 0 0;
}

.pricing-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
  display: block;
}

/* ================================
   PRICING BODY
================================ */
.pricing-body {
  padding: 20px;
}

.pricing-body ul {
  padding-left: 0;
  margin-bottom: 0;
}

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

/* ================================
   FEATURES ICON ALIGNMENT
================================ */
.pricing-features li {
  position: relative;
  padding-left: 30px;
  line-height: 1.5;
  list-style: none;
}

.pricing-features li i {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color: #28a745;
}

/* ================================
   PRICING FOOTER
================================ */
.pricing-footer {
  padding: 20px;
  background: #f8f9fa;
  text-align: center;
}

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

/* ================================
   FEATURED / RECOMMENDED CARD
================================ */
.border-primary {
  border: 2px solid #0d6efd !important;
  border-radius: 20px;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .pricing-header {
    height: 220px;
  }
}

@media (max-width: 576px) {
  .pricing-header {
    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;
}

/* ===============================
   FAQ 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;
  }
}




/* testomonial section */
/* =========================================================
    TESTIMONIAL SECTION (Merged + Fully Responsive)
   ========================================================= */
/* SECTION */
.testo-section {
  padding-bottom: 100px;
}

/* WRAPPER */
.testo-slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ARROWS */
.testo-arrow {
  font-size: 40px;
  cursor: pointer;
  opacity: 0.8;
  padding: 10px;
  transition: 0.3s ease;
  z-index: 10;
}

.testo-arrow:hover {
  opacity: 1;
  /* transform: scale(1.1); */
}

/* FIXED BUTTON POSITION ON ALL SIZES */
.testo-left {
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.testo-right {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
}

/* TRACK */
.testo-track {
  width: 70%;
  max-width: 900px;
  margin: auto;
  overflow: hidden;
  text-align: center;
}

/* SLIDE */
.testo-slide {
  display: none;
  animation: fadeSlide 0.4s ease;
}

.testo-slide.active {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

/* IMAGE */
.testo-img-box {
  width: 220px;
  height: 220px;
  position: relative;
}

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

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

/* TEXT */
.testo-text p {
  font-size: 15px;
  line-height: 1.7;
}

/* ANIMATION */
@keyframes fadeSlide {
  from {
    opacity: 0;
    transform: translateX(15px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE — ADJUST IMAGE SIZE */
@media (max-width: 768px) {
  .testo-img-box {
    width: 180px;
    height: 180px;
  }
}

@media (max-width: 576px) {
  .testo-img-box {
    width: 140px;
    height: 140px;
  }

  .testo-arrow {
    font-size: 25px;
    font-weight: 600;
  }

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

  .testo-left {
    left: -5px;
  }

  .testo-right {
    right: -5px;
  }
}

/* ===============================
   FOOTER SECTION
================================ */
.footer-section {
  background: #ffffff;
  color: #000;
  font-family: 'Poppins', sans-serif;
  overflow-x: hidden;
  /* mobile horizontal scroll fix */
  padding: 60px 0;
}

/* Footer Links */
.footer-links {
  display: flex;
  flex-direction: column;
  padding-left: 0;
  list-style: none;
}

.footer-links li {
  margin-bottom: 8px;
}

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

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

/* ===============================
   SOCIAL ICONS
================================ */
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Social Media Icons with Background Circle */
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #000;
  /* black background */
  color: #fff;
  /* white icon */
  width: 20px;
  height: 20px;
  font-size: 10px;
  padding:2px;
  text-decoration: none;
  border-radius: 8%;
  /* rounded */
  transition: transform 0.3s, background 0.3s;
}

.footer-social a:hover {
  transform: scale(1.2);
  background: #111;
  /* subtle dark hover */
}

/* ===============================
   APP STORE BADGES
================================ */
.badge-container {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.store-badge {
  height: 52px;
  width: auto;
  transition: transform 0.3s;
}

.store-badge:hover {
  transform: scale(1.05);
}

/* ===============================
   TABLET VIEW (768px–992px)
================================ */
@media (max-width: 991px) and (min-width: 768px) {
  .footer-section {
    padding: 50px 30px;
  }

  .footer-section .row>div {
    margin-bottom: 25px;
    text-align: center;
  }

  .footer-logo {
    height: 70px;
    display: block;
    margin: 0 auto;
  }

  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
  }

  .badge-container {
    justify-content: center;
    margin-top: 15px;
  }

  .store-badge {
    height: 50px;
  }

  .footer-links li a:hover {
    margin-left: 0;
  }

  .footer-section .col-md-4.text-center {
    text-align: center;
    margin-top: 15px;
  }
}

/* ===============================
   LAPTOP VIEW (992px–1200px)
================================ */
@media (min-width: 992px) and (max-width: 1200px) {
  .footer-section {
    padding: 60px 40px;
  }

  .footer-section .row>div {
    margin-bottom: 20px;
  }

  .footer-section .col-md-4.text-center {
    text-align: center;
  }

  .footer-section .col-md-4.d-flex.gap-3 {
    align-items: center;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .store-badge {
    height: 50px;
  }

  .footer-logo {
    height: auto;
  }
}

/* ===============================
   MOBILE VIEW (≤576px)
================================ */
@media (max-width: 576px) {
  .footer-section {
    padding: 40px 15px;
  }

  .footer-social {
    justify-content: center;
    margin-top: 15px;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .store-badge {
    height: 46px;
  }
}

/* ===============================
   EXTRA SMALL DEVICES (≤360px)
================================ */
@media (max-width: 360px) {
  .footer-logo {
    display: block;
    margin: 0 auto 10px auto;
    height: 65px;
  }

  .badge-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
  }

  .store-badge {
    height: 46px;
    width: auto;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
  }

  .footer-social {
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
  }

  .footer-social a {
    width: 32px;
    height: 32px;
    font-size: 16px;
  }

  .footer-section a:hover {
    transform: none;
  }

  .footer-links {
    padding: 0;
    margin-bottom: 100px;
  }
}

/* ===============================
   QUICK LINKS – HORIZONTAL ON SMALL SCREENS
================================ */
@media (max-width: 767px) {
  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px 16px;
    justify-content: center;
    margin-bottom: 50px;
  }

  .footer-links li {
    /* vertical gap remove */
    margin-bottom: 0;
  }

  .footer-links li a {
    white-space: nowrap;
    /* text break na ho */
    font-size: 14px;
  }
}



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




.expert-card {
  margin: 10px;
}

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

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


/* =====================================================
   CORE EXPERTISE SECTION
===================================================== */

#CoreExpertise {
  background: linear-gradient(135deg, #f5f9ff, #ffffff);
  padding: 60px 0;
  overflow-x: hidden;
}

/* Heading */
.section-subtitle {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  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: 560px;
  font-size: 1rem;
  color: #6c757d;
  margin: 0 auto;
  text-align: center;
}

/* =====================================================
   EXPERT CARDS
===================================================== */

.expert-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 22px 26px;
  display: flex;
  min-width: 280px;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
  border: 1.6px solid rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
  height: 100%;
}

/* Icon */
.expert-icon-wrap {
  padding: 28px;
  border-radius: 50%;
  background: rgba(88, 101, 242, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.35s ease;
}

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

/* Title */
.expert-card h6 {
  font-size: 1.05rem;
  font-weight: 600;
  color: #1a1f36;
  margin: 0;
}

/* Hover */
.expert-card:hover {
  background: linear-gradient(135deg, #1e3cff, #4fd1ff);
  transform: translateY(-6px);
  box-shadow: 0 14px 34px rgba(13, 15, 18, 0.35);
}

.expert-card:hover h6 {
  color: #ffffff;
}

.expert-card:hover .expert-icon-wrap {
  background:white;
  transform: scale(1.06);
}

/* =====================================================
   STATS SECTION
===================================================== */

.stats-row {
  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(13, 15, 18, 0.25);
}

.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;
}

/* =====================================================
   MOBILE – SINGLE CARD CENTER
===================================================== */

@media (max-width: 576px) {

  #CoreExpertise .expert-row {
    justify-content: center !important;
  }

  #CoreExpertise .expert-col {
    flex: 0 0 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }

  .expert-card {
    max-width: 320px;
    width: 100%;
  }

  h2.fw-bold {
    font-size: 1.6rem;
  }

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



/*ASSOCIATION Section background & spacing */
.clients-section {
  padding: 60px 0;
  /* background: linear-gradient(135deg, #0e0e0e, #0b0b0bd4); */
  background-color: #000;
  /* 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: 2px solid #0f1010;
  /* 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 */
.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;
}

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

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