   
/* doctor */
        :root {
            --primary-blue: #0a58ca;
            --dark-blue: #16469b;
            --light-blue: #e3f2fd;
            --accent-green: #45b812;
            --dark-green: #45b812;
            --light-green: #e8f5e9;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: #45b812;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
        }
        
        .nav-cta-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 180px 0 100px;
            margin-top: 76px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .page-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb-item a:hover {
            color: white;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Filter Section */
        .filter-section {
            padding: 60px 0 30px;
            background-color: var(--light-gray);
        }
        
        .filter-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
        }
        
        .filter-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .filter-group {
            margin-bottom: 1.5rem;
        }
        
        .filter-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        
        .filter-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .filter-pill {
            background: var(--white);
            border: 2px solid var(--medium-gray);
            color: var(--text-dark);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-pill:hover, .filter-pill.active {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
        }
        
        .filter-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--white);
            transition: var(--transition);
        }
        
        .filter-select:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.1);
        }
        
        .filter-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .btn-filter {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-filter:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
        }
        
        .btn-reset {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-reset:hover {
            background: var(--light-blue);
        }
        
        /* Doctors Grid Section */
        .doctors-grid-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .doctor-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        
        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .doctor-image {
            height: 280px;
            width: 100%;
            object-fit: cover;
        }
        
        .doctor-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #45b812;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }
        
        .doctor-content {
            padding: 2rem;
        }
        
        .doctor-name {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }
        
        .doctor-designation {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .doctor-specialty {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .doctor-experience {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .experience-icon {
            color: #45b812;
            font-size: 1.2rem;
        }
        
        .experience-text {
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .doctor-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .skill-tag {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .doctor-actions {
            display: flex;
            gap: 1rem;
        }
        
        .btn-profile {
            flex: 1;
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-profile:hover {
            background: var(--light-blue);
        }
        
        .btn-appointment {
            flex: 1;
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-appointment:hover {
            background: var(--dark-blue);
        }
        
        /* Featured Doctor Section */
        .featured-doctor-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .featured-doctor-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .featured-doctor-content {
            padding: 3rem;
        }
        
        .featured-doctor-header {
            margin-bottom: 2rem;
        }
        
        .featured-badge {
            display: inline-block;
            background: #45b812;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .featured-doctor-name {
            font-size: 2.2rem;
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }
        
        .featured-doctor-role {
            font-size: 1.3rem;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .featured-doctor-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .featured-stat {
            text-align: center;
        }
        
        .featured-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        
        .featured-stat-text {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .featured-doctor-timeline {
            margin-bottom: 2rem;
        }
        
        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .timeline-item {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #45b812;
            border-radius: 50%;
        }
        
        .timeline-year {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .featured-doctor-achievements {
            margin-bottom: 2rem;
        }
        
        .achievements-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .achievement-list {
            list-style: none;
            padding-left: 0;
        }
        
        .achievement-item {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .achievement-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #45b812;
            font-weight: bold;
        }
        
        .btn-featured-profile {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .btn-featured-profile:hover {
            background: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 88, 202, 0.3);
        }
        
        /* Why Our Doctors Section */
        .why-doctors-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .feature-card {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius);
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-green), var(--light-blue));
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--text-light);
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(10, 88, 202, 0.2);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 88, 202, 0.3);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: #000;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            /* gap: 1rem; */
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .page-title {
                font-size: 3rem;
            }
            
            .featured-doctor-name {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .featured-doctor-content {
                padding: 2rem;
            }
            
            .doctor-image {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .filter-pills {
                justify-content: center;
            }
            
            .doctor-actions {
                flex-direction: column;
            }
            
            .featured-doctor-stats {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .filter-card {
                padding: 1.5rem;
            }
            
            .doctor-content {
                padding: 1.5rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
            .topper-image img{
                width: 200px !important;
            }
        }
    
        
        :root {
            --primary-blue: #0a58ca;
            --dark-blue: #16469b;
            --light-blue: #e3f2fd;
            --accent-green: #2ecc71;
            --dark-green: #27ae60;
            --light-green: #e8f5e9;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: #45b812;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
        }
        
        .nav-cta-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
        }
        
        /* Hero Section */
        .hero-section {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f8fdff 0%, #e8f5e9 100%);
            padding-top: 100px;
        }
        
        .hero-bg-shape {
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 25% 0);
            z-index: 1;
        }
        
        .hero-content {
            position: relative;
            z-index: 2;
        }
        
        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
            line-height: 1.1;
        }
        
        .hero-title span {
            color: #45b812;
        }
        
        .hero-subtitle {
            font-size: 1.25rem;
            color: var(--text-light);
            margin-bottom: 2.5rem;
            max-width: 600px;
        }
        
        .hero-buttons {
            display: flex;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .btn-primary {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(10, 88, 202, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 88, 202, 0.3);
        }
        
        .btn-secondary {
            background: linear-gradient(135deg, var(--accent-green), var(--dark-green));
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(46, 204, 113, 0.2);
        }
        
        .btn-secondary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(46, 204, 113, 0.3);
        }
        
        .hero-stats {
            display: flex;
            gap: 3rem;
            margin-top: 3rem;
            flex-wrap: wrap;
        }
        
        .stat-item {
            text-align: center;
        }
        
        .stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        
        .stat-text {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .hero-image-container {
            position: relative;
            z-index: 2;
        }
        
        .hero-main-image {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            transform: perspective(1000px) rotateY(-5deg);
            transition: var(--transition);
        }
        
        .hero-main-image:hover {
            transform: perspective(1000px) rotateY(0deg);
        }
        
        .floating-badge {
            position: absolute;
            background: var(--white);
            border-radius: 12px;
            padding: 1.25rem;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            animation: float 6s ease-in-out infinite;
        }
        
        .badge-1 {
            top: 10%;
            right: 5%;
            animation-delay: 0s;
        }
        
        .badge-2 {
            bottom: 20%;
            left: 5%;
            animation-delay: 2s;
        }
        
        .badge-3 {
            bottom: 10%;
            right: 15%;
            animation-delay: 4s;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-15px) rotate(2deg); }
        }
        
        /* About Section */
        .about-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .about-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .about-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .about-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        .about-card h4 {
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        /* Specialties Section */
        .specialties-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .specialty-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .specialty-card:hover {
            transform: translateY(-15px);
            box-shadow: var(--shadow-lg);
        }
        
        .specialty-image {
            height: 200px;
            width: 100%;
            object-fit: cover;
        }
        
        .specialty-content {
            padding: 2rem;
        }
        
        .specialty-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            color: white;
            font-size: 1.5rem;
        }
        
        /* Doctors Section */
        .doctors-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .doctor-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .doctor-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        
        .doctor-content {
            padding: 1.5rem;
        }
        
        .doctor-name {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }
        
        .doctor-specialty {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .doctor-qualifications {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
        }
        
        .qualification-badge {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .feature-box {
            text-align: center;
            padding: 3rem 2rem;
            border-radius: var(--border-radius);
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
        }
        
        .feature-box:hover .feature-icon {
            background: rgba(255, 255, 255, 0.2);
            color: white;
        }
        
        .feature-box:hover p {
            color: rgba(255, 255, 255, 0.9);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
            transition: var(--transition);
        }
        
        /* Publications Section */
        .publications-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .publication-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            margin-bottom: 1.5rem;
            border-left: 5px solid var(--primary-blue);
        }
        
        .publication-card:hover {
            transform: translateX(10px);
            box-shadow: var(--shadow-lg);
        }
        
        /* Appointment Section */
        .appointment-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
        }
        
        .appointment-form-container {
            background: rgba(255, 255, 255, 0.95);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-lg);
        }
        
        .form-control {
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            padding: 1rem;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary-blue);
            box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.1);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .hero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .hero-bg-shape {
                width: 70%;
                opacity: 0.5;
            }
        }
        
        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-subtitle {
                font-size: 1.1rem;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .floating-badge {
                display: none;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .hero-title {
                font-size: 2rem;
            }
            
            .feature-box, .appointment-form-container {
                padding: 2rem 1.5rem;
            }
            
            .about-card {
                padding: 2rem;
            }
        }
  


     
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #f8f9fa;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

   

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }

        /* Hero Section */
        .services-hero {
            background: linear-gradient(rgba(13, 77, 140, 0.85), rgba(13, 77, 140, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-bottom: 50px;
        }

        .services-hero h1 {
            font-family: 'Poppins', sans-serif;
            font-size: 3.5rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .services-hero p {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
        }

        /* Services Intro */
        .services-intro {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 60px;
        }

        .services-intro h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            color: #1a6bb3;
            margin-bottom: 20px;
        }

        .services-intro p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
        }

        /* Specializations Highlight */
        .specialization-highlight {
            background: #e6f2ff;
            padding: 60px 0;
            margin: 50px 0;
            border-radius: 15px;
        }

        .highlight-container {
            text-align: center;
        }

        .highlight-container h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.2rem;
            color: #1a6bb3;
            margin-bottom: 40px;
        }

        .specialization-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }

        .specialization-card {
            background: white;
            padding: 40px 30px;
            border-radius: 12px;
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .specialization-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
        }

        .specialization-card i {
            font-size: 3.5rem;
            color: #1a6bb3;
            margin-bottom: 25px;
        }

        .specialization-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.6rem;
            margin-bottom: 15px;
            color: #1a6bb3;
        }

        .specialization-card p {
            color: #666;
            margin-bottom: 20px;
        }

        .procedure-count {
            display: inline-block;
            background: #1a6bb3;
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }

        /* Services Grid */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            margin: 60px 0;
        }

        .service-card {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .service-card:hover {
            transform: translateY(-5px);
        }

        .service-header {
            background: #1a6bb3;
            color: white;
            padding: 25px;
            text-align: center;
        }

        .service-header i {
            font-size: 2.5rem;
            margin-bottom: 15px;
        }

        .service-header h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            font-weight: 600;
        }

        .service-body {
            padding: 30px;
        }

        .service-body p {
            color: #555;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        .service-list {
            list-style: none;
            margin-top: 20px;
        }

        .service-list li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #555;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .service-list li:last-child {
            border-bottom: none;
        }

        .service-list i {
            color: #1a6bb3;
        }

        /* Advanced Laparoscopy Section */
        .advanced-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            padding: 80px 0;
            margin: 80px 0;
            border-radius: 15px;
        }

        .advanced-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        @media (max-width: 992px) {
            .advanced-container {
                grid-template-columns: 1fr;
            }
        }

        .advanced-content h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.3rem;
            color: #1a6bb3;
            margin-bottom: 25px;
        }

        .advanced-content p {
            font-size: 1.1rem;
            color: #555;
            margin-bottom: 25px;
            line-height: 1.8;
        }

        .benefits-list {
            list-style: none;
            margin-top: 20px;
        }

        .benefits-list li {
            padding: 12px 0;
            font-size: 1.05rem;
            color: #444;
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .benefits-list i {
            color: #28a745;
            font-size: 1.2rem;
        }

        .advanced-stats {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }

        .stat-box {
            background: white;
            padding: 30px;
            border-radius: 12px;
            text-align: center;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border-top: 4px solid #1a6bb3;
        }

        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            color: #1a6bb3;
            margin-bottom: 10px;
            font-family: 'Poppins', sans-serif;
        }

        .stat-label {
            color: #666;
            font-weight: 500;
            font-size: 1.1rem;
        }

        /* Emergency & Trauma Care */
        .emergency-section {
            background: #fff3cd;
            border: 1px solid #ffeaa7;
            border-radius: 12px;
            padding: 40px;
            margin: 60px 0;
            display: flex;
            align-items: center;
            gap: 40px;
        }

        @media (max-width: 768px) {
            .emergency-section {
                flex-direction: column;
                text-align: center;
            }
        }

        .emergency-icon {
            font-size: 4rem;
            color: #dc3545;
        }

        .emergency-content h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 2rem;
            color: #dc3545;
            margin-bottom: 15px;
        }

        .emergency-content p {
            color: #856404;
            font-size: 1.1rem;
            margin-bottom: 20px;
        }

        .emergency-contact {
            font-size: 1.5rem;
            font-weight: 700;
            color: #dc3545;
            display: block;
            margin-top: 15px;
        }

        /* Research & Academics */
        .research-section {
            background: #e8f4fc;
            padding: 60px 0;
            border-radius: 15px;
            margin: 80px 0;
        }

        .research-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.3rem;
            color: #1a6bb3;
            text-align: center;
            margin-bottom: 50px;
        }

        .research-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .research-card {
            background: white;
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
            text-align: center;
        }

        .research-card i {
            font-size: 2.8rem;
            color: #1a6bb3;
            margin-bottom: 20px;
        }

        .research-card h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.5rem;
            color: #1a6bb3;
            margin-bottom: 15px;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, #1a6bb3 0%, #0d4d8c 100%);
            color: white;
            padding: 80px 0;
            text-align: center;
            border-radius: 15px;
            margin: 60px 0;
        }

        .cta-section h2 {
            font-family: 'Poppins', sans-serif;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }

        .cta-section p {
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto 40px;
            opacity: 0.9;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .btn {
            padding: 16px 35px;
            border-radius: 8px;
            font-weight: 600;
            text-align: center;
            text-decoration: none;
            transition: all 0.3s;
            cursor: pointer;
            border: none;
            font-size: 1.1rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .btn-primary {
            background: white;
            color: #1a6bb3;
        }

        .btn-primary:hover {
            background: #f8f9fa;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Footer */
        footer {
            background: #0d3a66;
            color: white;
            padding: 50px 0 20px;
            margin-top: 50px;
        }

        .footer-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 30px;
        }

        .footer-section h3 {
            font-family: 'Poppins', sans-serif;
            font-size: 1.3rem;
            margin-bottom: 20px;
            color: #a6d5ff;
        }

        .footer-section p, .footer-section a {
            color: #c2dfff;
            margin-bottom: 10px;
            display: block;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-section a:hover {
            color: white;
        }

        .copyright {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a6d5ff;
            font-size: 0.9rem;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .services-hero h1 {
                font-size: 2.8rem;
            }
            
            nav ul {
                gap: 15px;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 25px;
                right: 20px;
            }
            
            nav ul {
                display: none;
                flex-direction: column;
                width: 100%;
                background: rgba(13, 77, 140, 0.95);
                padding: 20px;
                border-radius: 8px;
                margin-top: 20px;
            }
            
            nav ul.active {
                display: flex;
            }
            
            .services-hero h1 {
                font-size: 2.3rem;
            }
            
            .services-hero p {
                font-size: 1.1rem;
            }
            
            .services-grid {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            .services-hero {
                padding: 70px 0;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .advanced-stats {
                grid-template-columns: 1fr;
            }
            
            .stat-box {
                padding: 20px;
            }
        }


      
        :root {
            --primary-blue: #0a58ca;
            --dark-blue: #16469b;
            --light-blue: #e3f2fd;
            --accent-green: #2ecc71;
            --dark-green: #27ae60;
            --light-green: #e8f5e9;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: #45b812;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
        }
        
        .nav-cta-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(rgba(10, 88, 202, 0.9), rgba(13, 71, 161, 0.9)), 
                        url('https://images.unsplash.com/photo-1586773860418-dc22f8b874bc?ixlib=rb-4.0.3&auto=format&fit=crop&w=1600&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 100px;
            margin-top: 76px;
            text-align: center;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* About Intro Section */
        .about-intro {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .intro-image {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .intro-image:hover {
            transform: scale(1.02);
        }
        
        .intro-content {
            padding-left: 3rem;
        }
        
        .intro-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .intro-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .intro-stat {
            text-align: center;
        }
        
        .intro-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        
        .intro-stat-text {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Mission Vision Section */
        .mission-vision-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .mission-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            text-align: center;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .value-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            border-top: 5px solid transparent;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .value-card:nth-child(1) { border-top-color: var(--primary-blue); }
        .value-card:nth-child(2) { border-top-color: #45b812; }
        .value-card:nth-child(3) { border-top-color: #ff6b6b; }
        .value-card:nth-child(4) { border-top-color: #feca57; }
        
        .value-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
        }
        
        .value-card:nth-child(1) .value-icon { background: var(--primary-blue); }
        .value-card:nth-child(2) .value-icon { background: #45b812; }
        .value-card:nth-child(3) .value-icon { background: #ff6b6b; }
        .value-card:nth-child(4) .value-icon { background: #feca57; }
        
        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 2rem;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            position: relative;
        }
        
        .timeline-year {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--white);
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            box-shadow: 2px -2px 5px rgba(0,0,0,0.1);
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: -10px;
            background-color: var(--white);
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
        }
        
        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: #45b812;
            border: 4px solid var(--white);
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
            right: auto;
        }
        
        /* Leadership Section */
        .leadership-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .leader-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .leader-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        
        .leader-content {
            padding: 2rem;
            text-align: center;
        }
        
        .leader-name {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }
        
        .leader-role {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .leader-qualifications {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }
        
        .qualification-badge {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Facilities Section */
        .facilities-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .facility-card {
            text-align: center;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .facility-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            background: var(--white);
            color: var(--primary-blue);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .page-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .intro-content {
                padding-left: 0;
                margin-top: 3rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -10px;
                right: auto;
                transform: translateY(-50%) rotate(-45deg);
            }
            
            .timeline-dot {
                left: 21px;
                right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .intro-stats {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .mission-card, .value-card, .facility-card {
                padding: 2rem;
            }
            
            .leader-content {
                padding: 1.5rem;
            }
        }


        :root {
            --primary-blue: #0a58ca;
            --dark-blue: #16469b;
            --light-blue: #e3f2fd;
            --accent-green: #2ecc71;
            --dark-green: #27ae60;
            --light-green: #e8f5e9;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: #45b812;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
        }
        
        .nav-cta-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
        }
        
        /* Page Header */
        .page-header {
          background: linear-gradient(rgba(13, 77, 140, 0.85), rgba(13, 77, 140, 0.9)), url('https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            padding: 180px 0 100px;
            margin-top: 76px;
            text-align: center;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
        }
        
        .page-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
        }
        
        /* About Intro Section */
        .about-intro {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .intro-image {
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .intro-image:hover {
            transform: scale(1.02);
        }
        
        .intro-content {
            padding-left: 3rem;
        }
        
        .intro-content h3 {
            font-size: 2.2rem;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .intro-stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
        }
        
        .intro-stat {
            text-align: center;
        }
        
        .intro-stat-number {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        
        .intro-stat-text {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        /* Mission Vision Section */
        .mission-vision-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .mission-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 3rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            text-align: center;
        }
        
        .mission-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .mission-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .value-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2.5rem;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            border-top: 5px solid transparent;
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .value-card:nth-child(1) { border-top-color: var(--primary-blue); }
        .value-card:nth-child(2) { border-top-color: #45b812; }
        .value-card:nth-child(3) { border-top-color: #ff6b6b; }
        .value-card:nth-child(4) { border-top-color: #feca57; }
        
        .value-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 1.8rem;
            color: white;
        }
        
        .value-card:nth-child(1) .value-icon { background: var(--primary-blue); }
        .value-card:nth-child(2) .value-icon { background: #45b812; }
        .value-card:nth-child(3) .value-icon { background: #ff6b6b; }
        .value-card:nth-child(4) .value-icon { background: #feca57; }
        
        /* Timeline Section */
        .timeline-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .timeline {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .timeline::after {
            content: '';
            position: absolute;
            width: 6px;
            background: linear-gradient(to bottom, var(--primary-blue), var(--accent-green));
            top: 0;
            bottom: 0;
            left: 50%;
            margin-left: -3px;
            border-radius: 3px;
        }
        
        .timeline-item {
            padding: 10px 40px;
            position: relative;
            width: 50%;
            box-sizing: border-box;
        }
        
        .timeline-item:nth-child(odd) {
            left: 0;
        }
        
        .timeline-item:nth-child(even) {
            left: 50%;
        }
        
        .timeline-content {
            padding: 2rem;
            background: var(--white);
            border-radius: var(--border-radius);
            box-shadow: var(--shadow-md);
            position: relative;
        }
        
        .timeline-year {
            font-size: 1.5rem;
            font-weight: 800;
            color: var(--primary-blue);
            margin-bottom: 0.5rem;
        }
        
        .timeline-item:nth-child(odd) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: var(--white);
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            box-shadow: 2px -2px 5px rgba(0,0,0,0.1);
        }
        
        .timeline-item:nth-child(even) .timeline-content::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            left: -10px;
            background-color: var(--white);
            top: 50%;
            transform: translateY(-50%) rotate(45deg);
            box-shadow: -2px 2px 5px rgba(0,0,0,0.1);
        }
        
        .timeline-dot {
            position: absolute;
            width: 20px;
            height: 20px;
            right: -10px;
            background-color: #45b812;
            border: 4px solid var(--white);
            top: 50%;
            transform: translateY(-50%);
            border-radius: 50%;
            z-index: 1;
        }
        
        .timeline-item:nth-child(even) .timeline-dot {
            left: -10px;
            right: auto;
        }
        
        /* Leadership Section */
        .leadership-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .leader-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .leader-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .leader-image {
            height: 250px;
            width: 100%;
            object-fit: cover;
        }
        
        .leader-content {
            padding: 2rem;
            text-align: center;
        }
        
        .leader-name {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }
        
        .leader-role {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .leader-qualifications {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1rem;
            justify-content: center;
        }
        
        .qualification-badge {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.25rem 0.75rem;
            border-radius: 50px;
            font-size: 0.8rem;
            font-weight: 500;
        }
        
        /* Facilities Section */
        .facilities-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .facility-card {
            text-align: center;
            padding: 2.5rem;
            border-radius: var(--border-radius);
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .facility-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .facility-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            opacity: 0.9;
        }
        
        .btn-primary {
            background: var(--white);
            color: var(--primary-blue);
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
        }
        
        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .page-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .intro-content {
                padding-left: 0;
                margin-top: 3rem;
            }
            
            .timeline::after {
                left: 31px;
            }
            
            .timeline-item {
                width: 100%;
                padding-left: 70px;
                padding-right: 25px;
            }
            
            .timeline-item:nth-child(even) {
                left: 0;
            }
            
            .timeline-item:nth-child(odd) .timeline-content::after,
            .timeline-item:nth-child(even) .timeline-content::after {
                left: -10px;
                right: auto;
                transform: translateY(-50%) rotate(-45deg);
            }
            
            .timeline-dot {
                left: 21px;
                right: auto;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .intro-stats {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .mission-card, .value-card, .facility-card {
                padding: 2rem;
            }
            
            .leader-content {
                padding: 1.5rem;
            }
        }
    

        
        :root {
            --primary-blue: #0a58ca;
            --dark-blue: #16469b;
            --light-blue: #e3f2fd;
            --accent-green: #2ecc71;
            --dark-green: #27ae60;
            --light-green: #e8f5e9;
            --white: #ffffff;
            --light-gray: #f8f9fa;
            --medium-gray: #e9ecef;
            --dark-gray: #343a40;
            --text-dark: #2c3e50;
            --text-light: #7f8c8d;
            --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
            --shadow-md: 0 5px 15px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s ease;
            --border-radius: 16px;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Inter', sans-serif;
            color: var(--text-dark);
            line-height: 1.7;
            overflow-x: hidden;
            background-color: var(--white);
        }
        
        h1, h2, h3, h4, h5, h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.2;
        }
        
        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: var(--light-gray);
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--primary-blue);
            border-radius: 5px;
        }
        
        /* Navigation */
        .navbar {
            padding: 1.5rem 0;
            background-color: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(10px);
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            position: fixed;
            top: 0;
            width: 100%;
            z-index: 1000;
        }
        
        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-md);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.8rem;
            color: var(--primary-blue) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: #45b812;
        }
        
        .navbar-brand i {
            margin-right: 10px;
            font-size: 2rem;
        }
        
        .nav-link {
            font-weight: 500;
            color: var(--text-dark) !important;
            margin: 0 0.5rem;
            padding: 0.5rem 1rem !important;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .nav-link:hover, .nav-link.active {
            color: var(--primary-blue) !important;
            background-color: var(--light-blue);
        }
        
        .nav-cta-btn {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white !important;
            padding: 0.75rem 1.5rem !important;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .nav-cta-btn:hover {
            background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(10, 88, 202, 0.3);
        }
        
        /* Page Header */
        .page-header {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            padding: 180px 0 100px;
            margin-top: 76px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .page-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.3;
        }
        
        .page-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            position: relative;
            z-index: 1;
        }
        
        .page-subtitle {
            font-size: 1.25rem;
            max-width: 700px;
            margin: 0 auto;
            opacity: 0.9;
            position: relative;
            z-index: 1;
        }
        
        .breadcrumb {
            background: transparent;
            padding: 0;
            margin-bottom: 0;
            justify-content: center;
            position: relative;
            z-index: 1;
        }
        
        .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .breadcrumb-item a:hover {
            color: white;
        }
        
        .breadcrumb-item.active {
            color: white;
        }
        
        .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }
        
        /* Filter Section */
        .filter-section {
            padding: 60px 0 30px;
            background-color: var(--light-gray);
        }
        
        .filter-card {
            background: var(--white);
            border-radius: var(--border-radius);
            padding: 2rem;
            box-shadow: var(--shadow-md);
        }
        
        .filter-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .filter-group {
            margin-bottom: 1.5rem;
        }
        
        .filter-label {
            display: block;
            font-weight: 500;
            margin-bottom: 0.75rem;
            color: var(--text-dark);
        }
        
        .filter-pills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }
        
        .filter-pill {
            background: var(--white);
            border: 2px solid var(--medium-gray);
            color: var(--text-dark);
            padding: 0.5rem 1.25rem;
            border-radius: 50px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .filter-pill:hover, .filter-pill.active {
            background: var(--primary-blue);
            border-color: var(--primary-blue);
            color: white;
        }
        
        .filter-select {
            width: 100%;
            padding: 0.75rem 1rem;
            border: 2px solid var(--medium-gray);
            border-radius: 10px;
            font-family: 'Inter', sans-serif;
            font-size: 1rem;
            color: var(--text-dark);
            background: var(--white);
            transition: var(--transition);
        }
        
        .filter-select:focus {
            border-color: var(--primary-blue);
            outline: none;
            box-shadow: 0 0 0 3px rgba(10, 88, 202, 0.1);
        }
        
        .filter-actions {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
        }
        
        .btn-filter {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-filter:hover {
            background: var(--dark-blue);
            transform: translateY(-2px);
        }
        
        .btn-reset {
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 0.75rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-reset:hover {
            background: var(--light-blue);
        }
        
        /* Doctors Grid Section */
        .doctors-grid-section {
            padding: 80px 0;
            background-color: var(--white);
        }
        
        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title {
            font-size: 2.8rem;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 5px;
            background: linear-gradient(90deg, var(--primary-blue), var(--accent-green));
            border-radius: 3px;
        }
        
        .section-subtitle {
            font-size: 1.1rem;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
        }
        
        .doctor-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
            position: relative;
        }
        
        .doctor-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .doctor-image {
            height: 280px;
            width: 100%;
            object-fit: cover;
        }
        
        .doctor-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: #45b812;
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            box-shadow: var(--shadow-sm);
        }
        
        .doctor-content {
            padding: 2rem;
        }
        
        .doctor-name {
            font-size: 1.4rem;
            margin-bottom: 0.5rem;
            color: var(--dark-blue);
        }
        
        .doctor-designation {
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 0.75rem;
        }
        
        .doctor-specialty {
            color: var(--text-light);
            margin-bottom: 1rem;
            font-size: 0.95rem;
        }
        
        .doctor-experience {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .experience-icon {
            color: #45b812;
            font-size: 1.2rem;
        }
        
        .experience-text {
            font-weight: 500;
            color: var(--text-dark);
        }
        
        .doctor-skills {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem;
            margin-bottom: 1.5rem;
        }
        
        .skill-tag {
            background: var(--light-blue);
            color: var(--primary-blue);
            padding: 0.35rem 0.75rem;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 500;
        }
        
        .doctor-actions {
            display: flex;
            gap: 1rem;
        }
        
        .btn-profile {
            flex: 1;
            background: transparent;
            color: var(--primary-blue);
            border: 2px solid var(--primary-blue);
            padding: 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-profile:hover {
            background: var(--light-blue);
        }
        
        .btn-appointment {
            flex: 1;
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 0.75rem;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-appointment:hover {
            background: var(--dark-blue);
        }
        
        /* Featured Doctor Section */
        .featured-doctor-section {
            padding: 100px 0;
            background-color: var(--light-gray);
        }
        
        .featured-doctor-card {
            background: var(--white);
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            transition: var(--transition);
        }
        
        .featured-doctor-content {
            padding: 3rem;
        }
        
        .featured-doctor-header {
            margin-bottom: 2rem;
        }
        
        .featured-badge {
            display: inline-block;
            background: #45b812;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 50px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }
        
        .featured-doctor-name {
            font-size: 2.2rem;
            color: var(--dark-blue);
            margin-bottom: 0.5rem;
        }
        
        .featured-doctor-role {
            font-size: 1.3rem;
            color: var(--primary-blue);
            font-weight: 600;
            margin-bottom: 1rem;
        }
        
        .featured-doctor-stats {
            display: flex;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .featured-stat {
            text-align: center;
        }
        
        .featured-stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: var(--primary-blue);
            display: block;
            line-height: 1;
        }
        
        .featured-stat-text {
            color: var(--text-light);
            font-size: 0.9rem;
            font-weight: 500;
        }
        
        .featured-doctor-timeline {
            margin-bottom: 2rem;
        }
        
        .timeline-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .timeline-item {
            margin-bottom: 1.5rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .timeline-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 8px;
            width: 8px;
            height: 8px;
            background: #45b812;
            border-radius: 50%;
        }
        
        .timeline-year {
            font-weight: 600;
            color: var(--primary-blue);
        }
        
        .featured-doctor-achievements {
            margin-bottom: 2rem;
        }
        
        .achievements-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 1rem;
            color: var(--dark-blue);
        }
        
        .achievement-list {
            list-style: none;
            padding-left: 0;
        }
        
        .achievement-item {
            margin-bottom: 0.75rem;
            padding-left: 1.5rem;
            position: relative;
        }
        
        .achievement-item::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #45b812;
            font-weight: bold;
        }
        
        .btn-featured-profile {
            background: var(--primary-blue);
            color: white;
            border: none;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .btn-featured-profile:hover {
            background: var(--dark-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 88, 202, 0.3);
        }
        
        /* Why Our Doctors Section */
        .why-doctors-section {
            padding: 100px 0;
            background-color: var(--white);
        }
        
        .feature-card {
            text-align: center;
            padding: 2.5rem 2rem;
            border-radius: var(--border-radius);
            background: var(--white);
            box-shadow: var(--shadow-md);
            transition: var(--transition);
            height: 100%;
        }
        
        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--light-blue), var(--light-green));
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-size: 2rem;
            color: var(--primary-blue);
        }
        
        /* CTA Section */
        .cta-section {
            padding: 100px 0;
            background: linear-gradient(135deg, var(--light-green), var(--light-blue));
            text-align: center;
        }
        
        .cta-title {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            color: var(--dark-blue);
        }
        
        .cta-subtitle {
            font-size: 1.1rem;
            max-width: 700px;
            margin: 0 auto 3rem;
            color: var(--text-light);
        }
        
        .btn-cta {
            background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
            color: white;
            border: none;
            padding: 1rem 3rem;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(10, 88, 202, 0.2);
        }
        
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(10, 88, 202, 0.3);
        }
        
        /* Footer */
        .footer {
            background-color: var(--dark-gray);
            color: white;
            padding: 80px 0 30px;
        }
        
        .footer-logo {
            font-size: 2rem;
            font-weight: 800;
            color: white;
            margin-bottom: 1.5rem;
        }
        
        .footer-heading {
            color: #000 !important;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }
        
        .footer-link {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            display: block;
            margin-bottom: 0.8rem;
            transition: var(--transition);
        }
        
        .footer-link:hover {
            color: white;
            padding-left: 5px;
        }
        
        .social-icons {
            display: flex;
            /* gap: 1rem; */
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary-blue);
            transform: translateY(-3px);
        }
        
        .copyright {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            margin-top: 3rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.7);
        }
        
        /* Responsive */
        @media (max-width: 1200px) {
            .page-title {
                font-size: 3rem;
            }
            
            .featured-doctor-name {
                font-size: 1.8rem;
            }
        }
        
        @media (max-width: 992px) {
            .page-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .featured-doctor-content {
                padding: 2rem;
            }
            
            .doctor-image {
                height: 250px;
            }
        }
        
        @media (max-width: 768px) {
            .page-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .filter-pills {
                justify-content: center;
            }
            
            .doctor-actions {
                flex-direction: column;
            }
            
            .featured-doctor-stats {
                flex-wrap: wrap;
            }
        }
        
        @media (max-width: 576px) {
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .page-header {
                padding: 150px 0 80px;
            }
            
            .page-title {
                font-size: 2rem;
            }
            
            .filter-card {
                padding: 1.5rem;
            }
            
            .doctor-content {
                padding: 1.5rem;
            }
            
            .feature-card {
                padding: 2rem 1.5rem;
            }
        }
  


        .hero-clean {
  padding: 110px 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 55%,
    #eef6ff 55%,
    #eef6ff 100%
  );
}

.hero-label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #16469b;
}

.hero-text h1 {
  margin-top: 15px;
  font-size: 46px;
  font-weight: 800;
  color: #16469b;
}

.hero-text h1 span {
  color: #45b812;;
}

.hero-text p {
  margin: 25px 0 35px;
  font-size: 16px;
  color: #5c6b73;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
}

.hero-actions .btn-primary {
  background: #16469b;
  color: #fff;
  padding: 13px 28px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
}

.hero-actions .btn-link {
  font-weight: 600;
  color: #16469b;
  text-decoration: none;
}

.hero-metrics {
  margin-top: 50px;
  display: flex;
  gap: 40px;
}

.hero-metrics h3 {
  font-size: 30px;
  color: #16469b;
}

.hero-metrics p {
  font-size: 14px;
  color: #5c6b73;
}

.hero-image-clean {
  position: relative;
}

.hero-image-clean img {
  width: 100%;
  border-radius: 10px;
}

.glass-panel {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(10px);
  padding: 18px 22px;
  border-radius: 10px;
  max-width: 260px;
}

.glass-panel h6 {
  margin: 0 0 6px;
  font-weight: 700;
  font-size: 14px;
}

.glass-panel p {
  font-size: 13px;
  color: #5c6b73;
}


.hero-clean {
  padding: 110px 0;
  background: linear-gradient(
    to right,
    #ffffff 0%,
    #ffffff 55%,
    #f2f8ff 55%,
    #f2f8ff 100%
  );
}

/* LEFT CONTENT */
.hero-text {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(11,94,215,0.1);
  color: #0B5ED7;
  padding: 8px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.hero-heading {
  margin-top: 18px;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  color: #16469b;
}

.hero-heading span {
  color: #1AA179;
}

.hero-description {
  margin: 22px 0 35px;
  font-size: 16px;
  line-height: 1.7;
  color: #5C6B73;
}

/* BUTTONS */
.hero-actions {
  display: flex;
  gap: 18px;
}

.btn-primary {
  background: #0B5ED7;
  color: #fff;
  padding: 14px 30px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 25px rgba(11,94,215,0.25);
}

.btn-secondary {
  color: #16469b;
  font-weight: 600;
  text-decoration: none;
  padding: 14px 0;
}

/* METRICS */
.hero-metrics {
  margin-top: 55px;
  display: flex;
  gap: 45px;
}

.metric h3 {
  font-size: 32px;
  font-weight: 700;
  color: #0B5ED7;
}

.metric p {
  font-size: 14px;
  color: #5C6B73;
}

/* IMAGE */
.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

/* INFO PANEL */
.info-panel {
  position: absolute;
  bottom: 25px;
  left: 25px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);
  padding: 18px 22px;
  border-radius: 10px;
  max-width: 280px;
}

.info-panel h6 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
  color: #16469b;
}

.info-panel p {
  font-size: 13px;
  color: #5C6B73;
}
@media (max-width: 992px) {
  .hero-clean {
    padding: 80px 0;
    background: #ffffff;
  }

  .hero-heading {
    font-size: 40px;
  }

  .hero-metrics {
    gap: 30px;
  }

  .hero-image img {
    margin-top: 40px;
  }

  .info-panel {
    bottom: 20px;
    left: 20px;
  }
}
@media (max-width: 768px) {
  .hero-clean {
    padding: 70px 0 60px;
    text-align: center;
  }

  .hero-text {
    max-width: 100%;
  }

  .hero-badge {
    justify-content: center;
    margin: 0 auto;
  }

  .hero-heading {
    font-size: 32px;
    line-height: 1.3;
  }

  .hero-description {
    font-size: 15px;
    margin-bottom: 30px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 15px;
  }

  .btn-primary {
    width: 100%;
    text-align: center;
  }

  .btn-secondary {
    padding: 10px 0;
  }

  .hero-metrics {
    justify-content: center;
    flex-wrap: wrap;
    gap: 25px;
    margin-top: 40px;
  }

  .metric h3 {
    font-size: 26px;
  }

  .hero-image {
    margin-top: 45px;
  }

  .info-panel {
    position: static;
    margin-top: 15px;
    backdrop-filter: none;
  }
}

@media (max-width: 768px) {
    .hero-clean {
        padding: 132px 0 60px;
        text-align: center;
    }
}

.navbar-brand img {
  max-height: 60px;
  width: auto;
}


.spans{
    color: #45b812;
}

.about-card h4 {
    margin-bottom: 1rem;
    color: #16469b;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #16469b;
  color: #ffffff;

  padding: 14px 34px;
  border-radius: 10px;

  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.3px;

  border: none;
  cursor: pointer;
  text-decoration: none;

  box-shadow: 0 14px 35px rgba(11, 94, 215, 0.35);
  transition: all 0.3s ease;
}


.hero-actions .btn-primary {
    background: #16469b;
    color: #fff;
    padding: 13px 28px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 16px;
    }

      .navbar-brand img {
        height: 44px !important;
        width: auto;
    }
   .footer .navbar-brand {
    background-color: #fff;
    width: 199px;
}

}

.doctor-header {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #f4f9ff, #ffffff);
}

.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* LAYOUT */
.doctor-header-wrap {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: center;
}

/* IMAGE */
.doctor-header-img img {
  width: 100%;
  border-radius: 22px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

/* CONTENT */
.doctor-header-content {
  max-width: 650px;
}

.doctor-dept {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: #0d6efd;
  margin-bottom: 12px;
}

.doctor-name {
  font-size: 44px;
  font-weight: 800;
  color: #0b1f33;
  margin-bottom: 10px;
  line-height: 1.2;
}

.doctor-qualification {
  font-size: 16px;
  color: #555;
  margin-bottom: 22px;
}

/* BADGES */
.doctor-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 30px;
}

.doctor-badges span {
  background: #f0f6ff;
  color: #0b1f33;
  padding: 10px 18px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
}

/* CTA */
.doctor-cta {
  display: inline-block;
  background: #0b1f33;;
  color: #fff;
  padding: 15px 36px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.doctor-cta:hover {
  background: #084ec1;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .doctor-header-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .doctor-header-img img {
    max-width: 320px;
    margin: auto;
  }

  .doctor-badges {
    justify-content: center;
  }
  .footer .navbar-brand {
    background-color: #fff;
    width: 199px;
}
}

/* .cta-section h2 p {
    color: #084ec1 !important;
} */

.cta-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: #0b1f33;
    margin-bottom: 20px;
}

.doctor-name {
    font-size: 31px;
    font-weight: 800;
    color: #0b1f33;
    margin-bottom: 10px;
    line-height: 1.2;
}

.doctor-header-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}


@media (max-width: 768px) {
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgb(235 244 254 / 95%);
        padding: 22px;
        border-radius: 0px;
        margin-top: 3px;
    }
    .footer .navbar-brand {
    background-color: #fff;
    width: 199px !important;
}
}


.footer {
    background-color: #0b1f33 !important;
    color: #000 !important;
    padding: 70px 0 30px;
}



  /* Header Styles */
        .top-header {
            background-color: var(--primary-blue);
            color: white;
            padding: 10px 0;
            font-size: 14px;
        }
        
        .top-header a {
            color: white;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .top-header a:hover {
            color: var(--light-blue);
        }

        .contact-hero {
    background: linear-gradient(rgba(13, 71, 161, 0.9), rgba(25, 118, 210, 0.9)), url(https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1200&q=80);
    background-size: cover;
    background-position: center;
    color: white;
    padding: 186px 0;
    text-align: center;
}

.section-title p {
    color: #000 !important; 
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}


.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: #fff;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.3);
    z-index: 9999;
    transition: transform 0.3s ease;
    text-emphasis: none;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    color: #fff;
}

.navbar-brand span {
    color: #45b812;
    position: relative;
    /* right: -4px; */
}

 .navbar-brand .colors{
    /* color: #45b812; */
    position: relative;
     right: -4px; 
     color: #0000008c;
 }

.hero-image {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}

.hero-image img {
  height: 420px;
  /* width: 500px !important; */
  object-fit: cover;
}

.info-panel {
  position: absolute;
  bottom: 20px;
  left: 20px;
  /* background: rgba(0, 0, 0, 0.65); */
  color: #fff;
  padding: 14px 18px;
  border-radius: 12px;
  max-width: 80%;
}

.info-panel h6 {
  margin-bottom: 6px;
  font-weight: 600;
}


.footer .navbar-brand{
    background-color: #fff;
}

.footer .navbar-brand {
    background-color: #fff;
    width: 322px;
}

.footer-logo-stroke {
    font-size: 28px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.2px #2ecc71;
    text-decoration: none;
}

.footer-logo-stroke {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-stroke img {
    height: 50px;
    width: auto;
}

.brand-name {
    font-size: 26px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1.2px #45b812;; /* green stroke */
}

.brand-sub {
    font-size: 26px;
    font-weight: 600;
    color: #ffffff;
}


.footer {
    background-color: #fff !important;
    color: #0b1f33;
    padding: 70px 0 30px;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    margin-top: 3rem;
    text-align: center;
    color: #0b1f33;;
}
.footer-link {
    color:  #0b1f33;
    text-decoration: none;
    display: block;
    margin-bottom: 0.8rem;
    transition: var(--transition);
}


.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000 !important;
    text-decoration: none;
    transition: var(--transition);
}

.navbar-brand img {
    max-height: 100px;
    width: auto;
}




.patient-feedback-section {
  background: #f9fbfd;
}

.feedback-card {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
  height: 100%;
}

.patient-img {
  width: 85px;
  height: 85px;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #1e88e5;
  margin-bottom: 15px;
}

.feedback-card p {
  font-size: 15px;
  color: #555;
  margin-bottom: 15px;
}

.feedback-card h5 {
  margin-bottom: 2px;
  font-weight: 600;
}

.feedback-card span {
  font-size: 14px;
  color: #777;
}

/* Mobile: show 1 card */
@media (max-width: 767px) {
  .carousel-item .col-md-4 {
    display: none;
  }
  .carousel-item .col-md-4:first-child {
    display: block;
  }
}

@media (max-width: 576px) {
    .navbar-brand img {
        height: 61px !important;
        width: auto;
    }
}


   .footer-link:hover {
            color: #000;
            padding-left: 5px;
        }

       .hours-list .time {
    color: #16469b;
    font-weight: 600;
    left: 10px;
    position: relative;
}


/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
}

.section-title .spans {
  /* color: #0d6efd; */
}

.section-subtitle {
  max-width: 700px;
  margin: 10px auto 0;
  font-size: 16px;
  color: #555;
}

/* DOCTOR HEADER */
.doctor-header-wrap {
  display: flex;
  gap: 50px;
  align-items: center;
  flex-wrap: wrap;
}

/* IMAGE */
.doctor-header-img img {
  width: 320px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* CONTENT */
.doctor-header-content {
  flex: 1;
}

.doctor-dept {
  display: inline-block;
  background: #e9f2ff;
  /* color: #0d6efd; */
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

.doctor-name {
  font-size: 34px;
  font-weight: 700;
  margin: 10px 0;
}

.doctor-qualification {
  font-size: 16px;
  color: #666;
  margin-bottom: 20px;
}

/* SPECIALISATION HEADER */
.spec-header h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.spec-header p {
  font-size: 15px;
  color: #555;
  max-width: 650px;
}

/* SPECIALITIES LIST */
.doctor-specialties {
  list-style: none;
  padding: 0;
  margin: 25px 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 30px;
}

.doctor-specialties li {
  font-size: 16px;
  font-weight: 500;
  padding-left: 22px;
  position: relative;
}

.doctor-specialties li::before {
  content: "✔";
  position: absolute;
  left: 0;
  /* color: #0d6efd; */
  font-size: 14px;
}

/* BADGES */
.doctor-badges {
  display: flex;
  gap: 15px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.doctor-badges span {
  background: #f1f1f1;
  padding: 8px 14px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* CTA BUTTON */
.doctor-cta {
  display: inline-block;
  padding: 14px 30px;
  /* background: #0d6efd; */
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.doctor-cta:hover {
  background: #084298;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .doctor-header-wrap {
    flex-direction: column;
    text-align: center;
  }

  .doctor-specialties {
    grid-template-columns: 1fr;
  }

  .doctor-header-img img {
    width: 260px;
  }
}


.topper-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.topper-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 30px;
}

.topper-card h3 {
    font-weight: 600;
    margin-bottom: 10px;
}

.topper-card p {
    color: #555;
}

.topper-image img {
    border: 3px solid #45b812;
}
