:root {
  --med-blue: #005e9e;
  --med-cyan: #00aeb5;
  --med-green: #1ca848;
  --med-bg: #f8fbff;
  --med-text: #475569;
  --med-border: #e2e8f0;
  --hover-blue: #0272db;
  --light-bg: #f8fbff;
  --text-dark: #2c3e50;
  --primary: #005e9e;
  --secondary: #1ca849;
  --hover-blue: #0272db;
  --light-bg: #f8fbff;
  --primary: #005e9e;
  --aura-primary: #005e9e;
  --aura-primary-dark: #003366;
  --aura-accent: #00aeb5;
  --aura-text: #2c3e50;
  --aura-gray: #6c757d;
  --aura-white: #ffffff;
  --aura-shadow: 0 20px 60px rgba(0, 70, 139, 0.08);
  --accent: #00aeb5;
  --dark: #122438;
  --light: #f4f7fc;
  --white: #ffffff;
  --border: #eef2f6;

     --nova-primary: #005e9e;
        --nova-accent: #00aeb5;
        --nova-primary-dark: #003366;
        --nova-surface: #ffffff;
        --nova-bg: #f3f6fa;
        --nova-text-main: #1e293b;
        --nova-text-muted: #64748b;
        --nova-shadow-xl: 0 25px 50px -12px rgba(0, 70, 139, 0.25);
        --nova-shadow-md: 0 10px 15px -3px rgba(0, 70, 139, 0.1);
        --nova-radius: 20px;
}

/* --- Top Bar --- */
.header-top {
  background: var(--med-blue);
  padding: 8px 0;
  color: #ffffff;
  font-size: 13px;
}

.header-top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.top-info-list {
  display: flex;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.top-info-list li {
  display: flex;
  align-items: center;
  gap: 6px;
}

.top-info-list i {
  color: var(--light-bg);
}

.header-top-social {
  display: flex;
  gap: 15px;
}

.header-top-social a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  transition: 0.3s;
}

/* --- Navigation & Glow Effect --- */
.main-navigation {
  background: #ffffff;
  padding: 15px 0;
  box-shadow: 0 4px 12px rgba(0, 70, 139, 0.08);
}

.navbar-brand img {
  max-width: 200px;
  /* height: auto; */
  /* height: 70px; */
  /* border: 2px solid red; */
}

/* Toggler Border Fix */
.navbar-toggler {
  border: none !important;
  box-shadow: none !important;
  outline: none !important;
  color: var(--med-blue);
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark) !important;
  margin: 0 12px;
  padding: 8px 15px !important;
  border-radius: 8px;
  transition: all 0.4s ease;
  position: relative;
}

/* Glow Effect on Hover using #0272db */
.nav-link:hover {
  color: var(--hover-blue) !important;
  /* Updated Color */
  background-color: rgba(2, 114, 219, 0.05);
  /* Very subtle background tint in #0272db */
  text-shadow:
    0 0 10px rgba(2, 114, 219, 0.4),
    0 0 20px rgba(2, 114, 219, 0.1);
  transform: translateY(-1px);
}

/* Email Button */
.mail-nav-btn {
  background: var(--med-blue);
  color: #ffffff !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  border: none;
  margin-left: 15px;
  transition: 0.3s;
}

.mail-nav-btn:hover {
  background: var(--hover-blue);
  /* Updated Color */
  box-shadow: 0 4px 15px rgba(2, 114, 219, 0.3);
  color: white !important;
  text-shadow: none !important;
  transform: translateY(-2px);
}

/* --- Responsive Fixes --- */
@media (max-width: 991px) {
  .header-top-wrap {
    width: 100%;
    /* flex-direction: column; */
    gap: 8px;
    text-align: center;
  }

  .header-top-wrap .top-info-list:nth-child(1) {
    width: 100%;
    justify-content: space-between;
    gap: 5px;
    align-items: center;
  }

  .header-top-wrap .top-info-list:nth-child(2) {
    display: none;
  }

  .nav-link {
    margin: 5px 0;
    text-align: center;
  }

  .mail-nav-btn {
    margin: 10px 0 0 0;
    display: inline-block;
  }
}

/* HERO STARTS */
/* --- UNIQUE VARIABLES --- */
:root {
  --med-blue: #005e9e;
  --med-cyan: #00aeb5;
  --z-med-primary: #005e9e;
  --z-med-dark: #0b1c2c;
  --z-med-cyan: #00aeb5;
  --z-med-bg: #f8fbff;
  --z-med-text: #475569;
}

body {
  font-family: "Plus Jakarta Sans", sans-serif;
  background-color: #fff;
  overflow-x: hidden;
}

/* --- WRAPPER --- */
.z-med-hero-wrapper {
  position: relative;
  background-color: var(--z-med-bg);
  background-image:
    linear-gradient(#e5e7eb 1px, transparent 1px),
    linear-gradient(90deg, #e5e7eb 1px, transparent 1px);
  background-size: 40px 40px;
  /* Kept subtle texture per previous logic, remove if strictly plain needed */
  background: linear-gradient(135deg, /* #ffffff 0%, */ #f0f8ff 100%);
  /* Overriding with Soft Medical Gradient */
  padding: 80px 0;
  padding-bottom: 100px;
  /* Space for bottom arrows */
  overflow: hidden;
}

/* Background Elements */
.z-med-blur-bg {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 174, 181, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.z-med-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(0, 70, 139, 0.05) 0%,
    transparent 70%
  );
  border-radius: 50%;
  z-index: 0;
}

.z-med-glow-1 {
  top: -200px;
  left: -200px;
}

.z-med-glow-2 {
  bottom: -200px;
  right: -200px;
  background: radial-gradient(
    circle,
    rgba(0, 210, 211, 0.1) 0%,
    transparent 70%
  );
}

/* --- SLIDE ITEM --- */
.z-med-slide {
  position: relative;
  z-index: 2;
  padding: 20px 0;
}

.z-med-content-col {
  padding-right: 40px;
}

/* --- SMOOTH ANIMATION --- */
.z-med-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
    transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.owl-item.active .z-med-fade-up {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger Delays */
.owl-item.active .z-delay-1 {
  transition-delay: 0.1s;
}

.owl-item.active .z-delay-2 {
  transition-delay: 0.3s;
}

.owl-item.active .z-delay-3 {
  transition-delay: 0.5s;
}

.owl-item.active .z-delay-4 {
  transition-delay: 0.7s;
}

.owl-item.active .z-delay-5 {
  transition-delay: 0.9s;
}

/* Elements */
.z-med-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--z-med-primary);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  margin-bottom: 25px;
  border: 1px solid #eef2f6;
}

.z-med-heading {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--z-med-dark);
  line-height: 1.1;
  margin-bottom: 25px;
}

.z-med-heading span {
  color: var(--z-med-primary);
  position: relative;
  display: inline-block;
}

.z-med-heading span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 10px;
  background: rgba(0, 210, 211, 0.2);
  z-index: -1;
  transform: skewX(-15deg);
}

.z-med-text {
  font-size: 1.15rem;
  color: var(--z-med-text);
  margin-bottom: 40px;
  line-height: 1.7;
  max-width: 550px;
}

/* Search */
.z-med-search-box {
  background: #fff;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 70, 139, 0.08);
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin-bottom: 40px;
  border: 1px solid #eef2f6;
}

.z-med-search-box input {
  border: none;
  padding: 10px 15px;
  width: 100%;
  outline: none;
  color: var(--z-med-dark);
}

.z-med-search-btn {
  background: var(--z-med-primary);
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  font-weight: 700;
  transition: 0.3s;
  white-space: nowrap;
}

.z-med-search-btn:hover {
  background: var(--z-med-dark);
}

/* Trust Section */
.z-med-trust-area {
  display: flex;
  align-items: center;
  gap: 15px;
}

.z-med-avatars {
  display: flex;
}

.z-med-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 3px solid #fff;
  object-fit: cover;
  margin-left: -15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.z-med-avatar:first-child {
  margin-left: 0;
}

.z-med-trust-info p {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--z-med-dark);
}

.z-med-trust-info span {
  font-size: 12px;
  color: var(--z-med-text);
}

.z-med-stars {
  color: #f1c40f;
  font-size: 12px;
}

/* --- VISUALS --- */
.z-med-visual-col {
  position: relative;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.z-med-blob {
  position: absolute;
  width: 500px;
  height: 500px;
  background: #dbeafe;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  animation: zBlobMorph 8s ease-in-out infinite;
  z-index: 1;
  overflow: hidden;
}

.z-med-main-img {
  position: relative;
  z-index: 2;
  max-height: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 70, 139, 0.15));
}

.z-med-float-card {
  position: absolute;
  background: #fff;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 15px 35px rgba(0, 70, 139, 0.12);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 15px;
  animation: zFloatY 4s ease-in-out infinite;
  min-width: 200px;
}

.z-card-pos-1 {
  top: 15%;
  left: 0;
  animation-delay: 0s;
}

.z-icon-box {
  width: 40px;
  height: 40px;
  background: #ffebeb;
  border-radius: 10px;
  color: #ff4757;
  display: flex;
  align-items: center;
  justify-content: center;
}

.z-card-pos-2 {
  bottom: 20%;
  right: 10%;
  animation-delay: 2s;
}

.z-icon-box-2 {
  width: 40px;
  height: 40px;
  background: #e0f2fe;
  border-radius: 10px;
  color: var(--z-med-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

@keyframes zBlobMorph {
  0%,
  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  }

  50% {
    border-radius: 60% 40% 30% 70% / 50% 40% 50% 60%;
  }
}

@keyframes zFloatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* --- NAVIGATION ARROWS (Bottom Center) --- */
.z-med-hero-wrapper .owl-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 15px;
  width: auto;
  margin: 0 !important;
  pointer-events: auto;
}

.z-med-hero-wrapper .owl-nav button {
  width: 50px !important;
  height: 50px !important;
  background: #fff !important;
  color: var(--z-med-dark) !important;
  border-radius: 50% !important;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin: 0 !important;
  font-size: 20px !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  border: 1px solid #eef2f6 !important;
}

.z-med-hero-wrapper .owl-nav button:hover {
  background: var(--z-med-primary) !important;
  color: #fff !important;
  transform: translateY(-3px);
}

/* Responsive */
@media (max-width: 991px) {
  .z-med-heading {
    font-size: 2.8rem;
  }

  .z-med-visual-col {
    height: 400px;
    margin-top: 40px;
  }

  .z-med-blob {
    width: 350px;
    height: 350px;
  }

  .z-med-float-card {
    padding: 10px 15px;
    min-width: auto;
  }

  /* Keep arrows visible on mobile too */
  .z-med-hero-wrapper .owl-nav {
    display: flex;
    bottom: 20px;
  }
}

/* HERO STARTS */

/* Footer */
.footer-section {
  background-color: #122438;
  /* Deep dark blue background like image */
  color: #ffffff;
  padding: 80px 0 0;
  font-family: "Inter", sans-serif;
}

.footer-logo {
  max-width: 180px;
}

.footer-title {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 25px;
  position: relative;
}

.footer-info-list,
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-info-list li,
.footer-links li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-info-list i {
  color: var(--med-cyan);
  width: 15px;
}

.footer-info-list a,
.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: 0.3s;
}

/* Link Hover Glow Effect (#0272db) */
.footer-links a:hover,
.footer-info-list a:hover {
  color: #0272db !important;
  text-shadow: 0 0 8px rgba(2, 114, 219, 0.6);
  padding-left: 5px;
}

.footer-links i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

.career-text {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
}

/* Social Icons Styling */
.footer-social-icons {
  display: flex;
  gap: 10px;
}

.footer-social-icons a {
  width: 35px;
  height: 35px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.footer-social-icons a:hover {
  background-color: #0272db;
  border-color: #0272db;
  box-shadow: 0 0 15px rgba(2, 114, 219, 0.4);
}

/* Copyright Bar */
.footer-bottom {
  margin-top: 60px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
}

.copyright-link {
  color: var(--med-cyan) !important;
  text-decoration: none;
}

/* Floating Buttons */
.floating-btns {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 999;
}

.whatsapp-btn,
.scroll-top-btn {
  width: 45px;
  height: 45px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  font-size: 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}

.whatsapp-btn {
  background-color: #25d366;
}

.scroll-top-btn {
  background-color: #0272db;
}

.whatsapp-btn:hover,
.scroll-top-btn:hover {
  transform: translateY(-5px);
  color: white;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }

  .footer-info-list li {
    justify-content: center;
  }

  .footer-social-icons {
    justify-content: center;
  }

  .footer-links li {
    justify-content: center;
  }
}

/* Testimonial starts */
/* --- Vertical Testimonial Advanced Section --- */
/* --- Vertical Testimonial Light Theme --- */
.vertical-testi-section {
  padding: 80px 0;
  background: #ffffff;
  /* Pure White Background */
  overflow: hidden;
  position: relative;
}

/* Background subtle glow (Teal hint) */
.vertical-testi-section::after {
  content: "";
  position: absolute;
  top: 20%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(0, 174, 181, 0.08) 0%,
    transparent 70%
  );
}

.left-content-fixed {
  color: #122438;
  /* Dark Navy Text */
  padding-right: 50px;
}

.left-content-fixed h2 {
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #122438;
}

.left-content-fixed .teal-highlight {
  color: #00aeb5;
  /* Electric Teal */
}

/* Vertical Slider Container */
.testi-vertical-window {
  height: 500px;
  overflow: hidden;
  position: relative;
  padding: 15px;
  /* Yeh gradient top aur bottom ko fade karne ke liye hai taki smooth transition lage */
  -webkit-mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
  mask-image: linear-gradient(
    to bottom,
    transparent,
    black 15%,
    black 85%,
    transparent
  );
}

.vertical-track {
  display: flex;
  flex-direction: column;
  gap: 25px;
  animation: verticalMove 25s linear infinite;
}

.vertical-track:hover {
  animation-play-state: paused;
}

/* Advanced Card Design - Light Version */
.testi-card-v3 {
  background: #f8fafc;
  /* Very Light Grey */
  border: 1px solid #e2e8f0;
  padding: 35px;
  border-radius: 30px;
  transition: all 0.4s ease;
  min-height: 220px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02);
}

.testi-card-v3:hover {
  background: #ffffff;
  border-color: #00aeb5;
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 20px 40px rgba(15, 77, 144, 0.08);
}

.testi-text-v3 {
  color: #475569;
  /* Slate Grey Text */
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 25px;
  font-weight: 500;
}

/* Profile Styling */
.user-v3 {
  display: flex;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #e2e8f0;
  padding-top: 20px;
}

.user-v3 img {
  width: 50px;
  height: 50px;
  border-radius: 15px;
  /* Modern Squircle */
  border: 2px solid #00aeb5;
  object-fit: cover;
}

.user-details h6 {
  margin: 0;
  color: #122438;
  font-weight: 750;
  font-size: 16px;
}

.user-details span {
  font-size: 12px;
  color: #00aeb5;
  font-weight: 700;
  text-transform: uppercase;
}

@keyframes verticalMove {
  0% {
    transform: translateY(0);
  }

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

@media (max-width: 991px) {
  .left-content-fixed {
    margin-bottom: 40px;
    padding-right: 0;
    text-align: center;
  }

  .left-content-fixed h2 {
    font-size: 2.5rem;
  }
}

/* Testimonial ends */

/* --- Brands Static Section UI --- */
.brands-static-section {
  padding: 80px 0;
  background: #fdfdfd;
  /* Light background for contrast */
}

.section-title {
  margin-bottom: 50px;
}

.section-title .sub-title {
  color: #00aeb5;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 10px;
}

.section-title .title {
  font-size: 36px;
  font-weight: 800;
  color: #122438;
}

/* Flex Grid System */
.brands-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  /* Space between cards */
}

.brand-item {
  flex: 0 0 calc(16.66% - 30px);
  /* 6 items in a row */
  min-width: 180px;
}

.brand-logo-card {
  height: 120px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.brand-logo-card img {
  max-width: 85%;
  max-height: 85%;
  filter: grayscale(100%);
  /* opacity: 0.6; */
  transition: all 0.4s ease;
}

/* Hover Effect - Premium Shadow & Color Restore */
.brand-logo-card:hover {
  border-color: #00aeb5;
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 174, 181, 0.15);
}

.brand-logo-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
  .brand-item {
    flex: 0 0 calc(33.33% - 30px);
    /* 3 items in a row */
  }
}

@media (max-width: 575px) {
  .brand-item {
    flex: 0 0 calc(50% - 20px);
    /* 2 items in a row */
  }

  .brands-static-section {
    padding: 50px 0;
  }
}

/* Brands ends */

/* contact form starts */
/* --- Ponoogun Healthcare Light Contact Section --- */
.pono-contact-light {
  background: #f8fbff;
  /* Very light blue tint */
  padding: 100px 0;
  position: relative;
}

.contact-info-wrap h2 {
  color: #122438;
  /* Your Deep Navy for text */
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
}

.contact-info-wrap p {
  color: #50667a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 40px;
}

/* Call Us Box - Blue Version */
.pono-call-card-light {
  background: #ffffff;
  padding: 12px;
  border-radius: 20px;
  display: inline-block;
  width: 100%;
  max-width: 450px;
  box-shadow: 0 10px 30px rgba(2, 114, 219, 0.08);
}

.pono-call-inner-light {
  background: #0f4d90;
  padding: 20px 30px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.call-icon-circle {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  backdrop-filter: blur(5px);
}

/* Light Form Styling */
.pono-form-card-light {
  background: #ffffff;
  padding: 45px;
  border-radius: 30px;
  border: 1px solid rgba(2, 114, 219, 0.1);
  box-shadow: 0 30px 60px rgba(18, 36, 56, 0.05);
}

.pono-input-light {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid #f1f5f9;
  background: #f8fafc;
  border-radius: 12px;
  font-size: 15px;
  transition: all 0.3s ease;
  outline: none;
}

.pono-input-light:focus {
  background: #ffffff;
  border-color: #0272db;
  box-shadow: 0 10px 20px rgba(2, 114, 219, 0.05);
}

.pono-btn-light {
  background: #0f4d90;
  color: white;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-weight: 700;
  width: 100%;
  transition: 0.4s;
  font-size: 16px;
}

.pono-btn-light:hover {
  background: #122438;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(2, 114, 219, 0.2);
}

/* contact form Ends */

/* TRENDING SECTION */

/* About starts */
/* --- Creative About Section --- */
.pono-about-section {
  padding: 120px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.about-visual-wrap {
  position: relative;
  padding-right: 50px;
}

/* Big Image */
.about-img-main {
  width: 85%;
  height: 500px;
  object-fit: cover;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(18, 36, 56, 0.1);
}

/* Floating Smaller Image/Pattern */
.about-img-sub {
  position: absolute;
  bottom: -40px;
  right: 0;
  width: 250px;
  height: 250px;
  border: 10px solid #fff;
  border-radius: 30px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 174, 181, 0.2);
}

/* Floating Experience Badge */
.exp-badge {
  position: absolute;
  top: 40px;
  left: -30px;
  background: var(--pono-teal);
  color: white;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
  animation: floatAnim 3s infinite ease-in-out;
}

.exp-badge h2 {
  font-size: 35px;
  font-weight: 800;
  margin: 0;
}

.exp-badge p {
  font-size: 12px;
  margin: 0;
  text-transform: uppercase;
  font-weight: 700;
}

@keyframes floatAnim {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-15px);
  }
}

/* Content Side */
.about-content-right {
  padding-left: 30px;
}

.section-subtitle {
  color: var(--pono-teal);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 15px;
}

.about-feature-list {
  list-style: none;
  padding: 0;
  margin-top: 30px;
}

.about-feature-list li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  font-weight: 600;
  color: var(--pono-navy);
}

.about-feature-list li i {
  width: 35px;
  height: 35px;
  background: rgba(0, 174, 181, 0.1);
  color: var(--pono-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
}

/* --- About Content Redesign --- */
.about-content-right {
  padding-left: 30px;
}

/* Subtitle with line decoration */
.section-subtitle {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 800;
  color: #00aeb5;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.section-subtitle::after {
  content: "";
  width: 40px;
  height: 2px;
  background: #00aeb5;
}

/* Bold Modern Heading */
.light-heading {
  font-size: 3.5rem;
  font-weight: 800;
  color: #122438;
  line-height: 1.1;
  margin-bottom: 25px;
}

.accent-text {
  color: #0f4d90;
  position: relative;
  display: inline-block;
}

/* Fancy Medical Feature Grid */
.about-feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 15px;
  margin: 30px 0;
}

.feature-box {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: #f8fafc;
  border-radius: 15px;
  border: 1px solid #edf2f7;
  transition: all 0.3s ease;
}

.feature-box:hover {
  background: #ffffff;
  border-color: #00aeb5;
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0, 174, 181, 0.1);
}

.feature-box .icon-wrap {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00aeb5;
  font-size: 18px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.feature-box .text-wrap h5 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  color: #122438;
}

.feature-box .text-wrap p {
  font-size: 13px;
  margin: 0;
  color: #64748b;
}

/* Modern Button Fix */
.pono-btn-main {
  background: #0f4d90;
  color: white;
  padding: 18px 40px;
  border-radius: 100px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: 0.3s;
  border: none;
}

.pono-btn-main:hover {
  background: #0272db;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(2, 114, 219, 0.3);
}

/* CTA STARTS */
/* --- Medicine CTA Section --- */
.medicine-cta-area {
  padding: 100px 0;
}

.cta-banner-wrapper {
  position: relative;
  height: 450px;
  border-radius: 40px;
  overflow: hidden;
  background-image: url("https://images.unsplash.com/photo-1584308666744-24d5c474f2ae?q=80&w=2000&auto=format&fit=crop");
  /* Pharmacy Background */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px rgba(15, 77, 144, 0.2);
}

/* Dark Overlay for better text visibility */
.cta-banner-wrapper::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(15, 77, 144, 0.85) 0%,
    rgba(15, 77, 144, 0.2) 100%
  );
  z-index: 1;
}

.cta-content-box {
  position: relative;
  z-index: 2;
  padding-left: 60px;
  max-width: 600px;
  color: #ffffff;
}

/* Big Discount Badge */
.discount-bubble {
  background: #ff5e5e;
  color: white;
  display: inline-block;
  padding: 10px 25px;
  border-radius: 50px 50px 50px 0;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 10px 20px rgba(255, 94, 94, 0.3);
  animation: float 3s ease-in-out infinite;
}

.cta-content-box h2 {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 20px;
}

.cta-content-box p {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 35px;
  font-weight: 400;
}

/* Premium Button Styling */
.cta-btn-premium {
  background: #00aeb5;
  color: white;
  padding: 18px 45px;
  border-radius: 15px;
  font-weight: 800;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: 0.4s;
  border: none;
  box-shadow: 0 15px 30px rgba(0, 174, 181, 0.3);
}

.cta-btn-premium:hover {
  background: #ffffff;
  color: #0f4d90;
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Floating Animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .cta-banner-wrapper {
    height: auto;
    padding: 60px 20px;
    text-align: center;
  }

  .cta-content-box {
    padding-left: 0;
  }

  .cta-content-box h2 {
    font-size: 2.2rem;
  }
}

/* CTA ENDS */

/* OFFER STRTS */
/* --- Ultra Modern Centered CTA --- */
.premium-cta-wrapper {
  padding: 50px 0;
  background: #ffffff;
  position: relative;
  overflow: hidden;
}

.cta-glass-container {
  position: relative;
  background: #0f4d90;
  /* Deep Navy */
  border-radius: 50px;
  padding: 20px 40px;
  text-align: center;
  overflow: hidden;
  z-index: 1;
  /* box-shadow: 0 20px 80px rgba(15, 77, 144, 0.25); */
}

/* Background Design Elements */
.cta-glass-container::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -10%;
  width: 300px;
  height: 300px;
  background: rgba(0, 174, 181, 0.2);
  /* Teal Glow */
  filter: blur(100px);
  border-radius: 50%;
}

.cta-glass-container::after {
  content: "";
  position: absolute;
  bottom: -20%;
  right: -5%;
  width: 400px;
  height: 400px;
  background: url("https://www.transparenttextures.com/patterns/carbon-fibre.png");
  /* Subtle Pattern */
  opacity: 0.1;
}

/* Center Content */
.cta-inner-content {
  position: relative;
  z-index: 5;
  max-width: 850px;
  margin: 0 auto;
}

.offer-tag-v5 {
  background: rgba(0, 174, 181, 0.15);
  color: #00aeb5;
  padding: 10px 25px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 2px;
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 20px;
  border: 1px solid rgba(0, 174, 181, 0.3);
}

.cta-inner-content h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  /* Responsive Font */
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  margin-bottom: 25px;
  text-transform: capitalize;
}

.cta-inner-content h2 span {
  background: linear-gradient(to right, #00aeb5, #00f2fe);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-inner-content p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 45px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Advanced Button with Glow */
.cta-master-btn {
  background: #00aeb5;
  color: #ffffff;
  padding: 20px 50px;
  border-radius: 20px;
  font-size: 18px;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 20px 40px rgba(0, 174, 181, 0.4);
}

.cta-master-btn:hover {
  background: #ffffff;
  color: #0f4d90;
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.cta-master-btn i {
  transition: 0.3s;
}

.cta-master-btn:hover i {
  transform: translateX(5px);
}

/* Floating Elements for Uniqueness */
.floating-pills {
  position: absolute;
  width: 150px;
  opacity: 0.4;
  z-index: 2;
}

.pill-1 {
  top: 10%;
  left: 5%;
  animation: floatY 6s infinite ease-in-out;
}

.pill-2 {
  bottom: 10%;
  right: 5%;
  animation: floatY 8s infinite ease-in-out reverse;
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }

  50% {
    transform: translateY(-30px) rotate(10deg);
  }
}

@media (max-width: 768px) {
  .cta-glass-container {
    padding: 60px 20px;
    border-radius: 30px;
  }

  .cta-inner-content h2 {
    font-size: 2rem;
  }
}

/* OFFER ENDS */

/* Popular starts */
/* --- Popular Section Specific Touch --- */
.popular-section-bg {
  background-color: #fcfdfe;
  /* Trending se halka sa alag background */
  padding: 50px 0;
}

/* Card par subtle glow aur border touch */
.popular-card-wrapper .trending-card-v2 {
  border: 1px solid rgba(0, 174, 181, 0.1);
}

.popular-card-wrapper .trending-card-v2:hover {
  box-shadow: 0 25px 50px -12px rgba(15, 77, 144, 0.15);
  /* Navy blue tint shadow */
  border-color: #00aeb5;
}

/* Stock Badge: Ye popular items ke liye special touch hai */
.stock-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 174, 181, 0.1);
  color: #00aeb5;
  padding: 4px 10px;
  border-radius: 8px;
  font-size: 10px;
  font-weight: 800;
  z-index: 5;
  text-transform: uppercase;
}

/* Price tag color variation for Popular items */
.popular-card-wrapper .price-tag-v2 {
  color: #0f4d90;
  /* Navy for Popular, Teal was for Trending */
}

/* Tooltip button color change for variety */
.popular-card-wrapper .tooltip-btn:hover {
  background: #0f4d90;
}

/* Popular Ends */

/* --- NEW STYLES FOR LEFT SIDE ONLY --- */

.pono-visual-wrapper {
  position: relative;
  padding: 40px;
  /* Space for floating elements */
  z-index: 1;
}

/* 1. Main Image - Arch Shape */
.pono-img-main-box {
  width: 100%;
  height: 520px;
  border-radius: 260px 260px 20px 20px;
  /* Unique Arch Shape */
  overflow: hidden;
  position: relative;
  border: 8px solid #ffffff;
  box-shadow: 0 20px 50px rgba(15, 77, 144, 0.15);
  z-index: 2;
}

.pono-img-main {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.pono-visual-wrapper:hover .pono-img-main {
  transform: scale(1.05);
}

/* 2. Sub Image - Circular Pulse */
.pono-img-sub-box {
  position: absolute;
  bottom: 60px;
  right: 10px;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 6px solid #ffffff;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pono-img-sub {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Pulse Animation Effect */
.pono-pulse-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid #00aeb5;
  animation: pulse-ring 2s infinite;
  z-index: -1;
}

@keyframes pulse-ring {
  0% {
    transform: scale(1);
    opacity: 1;
  }

  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

/* 3. Floating Experience Badge */
.pono-experience-card {
  position: absolute;
  top: 80px;
  left: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px 30px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  z-index: 4;
  border-left: 5px solid #0f4d90;
  animation: floatVertical 4s ease-in-out infinite;
}

.exp-icon {
  width: 45px;
  height: 45px;
  background: #eef8f9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #00aeb5;
  font-size: 20px;
}

.exp-text h3 {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: #0f4d90;
  line-height: 1;
}

.exp-text span {
  font-size: 13px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
}

@keyframes floatVertical {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* 4. Background Decorative Elements */
.pono-bg-circle {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: linear-gradient(135deg, #e0f7fa 0%, #ffffff 100%);
  z-index: 0;
}

.pono-bg-dots {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 150px;
  height: 150px;
  background-image: radial-gradient(#00aeb5 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  z-index: 0;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .pono-visual-wrapper {
    padding: 0;
    margin-bottom: 50px;
    text-align: center;
  }

  .pono-img-main-box {
    height: 400px;
    width: 100%;
  }

  .pono-img-sub-box {
    width: 140px;
    height: 140px;
    bottom: -20px;
    right: 0;
  }

  .pono-experience-card {
    top: 20px;
    left: 0;
  }
}
/* --- Card Styles --- */
.trending-card-v2 {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid #f1f5f9;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trending-card-v2:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 174, 181, 0.15);
  transform: translateY(-8px);
  border-color: #00aeb5;
}

/* Badge */
.stock-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 174, 181, 0.08);
  color: #00aeb5;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  z-index: 5;
  text-transform: uppercase;
  pointer-events: none;
  letter-spacing: 0.5px;
}

/* --- OWL CAROUSEL --- */
.img-container-v2 {
  background: #f8fafc;
  border-radius: 15px;
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-owl {
  width: 100%;
  display: block;
}

.product-img-owl .item {
  height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-link {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
}

.product-img-owl img {
  max-width: 70%;
  max-height: 170px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
  transition: transform 0.5s ease;
}

.trending-card-v2:hover .product-img-owl img {
  transform: scale(1.1) rotate(2deg);
}

/* Owl Nav */
.product-img-owl .owl-nav {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 5px;
  opacity: 1;
  margin: 0 !important;
  pointer-events: none;
}

.product-img-owl .owl-nav button.owl-prev,
.product-img-owl .owl-nav button.owl-next {
  pointer-events: auto;
  width: 32px;
  height: 32px;
  background: rgba(255, 255, 255, 0.8) !important;
  border-radius: 50% !important;
  color: #0f4d90 !important;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 14px !important;
  transition: 0.3s;
  border: 1px solid #eef2f6 !important;
}

.product-img-owl .owl-nav button:hover {
  background: #0f4d90 !important;
  color: #fff !important;
  transform: scale(1.1);
}

/* Content */
.product-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title-v2 {
  font-size: 18px;
  font-weight: 800;
  color: #122438;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title-link {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

.product-title-link:hover {
  color: #00aeb5;
}

.product-desc-v2 {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex-grow: 1;
}

/* --- BOTTOM ROW --- */
.card-bottom-row {
  display: flex;
  justify-content: space-between;
  /* Read More Left, Arrow Right */
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #e2e8f0;
}

/* Read More Link Styling */
.read-more-link {
  font-size: 14px;
  font-weight: 700;
  color: #0f4d90;
  text-decoration: none;
  position: relative;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.read-more-link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: #00aeb5;
  transition: width 0.3s;
  position: absolute;
  bottom: -2px;
  left: 0;
}

.read-more-link:hover {
  color: #00aeb5;
}

.read-more-link:hover::after {
  width: 100%;
  /* Underline animation on hover */
}

/* Arrow Button */
.arrow-action-btn {
  background: #f0f7ff;
  color: var(--med-blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.4s;
  border: 1px solid #e0e7ff;
  cursor: pointer;
  transform: rotate(-45deg);
  text-decoration: none;
}

.arrow-action-btn:hover {
  background: #00aeb5;
  border-color: #00aeb5;
  color: white;
  transform: rotate(0deg) scale(1.1);
  box-shadow: 0 10px 20px rgba(0, 174, 181, 0.3);
}

/* TODO :PRODUCT DETAILS PAGE */
/* --- BREADCRUMB --- */
.pdp-breadcrumb {
  padding: 20px 0;
  background: var(--med-bg);
  margin-bottom: 40px;
}

.breadcrumb-item a {
  color: var(--med-text);
  text-decoration: none;
  font-size: 14px;
}

.breadcrumb-item.active {
  color: var(--med-blue);
  font-weight: 600;
}

/* --- PRODUCT GALLERY --- */
.pdp-gallery-wrap {
  position: sticky;
  top: 20px;
}

/* Main Image */
.pdp-main-img-box {
  background: #f8fafc;
  border: 1px solid var(--med-border);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 450px;
  margin-bottom: 20px;
  overflow: hidden;
}

.pdp-main-img {
  max-width: 90%;
  max-height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.pdp-main-img-box:hover .pdp-main-img {
  transform: scale(1.1);
  /* Zoom effect */
}

/* Thumbnails */
.pdp-thumbs-row {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.pdp-thumb-box {
  width: 80px;
  height: 80px;
  border: 2px solid var(--med-border);
  border-radius: 12px;
  padding: 5px;
  cursor: pointer;
  transition: 0.3s;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pdp-thumb-box:hover,
.pdp-thumb-box.active {
  border-color: var(--med-cyan);
  transform: translateY(-3px);
}

.pdp-thumb-box img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* --- PRODUCT INFO --- */
.pdp-title {
  font-size: 32px;
  font-weight: 800;
  color: #122438;
  margin-bottom: 10px;
}

.pdp-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  font-size: 14px;
}

.pdp-rating i {
  color: #ffc107;
  font-size: 12px;
}

.pdp-stock {
  color: #28a745;
  font-weight: 600;
  background: #e6fffa;
  padding: 4px 10px;
  border-radius: 5px;
}

.pdp-price {
  font-size: 28px;
  font-weight: 800;
  color: var(--med-blue);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.pdp-price del {
  font-size: 18px;
  color: #999;
  font-weight: 500;
}

.pdp-desc {
  line-height: 1.8;
  color: var(--med-text);
  margin-bottom: 10px;
  border-top: 1px dashed var(--med-border);
  border-bottom: 1px dashed var(--med-border);
  padding: 20px 0;
}

/* Quantity & Actions */
.pdp-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.qty-box {
  display: flex;
  align-items: center;
  border: 2px solid var(--med-border);
  border-radius: 50px;
  overflow: hidden;
}

.qty-btn {
  background: #fff;
  border: none;
  width: 40px;
  height: 45px;
  font-size: 16px;
  color: var(--med-blue);
  cursor: pointer;
  transition: 0.2s;
}

.qty-btn:hover {
  background: var(--med-bg);
}

.qty-input {
  width: 50px;
  text-align: center;
  border: none;
  font-weight: 700;
  color: #122438;
  outline: none;
}

.add-cart-btn {
  background: var(--med-blue);
  color: #fff;
  padding: 12px 35px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.add-cart-btn:hover {
  background: var(--med-cyan);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 174, 181, 0.3);
}

/* TODO : NEW BUTTOND STARTs */
.button-group {
  display: flex;
  gap: 5px;
  /* border: 1px solid red; */
}

button {
  border: 1px solid red;
  display: flex;
  align-items: center;
  padding: 10px 16px;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
  border: none;
  transition: background-color 0.3s ease;
}

.icon {
  height: 25px;
  width: 25px;
  overflow: hidden;
}

.icon .bi-telephone {
  height: 100%;
  width: 100%;
  object-fit: contain;
  color: black;
}

/* Outline Button */
.btn-outline {
  background-color: #fff;
  color: #333;
  font-weight: 700;
  border: 1px solid #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  /* border: 1px solid red; */
}

/* Filled Button */
.btn-filled {
  background: var(--med-green);
  color: #fff;
  padding: 12px 35px;
  font-weight: 700;
  border: none;
  transition: 0.3s;
  display: flex;
  align-items: center;
}

/* Hover Effects */
.btn-outline:hover {
  background-color: #0a2f4d;
  color: white;
}

.btn-outline:hover {
  background-color: #0a2f4d;
  color: white;
}

.btn-filled:hover {
  background-color: #0a2f4d !important;
}

/* TODO : NEW BUTTOND ENDS */

/* --- RELATED PRODUCTS (Reuse of Trending Card V2) --- */
.related-section {
  padding: 80px 0;
  background: #fcfdfe;
}

.section-header {
  margin-bottom: 40px;
}

.section-header h3 {
  font-weight: 800;
  color: #122438;
  font-size: 28px;
}

/* --- PREVIOUS CSS FOR CARDS (MANDATORY) --- */
.trending-card-v2 {
  background: #ffffff;
  border-radius: 20px;
  padding: 20px;
  position: relative;
  transition: all 0.4s ease;
  border: 1px solid #f1f5f9;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.trending-card-v2:hover {
  box-shadow: 0 20px 40px -10px rgba(0, 174, 181, 0.15);
  transform: translateY(-8px);
  border-color: var(--med-cyan);
}

.stock-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 174, 181, 0.08);
  color: var(--med-cyan);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 11px;
  font-weight: 800;
  z-index: 5;
  text-transform: uppercase;
  pointer-events: none;
}

.img-container-v2 {
  background: #f8fafc;
  border-radius: 15px;
  height: 220px;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img-owl {
  width: 100%;
  display: block;
}

.product-img-owl img {
  max-width: 70%;
  max-height: 170px;
  object-fit: contain;
  margin: 0 auto;
}

.product-content {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-title-v2 {
  font-size: 18px;
  font-weight: 800;
  color: #122438;
  margin: 0 0 8px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-title-link {
  text-decoration: none;
  color: inherit;
}

.product-desc-v2 {
  font-size: 13.5px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 15px;
  border-top: 1px dashed #e2e8f0;
}

.read-more-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--med-blue);
  text-decoration: none;
}

.arrow-action-btn {
  background: #f0f7ff;
  color: var(--med-blue);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  border: 1px solid #e0e7ff;
  cursor: pointer;
  transform: rotate(-45deg);
  text-decoration: none;
}

.arrow-action-btn:hover {
  background: var(--med-cyan);
  color: white;
  transform: rotate(0deg);
}

/* TODO : ABOUT */

.aura-section-wrapper {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

/* --- VISUAL SIDE (The Fixes) --- */
.aura-about-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  position: relative;
  z-index: 2;
}

.aura-visual-side {
  position: relative;
  padding-right: 50px;
  /* Optional: limit width of the whole left side to keep it compact */
  max-width: 550px;
  margin: 0 auto;
}

.aura-main-img-mask {
  border-radius: 40px 0 40px 0;
  overflow: hidden;
  box-shadow: var(--aura-shadow);
  position: relative;
  z-index: 2;

  /* --- KEY FIXES FOR HEIGHT --- */
  width: 100%;
  height: 500px; /* Fixed height for consistency */
  background-color: #eee; /* Placeholder color while loading */
}

.aura-main-img {
  width: 100%;
  height: 100%; /* Force image to fill the mask height */
  object-fit: cover; /* Ensures image covers area without stretching */
  object-position: center top; /* Focuses on the top/center of image */
  display: block;
  transition: transform 0.5s ease;
}

.aura-main-img-mask:hover .aura-main-img {
  transform: scale(1.05);
}

/* Experience Badge */
.aura-xp-badge {
  position: absolute;
  bottom: 40px; /* Moved up slightly inside the visual area */
  right: -20px; /* Pulled out for 3D effect */
  background: var(--aura-primary);
  color: var(--aura-white);
  padding: 30px 25px;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 70, 139, 0.3);
  z-index: 3;
  min-width: 160px;
  border: 4px solid var(--aura-white);
}

.aura-xp-number {
  display: block;
  font-size: 38px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 5px;
}

.aura-xp-text {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  line-height: 1.4;
}

/* Background Blob */
.aura-blob-bg {
  position: absolute;
  top: -30px;
  left: -30px;
  width: 100%;
  height: 100%;
  background: var(--aura-accent);
  border-radius: 40px 0 40px 0;
  z-index: 1;
  transform: rotate(-3deg);
}

/* --- CONTENT SIDE --- */
.aura-content-side {
  padding-left: 30px;
}

.aura-subtitle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--aura-primary);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 14px;
  margin-bottom: 20px;
  background: rgba(0, 70, 139, 0.1);
  padding: 8px 20px;
  border-radius: 50px;
}

.aura-heading {
  font-size: 42px;
  font-weight: 800;
  color: var(--aura-text);
  line-height: 1.2;
  margin-bottom: 25px;
}

.aura-heading span {
  color: var(--aura-primary);
  position: relative;
  display: inline-block;
}

.aura-heading span::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(0, 70, 139, 0.15);
  z-index: -1;
}

.aura-desc {
  color: var(--aura-gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
  border-left: 3px solid var(--aura-primary);
  padding-left: 20px;
}

.aura-checklist {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.aura-check-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--aura-text);
}

.aura-icon-box {
  width: 30px;
  height: 30px;
  background: var(--aura-accent);
  color: var(--aura-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 14px;
  flex-shrink: 0;
}

.aura-btn {
  background: var(--aura-primary);
  color: var(--aura-white);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 10px 25px rgba(0, 70, 139, 0.25);
}

.aura-btn:hover {
  background: var(--aura-primary-dark);
  transform: translateY(-3px);
  color: var(--aura-white);
}

/* --- STATS STRIP --- */
.aura-stats-strip {
  margin-top: 80px;
  background: var(--aura-white);
  border-radius: 20px;
  box-shadow: var(--aura-shadow);
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 5;
}

.aura-stat-item {
  display: flex;
  align-items: center;
  gap: 20px;
  position: relative;
  flex: 1;
  justify-content: center;
}

.aura-stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: #eee;
}

.aura-stat-icon {
  font-size: 40px;
  color: #b0c4de;
  transition: 0.3s;
}

.aura-stat-item:hover .aura-stat-icon {
  color: var(--aura-primary);
  transform: scale(1.1);
}

.aura-stat-content h3 {
  font-size: 32px;
  font-weight: 800;
  color: var(--aura-primary);
  margin: 0;
  line-height: 1;
}

.aura-stat-content p {
  margin: 0;
  color: var(--aura-gray);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
}

/* --- VIDEO STRIP --- */
.aura-video-strip {
  margin-top: 50px;
  height: 400px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  background: url("assets/img/video/01.jpg") no-repeat center center/cover;
}

.aura-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 70, 139, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.4s;
}

.aura-video-strip:hover .aura-video-overlay {
  background: rgba(0, 70, 139, 0.4);
}

.aura-play-btn {
  width: 80px;
  height: 80px;
  background: var(--aura-white);
  color: var(--aura-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.aura-play-btn::before,
.aura-play-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 2px solid var(--aura-white);
  animation: auraPulse 2s infinite;
}
.aura-play-btn::after {
  animation-delay: 0.5s;
}

@keyframes auraPulse {
  0% {
    width: 100%;
    height: 100%;
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@media (max-width: 991px) {
  .aura-visual-side {
    padding-right: 0;
    margin-bottom: 50px;
    max-width: 100%;
  }
  .aura-content-side {
    padding-left: 0;
  }
  .aura-xp-badge {
    right: 0;
    bottom: -20px;
  }
  .aura-stats-strip {
    flex-wrap: wrap;
    gap: 30px;
  }
  .aura-stat-item {
    flex: 50%;
    min-width: 50%;
    justify-content: flex-start;
  }
  .aura-stat-item::after {
    display: none;
  }
  .aura-checklist {
    grid-template-columns: 1fr;
  }
}
/* --- MISSION & VISION SECTION STYLES --- */

.med-mv-wrapper {
  margin-top: 80px;
}

.med-mv-card {
  position: relative;
  padding: 40px;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid #f0f0f0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hover Lift Effect */
.med-mv-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 70, 139, 0.15);
}

/* 1. Mission Card Style (Teal/Accent Theme) */
.mission-card {
  background: linear-gradient(135deg, #ffffff 0%, #f0fdfe 100%);
  border-bottom: 5px solid var(--z-med-cyan);
}
.mission-card .med-mv-icon {
  background: rgba(0, 174, 181, 0.1);
  color: var(--z-med-cyan);
}

/* 2. Vision Card Style (Blue/Primary Theme) */
.vision-card {
  background: linear-gradient(135deg, #ffffff 0%, #f4f9ff 100%);
  border-bottom: 5px solid var(--z-med-primary);
}
.vision-card .med-mv-icon {
  background: rgba(0, 70, 139, 0.1);
  color: var(--z-med-primary);
}

/* Icons */
.med-mv-icon {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 25px;
  transition: 0.3s;
}
.med-mv-card:hover .med-mv-icon {
  transform: scale(1.1) rotate(5deg);
}

/* Typography */
.med-mv-content h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--z-med-dark);
  margin-bottom: 15px;
}

.med-mv-content p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--z-med-text);
  margin-bottom: 20px;
}

/* Slogan Box */
.med-slogan {
  display: inline-block;
  background: var(--z-med-primary);
  color: #fff;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1px;
  margin-top: auto;
  box-shadow: 0 5px 15px rgba(0, 70, 139, 0.3);
}
.med-slogan i {
  font-size: 10px;
  opacity: 0.7;
  vertical-align: middle;
}

/* Background Large Icon (Decoration) */
.med-mv-bg-icon {
  position: absolute;
  bottom: -20px;
  right: -20px;
  font-size: 150px;
  opacity: 0.05;
  color: var(--z-med-dark);
  pointer-events: none;
  transition: 0.5s;
}

.med-mv-card:hover .med-mv-bg-icon {
  transform: scale(1.2) rotate(-10deg);
  opacity: 0.1;
}

/* Responsive */
@media (max-width: 768px) {
  .med-mv-card {
    padding: 30px 20px;
  }
  .med-mv-content h3 {
    font-size: 24px;
  }
}



/* TODO :OUR PRODUCTS */
.shop-wrapper {
        padding: 60px 0;
      }

      .shop-sidebar {
        background: var(--white);
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
        position: sticky;
        top: 20px;
      }

      .widget-title {
        font-size: 18px;
        font-weight: 800;
        color: var(--dark);
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--border);
        position: relative;
      }

      .widget-title::after {
        content: "";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 40px;
        height: 2px;
        background: var(--accent);
      }

      .search-box {
        position: relative;
        margin-bottom: 30px;
      }

      .search-box input {
        width: 100%;
        padding: 12px 45px 12px 15px;
        border: 1px solid var(--border);
        border-radius: 12px;
        outline: none;
        transition: 0.3s;
        background: #f9f9f9;
      }

      .search-box input:focus {
        border-color: var(--accent);
        background: #fff;
        box-shadow: 0 0 0 4px rgba(0, 174, 181, 0.1);
      }

      .search-box i {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        color: #999;
      }

      .cat-list {
        display: flex;
        flex-direction: column;
        gap: 10px;
      }

      .cat-btn {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px;
        background: transparent;
        border: 1px solid var(--border);
        border-radius: 10px;
        cursor: pointer;
        transition: 0.3s;
        font-weight: 600;
        color: #666;
      }

      .cat-btn:hover,
      .cat-btn.active {
        background: var(--accent);
        color: #fff;
        border-color: var(--accent);
        transform: translateX(5px);
      }

      .cat-count {
        background: rgba(0, 0, 0, 0.05);
        padding: 2px 8px;
        border-radius: 50px;
        font-size: 12px;
      }

      .cat-btn:hover .cat-count,
      .cat-btn.active .cat-count {
        background: rgba(255, 255, 255, 0.2);
        color: #fff;
      }

      .price-group {
        display: flex;
        gap: 10px;
        align-items: center;
        margin-bottom: 15px;
      }

      .price-field {
        width: 100%;
        padding: 10px;
        border: 1px solid var(--border);
        border-radius: 8px;
        text-align: center;
        font-weight: 700;
        color: var(--primary);
      }

      .apply-btn {
        width: 100%;
        padding: 12px;
        background: var(--dark);
        color: #fff;
        border: none;
        border-radius: 10px;
        font-weight: 700;
        transition: 0.3s;
        cursor: pointer;
      }

      .apply-btn:hover {
        background: var(--accent);
      }

      .shop-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        background: var(--white);
        padding: 15px 25px;
        border-radius: 15px;
        margin-bottom: 30px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
      }

      .sort-dropdown {
        padding: 10px 15px;
        border: 1px solid var(--border);
        border-radius: 8px;
        outline: none;
        color: var(--dark);
        font-weight: 600;
        cursor: pointer;
      }

      .prod-card {
        background: var(--white);
        border-radius: 20px;
        padding: 15px;
        position: relative;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        border: 1px solid transparent;
        height: 100%;
        display: flex;
        flex-direction: column;
      }

      .prod-card:hover {
        box-shadow: 0 20px 40px -10px rgba(0, 174, 181, 0.2);
        transform: translateY(-10px);
        border-color: var(--accent);
      }

      .prod-img-box {
        height: 270px;
        width: 100%;
        background: #f8fafc;
        border-radius: 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
        /* margin-bottom: 15px; */
      }

      .prod-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: 0.5s;
        filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.1));
      }

      .prod-card:hover .prod-img {
        transform: scale(1.15) rotate(3deg);
      }

      .prod-actions {
        position: absolute;
        top: 15px;
        right: -60px;
        display: flex;
        flex-direction: column;
        gap: 10px;
        transition: 0.4s;
        z-index: 10;
      }

      .prod-card:hover .prod-actions {
        right: 15px;
      }

      .action-icon {
        width: 40px;
        height: 40px;
        background: #fff;
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--dark);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        text-decoration: none;
        transition: 0.3s;
      }

      .action-icon:hover {
        background: var(--accent);
        color: #fff;
      }

      .prod-badge {
        position: absolute;
        top: 15px;
        left: 15px;
        background: #ff4757;
        color: #fff;
        padding: 5px 12px;
        border-radius: 8px;
        font-size: 11px;
        font-weight: 800;
        text-transform: uppercase;
        box-shadow: 0 5px 15px rgba(255, 71, 87, 0.4);
        z-index: 5;
      }

      .prod-info {
        flex-grow: 1;
        display: flex;
        flex-direction: column;
      }

      .prod-category {
        font-size: 12px;
        color: #888;
        text-transform: uppercase;
        font-weight: 600;
        letter-spacing: 0.5px;
      }

      .prod-title {
        font-size: 17px;
        font-weight: 700;
        color: var(--dark);
        margin: 8px 0;
        line-height: 1.4;
      }

      .prod-footer {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: auto;
        padding-top: 15px;
        border-top: 1px dashed var(--border);
      }

      .price-wrap del {
        color: #aaa;
        font-size: 13px;
        margin-right: 5px;
        font-weight: 500;
      }

      .price-wrap span {
        color: var(--accent);
        font-size: 20px;
        font-weight: 800;
      }

      .add-btn {
        width: 45px;
        height: 45px;
        border-radius: 12px;
        background: var(--dark);
        color: #fff;
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        transition: 0.3s;
        cursor: pointer;
      }

      .add-btn:hover {
        background: var(--accent);
        transform: rotate(90deg);
      }

      @media (max-width: 991px) {
        .shop-sidebar {
          position: static;
          margin-bottom: 30px;
        }
      }




      /* --- CONTACT SECTION --- */
      .nova-section-wrapper {
        position: relative;
        padding-top: 80px;
        padding-bottom: 120px;
        overflow: hidden;
        z-index: 1;
      }

      /* The Blue Curve Background */
      .nova-bg-curve {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 45%; /* Covers top half */
        background: var(--nova-primary);
        border-bottom-right-radius: 100px;
        border-bottom-left-radius: 0;
        z-index: -1;
      }
      /* Abstract Pattern on Blue */
      .nova-bg-pattern {
        position: absolute;
        top: 0;
        right: 0;
        width: 100%;
        height: 100%;
        background-image: radial-gradient(
          rgba(255, 255, 255, 0.1) 1px,
          transparent 1px
        );
        background-size: 30px 30px;
        opacity: 0.6;
      }

      /* --- HEADER --- */
      .nova-header {
        text-align: center;
        margin-bottom: 60px;
        color: var(--nova-surface);
      }
      .nova-title {
        font-size: 48px;
        font-weight: 800;
        margin-bottom: 15px;
        letter-spacing: -1px;
      }
      .nova-subtitle {
        font-size: 18px;
        opacity: 0.9;
        font-weight: 300;
        max-width: 600px;
        margin: 0 auto;
      }

      /* --- INFO CARDS (Floating) --- */
      .nova-cards-container {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        margin-bottom: 50px;
      }

      .nova-card {
        background: var(--nova-surface);
        padding: 40px 30px;
        border-radius: var(--nova-radius);
        text-align: center;
        box-shadow: var(--nova-shadow-xl);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        position: relative;
        overflow: hidden;
        border: 1px solid rgba(255, 255, 255, 0.5);
      }

      /* Hover Effect: Lift Up */
      .nova-card:hover {
        transform: translateY(-15px);
      }

      /* Blue Top Line Decoration */
      .nova-card::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 6px;
        background: linear-gradient(
          90deg,
          var(--nova-primary),
          var(--nova-accent)
        );
        opacity: 0;
        transition: 0.3s;
      }
      .nova-card:hover::before {
        opacity: 1;
      }

      /* Icons */
      .nova-icon-circle {
        width: 70px;
        height: 70px;
        margin: 0 auto 25px;
        border-radius: 50%;
        background: rgba(0, 70, 139, 0.08);
        color: var(--nova-primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 26px;
        transition: 0.3s;
      }

      /* Active Card Style (First Card) */
      .nova-card.active {
        background: var(--nova-primary);
        color: var(--nova-surface);
      }
      .nova-card.active .nova-icon-circle {
        background: rgba(255, 255, 255, 0.15);
        color: var(--nova-surface);
        border: 1px solid rgba(255, 255, 255, 0.2);
      }
      .nova-card.active h4,
      .nova-card.active p {
        color: var(--nova-surface) !important;
      }

      .nova-card h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 10px;
        color: var(--nova-text-main);
      }
      .nova-card p {
        font-size: 15px;
        color: var(--nova-text-muted);
        margin: 0;
        line-height: 1.5;
        font-weight: 500;
      }

      /* --- SPLIT LAYOUT (Map + Form) --- */
      .nova-split-wrapper {
        background: var(--nova-surface);
        border-radius: var(--nova-radius);
        box-shadow: var(--nova-shadow-xl);
        overflow: hidden;
        display: flex;
        flex-wrap: wrap;
        min-height: 600px; /* Fixed height for clean look */
      }

      /* Map Side */
      .nova-map-side {
        flex: 0 0 45%;
        position: relative;
        background: #e2e8f0;
      }
      .nova-map-frame {
        width: 100%;
        height: 100%;
        border: 0;
        filter: grayscale(100%);
        transition: 0.5s;
      }
      .nova-map-side:hover .nova-map-frame {
        filter: grayscale(0%);
      }

      /* Form Side */
      .nova-form-side {
        flex: 0 0 55%;
        padding: 60px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      /* Form Styles */
      .nova-form-row {
        display: flex;
        gap: 20px;
        margin-bottom: 25px;
      }
      .nova-form-group {
        width: 100%;
        position: relative;
      }
      .nova-form-group.full {
        margin-bottom: 25px;
      }

      .nova-label {
        font-size: 14px;
        font-weight: 700;
        color: var(--nova-text-main);
        margin-bottom: 8px;
        display: block;
      }
      .nova-label span {
        color: #ef4444;
      }

      .nova-input {
        width: 100%;
        padding: 16px 20px;
        background: #f8fafc;
        border: 2px solid #e2e8f0;
        border-radius: 12px;
        font-size: 15px;
        color: var(--nova-text-main);
        transition: all 0.3s;
        font-weight: 500;
      }

      .nova-input:focus {
        background: #fff;
        border-color: var(--nova-primary);
        box-shadow: 0 0 0 4px rgba(0, 70, 139, 0.1);
        outline: none;
      }

      /* Button */
      .nova-btn {
        width: 100%;
        padding: 18px;
        background: var(--nova-primary);
        color: #fff;
        border: none;
        border-radius: 12px;
        font-size: 16px;
        font-weight: 700;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0, 70, 139, 0.3);
        position: relative;
        overflow: hidden;
      }

      .nova-btn:hover {
        background: var(--nova-primary-dark);
        transform: translateY(-2px);
        box-shadow: 0 15px 30px rgba(0, 70, 139, 0.4);
      }

      /* --- RESPONSIVE --- */
      @media (max-width: 991px) {
        .nova-section-wrapper {
          padding-top: 60px;
        }
        .nova-cards-container {
          grid-template-columns: 1fr;
          gap: 20px;
        }
        .nova-split-wrapper {
          flex-direction: column-reverse;
        }
        .nova-map-side {
          height: 400px;
        }
        .nova-form-side {
          padding: 40px 20px;
        }
        .nova-form-row {
          flex-direction: column;
          gap: 25px;
        }
        .nova-bg-curve {
          height: 70%;
          border-bottom-right-radius: 50px;
        }
      }/* bulk */
 .bulk-form {
        background: #fff;
        border-radius: 10px;
        padding: 30px;
        max-width: 900px;
        margin: 40px auto;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    }

    .form-section-title {
        font-size: 1.2rem;
        font-weight: 600;
        margin-bottom: 15px;
        color: #343a40;
        border-bottom: 1px solid #dee2e6;
        padding-bottom: 5px;
    }

    .form-label i {
        margin-right: 5px;
        color: #0d6efd;
    }
    .section-title .title {
  font-size: 36px;
  font-weight: 800;
  color: #122438;
}.section-title {
  margin-bottom: 50px;
}
/* bannerrr cssss */
z-med-hero-wrapper {
    background-color: #f8fbff;
    position: relative;
    overflow: hidden;
    height: 100dvh; /* Keep section height consistent */
}

.z-med-hero-img {
    width: 100%;
    height: 100dvh;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.z-med-hero-img > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* opacity: 0.8; Optional: makes text easier to read */
}

.z-med-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #122438;
    line-height: 1.2;
    margin-bottom: 20px;
}

.z-med-heading span {
    color: var(--med-green);
}

.z-med-text {
    font-size: 1.1rem;
    color: #50667a;
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 35px;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-primary-med {
    display: inline-block;
    background: #005e9e;
    color: white;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.btn-primary-med:hover {
    background: #00aeb5;
    color: white;
}

.btn-outline-med {
    display: inline-block;
    border: 2px solid #005e9e;
    color: #005e9e;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.3s;
}

.hero-accent-circle {
    position: absolute;
    width: 400px;
    height: 400px;
    background: rgba(0, 174, 181, 0.05);
    border-radius: 50%;
    top: 50%;
    right: -100px;
    transform: translateY(-50%);
    z-index: 1;
}

@media (max-width: 991px) {
    .z-med-heading {
        font-size: 2.5rem;
    }
}.z-med-blob {
    width: 520px;
    height: 520px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.z-med-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;   /* IMPORTANT */
}.z-med-btn-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.z-btn-primary {
    background: #005e9e;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.z-btn-primary:hover {
    background: #005e9e;
    color: #fff;
}

.z-btn-outline {
    border: 2px solid #005e9e;
    color: #005e9e;
    padding: 10px 26px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.z-btn-outline:hover {
    background: #005e9e;
    color: #fff;
}
