  :root
{
    --primary: #670806;
    --secondary: #7a0910;
    --accent: #2a7d5f;
    --light: #f5f9ff;
    --white: #ffffff;
    --text: #4b5563;
    --heading: #61080d;
    --gradient-main: linear-gradient(135deg, #650a0e 0%, #59080e 45%, #2a7d5f 100%);
    --gradient-soft: linear-gradient(180deg, #f8fbff 0%, #eef5fc 100%);
    --shadow-lg: 0 25px 60px rgba(13, 59, 110, .12);
    --shadow-md: 0 15px 40px rgba(13, 59, 110, .08);
    --radius-xl: 32px;
    --radius-lg: 24px;
    --white: #ffffff;
    --off-white: #f8f9fb;
    --blue-deep: #670806;
    --blue-mid: #701513;
    --blue-light: #d6e8f7;
    --blue-pale: #eef5fc;
    --green: #2a7d5f;
    --green-light: #e3f2ec;
    --text-dark: #290a09;
    --text-mid: #374151;
    --text-muted: #6b7280;
    --border: #e5edf5;
    --shadow-sm: 0 2px 12px rgba(13,59,110,0.07);
    --shadow-md: 0 8px 32px rgba(13,59,110,0.11);
    --shadow-lg: 0 20px 60px rgba(13,59,110,0.15);
    --deep-blue: #3b0e0d;
    --mid-blue: #930a08;
    --pale-blue: #eef5fc;
    --light-blue: #d6e8f7;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }








  /* WhatsApp Sticky Button */
.whatsapp-sticky{
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 9999;
    transition: 0.3s ease;
    animation: whatsappPulse 1.5s infinite;
}

.whatsapp-sticky:hover{
    transform: scale(1.1);
    background: #1ebe5d;
    color: #fff;
}

@keyframes whatsappPulse{
    0%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0.6);
    }
    70%{
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
/* HEADER */
/* ===== TOPBAR ===== */
.topbar {
    background: #03034b;
    color: #ffffff;
    font-size: 14px;
    padding: 8px 0;
    display: none !important; /* Hidden by default, shown on larger screens */
}

.topbar a {
    color: #fff;
    margin-right: 15px;
    transition: 0.3s;
}

.topbar a:hover {
    color: #ffc107;
}

/* ===== NAVBAR ===== */
.custom-navbar {
    background: #fff;
    transition: all 0.4s ease;
    padding: 15px 0;
}

/* Sticky Shrink Effect */
.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Nav Links */
.navbar-nav .nav-link {
    font-weight: 900;
    color: #000;
    margin-left: 79px;
    transition: 0.3s;
    text-transform: uppercase;
    font-size: 15px;
}

.navbar-nav .nav-link:hover {
    color: #ffc107;
}

/* Logo */
.navbar-brand {
    font-weight: bold;
    font-size: 22px;
    width: 30%;
}

.navbar-brand img {
    width: 100% !important;
}

/* Toggle Button Style */
.navbar-toggler {
    border: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Product Popup */
.product-dropdown {
    position: relative;
}

.product-popup {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 233px;
    background: #fff;
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: 0.3s ease;
    z-index: 999;
}

.product-popup a {
    display: block;
    padding: 10px 0px !important;
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
    text-transform: uppercase !important;
}

.product-popup a:hover {
    background: #f3f3f3;
}

/* Show Popup on Hover */
.product-dropdown:hover .product-popup {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}








  /* ─── HERO ─── */
  /* ================================
   PREMIUM PHARMA HERO SECTION
================================= */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:wght@500;600;700&display=swap');

:root{
  --primary:#00c2ff;
  --secondary:#00ffcc;
  --dark:#071428;
  --white:#ffffff;
}

/* Carousel Main */
#heroCarousel{
  position: relative;
  overflow: hidden;
}

#heroCarousel .carousel-item{
  /* height: 100vh; */
  /* min-height: 700px; */
  position: relative;
}

#heroCarousel .carousel-item::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

/* Content */
.carousel-content{
  position: relative;
  z-index: 5;
  padding-top: 100px;
  animation: fadeUp 1s ease;
}

/* Premium Glass Pill */
.hero-pill{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 60px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  color: rgba(255,255,255,0.85);
  font-size: 0.78rem;
  font-family: 'Outfit', sans-serif;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.hero-pill span{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--secondary);
  box-shadow: 0 0 12px var(--secondary);
}

/* Heading Style */
.carousel-content h1{
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 6vw, 5.8rem);
  font-weight: 700;
  line-height: 1.05;
  color: white;
  margin-bottom: 25px;
  letter-spacing: -2px;
}

.carousel-content h1 em{
  color: #84e1ff;
  font-style: normal;
}

.text-primary-gradient{
  background: linear-gradient(
    90deg,
    #00d0ff,
    #00ffb3
  );
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Paragraph */
.carousel-content p{
  font-family: 'Outfit', sans-serif;
  font-size: 1.08rem;
  line-height: 1.9;
  font-weight: 300;
  color: rgba(255,255,255,0.78);
  max-width: 720px;
}

/* Buttons */
.hero-buttons{
  margin-top: 35px;
}

.hero-buttons .btn{
  padding: 15px 34px;
  border-radius: 60px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: all 0.35s ease;
}

/* Primary Button */
.btn-primary{
  background: linear-gradient(
    135deg,
    #009dff,
    #00e0ff
  );
  border: none;
  color: white;
  box-shadow: 0 12px 30px rgba(0,180,255,0.35);
}

.btn-primary:hover{
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(0,180,255,0.5);
}

/* Outline Button */
.btn-outline-light{
  border: 1px solid rgba(255,255,255,0.35);
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover{
  background: white;
  color: #000;
  transform: translateY(-4px);
}

/* Care List */
.care-list{
  margin-top: 25px;
}

.care-list li{
  font-family: 'Outfit', sans-serif;
  font-size: 1.02rem;
  margin-bottom: 14px;
  color: rgba(255,255,255,0.88);
  transition: all 0.35s ease;
}

.care-list li i{
  color: #00ffc8;
}

.care-list li:hover{
  transform: translateX(12px);
  color: #00eaff;
}

/* Trust Badges */
.trust-badges-overlay{
  position: absolute;
  bottom: 35px;
  width: 100%;
  z-index: 20;
}

.badge-item{
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(18px);
  padding: 14px 28px;
  border-radius: 18px;
  color: white;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  box-shadow: 0 12px 35px rgba(0,0,0,0.28);
  transition: all 0.3s ease;
}

.badge-item:hover{
  transform: translateY(-5px);
  background: rgba(255,255,255,0.12);
}

.badge-item .icon{
  font-size: 1.2rem;
}

/* Carousel Indicators */
.carousel-indicators button{
  width: 12px !important;
  height: 12px !important;
  border-radius: 50%;
  margin: 0 6px;
  background-color: rgba(255,255,255,0.5);
  border: none;
}

.carousel-indicators .active{
  background: #00d9ff;
  transform: scale(1.2);
}

/* Animation */
@keyframes fadeUp{
  from{
    opacity: 0;
    transform: translateY(40px);
  }
  to{
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media(max-width:768px){

  .carousel-content{
    text-align: center;
    align-items: center !important;
  }

  .carousel-content h1{
    font-size: 3rem;
  }

  .carousel-content p{
    font-size: 0.95rem;
  }

  .hero-buttons{
    justify-content: center;
  }

  .trust-badges-overlay{
    bottom: 15px;
  }

  .badge-item{
    padding: 10px 18px;
    font-size: 0.82rem;
  }
}






  /* ─── SECTION WRAPPER ─── */
  section { padding: 56px 60px !important; }
  .section-label {
    font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase; color: var(--green);
    margin-bottom: 14px; display: block;
  }
  .section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 500; line-height: 1.2; color: var(--blue-deep);
    letter-spacing: -0.01em;
  }
  .section-sub {
    font-size: 1rem; color: var(--text-muted); line-height: 1.7;
    max-width: 520px; margin-top: 14px; font-weight: 300;
  }

  /* ─── ABOUT ─── */
  .about { background: url('./img/about-bg.jpg') !important; 
    background-size: cover !important; background-position: center !important;
    width: 100%; min-height: 500px; position: relative !important;
    background-repeat: no-repeat !important;
}
  .about-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .about-img-wrap { position: relative; border-radius: 16px; overflow: hidden; }
 .about-img-wrap img {
    width: 100%;
    /* height: 325px; */
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

  .about-badge {
    position: absolute; top: 24px; right: -20px;
    background: var(--blue-deep); color: #fff;
    padding: 14px 22px; border-radius: 12px;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem; font-weight: 500; line-height: 1.3;
    box-shadow: var(--shadow-md); text-align: center;
  }
  .about-badge strong { display: block; font-size: 1.7rem; font-weight: 600; color: #93c5fd; }

  .about-content { padding: 8px 0; }
  .about-content .section-sub { max-width: 100%; margin-bottom: 28px; }

  .about-stats {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px;
  }
  .stat-box {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 12px; padding: 20px 18px; text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .stat-box .num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem; font-weight: 600; color: var(--blue-deep); display: block;
  }
  .stat-box .lbl { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; display: block; }

  /* ─── PRODUCTS ─── */
  .products { background: var(--white); }
  .products-header { max-width: 1200px; margin: 0 auto 48px; }

  .products-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  }
  .product-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, box-shadow 0.3s; cursor: pointer;
  }
  .product-card:hover { transform: translateY(-6px) scale(1.012); box-shadow: var(--shadow-md); }
  .product-card:hover .product-img img { transform: scale(1.07); }

  .product-img { height: 200px; overflow: hidden; background: var(--blue-pale); }
  .product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  }
  .product-info { padding: 20px 18px 22px; }
  .product-tag {
    display: inline-block; background: var(--green-light); color: var(--green);
    font-size: 0.7rem; font-weight: 600; text-transform: uppercase;
    letter-spacing: 0.08em; padding: 3px 10px; border-radius: 100px; margin-bottom: 10px;
  }
  .product-info h3 { font-size: 0.95rem; font-weight: 600; color: var(--blue-deep); margin-bottom: 6px; }
  .product-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; }

  /* ─── WHY CHOOSE US ─── */
  .why {
    position: relative; overflow: hidden;
    background: url('https://images.unsplash.com/photo-1581093458791-9f3c3900df4b?w=1600&q=80') center/cover no-repeat;
  }
  .why::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(8,30,63,0.93) 0%, rgba(13,59,110,0.85) 100%);
  }
  .why-inner {
    position: relative; z-index: 1;
    max-width: 1200px; margin: 0 auto;
  }
  .why-inner .section-title { color: #fff; }
  .why-inner .section-label { color: #6ee7b7; }
  .why-inner .section-sub { color: rgba(255,255,255,0.65); }

  .why-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 52px;
  }
  .why-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.13);
    backdrop-filter: blur(10px);
    border-radius: 14px; padding: 32px 28px;
    transition: background 0.3s;
  }
  .why-card:hover { background: rgba(255,255,255,0.12); }

  .why-icon {
    width: 48px; height: 48px; border-radius: 12px;
    background: rgba(147,197,253,0.15); border: 1px solid rgba(147,197,253,0.25);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 20px;
  }
  .why-card h4 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 10px; }
  .why-card p { font-size: 0.85rem; color: rgba(255,255,255,0.6); line-height: 1.65; }

  /* ─── HUMAN IMPACT ─── */
  .impact { background: var(--off-white); }
  .impact-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  }
  .impact-content .section-sub { max-width: 100%; margin-bottom: 36px; }
  .impact-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem; font-weight: 400; line-height: 1.3;
    color: var(--blue-deep); margin-bottom: 32px; font-style: italic;
  }
  .impact-countries {
    display: flex; align-items: center; gap: 16px;
    padding: 18px 22px;
    background: var(--white); border-radius: 12px;
    border: 1px solid var(--border); box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
  }
  .impact-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem; font-weight: 600; color: var(--blue-deep); line-height: 1;
  }
  .impact-num-label { font-size: 0.85rem; color: var(--text-muted); line-height: 1.4; font-weight: 400; }

  .impact-images {
    display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  }
  .impact-images img {
    width: 100%; object-fit: cover; border-radius: 12px;
    box-shadow: var(--shadow-sm);
  }
  .impact-images img:first-child { height: 350px; grid-row: span 2; }
  .impact-images img:not(:first-child) { height: 170px; }

  /* ─── TESTIMONIALS ─── */
  .testimonials { background: var(--white); }
  .testimonials-header { max-width: 1200px; margin: 0 auto 48px; }
  .testi-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  }
  .testi-card {
    background: var(--white); border: 1px solid var(--border);
    border-radius: 14px; padding: 30px 26px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.3s;
  }
  .testi-card:hover { box-shadow: var(--shadow-md); }
  .testi-stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
  .testi-card p {
    font-size: 0.92rem; line-height: 1.7; color: var(--text-mid);
    font-weight: 300; margin-bottom: 22px; font-style: italic;
  }
  .testi-person { display: flex; align-items: center; gap: 14px; }
  .testi-person img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; }
  .testi-name { font-size: 0.875rem; font-weight: 600; color: var(--blue-deep); }
  .testi-role { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

  /* ─── CTA ─── */
  .cta-section {
    position: relative; overflow: hidden;
    background: url('https://images.unsplash.com/photo-1551601651-2a8555f1a136?w=1600&q=80') center/cover no-repeat;
  }
  .cta-section::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(90deg, rgba(8,30,63,0.92) 0%, rgba(8,30,63,0.60) 100%);
  }
  .cta-inner {
    position: relative; z-index: 1;
    max-width: 680px;
  }
  .cta-inner .section-label { color: #6ee7b7; }
  .cta-inner h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.2rem);
    color: #fff; font-weight: 400; line-height: 1.15; margin-bottom: 20px; letter-spacing: -0.01em;
  }
  .cta-inner p { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.7; margin-bottom: 36px; font-weight: 300; }
  .cta-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
  .btn-white {
    background: #fff; color: var(--blue-deep);
    padding: 14px 32px; border-radius: 7px;
    font-size: 0.9rem; font-weight: 600; text-decoration: none;
    transition: all 0.2s;
  }
  .btn-white:hover { background: var(--blue-light); transform: translateY(-2px); }
  .btn-ghost {
    background: transparent; color: #fff;
    padding: 14px 32px; border-radius: 7px;
    font-size: 0.9rem; font-weight: 500; text-decoration: none;
    border: 2px solid rgba(255,255,255,0.35); transition: all 0.2s;
  }
  .btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.6); }

  /* ─── FOOTER ─── */
footer {
    background: #83142c;
    color: rgba(255, 255, 255, 0.75);
    padding: 64px 60px 36px;
}
  .footer-grid {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .footer-brand .logo { color: #fff; margin-bottom: 14px; display: inline-flex; }
  .footer-brand p { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.55); max-width: 260px; font-weight: 300; }
  .footer-certifs {
    display: flex; gap: 10px; flex-wrap: wrap; margin-top: 20px;
  }
  .certif-badge {
    background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7); font-size: 0.72rem; font-weight: 500;
    padding: 5px 12px; border-radius: 100px; letter-spacing: 0.04em;
  }
  .footer-col h5 {
    font-size: 0.8rem; font-weight: 600; color: #fff;
    text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 18px;
  }
  .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
  .footer-col ul a {
    text-decoration: none; color: rgba(255,255,255,0.55); font-size: 0.85rem;
    transition: color 0.2s; font-weight: 300;
  }
  .footer-col ul a:hover { color: #fff; }

  .footer-bottom {
    max-width: 1200px; margin: 28px auto 0;
    display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  }
  .footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
  .footer-socials { display: flex; gap: 14px; }
  .social-link {
    width: 36px; height: 36px; border-radius: 8px;
    background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,0.6); font-size: 0.85rem; text-decoration: none;
    transition: all 0.2s;
  }
  .social-link:hover { background: rgba(255,255,255,0.15); color: #fff; }

  /* ─── DIVIDER ─── */
  .divider { max-width: 1200px; margin: 0 auto; height: 1px; background: var(--border); }

  /* ─── ANIMATIONS ─── */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0; transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1024px) {
    nav { padding: 18px 32px; }
    .nav-links { display: none; }
    section { padding: 72px 32px !important; }
    .about-grid, .impact-grid { grid-template-columns: 1fr; gap: 40px; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .testi-grid { grid-template-columns: 1fr 1fr; }
    .why-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .trust-badges { left: 32px; }
    .hero-content { padding: 0 32px; }
  }

  @media (max-width: 600px) {
    section { padding: 56px 20px !important; }
    nav { padding: 16px 20px; }
    .hero-content { padding: 0 20px; }
    .trust-badges { left: 20px; gap: 10px; }
    .products-grid { grid-template-columns: 1fr; }
    .testi-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    footer { padding: 48px 20px 28px; }
    .impact-images img:first-child { height: 200px; }
  }



















                       /* about page  */







        @import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&amp;family=DM+Sans:wght@400;500;600&amp;family=Outfit:wght@400;500;600&amp;display=swap');
        
      
        
        .about-hero {
    background-image: linear-gradient(rgb(13 59 110 / 43%), rgb(13 59 110 / 59%)), url(./img/about_page.jpg);
    background-size: cover;
    background-position: center;
    height: 500px;
}


        
        .glass {
            background: rgba(255, 255, 255, 0.12);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }
        
        .section-header {
            font-family: 'Cormorant Garamond', serif;
        }
        
        .body-text {
            font-family: 'DM Sans', system-ui, sans-serif;
        }
        
        .timeline-line {
            background: linear-gradient(to bottom, #1a6ab1, #2a7d5f);
        }
        
        .card-hover {
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }
        
        .card-hover:hover {
            transform: translateY(-12px);
            box-shadow: 0 25px 50px -12px rgb(13 59 110 / 0.25);
        }
        
        .nav-link {
            position: relative;
            transition: all 0.3s ease;
        }
        
        .nav-link:after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -2px;
            left: 0;
            background-color: #1a6ab1;
            transition: width 0.3s ease;
        }
        
        .nav-link:hover:after {
            width: 100%;
        }
        
        .stat-number {
            font-variant-numeric: tabular-nums;
        }





.about-hero-content {
    /* text-transform: uppercase; */
    font-family: 'Outfit', sans-serif;
    letter-spacing: 0.1em;
    /* display: flex; */
    /* flex-direction: column; */
    /* align-items: center; */
    /* justify-content: center; */
}
.about-hero-content h1 {
    font-size: 130px;
    font-weight: 700;
    color: white;
    padding-top: 10%;
}

    /* ===== PREMIUM CAPSULE INDIA STYLE ===== */
/* :root{
  --primary:#0d3b6e;
  --secondary:#1a6ab1;
  --accent:#2a7d5f;
  --light:#f5f9ff;
  --white:#ffffff;
  --text:#4b5563;
  --heading:#10253f;

  --gradient-main:linear-gradient(135deg,#0d3b6e 0%,#1a6ab1 45%,#2a7d5f 100%);
  --gradient-soft:linear-gradient(180deg,#f8fbff 0%,#eef5fc 100%);

  --shadow-lg:0 25px 60px rgba(13,59,110,.12);
  --shadow-md:0 15px 40px rgba(13,59,110,.08);
  --radius-xl:32px;
  --radius-lg:24px;
} */

/* ===== RESET ===== */


/* ===== TOPBAR ===== */
/* .topbar{
  background:var(--gradient-main);
  padding:12px 0;
  font-size:14px;
  color:#fff;
}

.topbar i{
  margin-right:8px;
}

.topbar a{
  color:#fff;
  margin-left:18px;
  transition:.3s;
}

.topbar a:hover{
  opacity:.7;
  transform:translateY(-2px);
} */

/* ===== NAVBAR ===== */
/* .custom-navbar{
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  box-shadow:0 8px 30px rgba(0,0,0,.04);
  padding:16px 0;
  transition:.4s ease;
}

.navbar-brand img{
  height:58px;
}

.nav-link{
  color:var(--heading);
  font-weight:500;
  margin-left:24px;
  position:relative;
  transition:.3s;
}

.nav-link::after{
  content:'';
  position:absolute;
  bottom:-6px;
  left:0;
  width:0;
  height:2px;
  background:var(--accent);
  transition:.3s;
}

.nav-link:hover::after,
.nav-link.active::after{
  width:100%;
}

.nav-link:hover{
  color:var(--secondary);
} */

/* ===== HERO ===== */
/* .about-hero{
  position:relative;
  min-height:90vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  overflow:hidden;
  background:
  linear-gradient(rgba(13,59,110,.55),rgba(13,59,110,.55)),
  url('img/banner.jpg') center/cover no-repeat;
} */

.about-hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right,
  rgba(255,255,255,.18),
  transparent 40%);
}

.about-hero-content{
  position:relative;
  z-index:2;
}

.about-hero h1{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(4rem,8vw,7rem);
  font-weight:600;
  text-transform:capitalize;
  color:#fff;
  letter-spacing:2px;
  animation:fadeUp 1.2s ease;
}

.about-hero p{
  color:rgba(255,255,255,.82);
  max-width:700px;
  margin:20px auto 0;
  font-size:18px;
  animation:fadeUp 1.5s ease;
}

/* ===== ABOUT SECTION ===== */
.about{
  padding:120px 8%;
  background:var(--gradient-soft);
}

.about-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  align-items:center;
  gap:80px;
}

.about-img-wrap{
  position:relative;
}

.about-img-wrap img{
  width:100%;
  border-radius:var(--radius-xl);
  /* box-shadow:var(--shadow-lg); */
  transition:transform .6s ease;
}

.about-img-wrap:hover img{
  transform:scale(1.03);
}

.about-badge {
    position: absolute;
    /* bottom: -30px; */
    right: -20px;
    background: #fff;
    /* padding: 22px 28px; */
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    text-align: center;
    /* min-width: 140px; */
}

.about-badge strong{
  display:block;
  font-size:34px;
  color:var(--secondary);
  font-weight:700;
  line-height:1;
}

.section-label{
  display:inline-block;
  padding:10px 18px;
  border-radius:100px;
  background:rgba(26,106,177,.08);
  color:var(--secondary);
  font-size:13px;
  letter-spacing:1px;
  text-transform:uppercase;
  margin-bottom:24px;
  font-weight:600;
}

.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(2.8rem,5vw,4.4rem);
  line-height:1.1;
  color:var(--heading);
  margin-bottom:28px;
  font-weight:600;
}

.section-sub{
  font-size:17px;
  color:#667085;
  margin-bottom:24px;
}

/* ===== STATS ===== */
.about-stats{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  margin-top:50px;
}

.stat-box{
  background:#fff;
  border-radius:24px;
  padding:30px 22px;
  text-align:center;
  box-shadow:var(--shadow-md);
  transition:.4s ease;
}

.stat-box:hover{
  transform:translateY(-10px);
}

.stat-box .num{
  display:block;
  font-size:38px;
  font-weight:700;
  color:var(--secondary);
  margin-bottom:8px;
}

.stat-box .lbl{
  font-size:14px;
  color:#6b7280;
}

/* ===== GLASS CARDS ===== */
.glass{
  background:rgba(255,255,255,.65);
  backdrop-filter:blur(20px);
  box-shadow:0 10px 40px rgba(0,0,0,.05);
  transition:.4s ease;
}

.glass:hover{
  transform:translateY(-10px);
}

.section-header{
  font-family:'Cormorant Garamond',serif;
  font-weight:600;
}

/* ===== ANIMATION ===== */
.reveal{
  opacity:0;
  transform:translateY(60px);
  animation:fadeReveal 1s forwards;
}

@keyframes fadeReveal{
  to{
    opacity:1;
    transform:translateY(0);
  }
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform:translateY(40px);
  }
  to{
    opacity:1;
    transform:translateY(0);
  }
}

/* ===== RESPONSIVE ===== */
@media(max-width:991px){

  .about-grid{
    grid-template-columns:1fr;
    gap:60px;
  }

  .about{
    padding:90px 6%;
  }

  .about-stats{
    grid-template-columns:1fr;
  }

  .section-title{
    font-size:3rem;
  }

  .about-hero{
    min-height:75vh;
  }

  .about-hero h1{
    font-size:4rem;
  }

  .navbar-nav{
    padding-top:20px;
  }

  .nav-link{
    margin-left:0;
    margin-bottom:14px;
  }
}

@media(max-width:576px){
    .about {
        padding: 0px 5% !important;
    }

  .section-title{
    font-size:2.4rem;
  }

  .about-hero h1{
    font-size:3rem;
  }

  .about-badge{
    /* right:10px; */
    /* bottom:-20px; */
    padding:18px 20px;
  }

  .stat-box{
    padding:24px 18px;
  }
}
/* ===== VISION & MISSION SECTION ===== */
.vision-mission{
    padding:120px 0;
    background:linear-gradient(180deg,#f8fbff 0%,#eef5fc 100%);
    position:relative;
    overflow:hidden;
}

.vision-mission::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-120px;
    width:350px;
    height:350px;
    background:rgba(26,106,177,0.08);
    border-radius:50%;
    filter:blur(20px);
}

.vision-mission::after{
    content:'';
    position:absolute;
    bottom:-100px;
    left:-100px;
    width:280px;
    height:280px;
    background:rgba(42,125,95,0.08);
    border-radius:50%;
    filter:blur(20px);
}

/* Card */
.glass{
    position:relative;
    background:rgba(255,255,255,0.72);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    border:1px solid rgba(255,255,255,0.6);
    border-radius:32px;
    padding:60px;
    overflow:hidden;
    transition:all .45s ease;
    box-shadow:
        0 10px 40px rgba(13,59,110,.06),
        0 4px 12px rgba(13,59,110,.04);
}

.glass:hover{
    transform:translateY(-12px);
    box-shadow:
        0 30px 60px rgba(13,59,110,.12),
        0 10px 20px rgba(13,59,110,.08);
}

/* Light Overlay */
.glass::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.45),
        transparent 50%
    );
    pointer-events:none;
}

/* Icon Box */
.glass .icon-box{
    width:72px;
    height:72px;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:30px;
    color:#fff;
    margin-bottom:35px;
    position:relative;
    overflow:hidden;
    box-shadow:0 15px 35px rgba(26,106,177,.18);
}

.glass .icon-box::after{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(
        120deg,
        rgba(255,255,255,.35),
        transparent
    );
}

.vision-icon{
    background:linear-gradient(135deg,#1a6ab1,#2a7d5f);
}

.mission-icon{
    background:linear-gradient(135deg,#2a7d5f,#0d3b6e);
}

/* Heading */
.section-header{
    font-family:'Cormorant Garamond',serif;
    font-size:3rem;
    font-weight:600;
    color:#0d3b6e;
    margin-bottom:24px;
    line-height:1.1;
}

/* Paragraph */
.glass p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
}

/* Bottom Link */
.glass .bottom-link{
    margin-top:45px;
    padding-top:35px;
    border-top:1px solid rgba(13,59,110,.08);
    display:flex;
    align-items:center;
    gap:12px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.5px;
    color:#1a6ab1;
}

.glass .bottom-link i{
    transition:.3s ease;
}

.glass:hover .bottom-link i{
    transform:translateX(6px);
}

/* Mission List */
.mission-list{
    margin-top:35px;
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mission-list li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    font-size:16px;
    color:#4b5563;
}

.mission-list span{
    width:24px;
    height:24px;
    min-width:24px;
    border-radius:50%;
    background:rgba(42,125,95,.12);
    color:#2a7d5f;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:12px;
    margin-top:2px;
}

/* Responsive */
@media(max-width:991px){

    .vision-mission{
        padding:40px 20px !important;
    }

    .glass{
        padding:45px;
    }

    .section-header{
        font-size:2.5rem;
    }
}

@media(max-width:576px){

    .glass{
        padding:35px 28px;
        border-radius:24px;
    }

    .section-header{
        font-size:2rem;
    }

    .glass p{
        font-size:15px;
    }

    .glass .icon-box{
        width:60px;
        height:60px;
        font-size:24px;
    }
}








































/* =========================
   CARES SECTION
========================= */
.contact-hero h1{
     font-family: 'Cormorant Garamond', serif !important;
}
        .contact-hero {
    background-image: linear-gradient(rgb(13 59 110 / 43%), rgb(13 59 110 / 59%)), url('./img/contact_hero.jpg');
    background-size: cover;
    background-position: center;
    height: 500px;
    font-family: 'Outfit', sans-serif;
}
.cares-section{
    padding:100px 0;
    background: linear-gradient(135deg,#081221,#0f2747);
    position:relative;
    overflow:hidden;
    font-family: 'Poppins', sans-serif;
}

.cares-section::before{
    content:'';
    position:absolute;
    width:500px;
    height:500px;
    background:rgba(0,123,255,0.08);
    border-radius:50%;
    top:-200px;
    left:-150px;
    filter:blur(50px);
}

.cares-section::after{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:rgba(255,136,0,0.08);
    border-radius:50%;
    bottom:-180px;
    right:-120px;
    filter:blur(50px);
}

.section-header{
    position:relative;
    z-index:2;
    max-width:800px;
    margin:auto;
    margin-bottom:70px;
}

.subtitle{
    display:inline-block;
    padding:8px 18px;
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.1);
    border-radius:50px;
    color:#ff8c32;
    font-size:14px;
    letter-spacing:1px;
    margin-bottom:20px;
}

.section-header h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:20px;
}

.section-header h2 span{
    color:#ff8c32;
}

.section-header p{
    color:#c9d5e5;
    font-size:17px;
    line-height:1.8;
}

/* GRID */

.cares-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    position:relative;
    z-index:2;
}

.care-card{
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    border-radius:28px;
    padding:40px 30px;
    transition:0.4s ease;
    position:relative;
    overflow:hidden;
}

.care-card::before{
    content:'';
    position:absolute;
    inset:0;
    background:linear-gradient(135deg,
    rgba(255,140,50,0.12),
    transparent);
    opacity:0;
    transition:0.4s;
}

.care-card:hover::before{
    opacity:1;
}

.care-card:hover{
    transform:translateY(-10px);
    border-color:rgba(255,140,50,0.35);
}

.letter{
    width:70px;
    height:70px;
    background:linear-gradient(135deg,#ff8c32,#ff6200);
    color:#fff;
    font-size:34px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    margin-bottom:25px;
    box-shadow:0 10px 25px rgba(255,136,0,0.3);
}

.care-card h3{
    color:#fff;
    font-size:24px;
    margin-bottom:18px;
    font-weight:600;
}

.care-card p{
    color:#c7d3e3;
    line-height:1.8;
    font-size:15px;
}

/* FUTURE PLAN */

.future-plan{
    margin-top:70px;
    position:relative;
    z-index:2;
}

.future-content{
    background:linear-gradient(135deg,#ff8c32,#ff6200);
    padding:50px;
    border-radius:30px;
    text-align:center;
    box-shadow:0 20px 40px rgba(255,120,0,0.25);
}

.future-tag{
    display:inline-block;
    background:rgba(255,255,255,0.18);
    color:#fff;
    padding:8px 20px;
    border-radius:50px;
    margin-bottom:18px;
    font-size:14px;
    letter-spacing:1px;
}

.future-content h3{
    color:#fff;
    font-size:38px;
    font-weight:700;
    margin-bottom:15px;
}

.future-content p{
    color:#fff;
    font-size:17px;
    line-height:1.8;
    max-width:750px;
    margin:auto;
}

/* RESPONSIVE */

@media(max-width:991px){

    .cares-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .section-header h2{
        font-size:42px;
    }
}

@media(max-width:767px){

    .cares-grid{
        grid-template-columns:1fr;
    }

    .section-header h2{
        font-size:34px;
    }

    .future-content{
        padding:35px 25px;
    }

    .future-content h3{
        font-size:28px;
    }
}
















/* =========================
   ABOUT CARES SECTION
========================= */

.about-cares-section{
    background:#ffffff;
    padding:120px 0;
    position:relative;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
}

/* Soft Background Shapes */

.about-cares-section::before{
    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#fff4eb;
    border-radius:50%;
    top:-180px;
    left:-120px;
    filter:blur(20px);
}

.about-cares-section::after{
    content:'';
    position:absolute;
    width:400px;
    height:400px;
    background:#f5f7ff;
    border-radius:50%;
    bottom:-180px;
    right:-120px;
    filter:blur(20px);
}

/* HEADER */

.about-header{
    max-width:850px;
    margin:auto;
    margin-bottom:100px;
    position:relative;
    z-index:2;
}

.mini-title{
    color:#ff7a00;
    letter-spacing:4px;
    font-size:14px;
    font-weight:600;
    display:inline-block;
    margin-bottom:20px;
}

.about-header h2{
    color:#111827;
    font-size:70px;
    font-weight:700;
    margin-bottom:25px;
    line-height:1.1;
}

.about-header h2 span{
    color:#ff7a00;
}

.about-header p{
    color:#6b7280;
    font-size:18px;
    line-height:1.9;
}

/* CARES ITEM */

.cares-item {
    display: flex;
    align-items: center;
    gap: 33px;
    margin-bottom: 39px;
    position: relative;
    z-index: 2;
}

.cares-item.reverse{
    flex-direction:row-reverse;
}

/* LETTER BOX */

.care-letter {
    /* min-width: 170px; */
    /* height: 170px; */
    /* border-radius: 35px; */
    /* background: #ffffff; */
    /* border: 1px solid #eeeeee; */
    /* display: flex; *
    /* align-items: center; */
    justify-content: center;
    font-size: 47px;
    color: #0d2048;
    /* box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05); */
    /* position: relative; */
    /* overflow: hidden; */
}
/* CONTENT BOX */

.care-content{
    flex:1;

    background:#ffffff;

    border:1px solid #eeeeee;

    border-radius:35px;

    padding:25px;

    position:relative;

    overflow:hidden;

    transition:.4s;

    box-shadow:
    0 15px 40px rgba(0,0,0,0.05);
}

.care-content::before{
    content:'';
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:5px;
    background:linear-gradient(
    90deg,
    #ff7a00,
    #ffb067);
}

.care-content:hover{
    transform:translateY(-10px);
    box-shadow:
    0 25px 60px rgba(0,0,0,0.08);
}

/* ICON */

.care-icon{
    width:80px;
    height:80px;
    border-radius:22px;

    background:
    linear-gradient(135deg,#ff7a00,#ff9d4d);

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:30px;

    box-shadow:
    0 10px 30px rgba(255,122,0,0.25);
}

.care-icon i{
    color:#fff;
    font-size:32px;
}

/* TEXT */

.care-content h3{
    color:#111827;
    font-size:34px;
    font-weight:600;
    margin-bottom:20px;
}

.care-content p {
    color: #07369b;
    font-size: 18px;
    line-height: 1.9;
}

/* FUTURE BOX */

.future-box{
    margin-top:120px;

    background:
    linear-gradient(
    135deg,
    #111827,
    #111827);

    border-radius:40px;

    padding:70px;

    text-align:center;

    position:relative;
    overflow:hidden;
    z-index:2;
}

.future-box::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.15);
    border-radius:50%;
    top:-100px;
    right:-100px;
}

.future-box span{
    color:#fff;
    letter-spacing:3px;
    font-size:14px;
    display:inline-block;
    margin-bottom:20px;
    font-weight:600;
}

.future-box h2{
    color:#fff;
    font-size:52px;
    font-weight:700;
    margin-bottom:25px;
}

.future-box p{
    color:#fff;
    font-size:18px;
    line-height:1.9;
    max-width:800px;
    margin:auto;
}

/* RESPONSIVE */

@media(max-width:991px){

    .about-header h2{
        font-size:52px;
    }

    .cares-item,
    .cares-item.reverse{
        flex-direction:column;
        text-align:center;
    }

    .care-letter{
        min-width:140px;
        height:140px;
        font-size:80px;
    }

    .future-box h2{
        font-size:38px;
    }
}

@media(max-width:767px){

    .about-cares-section{
        padding:80px 0;
    }

    .about-header h2{
        font-size:40px;
    }

    .about-header p{
        font-size:16px;
    }

    .care-content{
        padding:35px 25px;
    }

    .care-content h3{
        font-size:26px;
    }

    .future-box{
        padding:50px 25px;
    }

    .future-box h2{
        font-size:30px;
    }
}




























             /* contact us page  */
  


 /* ================= CONTACT SECTION ================= */
.contact-section{
    position:relative;
    padding:120px 0;
    background:
    linear-gradient(180deg,#f8fbff 0%,#eef5fc 100%);
    overflow:hidden;
}

.contact-section::before{
    content:'';
    position:absolute;
    top:-120px;
    right:-100px;
    width:350px;
    height:350px;
    background:rgba(26,106,177,.08);
    border-radius:50%;
    filter:blur(10px);
}

.contact-heading{
    max-width:760px;
    margin:0 auto 70px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:100px;
    background:rgba(26,106,177,.08);
    color:#1a6ab1;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
    text-transform:uppercase;
    margin-bottom:20px;
}

.contact-heading h2{
    /* font-family:'Cormorant Garamond',serif; */
    font-size:4rem;
    font-weight:600;
    color:#0d3b6e;
    margin-bottom:22px;
    line-height:1.1;
}

.contact-heading p{
    font-size:17px;
    line-height:1.9;
    color:#6b7280;
}

/* Left Info Card */
.contact-info-card{
    background:rgba(255,255,255,.75);
    backdrop-filter:blur(20px);
    border-radius:32px;
    padding:50px 40px;
    box-shadow:0 15px 50px rgba(13,59,110,.06);
    height:100%;
}

.contact-info-item{
    display:flex;
    gap:22px;
    padding-bottom:30px;
    margin-bottom:30px;
    border-bottom:1px solid rgba(13,59,110,.08);
}

.contact-info-item .icon-box{
    width:62px;
    height:62px;
    min-width:62px;
    border-radius:20px;
    background:linear-gradient(135deg,#1a6ab1,#2a7d5f);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:22px;
    box-shadow:0 10px 30px rgba(26,106,177,.18);
}

.contact-info-item h5{
    font-size:20px;
    font-weight:600;
    color:#0d3b6e;
    margin-bottom:10px;
}

.contact-info-item p{
    margin:0;
    color:#6b7280;
    line-height:1.8;
    font-size:15px;
}

/* Form Card */
.contact-form-card{
    background:#fff;
    border-radius:32px;
    padding:55px;
    box-shadow:0 15px 50px rgba(13,59,110,.08);
}

/* Inputs */
.input-group-custom input,
.input-group-custom textarea{
    width:100%;
    border:none;
    outline:none;
    background:#f5f9ff;
    border:1px solid transparent;
    padding:18px 22px;
    border-radius:18px;
    font-size:15px;
    color:#0d3b6e;
    transition:.3s ease;
}

.input-group-custom textarea{
    resize:none;
}

.input-group-custom input:focus,
.input-group-custom textarea:focus{
    border-color:#1a6ab1;
    background:#fff;
    box-shadow:0 0 0 4px rgba(26,106,177,.08);
}

/* Button */
.contact-btn{
    border:none;
    outline:none;
    background:linear-gradient(135deg,#0d3b6e,#1a6ab1,#2a7d5f);
    color:#fff;
    padding:18px 34px;
    border-radius:100px;
    font-weight:600;
    font-size:15px;
    display:inline-flex;
    align-items:center;
    gap:12px;
    transition:.4s ease;
    box-shadow:0 15px 35px rgba(13,59,110,.18);
}

.contact-btn:hover{
    transform:translateY(-4px);
    box-shadow:0 25px 45px rgba(13,59,110,.24);
}

.contact-btn i{
    transition:.3s ease;
}

.contact-btn:hover i{
    transform:translateX(5px);
}

/* Responsive */
@media(max-width:991px){
.about-hero{
  height: auto !important;
}

    .contact-section {
        padding: 40px 8px !important;
    
}
    .contact-section{
        padding:90px 20px;
    }

    .contact-heading h2{
        font-size:3rem;
    }

    .contact-form-card{
        padding:40px;
    }

    .contact-info-card{
        padding:40px 30px;
    }
}

@media(max-width:576px){

    .contact-heading h2{
        font-size:2.3rem;
    }

    .contact-heading p{
        font-size:15px;
    }

    .contact-form-card,
    .contact-info-card{
        padding:30px 22px;
        border-radius:24px;
    }

    .contact-info-item{
        gap:16px;
    }

    .contact-info-item .icon-box{
        width:52px;
        height:52px;
        min-width:52px;
        font-size:18px;
    }
}            
/* =========================
   RESPONSIVE CONTACT SECTION
   756px → 320px
========================= */

/* Tablet */
@media (max-width: 756px){

    .contact-section{
        padding:70px 15px;
    }

    .contact-section .row{
        row-gap:30px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:35px 25px;
        border-radius:24px;
    }

    .contact-info-item{
        gap:15px;
        padding-bottom:22px;
        margin-bottom:22px;
    }

    .contact-info-item .icon-box{
        width:52px;
        height:52px;
        min-width:52px;
        font-size:18px;
        border-radius:16px;
    }

    .contact-info-item h5{
        font-size:18px;
        margin-bottom:6px;
    }

    .contact-info-item p{
        font-size:14px;
        line-height:1.7;
    }

    .input-group-custom input,
    .input-group-custom textarea{
        padding:16px 18px;
        font-size:14px;
        border-radius:14px;
    }

    .contact-btn{
        width:100%;
        justify-content:center;
        padding:16px 20px;
        font-size:14px;
    }
}


/* Mobile Large */
@media (max-width: 576px){

    .contact-section{
        padding:60px 12px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:28px 20px;
        border-radius:22px;
    }

    .contact-info-item{
        flex-direction:row;
        align-items:flex-start;
        gap:14px;
        padding-bottom:18px;
        margin-bottom:18px;
    }

    .contact-info-item .icon-box{
        width:48px;
        height:48px;
        min-width:48px;
        font-size:16px;
        border-radius:14px;
    }

    .contact-info-item h5{
        font-size:16px;
    }

    .contact-info-item p{
        font-size:13px;
    }

    .input-group-custom input,
    .input-group-custom textarea{
        padding:14px 16px;
        font-size:13px;
    }

    .contact-btn{
        padding:15px 18px;
        border-radius:60px;
        font-size:13px;
    }

    textarea{
        min-height:140px;
    }
}

@media (max-width: 425px){
.navbar-brand {
    width: 60% !important;
}
.about-hero-content h1 {
    font-size: 67px !important;}
}
/* Small Mobile */
@media (max-width: 420px){
.about-content.reveal {
    margin-top: -15% !important;
}
    .contact-section{
        padding:50px 10px;
    }
.navbar-brand {
    width: 60% !important;
}
    .contact-info-card,
    .contact-form-card{
        padding:22px 16px;
        border-radius:18px;
    }

    .contact-info-item{
        gap:12px;
    }

    .contact-info-item .icon-box{
        width:42px;
        height:42px;
        min-width:42px;
        font-size:14px;
        border-radius:12px;
    }

    .contact-info-item h5{
        font-size:15px;
        margin-bottom:4px;
    }

    .contact-info-item p{
        font-size:12px;
        line-height:1.6;
    }

    .input-group-custom input,
    .input-group-custom textarea{
        padding:13px 14px;
        border-radius:12px;
        font-size:12px;
    }

    .contact-btn{
        font-size:12px;
        padding:14px 16px;
    }
    .about-content {
    padding: 8px 0;
    margin-top: -61% !important;
}
}


/* Extra Small Mobile */
@media (max-width: 320px){
  .product2-hero h1 {
    font-size: 38px !important;
}
.csr-content p {
    font-size: 11px !important;
}
.product-hero h1 {
    font-size: 38px !important;
}
    .contact-section{
        padding:40px 8px;
    }

    .contact-info-card,
    .contact-form-card{
        padding:18px 14px;
    }

    .contact-info-item{
        flex-direction:column;
        gap:10px;
    }

    .contact-info-item .icon-box{
        width:38px;
        height:38px;
        min-width:38px;
        font-size:13px;
    }

    .contact-info-item h5{
        font-size:14px;
    }

    .contact-info-item p{
        font-size:11px;
    }

    .input-group-custom input,
    .input-group-custom textarea{
        padding:12px;
        font-size:11px;
    }

    .contact-btn{
        padding:12px 14px;
        font-size:11px;
        gap:8px;
    }
}
























/* new product section  */


















/* =========================
   CSR SECTION
========================= */

.csr-section {
  padding: 100px 0;
  background: var(--blue-pale);
  position: relative;
  overflow: hidden;
}

.csr-heading {
  max-width: 850px;
  margin: auto;
  margin-bottom: 70px;
}

.csr-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.csr-heading h2 {
  font-size: 52px;
  font-weight: 700;
  color: var(--blue-deep);
  margin-bottom: 20px;
}

.csr-heading p {
  font-size: 17px;
  line-height: 1.9;
  color: var(--text-mid);
}

/* GRID */

.csr-wrapper {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 30px;
  margin-bottom: 90px;
}

.csr-left,
.csr-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

/* CARD */

.csr-card {
    background: var(--white);
    border-radius: 24px;
    padding: 35px;
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow-md);
    transition: 0.4s ease;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    height: 410px;
}

.csr-card::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 120px;
  background: var(--blue-light);
  border-radius: 50%;
  top: -40px;
  right: -40px;
  opacity: 0.3;
}

.csr-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.csr-number {
  min-width: 70px;
  height: 70px;
  border-radius: 20px;
  background: linear-gradient(
    135deg,
    var(--blue-deep),
    var(--blue-mid)
  );
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 700;
}

.csr-content h4 {
  font-size: 24px;
  color: var(--blue-deep);
  margin-bottom: 15px;
}

.csr-content p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: 14px;
    text-align: justify;
}

/* PRODUCT AREA */

.csr-product-area {
  margin-top: 40px;
}

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h3 {
  font-size: 38px;
  color: var(--blue-deep);
  font-weight: 700;
}

.product-card {
  background: var(--white);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: 0.4s ease;
  border: 1px solid var(--border);
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.product-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.product-info {
  padding: 25px;
  text-align: center;
}

.product-info h5 {
  font-size: 22px;
  color: var(--blue-deep);
  margin: 0;
}

/* OWL NAV */

.csr-carousel .owl-nav {
  margin-top: 35px;
  text-align: center;
}

.csr-carousel .owl-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50% !important;
  background: var(--blue-deep) !important;
  color: var(--white) !important;
  margin: 0 8px;
  font-size: 20px !important;
  transition: 0.3s;
}

.csr-carousel .owl-nav button:hover {
  background: var(--green) !important;
}

/* RESPONSIVE */

@media(max-width:991px){

  .csr-heading h2{
    font-size: 40px;
  }

  .csr-wrapper{
    grid-template-columns: 1fr;
  }

}

@media(max-width:576px){

  .csr-section{
    padding: 70px 0;
  }

  .csr-heading h2{
    font-size: 32px;
  }

  .csr-card{
    flex-direction: column;
    padding: 25px;
  }

  .csr-number{
    width: 60px;
    height: 60px;
    font-size: 22px;
  }

  .section-title h3{
    font-size: 28px;
  }

}












/* capsule india product page  */




/* ================= HERO ================= */

.product-hero{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('./img/cap_page.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}

.product-hero h1 {
    font-size: 81px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product-hero p{
    font-size:18px;
    width:70%;
    margin:auto;
    line-height:30px;
}

/* ================= CATEGORY SECTION ================= */

.category-section {
    padding: 100px 0;
    background: #f8fafc;
}

.capsule-section-title {
    text-align: center;
    margin-bottom: 60px;
}

.capsule-section-title h2 {
    font-size: 42px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

.capsule-section-title p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.8;
    color: #64748b;
}

.category-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.category-card i {
    width: 85px;
    height: 85px;
    line-height: 85px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 34px;
    margin-bottom: 25px;
}

.category-card h4 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #0f172a;
}

.category-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #64748b;
}

/* ================= FEATURE SECTION ================= */

.feature-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f172a, #1e293b);
}

.feature-box {
    text-align: center;
    padding: 45px 30px;
    border-radius: 20px;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(8px);
    height: 100%;
    transition: 0.4s ease;
    border: 1px solid rgba(255,255,255,0.08);
}

.feature-box:hover {
    transform: translateY(-10px);
    background: rgba(255,255,255,0.08);
}

.feature-box i {
    width: 90px;
    height: 90px;
    line-height: 90px;
    border-radius: 50%;
    background: #2563eb;
    color: #fff;
    font-size: 36px;
    margin-bottom: 25px;
}

.feature-box h3 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-box p {
    color: #cbd5e1;
    line-height: 1.8;
    font-size: 16px;
}

/* ================= PRODUCT LIST SECTION ================= */

.product-list-section {
    padding: 100px 0;
    background: #ffffff;
}

.product-box {
    background: #f8fafc;
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 30px;
    transition: 0.4s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.product-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.product-box h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #0f172a;
    position: relative;
    padding-bottom: 15px;
}

.product-box h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 70px;
    height: 4px;
    background: #2563eb;
    border-radius: 10px;
}

.product-box ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-box ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
}

.product-box ul li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: #2563eb;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .capsule-section-title h2 {
        font-size: 34px;
    }

    .feature-box,
    .category-card,
    .product-box {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {

    .category-section,
    .feature-section,
    .product-list-section {
        padding: 70px 0;
    }

    .capsule-section-title h2 {
        font-size: 28px;
    }

    .capsule-section-title p {
        font-size: 15px;
    }

    .category-card,
    .feature-box,
    .product-box {
        padding: 30px 22px;
    }

    .product-box h3 {
        font-size: 24px;
    }
}










/* ================= HEALTHY FUTURE SECTION ================= */

.healthy-future-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #eef4ff);
    overflow: hidden;
    position: relative;
}

.healthy-future-content {
    position: relative;
    z-index: 2;
}

.future-subtitle {
    display: inline-block;
    background: rgba(37, 99, 235, 0.1);
    color: #2563eb;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 25px;
    text-transform: uppercase;
}

.healthy-future-content h2 {
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    color: #0f172a;
    margin-bottom: 25px;
}

.healthy-future-content p {
    font-size: 17px;
    line-height: 1.9;
    color: #475569;
    margin-bottom: 20px;
}

.future-btn {
    margin-top: 40px;
}

.future-main-btn {
    display: inline-block;
    padding: 16px 38px;
    background: #2563eb;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.25);
}

.future-main-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-5px);
}

.healthy-future-image {
    position: relative;
    text-align: center;
    z-index: 2;
}

.healthy-future-image img {
    width: 100%;
    border-radius: 30px;
    position: relative;
    z-index: 3;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

.future-shape-one {
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(37, 99, 235, 0.12);
    border-radius: 50%;
    top: -40px;
    right: -50px;
    z-index: 1;
}

.future-shape-two {
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(59, 130, 246, 0.15);
    border-radius: 50%;
    bottom: -30px;
    left: -30px;
    z-index: 1;
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .healthy-future-content {
        margin-bottom: 50px;
    }

    .healthy-future-content h2 {
        font-size: 42px;
    }
}

@media (max-width: 767px) {

    .healthy-future-section {
        padding: 70px 0;
    }

    .healthy-future-content h2 {
        font-size: 32px;
    }

    .healthy-future-content p {
        font-size: 15px;
    }

    .future-main-btn {
        padding: 14px 30px;
        font-size: 15px;
    }
}









































/* life care page  */







/* ================= LIFELEAD PRODUCT SECTION ================= */

.lifelead-product-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc, #ffffff);
    position: relative;
    overflow: hidden;
}

.lifelead-section-title {
    text-align: center;
    margin-bottom: 70px;
}

.lifelead-section-title span {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(37, 99, 235, 0.08);
    color: #2563eb;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.lifelead-section-title h2 {
    font-size: 52px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.lifelead-section-title p {
    max-width: 700px;
    margin: auto;
    font-size: 17px;
    line-height: 1.9;
    color: #64748b;
}

.lifelead-product-card {
    background: #ffffff;
    border-radius: 28px;
    overflow: hidden;
    transition: 0.4s ease;
    height: 100%;
    border: 1px solid #e2e8f0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.lifelead-product-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.10);
}

.lifelead-product-image {
    background: #f8fafc;
    padding: 25px;
    text-align: center;
}

.lifelead-product-image img {
    width: 100%;
    transition: 0.4s ease;
    height: 260px;
    object-fit: cover;
}

.lifelead-product-card:hover .lifelead-product-image img {
    transform: scale(1.05);
}

.lifelead-product-content {
    padding: 35px 30px;
}

.product-category {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 18px;
}

.lifelead-product-content h3 {
    font-size: 30px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 18px;
}

.lifelead-product-content p {
    font-size: 16px;
    line-height: 1.9;
    color: #64748b;
    margin-bottom: 30px;
}

.lifelead-btn {
    display: inline-block;
    padding: 14px 34px;
    background: #2563eb;
    color: #ffffff;
    text-decoration: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    transition: 0.4s ease;
}

.lifelead-btn:hover {
    background: #1d4ed8;
    color: #fff;
    transform: translateY(-4px);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 991px) {

    .lifelead-section-title h2 {
        font-size: 42px;
    }

    .lifelead-product-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
  .product2-hero h1 {
    font-size: 48px !important;
}
.product-hero h1 {
    font-size: 48px !important;
}

    .lifelead-product-section {
        padding: 70px 0;
    }

    .lifelead-section-title {
        margin-bottom: 50px;
    }

    .lifelead-section-title h2 {
        font-size: 32px;
    }

    .lifelead-section-title p {
        font-size: 15px;
    }

    .lifelead-product-content {
        padding: 28px 24px;
    }

    .lifelead-product-content h3 {
        font-size: 24px;
    }
}

.product2-hero{
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
    url('./img/life_page.jpg');
    background-size:cover;
    background-position:center;
    padding:120px 0;
    text-align:center;
    color:#fff;
}
.product2-hero h1 {
    font-size: 81px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.product2-hero p{
    font-size:18px;
    width:70%;
    margin:auto;
    line-height:30px;
}


.social a
{
    color: #ffffff;
    font-size: 21px;
    border: #fff solid 2px !important;
    padding: 1% 3%;
}

.social {
    margin-top: 15% !important;
}

.about-shape-one {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}
 