/* ==========================================================
   Purvik Enterprises - Global Styles (Corporate & Clean)
   Theme: Gold (#b49456) + Deep Blue (#010066)
   Fonts: Poppins (Headings), Inter (Body)
   ========================================================== */

/* ---------------------------------
   Fonts
----------------------------------*/
:root {
  --default-font: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --heading-font: "Poppins", "Inter", sans-serif;
  --nav-font: "Inter", sans-serif;
}

/* ---------------------------------
   Global Colors
----------------------------------*/
:root { 
  --background-color: #ffffff;
  --default-color: #010066;     /* Deep navy for text */
  --heading-color: #010066;     /* Deep navy for headings */
  --accent-color: #b49456;      /* Gold for highlights & buttons */
  --secondary-accent: #010066;  /* Deep navy secondary tone */
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* ---------------------------------
   Navigation Colors
----------------------------------*/
:root {
  --nav-color: #010066;
  --nav-hover-color: #b49456;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #010066;
  --nav-dropdown-hover-color: #b49456;
}

/* ---------------------------------
   Color Presets (Optional)
----------------------------------*/
.light-background {
  --background-color: #f9f9ff;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #010066;
  --default-color: #ffffff;
  --heading-color: #b49456;
  --surface-color: #020240;
  --contrast-color: #ffffff;
}

/* ---------------------------------
   Scroll Behavior
----------------------------------*/
:root {
  scroll-behavior: smooth;
}

/* ---------------------------------
   Base Elements
----------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s ease;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ==========================================================
   Global Button Variants
   ========================================================== */

.btn {
  border-radius: 0.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

/* Primary (Gold) */
.btn-primary {
  background-color: var(--accent-color);
  border-color: var(--accent-color);
  color: var(--contrast-color);
}
.btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  border-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(180, 148, 86, 0.3);
}

/* Secondary (Deep Blue) */
.btn-secondary {
  background-color: var(--secondary-accent);
  border-color: var(--secondary-accent);
  color: var(--contrast-color);
}
.btn-secondary:hover {
  background-color: color-mix(in srgb, var(--secondary-accent), black 10%);
  border-color: color-mix(in srgb, var(--secondary-accent), black 10%);
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(1, 0, 102, 0.3);
}

/* Outline Primary (Gold) */
.btn-outline-primary {
  background-color: transparent;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
}
.btn-outline-primary:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

/* Outline Secondary (Deep Blue) */
.btn-outline-secondary {
  background-color: transparent;
  color: var(--secondary-accent);
  border: 2px solid var(--secondary-accent);
}
.btn-outline-secondary:hover {
  background-color: var(--secondary-accent);
  color: var(--contrast-color);
}

/* Light (for dark backgrounds) */
.btn-light {
  background-color: #f5f5f5;
  border: 1px solid #e5e5e5;
  color: var(--secondary-accent);
}
.btn-light:hover {
  background-color: #e5e5e5;
}

/* Dark (for hero/footer) */
.btn-dark {
  background-color: #000000;
  border-color: #000000;
  color: var(--contrast-color);
}
.btn-dark:hover {
  background-color: #2e2311;
  border-color: #2e2311;
}

/* Ghost (transparent button) */
.btn-ghost {
  background-color: transparent;
  border: none;
  color: var(--accent-color);
}
.btn-ghost:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  background-color: rgba(0, 0, 0, 0.05);
}

/* Link Button */
.btn-link {
  color: var(--accent-color);
  text-decoration: underline;
  border: none;
  background: none;
  padding: 0;
}
.btn-link:hover {
  color: color-mix(in srgb, var(--accent-color), black 15%);
  text-decoration: none;
}




/* ==========================================================
   HEADER - Purvik Enterprises
   ========================================================== */

/* ===== Base Header ===== */
.header {
  background-color: #ffffff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 14px 0;
  z-index: 999;
  transition: all 0.3s ease;
}

.header.sticky {
  position: sticky;
  top: 0;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);
}

/* ===== Logo ===== */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo-img {
  height: 80px;
  width: auto;
}

.sitename {
  font-family: var(--heading-font);
  font-size: 20px;
  font-weight: 700;
  color: var(--heading-color);
  margin: 0;
}

/* ===== Desktop Nav ===== */
.navmenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 30px;
}

.navmenu a {
  font-family: var(--nav-font);
  color: var(--nav-color);
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.navmenu a:hover,
.navmenu .active {
  color: var(--nav-hover-color);
}

/* ===== CTA Button ===== */
.header .btn {
  font-size: 15px;
  border-radius: 8px;
  font-weight: 500;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-nav-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1000;
}

.menu-icon {
  width: 28px;
  height: 28px;
  transition: opacity 0.3s ease;
}

/* ===== Mobile Menu Toggle ===== */
.mobile-nav-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 1001;
  width: 34px;
  height: 34px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-icon {
  width: 36px;
  height: 36px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Hide using .d-none (controlled by JS) */
.menu-icon.d-none {
  display: none !important;
}


/* ==========================================================
   MOBILE NAVIGATION (Drawer Style)
   ========================================================== */
.mobile-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 85%;
  max-width: 350px;
  height: 100%;
  background-color: #ffffff;
  box-shadow: -4px 0 25px rgba(0, 0, 0, 0.1);
  z-index: 998;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  display: flex;
  flex-direction: column;
  padding: 25px 20px;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

/* ===== Mobile Header (Logo + Name) ===== */
.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
  margin-bottom: 20px;
}

.mobile-nav-header .sitename {
  font-size: 18px;
  color: var(--heading-color);
  font-weight: 700;
}

.mobile-nav-header .logo-img {
  height: 34px;
}

/* ===== Mobile Menu Items ===== */
.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
}

.mobile-nav li {
  border-bottom: 1px solid #f0f0f0; /* Grey separator line */
}

.mobile-nav a {
  display: block;
  width: 100%;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--nav-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.mobile-nav a:hover,
.mobile-nav a.active {
  color: var(--accent-color);
}

/* ===== Mobile Button ===== */
.mobile-nav .btn {
  margin-top: 25px;
  width: 100%;
}

/* ===== Overlay for Drawer ===== */
.mobile-nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 997;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* ===== Responsive Behavior ===== */
@media (max-width: 1199px) {
  .navmenu {
    display: none !important;
  }

  .btn-outline-secondary.d-none.d-xl-inline-block {
    display: none !important;
  }

  .header .sitename {
    font-size: 18px;
  }

  .logo-img {
    height: 36px;
  }
}



/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/

.footer {
  background: #ffffff;
  color: #000;
  font-size: 14px;
  border-top: 1px solid #eaeaea;
  padding-top: 60px;
  font-family: var(--default-font);
}

/* ---------------------------------
   Top Section
----------------------------------*/
.footer .footer-top {
  padding-bottom: 50px;
}

/* ---------------------------------
   Titles (with underline)
----------------------------------*/
.footer .footer-title {
  color: var(--heading-color);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  position: relative;
  display: inline-block;
}

.footer .footer-title::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 45px;
  height: 2px;
  background: var(--accent-color);
  border-radius: 4px;
}

/* ---------------------------------
   About Section
----------------------------------*/
.footer .footer-logo {
  height: 85px;
  margin: 0 auto 10px;
  display: block;
}

.footer .footer-description {
  font-size: 14px;
  font-weight: 500;
  color: #222;
  line-height: 1.7;
  max-width: 360px;
  margin: 0 auto;
  text-align: center;
}

/* ---------------------------------
   Social Icons
----------------------------------*/
.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 12px;
}

.footer .social-links a img {
  width: 30px;
  height: 30px;
}

.footer .social-links a:hover img {
  transform: translateY(-3px);
  filter: grayscale(0%) brightness(1);
}

/* ---------------------------------
   Footer Links
----------------------------------*/
.footer .footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer .footer-links ul a {
  color: #111;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease;
  font-size: 14px;
  font-weight: 500;
}

.footer .footer-links ul a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0%;
  height: 1.5px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-links ul a:hover::after {
  width: 100%;
}

/* ---------------------------------
   Contact Info
----------------------------------*/
.footer .footer-contact ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer .footer-contact ul li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 10px;
  color: #111;
  font-weight: 500;
  line-height: 1.5;
}

.footer .footer-contact ul li img {
  width: 18px;
  margin-right: 8px;
  margin-top: 2px;
  opacity: 0.8;
}

.footer .footer-contact ul li a {
  color: var(--default-color);
  text-decoration: none;
  transition: 0.3s ease;
}

.footer .footer-contact ul li a:hover {
  color: var(--accent-color);
}

/* ---------------------------------
   Enquiry Form
----------------------------------*/
.footer .footer-enquiry input {
  width: 100%;
  padding: 10px 12px;
  margin-bottom: 10px;
  border-radius: 6px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  font-weight: 500;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.footer .footer-enquiry input:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 2px rgba(180, 148, 86, 0.2);
}

.footer .footer-enquiry button {
  border-radius: 6px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s ease;
}

.footer .footer-enquiry button:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 10%);
}

/* ---------------------------------
   Footer Bottom (Credits + SEO)
----------------------------------*/
.footer .footer-divider {
  border: none;
  border-top: 1px solid #e6e6e6;
  margin: 25px 0 15px;
}

.footer .footer-bottom {
  padding-bottom: 30px;
  text-align: center;
}

.footer .footer-bottom p {
  margin: 4px 0;
  color: #111;
  font-size: 14px;
  font-weight: 600;
}

.footer .footer-bottom .made-with {
  font-size: 13px;
  color: #333;
  font-weight: 500;
  margin-top: 6px;
  margin-bottom: 10px;
}

/* Divider and SEO Text (Centered Fix) */
.footer .footer-seo-divider {
  border: none;
  border-top: 1px solid #dcdcdc;
  margin: 24px auto 16px;
  width: 85%;                /* ✅ slightly wider for balance */
  max-width: 1100px;         /* ✅ centered on large screens */
  display: block;
}

.footer .seo-text {
  font-size: 13px;
  color: #222;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;             /* ✅ centers inside full width */
  padding-top: 4px;
  letter-spacing: 0.2px;
}


/* ---------------------------------
   Responsive (Mobile Adjustments)
----------------------------------*/
@media (max-width: 991px) {
  .footer {
    text-align: left;
  }

  .footer .footer-about,
  .footer .footer-links,
  .footer .footer-contact,
  .footer .footer-enquiry {
    text-align: left;
  }

  .footer .footer-description {
    text-align: left;
    margin: 0;
  }

  .footer .social-links {
    justify-content: flex-start;
  }

  .footer .footer-contact ul li {
    justify-content: flex-start;
  }

  .footer .footer-enquiry {
    margin-top: 25px;
  }

  .footer .footer-bottom {
    text-align: center;
  }

  .footer .seo-text {
    text-align: center;
    width: 100%;
  }
}


/* ==========================================================
   Floating WhatsApp Button (Left Side)
   ========================================================== */

.whatsapp-float {
  position: fixed;
  left: 25px;               
  bottom: 25px;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 55px;
  height: 55px;
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.whatsapp-float .whatsapp-icon {
  width: 38px;
  height: 38px;
}

/* subtle pulse animation */
@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float {
  animation: pulse-whatsapp 2.5s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    left: 15px;
    bottom: 15px;
  }

  .whatsapp-float .whatsapp-icon {
    width: 26px;
    height: 26px;
  }
}

/* ==========================================================
   Scroll To Top Button
   ========================================================== */
.scroll-top {
  position: fixed;
  right: 20px;
  bottom: -20px;
  width: 46px;
  height: 46px;
  background-color: var(--accent-color);
  border-radius: 10px; /* square with soft corners */
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: all 0.4s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
  overflow: hidden;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  transition: transform 0.3s ease;
  z-index: 2;
  position: relative;
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 0%;
  width: 100%;
  background: color-mix(in srgb, var(--secondary-accent), transparent 10%);
  transition: height 0.15s linear;
  border-radius: 0 0 10px 10px;
  z-index: 1;
}

/* Hover Effects */
.scroll-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.25);
}

.scroll-top:hover i {
  transform: translateY(-2px);
}

/* Active (Visible) State */
.scroll-top.active {
  opacity: 1;
  visibility: visible;
  bottom: 20px;
}

/* Optional – Smaller screens adjustments */
@media (max-width: 768px) {
  .scroll-top {
    right: 15px;
    bottom: 15px;
    width: 40px;
    height: 40px;
  }
  .scroll-top i {
    font-size: 20px;
  }
}


/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 170px 0 80px 0;
  text-align: center;
  position: relative;
}

.page-title h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 10px;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  justify-content: center;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 90px;
  overflow: clip;
}

@media (max-width: 1199px) {

  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/* ==========================================================
   Hero Section Global
   ========================================================== */
.hero-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  padding: 140px 0 120px 0;
  text-align: center;
  color: var(--default-color);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: var(--heading-font);
  font-weight: 700;
  font-size: 2.75rem;
  color: var(--heading-color);
  line-height: 1.3;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: #55597d;
  max-width: 700px;
  margin: 0 auto 2rem auto;
  line-height: 1.7;
  padding: 0 10px;
}

/* Badge Tag */
.badge-tag {
  background: color-mix(in srgb, var(--secondary-accent), transparent 90%);
  color: var(--secondary-accent);
  border-radius: 50px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 1rem;
}

.badge-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* Buttons Section */
.hero-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

/* ==========================================================
   Responsive Design
   ========================================================== */

/* ---------- Tablets (992px and below) ---------- */
@media (max-width: 992px) {
  .hero-section {
    padding: 120px 20px 100px 20px;
  }

  .hero-title {
    font-size: 2.3rem;
    line-height: 1.25;
  }

  .hero-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 1.8rem;
  }

  .hero-buttons {
    flex-direction: row;
    gap: 0.8rem;
  }

  .hero-buttons .btn {
    padding: 10px 28px;
    font-size: 0.95rem;
  }
}

/* ---------- Mobiles (768px and below) ---------- */
@media (max-width: 768px) {
  .hero-section {
    padding: 100px 15px 80px 15px;
  }

  .badge-tag {
    font-size: 0.85rem;
    padding: 6px 14px;
    gap: 4px;
  }

  .hero-title {
    font-size: 1.9rem;
    line-height: 1.25;
    padding: 0 10px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 90%;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 12px;
  }

  .hero-buttons .btn {
    width: 85%;
    padding: 10px 0;
  }
}

/* ---------- Small Mobiles (480px and below) ---------- */
@media (max-width: 480px) {
  .hero-section {
    padding: 90px 10px 70px 10px;
  }

  .hero-title {
    font-size: 1.7rem;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .badge-tag {
    font-size: 0.8rem;
    padding: 5px 12px;
  }

  .hero-buttons .btn {
    width: 90%;
    font-size: 0.9rem;
  }
}


/* ==========================================================
   TESTIMONIALS SECTION - FINAL STABLE VERSION (NO WHITE GAP)
   ========================================================== */

.testimonials-section {
  text-align: center;
  padding: 100px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  overflow: hidden;
}

/* ---------------------------------
   Section Title
----------------------------------*/
.section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-title p {
  font-size: 1rem;
  color: #55597d;
  max-width: 650px;
  margin: 0 auto 2rem;
}

/* ---------------------------------
   Swiper Layout Fix (no gaps)
----------------------------------*/
.testimonials-section .swiper {
  width: 100%;
  overflow: visible;
  padding-bottom: 45px; /* space for pagination dots */
}

.testimonials-section .swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.testimonials-section .swiper-slide {
  display: flex !important;
  align-items: stretch !important;
  height: auto !important;
  min-height: 0 !important;
  padding: 10px;
  box-sizing: border-box;
}

/* ================================================
   Core Testimonial Card
   ================================================ */
.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
  padding: 24px 26px;
  text-align: left;
  width: 100%;
  height: auto;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

/* ---------------------------------
   Review Badge
----------------------------------*/
.testimonial-header {
  margin-bottom: 10px;
}

.review-badge {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  display: inline-block;
}

/* ---------------------------------
   Review Text
----------------------------------*/
.testimonial-text {
  font-size: 0.95rem;
  color: #444;
  line-height: 1.6;
  font-style: italic;
  margin: 0 0 18px 0;
  flex-grow: 1;
}

/* ---------------------------------
   Footer (Client Image + Info)
----------------------------------*/
.testimonial-footer {
  display: flex;
  align-items: center;
  border-top: 1px solid #f0f0f0;
  padding-top: 12px;
  margin-top: auto;
}

.testimonial-img {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 12px;
  
}

.testimonial-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--secondary-accent);
  margin: 0;
}

.testimonial-info span {
  font-size: 0.8rem;
  color: #777;
}

/* ---------------------------------
   Pagination Dots
----------------------------------*/
.swiper-pagination {
  position: relative;
  margin-top: 15px;
  text-align: center;
}

.swiper-pagination-bullet {
  background: var(--accent-color);
  opacity: 0.7;
  width: 10px;
  height: 10px;
  margin: 0 5px !important;
  transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
  background: var(--secondary-accent);
  opacity: 1;
  transform: scale(1.1);
}

/* ================================================
   Responsive
   ================================================ */
@media (max-width: 992px) {
  .testimonial-card {
    padding: 20px;
  }
  .testimonial-text {
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .testimonial-card {
    padding: 18px 20px;
  }
  .testimonial-img {
    width: 42px;
    height: 42px;
  }
  .review-badge {
    font-size: 0.7rem;
    padding: 3px 8px;
  }
  .swiper-pagination {
    margin-top: 10px;
  }
}

/* ==========================================================
   AUTO HEIGHT FIX FOR SWIPER (ABSOLUTE GAP REMOVAL)
   ========================================================== */
.testimonials-section .swiper,
.testimonials-section .swiper-wrapper,
.testimonials-section .swiper-slide,
.testimonials-section .testimonial-card {
  height: auto !important;
  min-height: 0 !important;
}



/* ==========================================================
   CONTACT SECTION (Unique Design - Purvik Enterprises)
   ========================================================== */
.contact-section {
  padding: 100px 0;
}

.contact-section .section-header {
  margin-bottom: 25px;
}

.contact-section .sub-title {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-section h2 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-weight: 700;
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.contact-section p {
  font-size: 0.95rem;
  color: #555;
}

/* -------------- Form Card -------------- */
.contact-form-card {
  background: #fff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.contact-form-card:hover {
  transform: translateY(-3px);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 14px;
  color: #222;
  background: #fafafa;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent-color);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(180, 148, 86, 0.15);
  outline: none;
}

.contact-form textarea {
  resize: none;
}

/* -------------- Info Card -------------- */
.contact-info-card {
  background: var(--surface-color);
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
}

.contact-details {
  list-style: none;
  padding: 0;
  margin: 25px 0 0;
}

.contact-details li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 22px;
}

.contact-details .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--secondary-accent), transparent 90%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-details .icon img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-details h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 4px;
}

.contact-details p {
  font-size: 0.9rem;
  color: #555;
  margin: 0;
}

.contact-details a {
  color: var(--secondary-accent);
  text-decoration: none;
  transition: 0.3s ease;
}

.contact-details a:hover {
  color: var(--accent-color);
}

/* WhatsApp CTA */
.contact-cta .btn {
  border-radius: 8px;
  font-weight: 600;
}

/* -------------- Responsive -------------- */
@media (max-width: 991px) {
  .contact-section {
    padding: 60px 0;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 25px;
  }

  .contact-info-card {
    margin-top: 25px;
  }

  .contact-section h2 {
    font-size: 1.6rem;
  }
}


/* ==========================================================
   404 Page
========================================================== */
.page-404 {
  padding: 120px 0;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.error-code {
  font-size: 110px;
  font-weight: 700;
  color: var(--secondary-accent);
  margin-bottom: 10px;
  line-height: 1;
}

.error-title {
  font-size: 28px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 12px;
}

.error-text {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 768px) {
  .error-code {
    font-size: 75px;
  }
  .error-title {
    font-size: 22px;
  }
  .error-text {
    font-size: 15px;
  }
}

/* ==========================================================
   MAP SECTION STYLING
=========================================================== */
.map-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  padding: 100px 0;
  text-align: center;
}

.map-section .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.map-section .section-title p {
  font-size: 1rem;
  color: #55597d;
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.map-wrapper {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  padding: 0 20px;
}

.map-wrapper iframe {
  width: 100%;
  height: 450px;
  border: none;
  border-radius: 16px;
}

/* Responsive */
@media (max-width: 992px) {
  .map-section {
    padding: 80px 0;
  }
  .map-wrapper iframe {
    height: 380px;
  }
}

@media (max-width: 768px) {
  .map-wrapper {
    padding: 0 10px;
  }
  .map-wrapper iframe {
    height: 320px;
  }
}



/* ==========================================================
   OUR CLIENTS SECTION
=========================================================== */
.clients-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  text-align: center;
  padding: 90px 0;
}

.clients-section .section-title h2 {
  font-family: var(--heading-font);
  font-weight: 700;
  color: var(--heading-color);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.clients-section .section-title p {
  font-size: 1rem;
  color: #55597d;
  margin-bottom: 2.5rem;
}

.clients-logos {
  gap: 50px;
  flex-wrap: wrap;
  justify-content: center;
}

.client-logo {
  flex: 0 1 150px;
  text-align: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0.9;
}

.client-logo img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  transition: all 0.3s ease;
}

.client-logo:hover img {
  filter: grayscale(0%);
  transform: translateY(-4px);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .client-logo {
    flex: 0 1 120px;
  }
  .clients-logos {
    gap: 35px;
  }
}

@media (max-width: 576px) {
  .clients-section {
    padding: 70px 0;
  }
  .client-logo img {
    max-width: 100px;
  }
  .clients-logos {
    gap: 25px;
  }
}


/* ==========================================================
   FAQ SECTION - Modern Responsive
=========================================================== */
.faq-section {
  background: linear-gradient(180deg, #ffffff 0%, #f9f9ff 100%);
  padding: 100px 0;
}

.faq-section .section-title p {
  max-width: 700px;
  margin: 0 auto 40px;
}

/* ===== Image Section ===== */
.faq-image-wrapper {
  position: relative;
  text-align: center;
}

.faq-bg-svg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 300px;
  z-index: 1;
}

.faq-image {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 350px;
}

/* ===== FAQ Accordion ===== */
.faq-container {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.faq-item {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.faq-question {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--heading-color);
  padding: 18px 20px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 20px;
  color: var(--accent-color);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
  content: '–';
  transform: rotate(180deg);
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  display: block;
}

/* ===== Responsive ===== */
@media (max-width: 992px) {
  .faq-section {
    padding: 80px 0;
  }
  .faq-bg-svg {
    max-width: 250px;
  }
}

@media (max-width: 768px) {
  .faq-image-wrapper {
    display: none;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}



/* ==========================================================
   UNIVERSAL CTA SECTION - WHITE BACKGROUND
=========================================================== */
.cta-section {
  background: "";
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  position: relative;
  overflow: hidden;
}

/* Subtle decorative background accents */
.cta-section::before {
  content: "";
  position: absolute;
  top: -40px;
  left: -60px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle at center, rgba(180, 148, 86, 0.1) 0%, transparent 70%);
  z-index: 0;
}

.cta-section::after {
  content: "";
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle at center, rgba(1, 0, 102, 0.08) 0%, transparent 70%);
  z-index: 0;
}

/* CTA Content */
.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-section h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  letter-spacing: 0.3px;
}

.cta-section p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: #444;
  margin: 0 auto;
  max-width: 650px;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* Use Global Button Styling */
.cta-section .btn {
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Responsive */
@media (max-width: 768px) {
  .cta-section {
    padding: 70px 0;
  }

  .cta-section h2 {
    font-size: 1.6rem;
  }

  .cta-section p {
    font-size: 0.95rem;
  }
}



/* ==========================================================
   Vision · Mission · Values (VMV) Section
   ========================================================== */
.vmv-section {
  padding: 80px 0;
  background: var(--background-color);
  color: var(--default-color);
}

.vmv-section .section-title h2 {
  font-family: var(--heading-font);
  font-size: 2rem;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.vmv-section .section-title p {
  color: #5a5f75;
  max-width: 720px;
  margin: 0 auto 32px;
  line-height: 1.6;
  font-size: 1rem;
}

/* Grid */
.vmv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items: stretch;
}

/* Card */
.vmv-card {
  background: #fff;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 6px 22px rgba(3,8,30,0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}

.vmv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(3,8,30,0.08);
}

/* Icon */
.vmv-icon {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.vmv-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

/* Heading */
.vmv-card h3 {
  margin: 0;
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 1.125rem;
  font-weight: 700;
}

/* Paragraph */
.vmv-card p {
  margin: 0;
  color: #434655;
  font-size: 0.96rem;
  line-height: 1.6;
  flex-grow: 1;
}

/* Values list */
.vmv-values {
  margin: 8px 0 0 0;
  padding: 0;
  list-style: none;
  color: #434655;
  font-size: 0.95rem;
  line-height: 1.5;
}
.vmv-values li {
  margin-bottom: 8px;
}

/* Responsive */
@media (max-width: 991px) {
  .vmv-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .vmv-section {
    padding: 48px 0;
  }
  .vmv-card {
    min-height: auto;
    padding: 20px;
  }
  .vmv-icon {
    width: 56px;
    height: 56px;
  }
}


/* ==========================================================
   Leadership / Team Section (Single Person)
=========================================================== */
.leadership-section {
  background: #ffffff;
  padding: 100px 0;
  color: var(--default-color);
  position: relative;
}

.leader-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 50px;
  max-width: 1050px;
  margin: 0 auto;
  transition: all 0.4s ease;
}

.leader-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 50px rgba(0, 0, 0, 0.08);
}

/* Image */
.leader-image {
  flex: 0 0 320px;
  height: 320px;
  overflow: hidden;
  border-radius: 18px;
  position: relative;
}

.leader-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
  transform: scale(1.05);
}

/* Content */
.leader-content {
  flex: 1;
  text-align: left;
}

.leader-name {
  font-family: var(--heading-font);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 5px;
}

.leader-title {
  display: inline-block;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-color);
  margin-bottom: 16px;
}

.leader-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
  max-width: 600px;
}

/* Social Icons */
.leader-social {
  display: flex;
  gap: 15px;
  margin-top: 8px;
}

.leader-social a img {
  width: 32px;
  height: 32px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.leader-social a:hover img {
  transform: translateY(-3px);
  opacity: 0.85;
}

/* Responsive */
@media (max-width: 992px) {
  .leader-card {
    flex-direction: column;
    text-align: center;
    padding: 40px 25px;
  }

  .leader-image {
    flex: none;
    width: 260px;
    height: 260px;
  }

  .leader-content {
    text-align: center;
  }

  .leader-description {
    margin: 0 auto 20px;
  }

  .leader-social {
    justify-content: center;
  }
}


/* ==========================================================
   Company Overview / Who We Are Section
=========================================================== */
.about-overview-section {
  background: #ffffff;
  color: var(--default-color);
  padding: 100px 0;
}

/* Left Column */
.overview-left {
  flex: 1;
  min-width: 280px;
  margin-bottom: 40px;
}

.overview-logo {
  width: 140px;
  height: auto;
}

.overview-description {
  font-size: 1rem;
  color: #444;
  line-height: 1.8;
  max-width: 580px;
}

/* ---------------------------------
   Highlights with Icons
----------------------------------*/
.overview-highlights {
  flex: 1;
  gap: 25px;
  justify-content: center;
  align-items: stretch;
  display: flex;
  flex-wrap: wrap;
}

.highlight-box {
  background: #fff;
  border: 1px solid #eee;
  border-left: 4px solid var(--secondary-accent); /* ✅ Blue accent border */
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  text-align: left;
  padding: 20px 25px;
  transition: all 0.3s ease;
  flex: 1 1 220px;
  min-width: 230px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin-left: 2px; /* ✅ small offset to create subtle alignment variation */
}

.highlight-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.08);
  border-left-color: var(--accent-color); /* ✅ changes to gold on hover */
}


/* Icon */
.highlight-icon {
  width: 45px;
  height: 45px;
  object-fit: contain;
  flex-shrink: 0;
}

/* Text */
.highlight-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  margin: 0;
}

.highlight-text p {
  font-size: 0.95rem;
  color: #555;
  margin: 3px 0 0;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .highlight-box {
    flex: 1 1 45%;
    justify-content: flex-start;
  }

  .highlight-icon {
    width: 40px;
    height: 40px;
  }

  .highlight-text h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .highlight-box {
    flex: 1 1 100%;
    justify-content: flex-start;
  }
}


/* Responsive Layout */
@media (max-width: 992px) {
  .about-overview-content {
    flex-direction: column;
    text-align: center;
  }

  .overview-description {
    margin: 0 auto 30px;
  }

  .overview-highlights {
    gap: 20px;
  }
}





/* ==========================================================
   OUR SERVICES SECTION
=========================================================== */
.services-section {
  background: #ffffff;
  color: var(--default-color);
  padding: 100px 0;
}

/* Service Cards */
.service-card {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-left: 4px solid var(--secondary-accent);
  border-radius: 12px;
  padding: 20px;
  text-align: left;
  height: 100%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-left-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* Image Style - Fixed Height Removed */
.service-image {
  width: 100%;
  height: auto; /* ✅ keeps natural aspect ratio */
  border-radius: 10px;
  margin-bottom: 18px;
  display: block;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Optional subtle zoom on hover (for premium feel) */
.service-card:hover .service-image {
  transform: scale(1.02);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}


/* Headings and Text */
.service-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.service-card p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 12px;
}

/* WhatsApp Button */
.whatsapp-icon {
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-right: 6px;
  vertical-align: middle;
}

/* Responsive */
@media (max-width: 992px) {
  .service-card {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--secondary-accent);
  }

  .whatsapp-icon {
    margin-right: 4px;
  }
}



/* ==========================================================
   WHY CHOOSE US SECTION
=========================================================== */
.why-choose-section {
  background: #ffffff;
  padding: 100px 0;
  color: var(--default-color);
}

/* Feature Card */
.feature-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px 20px;
  text-align: left;
  height: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

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

/* Icon */
.feature-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin-bottom: 15px;
  display: inline-block;
}

/* Heading */
.feature-card h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 8px;
}

/* Description */
.feature-card p {
  font-size: 0.95rem;
  color: #555;
  line-height: 1.7;
}

/* Responsive */
@media (max-width: 992px) {
  .feature-card {
    text-align: center;
    border-left: none;
    border-top: 4px solid var(--secondary-accent);
  }

  .feature-icon {
    margin: 0 auto 12px;
  }
}



/* ==========================================================
   Index — About Us (Image Left / Text Right)
   ========================================================== */
.about-index-section {
  padding: 80px 0;
  background: var(--background-color);
  color: var(--default-color);
}

/* Eyebrow */
.about-content .eyebrow {
  display: inline-block;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 10px;
}

/* Title */
.about-title {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 1.9rem;
  margin: 6px 0 14px;
  line-height: 1.25;
}

/* Paragraph */
.about-copy {
  color: #55597d;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 680px;
}

/* CTA buttons */
.about-cta .btn {
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
}

/* Quick stats list */
.about-quicklist {
  display: flex;
  gap: 22px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  align-items: center;
  flex-wrap: wrap;
}

.about-quicklist li {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

/* Image Wrap */
.about-image-wrap {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 320px;
}

.about-bg-svg {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 420px;
  z-index: 1;
  pointer-events: none;
}

.about-image-wrap.mobile .about-bg-svg {
  max-width: 300px;
}

.about-image {
  position: relative;
  z-index: 2;
  width: auto;
  max-width: 380px;
  height: auto;
  display: block;
  margin: 6% 0;
  transition: transform 0.35s ease, filter 0.35s ease;
}

/* Slight zoom on hover for desktop */
@media (hover: hover) and (min-width: 992px) {
  .about-image:hover {
    transform: translateY(-6px);
  }
}

/* Responsive */
@media (max-width: 991px) {
  .about-index-section {
    padding: 60px 0;
  }
  .about-title {
    font-size: 1.5rem;
  }
  .about-quicklist {
    justify-content: flex-start;
  }
  .about-image {
    max-width: 320px;
  }
}

/* Small screens */
@media (max-width: 575px) {
  .about-copy {
    font-size: 0.98rem;
  }
  .about-quicklist {
    gap: 12px;
  }
  .about-image {
    max-width: 260px;
  }
}



/* ==========================================================
   LEGAL PAGES — Shared Styles (Privacy + Terms)
   ========================================================== */

.legal-hero {
  background: #ffffff;
  padding: 48px 0 28px;
  border-bottom: 1px solid #f1f1f1;
  text-align: center;
}

.legal-hero .container {
  max-width: 1100px;
}

.legal-hero h1 {
  font-family: var(--heading-font);
  color: var(--heading-color);
  font-size: 2rem;
  margin: 0 0 8px;
}

.legal-hero p.lead {
  color: #55597d;
  font-size: 1rem;
  margin: 0;
}

/* Page container */
.legal-container {
  max-width: 1100px;
  margin: 36px auto;
  padding: 0 20px 80px;
  color: var(--default-color);
}

/* Two-column layout for desktop: left TOC, right content */
.legal-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 32px;
  align-items: start;
}

/* Table of contents / quick links */
.legal-toc {
  position: sticky;
  top: 120px;
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid #eee;
  box-shadow: 0 6px 24px rgba(0,0,0,0.03);
}

.legal-toc h3 {
  font-size: 1rem;
  margin: 0 0 10px;
  color: var(--heading-color);
}

.legal-toc ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.legal-toc li {
  margin: 8px 0;
}

.legal-toc a {
  color: var(--default-color);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color .2s ease;
}

.legal-toc a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* Main content */
.legal-content h2 {
  font-size: 1.15rem;
  color: var(--heading-color);
  margin-top: 28px;
  margin-bottom: 10px;
  font-weight: 700;
}

.legal-content p,
.legal-content li {
  color: #444;
  line-height: 1.75;
  font-size: 0.97rem;
  margin-bottom: 12px;
}

/* Definition box */
.legal-box {
  background: #fbfbfd;
  border-left: 4px solid var(--secondary-accent);
  padding: 14px 16px;
  border-radius: 8px;
  margin: 12px 0 20px;
  color: #333;
}

/* Ordered lists in sections */
.legal-content ol {
  padding-left: 1.15rem;
}

/* Collapsible Q&A style (for Terms) */
.legal-collapsible .collapsible-item {
  border: 1px solid #eee;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 12px;
  background: #fff;
  transition: box-shadow .2s ease, transform .12s ease;
}

.collapsible-item button {
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border: none;
  background: none;
  font-weight: 600;
  color: var(--heading-color);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
}

.collapsible-item .content {
  padding: 12px 16px 18px;
  display: none;
  color: #444;
  line-height: 1.7;
  font-size: 0.95rem;
}

.collapsible-item.open .content {
  display: block;
}

/* Action strip at bottom (governance/legal) */
.legal-bottom {
  margin-top: 30px;
  padding: 18px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid #eee;
  text-align: center;
  color: #444;
  font-size: 0.95rem;
}

/* Buttons (reuse global .btn), small helper */
.legal-actions {
  display:flex;
  gap:12px;
  justify-content:flex-end;
  margin-top: 18px;
}

@media (max-width: 991px) {
  .legal-grid {
    grid-template-columns: 1fr;
  }
  .legal-toc {
    position: static;
    margin-bottom: 18px;
  }
  .legal-actions {
    justify-content: center;
  }
}
