        :root {
            --primary: #10b981;
            --primary-dark: #059669;
            --primary-light: #ecfdf5;
            --secondary: #1f2937;
            --secondary-light: #4b5563;
            --accent-yellow: #f59e0b;
            --accent-blue: #3b82f6;
        }

        * {
            font-family: 'Inter', sans-serif;
        }

        body {
            color: #64748b;
            background: white;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }
        ::-webkit-scrollbar-track {
            background: #f8f8f8;
        }
        ::-webkit-scrollbar-thumb {
            background: #cbd5e1;
            border-radius: 4px;
        }
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary);
        }

        /* Top Bar */
        .top-bar {
            background: var(--secondary);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }

        .top-bar a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .top-bar a:hover {
            color: var(--primary);
        }

        /* Navigation */
        .navbar {
            background: white !important;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            padding: 1rem 0;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }

        .brand-text h1 {
            font-size: 20px;
            font-weight: 800;
            color: var(--secondary);
            margin: 0;
            line-height: 1;
        }

        .brand-text span {
            font-size: 10px;
            font-weight: 600;
            color: #94a3b8;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .search-container {
            position: relative;
            max-width: 600px;
            margin: 0 auto;
        }

        .search-input {
            background: #f8fafc;
            border: 1px solid #e2e8f0;
            border-radius: 50px;
            padding: 12px 20px 12px 48px;
            width: 100%;
            font-size: 14px;
            transition: all 0.3s;
        }

        .search-input:focus {
            outline: none;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: #94a3b8;
        }

        .search-btn {
            position: absolute;
            right: 6px;
            top: 6px;
            background: var(--secondary);
            color: white;
            border: none;
            padding: 6px 20px;
            border-radius: 50px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            transition: all 0.3s;
        }

        .search-btn:hover {
            background: var(--primary);
        }

        .navbar-nav .nav-link {
            color: var(--secondary) !important;
            font-weight: 500;
            margin: 0 8px;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--primary) !important;
        }

        .btn-primary-custom {
            background: var(--primary);
            border: none;
            color: white;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
            transition: all 0.3s;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .btn-primary-custom:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            color: white;
        }

        /* Hero Section */
        .hero-section {
                        background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");

            background-color: #f9fafb;
            /* background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2310b981' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); */
            /* padding: 80px 0 120px; */
            position: relative;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 60%;
            height: 100%;
            background: rgba(16, 185, 129, 0.05);
            clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
        }

        .hero-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            background: rgba(16, 185, 129, 0.1);
            color: #10b981!important;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 4rem;
            font-weight: 800;
            color: var(--secondary);
            line-height: 83px;
            margin-bottom: 24px;
        }

        .hero-title .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-title .highlight::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 4px;
            background: rgba(16, 185, 129, 0.5);
            border-radius: 2px;
        }

        .hero-text {
            font-size: 18px;
            color: #64748b;
            margin-bottom: 40px;
            line-height: 1.6;
        }

        .btn-hero-primary {
            background: var(--primary);
            color: white;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: 0 8px 25px rgba(16, 185, 129, 0.5);
            transition: all 0.3s;
            margin-right: 16px;
            margin-bottom: 16px;
        }

        .btn-hero-primary:hover {
            background: var(--primary-dark);
            transform: scale(1.02);
            color: white;
        }

        .btn-hero-secondary {
            background: white;
            color: var(--secondary);
            padding: 16px 40px;
            border: 2px solid #e2e8f0;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            transition: all 0.3s;
            margin-bottom: 16px;
        }

        .btn-hero-secondary:hover {
            border-color: var(--primary);
            color: var(--primary);
        }

        .hero-features {
            margin-top: 16px;
            padding-top: 32px;
            border-top: 1px solid #e2e8f0;
        }

        .hero-feature {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(16, 185, 129, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 20px;
        }

        .hero-feature-text h6 {
            font-weight: 700;
            color: var(--secondary);
            margin: 0;
        }

        .hero-feature-text p {
            font-size: 14px;
            color: #64748b;
            margin: 0;
        }

        .hero-image {
            position: relative;
        }

        .hero-image img {
            width: 100%;
            max-width: 500px;
            border-radius: 24px;
            border: 8px solid white;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
        }

        .floating-card {
            position: absolute;
            bottom: -40px;
            left: -40px;
            background: white;
            padding: 20px;
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            display: flex;
            align-items: center;
            gap: 16px;
            animation: float 4s ease-in-out infinite alternate;
        }

        .floating-card-icon {
            background: rgba(16, 185, 129, 0.1);
            padding: 12px;
            border-radius: 12px;
            color: var(--primary);
            font-size: 24px;
        }

        @keyframes float {
            0% { transform: translate(-10px, -10px); }
            50% { transform: translate(10px, 10px); }
            100% { transform: translate(-10px, -10px); }
        }

        /* Categories Section */
        .section-padding {
            padding: 96px 0;
        }

        .section-header {
            text-align: center;
            margin-bottom: 64px;
        }

        .section-badge {
            color: var(--primary);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-top: 12px;
        }

        .category-card {
            background: white;
            border-radius: 16px;
            padding: 32px 24px;
            text-align: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
            border: 2px solid #f3f4f6;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            text-decoration: none;
            color: inherit;
        }

        .category-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 50px rgba(16, 185, 129, 0.15);
            border-color: var(--primary);
            color: inherit;
            text-decoration: none;
        }

        .category-icon {
            width: 64px;
            height: 64px;
            margin: 0 auto 16px;
            background: rgba(16, 185, 129, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 24px;
            transition: all 0.4s;
        }

        .category-card:hover .category-icon {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 10px rgba(16, 185, 129, 0.4);
        }

        .category-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--secondary);
            margin: 0;
            transition: color 0.3s;
        }

        .category-card:hover h3 {
            color: var(--primary);
        }

        /* Offers Section */
        .offers-section {
            background: #fff;
        }

        .offer-card {
            background: white;
            border-radius: 24px;
            padding: 48px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.5s;
            border-top: 4px solid var(--primary);
        }

        .offer-card:hover {
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
        }

        .offer-card::before {
            content: '';
            position: absolute;
            right: 0;
            top: 0;
            width: 192px;
            height: 192px;
            background: rgba(16, 185, 129, 0.05);
            border-radius: 0 0 0 100%;
            right: -64px;
            top: -64px;
            transition: transform 0.5s;
        }

        .offer-card:hover::before {
            transform: scale(1.1);
        }

        .offer-badge {
            background: var(--secondary);
            color: white;
            font-size: 12px;
            font-weight: 700;
            padding: 4px 12px;
            border-radius: 50px;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: inline-block;
            margin-bottom: 24px;
        }

        .offer-card.trustmed {
            background: var(--secondary);
            border-top-color: var(--accent-yellow);
        }

        .offer-card.trustmed::before {
            background: rgba(255, 255, 255, 0.05);
            left: 0;
            bottom: 0;
            right: auto;
            top: auto;
            border-radius: 100% 0 0 0;
            left: -64px;
            bottom: -64px;
        }

        .offer-card.trustmed .offer-badge {
            background: var(--accent-yellow);
            color: var(--secondary);
        }

        .offer-card.trustmed h3 {
            color: white;
        }

        .offer-card.trustmed p {
            color: #cbd5e1;
        }

        .offer-card h3 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin: 0 0 8px 0;
        }

        .offer-card p {
            font-size: 18px;
            color: #64748b;
            margin-bottom: 32px;
        }

        .offer-btn {
            background: var(--primary);
            color: white;
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 700;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
            transition: all 0.3s;
        }

        .offer-btn:hover {
            background: var(--primary-dark);
            color: white;
        }

        .offer-btn.yellow {
            background: var(--accent-yellow);
            color: var(--secondary);
            box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
        }

        .offer-btn.yellow:hover {
            background: rgba(245, 158, 11, 0.8);
            color: var(--secondary);
        }

        .offer-icon {
            position: absolute;
            right: 32px;
            bottom: 32px;
            font-size: 144px;
            opacity: 0.1;
            transition: opacity 0.5s;
        }

        .offer-card:hover .offer-icon {
            opacity: 0.2;
        }

        /* Why Choose Us */
        .feature-card {
            background: white;
            padding: 32px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            transition: all 0.3s;
        }

        .feature-card:hover {
            box-shadow: 0 20px 40px rgba(16, 185, 129, 0.25);
        }

        .feature-card i {
            font-size: 48px;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .feature-card h4 {
            font-size: 20px;
            font-weight: 700;
            color: var(--secondary);
            margin-bottom: 8px;
        }

        .feature-card p {
            color: #64748b;
            margin: 0;
        }

        /* Partners */
        .partners-section {
            background: #f1f5f9;
            padding: 64px 0;
        }

        .partner-item {
            font-size: 24px;
            font-weight: 800;
            color: #94a3b8;
            transition: color 0.3s;
            cursor: default;
        }

        .partner-item:hover {
            color: var(--primary);
        }

        /* Footer */
        .footer {
            background: var(--secondary);
            color: #cbd5e1;
            padding: 39px 0 40px;
        }

        .footer h4 {
            color: white;
            font-weight: 700;
            margin-bottom: 24px;
            padding-bottom: 8px;
            border-bottom: 1px solid rgba(16, 185, 129, 0.2);
        }

        .footer ul {
            list-style: none;
            padding: 0;
        }

        .footer ul li {
            margin-bottom: 16px;
        }

        .footer ul li a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            transition: color 0.3s;
        }

        .footer ul li a:hover {
            color: var(--primary);
        }

        .footer ul li a i {
            color: var(--primary);
            margin-right: 8px;
        }

        .social-links a {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #cbd5e1;
            text-decoration: none;
            margin-right: 16px;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 32px;
            margin-top: 64px;
        }

        .payment-icons img {
            height: 16px;
            opacity: 1;
            transition: all 0.3s;
            margin-left: 16px;
        }

        .payment-icons img:hover {
            filter: grayscale(0%);
        }

        /* Reveal Animation */
        .reveal {
            opacity: 0;
            transform: translateY(15px);
            transition: all 0.7s ease-out;
        }

        .reveal.active {
            opacity: 1;
            transform: translateY(0);
        }

        .reveal.delay-100 { transition-delay: 0.1s; }
        .reveal.delay-200 { transition-delay: 0.2s; }
        .reveal.delay-300 { transition-delay: 0.3s; }

        /* Responsive */
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .floating-card {
                position: static;
                margin-top: 20px;
            }
            
            .offer-card {
                padding: 32px 24px;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }
        .partners-section h3{
            font-size: 60px!important;
            color: #000;
            font-weight: 700;
            margin-bottom: 15px;
        }
        a.btn-hero-primary.big-font-text {
    font-size: 28px;
}
.offer-card.p-2.text-center {
    padding: 15px !important;
}
.offer-card.p-2.text-center svg{
    height: 60px;
}
.offer-card.p-2.text-center p{
    font-size: 14px;
    padding-top: 5px;
}
p.mb-0.small-text {
    font-size: 14px;
}  
.mobile-top-bar.sticky-top {
    display: none;
} 

a.navbar-brand.d-flex.align-items-center img{
    width: 70px!important;
}
nav.navbar.navbar-expand-lg.sticky-top {
    padding: 5px 0px;
}




/* Main Card */
.order-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  padding: 24px;
  width: 80%;
  transform: rotate(2deg);
  transition: 0.4s;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.order-card:hover {
  transform: rotate(0deg);
}

/* Colors */
.bg-emerald-light {
  background: #d1fae5;
}

.text-emerald {
  color: #059669;
}

.text-lightblue {
  color: #bfdbfe;
}

/* Icon Circle */
.icon-circle {
  padding: 10px;
  border-radius: 50%;
}

/* Brand Card */
.brand-card {
  background: #ecfdf5;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  transition: .3s;
  cursor: pointer;
}

.brand-card:hover {
  box-shadow: 0 4px 18px rgba(0, 128, 96, 0.2);
}

/* Trust Card */
.trust-card {
  background: #2563eb;
  border-radius: 8px;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  transform: scale(1.05);
}

.icon-box,
.icon-box-white {
  background: white;
  padding: 10px;
  border-radius: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.1);
}

.icon-box-white {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
}

/* Divider */
.divider-text {
  position: absolute;
  top: -7px;
  right: 38%;
  background: white;
  padding: 0 10px;
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
}

/* Pulse Animation */
@keyframes pulse {
  50% { opacity: .5; }
}

.pulse {
  animation: pulse 1.8s infinite;
}




/* Section base */
.compare-section {
  background: #111827;
}

/* Texture Background */
.texture-bg {
  background-image: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.10;
}

/* Heading badge */
.badge-soft {
  background: rgba(255, 255, 255, 0.1);
  color: white;
}

/* Heading underline */
.heading-line {
  width: 90px;
  height: 6px;
  border-radius: 5px;
  background: linear-gradient(to right, #34d399, #3b82f6);
}

/* Main comparison card */
.compare-card {
  background: #1f2937;
  border-color: #374151 !important;
}

/* Branded box */
.brand-box {
  height: 160px;
  width: 90px;
  background: #374151;
  border: 2px dashed #4b5563;
  border-radius: 1rem;
}

.rotate-label {
  transform: rotate(-90deg);
  color: #6b7280;
  letter-spacing: 4px;
}

/* TrustMedRx box */
.trust-box {
  height: 180px;
  width: 120px;
  background: linear-gradient(to bottom right, #3b82f6, #1e40af);
  border-radius: 1rem;
  border-top: 4px solid #60a5fa;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
  position: relative;
  overflow: hidden;
}

/* .rotate-label-light {
  transform: rotate(-90deg);
  color: white;
  font-size: 1.4rem;
  letter-spacing: 4px;
} */
 .rotate-label-light {
   transform: rotate(-90deg);
  transform-origin: center;
  display: inline-block;
}
.trust-box.mx-auto.mb-3.position-relative.overflow-hidden{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Shine animation */
.shine-effect {
  inset: 0;
  background: rgba(255, 255, 255, 0.1);
  transform: skewX(12deg) translateX(-120%);
  transition: 1s;
}

.trust-box:hover .shine-effect {
  transform: translateX(120%) skewX(12deg);
}

/* VS Circle */
.vs-circle {
  height: 70px;
  width: 70px;
  border-radius: 50%;
  background: #facc15;
  color: #111;
  font-weight: 900;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 15px rgba(250, 204, 21, 0.4);
}

/* bounce animation */
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.animate-bounce {
  animation: bounce 1.4s infinite;
}

/* Savings Box */
.saving-box {
  background: rgba(55, 65, 81, 0.5);
  border-color: #4b5563 !important;
}

.saving-amount {
  background: linear-gradient(to right, #facc15, #fb923c);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Button */
.check-btn {
  background: #25D366;
  box-shadow: 0px 4px 10px rgba(52, 211, 153, 0.3);
}
.check-btn:hover {
  background: #20bd5a;
}








.theme-color{
    color: #10b981;
    font-weight: 800;
}
a.navbar-brand.d-flex.align-items-center.trust-medrx img{
    width: 110px!important;
}
p.text-emerald.small.fw-semibold.mb-0 {
    font-size: 12px;
}
p.small.fw-semibold.text-lightblue.mb-0 {
    font-size: 12px;
}
.trust-card.p-4.text-white.position-relative.overflow-hidden.mb-3.d-flex.align-items-center.justify-content-between {
    width: 96%;
    margin: auto;
}
button.btn.btn-dark.w-100.fw-bold.py-3.d-flex.align-items-center.justify-content-center.gap-2 {
    margin-top: 100px;
}
.decoration-none{
    text-decoration: none;
}
.partner-item img{
    width: 220px!important;
}






@media (max-width: 1199px) {
    a.nav-link {
    font-size: 13px;
}

}








@media (max-width: 991px) {
    p.lead.text-secondary.mx-auto.mb-5 {
    margin-bottom: 0px !important;
}
    .d-none-mob{
        display: none;
    }
    section#story-new img{
        width: 100%!important;
    }
    section.contact-hero.hero-section
 {
    padding: 50px 0px 150px 0px;
}
    span.badge.bg-primary.px-4.py-2.mb-2 {
    font-size: 11px!important;
    background: #084298 !important;
    margin-top: 20px!important;
    margin-bottom: 20px!important;
    padding: 14px 18px!important; 
}
    .p-5.rounded-5.border.bg-light.text-center {
    padding: 10px !important;
}
    .price-toggle.mt-2 {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}
    h2.theme-heading-colored.mb-4 {
    font-size: 40px!important;
    margin-bottom: 10px!important;
}
    .savings-box {
    border-radius: 10px!important;
    padding: 20px!important;
}
    a.btn.btn-success.btn-lg.rounded-pill.px-5.shadow {
    padding: 10px !important;
    font-size: 16px;
}
    .col-lg-12.text-center.pb-5 {
    padding-bottom: 20px !important;
}
    .comparison-wrapper {
    padding: 40px 10px!important;
}
   section.comparison-wrapper h2 {
    line-height: 44px!important;
    font-size: 27px!important;
}
    h6.text-uppercase.text-theme.fw-bold.mb-2 {
    font-size: 13px;
}
    h2.theme-heading-colored.fs-20 {
    font-size: 23px !important;
    font-weight: 800;
    line-height: 37px!important;
}
    .vs-circle-1 {
    top: 45%!important;
}
    .price-card.generic-price {
    margin-top: 20px;
}
    h1.hero-title{
        line-height: 63px;
    }
    .btn-primary-custom {
    padding: 10px 10px!important;
    }

    a.navbar-brand.d-flex.align-items-center img {
    width: 70px !important;
}
a.navbar-brand.d-flex.align-items-center.trust-medrx img {
    width: 70px !important;
}
    .top-bar {
    display: none;
}
    .mobile-top-bar.sticky-top {
        display: block;
    background: #fff;
    padding: 10px 0px 10px 0px
}
    nav.navbar.navbar-expand-lg.sticky-top {
        display: none;
        box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    }
    section.partners-section h3{
        font-size: 25px!important;
    }
    .offer-card h3 {
    font-size: 30px;
}
section.partners-section img{
    width: 70%!important;
    margin-bottom: 20px;
}
.col-lg-6.reveal.delay-200.active img{
    width: 60%!important;
    text-align: center;
    margin: auto;
}
.col-lg-6.reveal.delay-200.active{
    display: flex;
}
.d-flex.flex-column.flex-sm-row.gap-3.justify-content-center.justify-content-lg-start.mt-4.hero-features a{
    width: 60%;
    justify-content: center;

}
.d-flex.flex-column.flex-sm-row.gap-3.justify-content-center.justify-content-lg-start.mt-4.hero-features{
    justify-content: center;
        border: none;
}
.section-padding {
    padding: 30px 0;
}
.partners-section {
    padding: 30px 0;
}
.col-lg-6.reveal.delay-200.active{
    display: none;
}
.col-lg-4.reveal.delay-200.active img{
    display: none;
}
.offer-card.p-2.text-center {
    margin: 10px;
}
.g-5, .gx-5 {
    --bs-gutter-x: 0rem!important;
}
.gap-5 {
    gap: 1rem !important;
}
.col-md-6.col-lg-3{
    margin-top: 10px;
}
a.btn.btn-primary {
    background: #10b981;
    border-color: #10b981;
}
.row.g-5.mb-5 {
    margin-bottom: 0px !important;
}
.footer-bottom {
    margin-top: 14px!important;
}

}















/* about css start  */



  /* --- "Wahi Salt, Kam Dam" Comparison Section --- */
        .comparison-section {
            background-color: #f0f8ff;
            padding: 80px 0;
            position: relative;
        }
        .vs-circle-1 {
            width: 60px;
            height: 60px;
            background: #ff4757;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            font-size: 20px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            z-index: 10;
            box-shadow: 0 0 0 5px rgba(255,255,255,0.5);
        }
        .price-card {
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }
        .brand-price { background: #fff; color: #555; border: 1px solid #ddd; opacity: 0.8; }
        .generic-price { 
            background:#198754; 
            color: white; 
            transform: scale(1.05); 
            box-shadow: 0 10px 30px rgba(25, 135, 84, 0.3); 
        }
        :root {
            --primary-blue: #084298;
            --primary-green: #198754;
            --light-green: #e9f7ef;
            --dark-blue: #052c65;
            --text-gray: #6c757d;
            --bg-light: #f8f9fa;
        }


        /* --- Global Utilities --- */
        /* .section-padding { padding: 80px 0; }
        .text-brand-blue { color: var(--primary-blue); }
        .text-brand-green { color: var(--primary-green); }
        .bg-brand-blue { background-color: var(--primary-blue); }
        .bg-brand-green { background-color: var(--primary-green); }
        
        .btn-custom-primary {
            background-color: var(--primary-blue);
            color: white;
            padding: 12px 30px;
            border-radius: 50px;
            transition: 0.3s;
        }
        .btn-custom-primary:hover {
            background-color: var(--dark-blue);
            transform: translateY(-2px);
            color: white;
        } */

        

        /* --- Hero Section (Redefined) --- */
    

        /* --- Stats Section (New) --- */
        .stat-card {
            border: none;
            background: white;
            padding: 30px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: 0.3s;
            text-align: center;
        }
        .stat-card:hover { transform: translateY(-5px); }
        .stat-icon {
            font-size: 2.5rem;
            margin-bottom: 15px;
            background: -webkit-linear-gradient(45deg, var(--primary-blue), var(--primary-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--dark-blue); }

        /* --- Story Section --- */
        .story-img-wrapper {
            position: relative;
            padding: 20px;
        }
        .story-img-main {
            border-radius: 20px;
            width: 100%;
            box-shadow: 0 20px 40px rgba(0,0,0,0.1);
        }
        .story-badge {
            position: absolute;
            bottom: 40px;
            left: -10px;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            border-left: 5px solid var(--primary-green);
            max-width: 200px;
        }

        /* --- How It Works (New) --- */
        .process-section { background-color: #fff; }
        .process-step {
            position: relative;
            padding: 30px;
            border: 1px dashed #ddd;
            border-radius: 15px;
            transition: 0.3s;
        }
        .process-step:hover {
            border-color: var(--primary-green);
            background: var(--light-green);
        }
        .step-number {
            width: 40px; height: 40px;
            background: var(--primary-blue);
            color: white;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* --- Savings Comparison (Redefined) --- */
        .comparison-wrapper {
            background: var(--dark-blue);
            padding: 60px 40px;
            color: white;
            position: relative;
            overflow: hidden;
        }
        .comparison-circle {
            position: absolute;
            top: -50px; right: -50px;
            width: 200px; height: 200px;
            background: rgba(255,255,255,0.05);
            border-radius: 50%;
        }
        .savings-card {
            background: rgba(255,255,255,0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            border: 1px solid rgba(255,255,255,0.1);
        }
        .savings-highlight {
            color: #4ade80; /* Bright green for text on dark bg */
            font-weight: 800;
        }

        /* --- FAQ Accordion (New) --- */
        .accordion-item { border: none; margin-bottom: 15px; }
        .accordion-button {
            border-radius: 10px !important;
            background: white;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            font-weight: 600;
            padding: 20px;
            color: var(--dark-blue);
        }
        .accordion-button:not(.collapsed) {
            background: var(--light-green);
            color: var(--primary-green);
            box-shadow: none;
        }
        .accordion-body { background: white; border-radius: 0 0 10px 10px; }

       section.comparison-wrapper h2{
        font-size: 38px;
       }







/* policy page css start hererer */
.policy-content p{
    color: #000;
    line-height: 30px;
}
.policy-content h2{
    color: #000;
    font-size: 30px;
}
.policy-content ul{
    margin: 0px;
    padding: 0px;
    padding-left: 10px;
    margin-bottom: 10px;
    line-height: 33px;
}
.policy-content ul li{
    color: #64748b;
}
/* policy page css end hererer */





.text-theme{
    color: #10b981;
    text-decoration: none;
}
p{
    font-size: 16px!important;
}
.theme-heading-colored{
    color: #1f2937;
}
.card-text{ 
    color: #1f2937!important;
    font-weight: 700;
}
h2.theme-heading-colored.fs-20 {
    font-size: 41px;
    font-weight: 800;
    line-height: 60px;
}
section.hero-section.text-center.pt-5.pb-5 h1 {
    font-size: 52px;
    font-weight: 800;
}
span.badge.bg-light.text-primary.p-2.px-3.rounded-pill.me-2 {
    padding: 15px 30px!important; 
}
span.badge.bg-light.text-primary.p-2.px-3.rounded-pill{
    padding: 15px 30px!important; 
}
h2.theme-heading-colored.mb-4 {
    font-size: 50px;
    font-weight: 800 !important;
}
.text-red{
    color: #ff0026;
}
span.badge.bg-primary.px-4.py-2.mb-2 {
    font-size: 18px;
    background: #084298 !important;
    padding: 20px 30px !important;
}