
        :root {
            --nhs-blue: #005EB8;
            --mint-green: #28A197;
            --light-blue: #E8F4FD;
            --dark-text: #2c3e50;
            --light-gray: #f8f9fa;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--dark-text);
            overflow-x: hidden;
        }

        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
            padding: 1rem 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            transition: all 0.3s ease;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.8rem;
            color: var(--nhs-blue) !important;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--dark-text) !important;
            margin: 0 0.5rem;
            transition: color 0.3s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--nhs-blue) !important;
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, var(--nhs-blue) 0%, var(--mint-green) 100%);
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            cursor: crosshair;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('https://images.pexels.com/photos/4173251/pexels-photo-4173251.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            opacity: 0.1;
            z-index: 1;
            transition: opacity 0.3s ease;
        }

        .hero:hover::before {
            opacity: 0.15;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            color: white;
        }

        .hero h1 {
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            opacity: 0;
            transform: translateY(30px);
            background: linear-gradient(45deg, #ffffff, #e8f4fd, #ffffff);
            background-size: 200% 200%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            animation: shimmer 3s ease-in-out infinite;
        }

        @keyframes shimmer {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
            opacity: 0;
            transform: translateY(30px);
        }

        .hero-buttons {
            opacity: 0;
            transform: translateY(30px);
        }

        .btn-primary {
            background: var(--mint-green);
            border: none;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            margin-right: 1rem;
            position: relative;
            overflow: hidden;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: left 0.6s ease;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: #1e8a7f;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(40, 161, 151, 0.4);
        }

        .btn-outline-light {
            border: 2px solid white;
            padding: 12px 30px;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .btn-outline-light::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: 100%;
            background: white;
            transition: width 0.3s ease;
            z-index: -1;
        }

        .btn-outline-light:hover::before {
            width: 100%;
        }

        .btn-outline-light:hover {
            color: var(--nhs-blue);
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }

        /* Interactive floating elements */
        .floating-element {
            position: absolute;
            opacity: 0.4;
            animation: float 6s ease-in-out infinite;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .floating-element:hover {
            opacity: 0.8;
            transform: scale(1.2);
            animation-play-state: paused;
        }

        .floating-element.fe-1 {
            top: 20%;
            right: 10%;
            animation-delay: 0s;
        }

        .floating-element.fe-2 {
            top: 60%;
            left: 10%;
            animation-delay: 2s;
        }

        .floating-element.fe-3 {
            bottom: 20%;
            right: 20%;
            animation-delay: 4s;
        }

        .floating-element.fe-4 {
            top: 30%;
            left: 20%;
            animation-delay: 1s;
        }

        .floating-element.fe-5 {
            bottom: 30%;
            left: 15%;
            animation-delay: 3s;
        }

        .floating-element.fe-6 {
            top: 70%;
            right: 30%;
            animation-delay: 5s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            25% { transform: translateY(-15px) rotate(5deg); }
            50% { transform: translateY(-30px) rotate(0deg); }
            75% { transform: translateY(-15px) rotate(-5deg); }
        }

        /* Particle system */
        .hero-particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
            pointer-events: none;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 50%;
            animation: particleFloat 10s infinite linear;
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) translateX(0);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) translateX(200px);
                opacity: 0;
            }
        }

        /* Interactive highlight effect */
        .hero-highlight {
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
            z-index: 2;
            transition: all 0.3s ease;
            opacity: 0;
        }

        /* Typing effect */
        .typewriter {
            overflow: hidden;
            border-right: 2px solid white;
            white-space: nowrap;
            animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0 }
            to { width: 100% }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent }
            50% { border-color: white }
        }

        /* Pulse effect for important text */
        .pulse-text {
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.7; }
        }

        /* Interactive stats counter */
      .hero-stats {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}


        .hero-stat {
            text-align: center;
            padding: 1rem;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .hero-stat:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.2);
        }

        .hero-stat-number {
            font-size: 2rem;
            font-weight: 700;
            color: var(--white);
            margin-bottom: 0.5rem;
        }

        .hero-stat-label {
            font-size: 0.9rem;
            color: rgba(255, 255, 255, 0.8);
        }

        /* Section Styles */
        .section {
            padding: 80px 0;
        }

       .section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--nhs-blue);
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 60px;
  background-color: var(--mint-green);
  border-radius: 2px;
}

        .section-subtitle {
            font-size: 1.2rem;
            text-align: left;
            color: #666;
            margin-bottom: 2rem;
        }

        /* Challenge Section */
        .challenge {
            background: var(--light-gray);
        }

        .challenge-content {
            display: flex;
            align-items: center;
            gap: 3rem;
        }

        .challenge-text {
            flex: 1;
        }

        .challenge-visual {
            /* flex: 1; */
            text-align: center;
        }

        .challenge-icon {
            font-size: 8rem;
            color: var(--nhs-blue);
            opacity: 0.8;
        }

        /* Features Grid */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .feature-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: transform 0.3s ease;
            margin-bottom: 16px;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--mint-green);
            margin-bottom: 1rem;
        }

        .feature-card h4 {
            color: var(--nhs-blue);
            margin-bottom: 1rem;
        }

        /* Impact Section */
        .impact {
            background: var(--light-blue);
        }

        .impact-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            text-align: center;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
        }

        .stat-icon {
            font-size: 3rem;
            color: var(--mint-green);
            margin-bottom: 1rem;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--nhs-blue);
            margin-bottom: 0.5rem;
        }

        /* Audience Section */
        .audience-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .audience-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            text-align: center;
            transition: all 0.3s ease;
        }

        .audience-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
        }

        .audience-icon {
            font-size: 3rem;
            color: var(--nhs-blue);
            margin-bottom: 1rem;
        }

        /* Comparison Table */
        .comparison-table {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
            margin-top: 3rem;
        }

        .comparison-table th {
            background: var(--light-blue);
            color: white;
            padding: 1.5rem;
            font-weight: 600;
        }

        .comparison-table td {
            padding: 1.5rem;
            border-bottom: 1px solid #eee;
        }

        .comparison-table .highlight {
            background: var(--nhs-blue);
            font-weight: 600;
            color: #ffffff;
        }
        .lowlight{
             background:#ffffff !important;
             color: #000000 !important;
        }
        .midlight{
              background: var(--light-blue) !important;
             color: #000000 !important;
        }

        /* Mission Section */
        .mission {
            background: linear-gradient(rgba(0, 94, 184, 0.9), rgba(40, 161, 151, 0.9)), url('https://images.pexels.com/photos/4167541/pexels-photo-4167541.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover;
            color: white;
            text-align: center;
        }

        .mission-content {
            max-width: 800px;
            margin: 0 auto;
        }

        .mission h2 {
            color: white;
            margin-bottom: 2rem;
        }

        .mission p {
            font-size: 1.3rem;
            font-weight: 300;
            line-height: 1.8;
        }

        /* Scale Section */
        .scale {
            background: var(--light-gray);
        }

        .partners {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }

        .partner-logo {
            font-size: 2rem;
            color: var(--nhs-blue);
            opacity: 0.7;
            transition: opacity 0.3s ease;
        }

        .partner-logo:hover {
            opacity: 1;
        }

        /* CTA Section */
        .cta-section {
            background: var(--nhs-blue);
            color: white;
            text-align: center;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            padding: 15px 30px;
            background: var(--mint-green);
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .cta-btn:hover {
            background: #1e8a7f;
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(40, 161, 151, 0.4);
            color: white;
        }

        .cta-btn.secondary {
            background: transparent;
            border: 2px solid white;
        }

        .cta-btn.secondary:hover {
            background: white;
            color: var(--nhs-blue);
        }

        /* Footer */
        footer {
            background: var(--dark-text);
            color: white;
            text-align: center;
            padding: 2rem 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .challenge-content {
                flex-direction: column;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .navbar-nav {
                text-align: center;
            }
        }

        /* Animation classes */
        .animate-fade-in {
            opacity: 0;
            transform: translateY(30px);
        }

        .animate-fade-in.animated {
            opacity: 1;
            transform: translateY(0);
            transition: all 0.6s ease;
        }

        .animate-slide-left {
            opacity: 0;
            transform: translateX(-50px);
        }

        .animate-slide-left.animated {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.6s ease;
        }

        .animate-slide-right {
            opacity: 0;
            transform: translateX(50px);
        }

        .animate-slide-right.animated {
            opacity: 1;
            transform: translateX(0);
            transition: all 0.6s ease;
        }
    
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

a:focus, button:focus {
    outline: 3px solid #28A197;
    outline-offset: 2px;
}
.challenge-card {
  background: var(--white);
  border-left: 5px solid var(--nhs-blue);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  border-radius: 12px;
  max-width: 1000px;
}

.challenge-icon-wrap {
  width: 80px;
  height: 80px;
  background: var(--light-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-icon {
  font-size: 2.5rem;
  color: var(--nhs-blue);
}

.text-col {
  flex: 1;
}

@media (max-width: 768px) {
  .challenge-card {
    text-align: center;
  }

  .text-col {
    text-align: left;
  }
}
.testimonial-slider-section {
  background: #e8f4fd;
  padding: 80px 0;
}

#testimonial-slider {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 20px 0;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 6px solid #28a197;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  font-size: 1.2rem;
  font-style: italic;
  width: 100%;
}

.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

.testimonial-progress-bar {
  margin-top: 20px;
  margin-bottom: 20px;
  height: 4px;
  width: 0%;
  background: #28a197;
  border-radius: 2px;
  transition: width 0.2s linear;
}

@media all and (min-width:551px) {
    .desktop-br {display: inline;}
    .mobile-br {display: none;}
}
@media all and (max-width:550px) {

}
@media all and (max-width:1199px) {
        .desktop-br {display: none;}
    .mobile-br {display: inline;}
    .mobile-margin { margin-top: 16px; }
}

        /* Achievement Banner */
        .achievement-banner {
            background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FFD700 100%);
            padding: 20px 0;
            border-top: 3px solid #FFB700;
            border-bottom: 3px solid #FFB700;
            position: relative;
            overflow: hidden;
        }

        .achievement-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            animation: bannerShine 3s ease-in-out infinite;
        }

        @keyframes bannerShine {
            0% { left: -100%; }
            50% { left: 100%; }
            100% { left: 100%; }
        }

        .banner-content {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .banner-icon {
            font-size: 2.5rem;
            color: #B8860B;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        .banner-text {
            text-align: center;
        }

        .banner-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #8B4513;
            margin: 0;
            text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
        }

        .banner-subtitle {
            font-size: 1rem;
            font-weight: 600;
            color: #A0522D;
            margin: 0;
            font-style: italic;
        }

        .banner-badge {
            background: linear-gradient(135deg, #8B4513, #A0522D);
            color: white;
            padding: 8px 16px;
            border-radius: 25px;
            font-weight: 700;
            box-shadow: 0 4px 15px rgba(0,0,0,0.2);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        .badge-text {
            font-size: 1.1rem;
        }

        /* Responsive adjustments for banner */
        @media (max-width: 768px) {
            .banner-content {
                flex-direction: column;
                gap: 1rem;
            }

            .banner-title {
                font-size: 1.2rem;
            }

            .banner-subtitle {
                font-size: 0.9rem;
            }

            .banner-icon {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .banner-title {
                font-size: 1.1rem;
                line-height: 1.3;
            }

            .banner-subtitle {
                font-size: 0.85rem;
            }
        }

        /* Section Styles */
        .challenge {
  background: var(--light-gray);
}
