
    
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --primary: #022738;
            --primary-dark: #055177;
            --secondary: #00a7cc;
            --accent: #eaff00;
            --danger: #e76d3c;
            --success: #2bae27;
            --light: #f0f4f8;
            --white: #ffffff;
            --dark: #1a1a2e;
            --text: #333333eb;
            --text-light: #666666ed;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            --shadow-hover: 0 12px 30px rgba(0, 0, 0, 0.15);
            --border-radius: 12px;
            --transition: 0.3s ease;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: var(--light);
            line-height: 1.6;
            color: var(--text);
            overflow-x: hidden;
        }

        /* ===== HEADER ===== */
        header {
            background: rgba(2, 39, 56, 0.72);
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
            color: var(--white);
            padding: 12px 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.16);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
            transition: var(--transition);
        }

        .logo {
            font-size: 1.7rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 10px;
            letter-spacing: -0.5px;
        }

        .logo i {
            color: var(--accent);
            font-size: 2rem;
            animation: pulse-icon 2s infinite;
        }

        @keyframes pulse-icon {

            0%,
            100% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 20px;
            align-items: center;
        }

        nav a {
            color: var(--white);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: var(--transition);
            position: relative;
            padding: 5px 0;
            white-space: nowrap;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0%;
            height: 2px;
            bottom: 0;
            left: 0;
            background: var(--accent);
            transition: var(--transition);
        }

        nav a:hover::after {
            width: 100%;
        }

        .emergency-nav {
            background: var(--danger);
            padding: 8px 18px !important;
            border-radius: 25px;
            font-weight: 700 !important;
            animation: pulse-emergency 2s infinite;
            color: var(--white) !important;
        }

        .emergency-nav:hover {
            background: #c0392b;
            color: var(--white) !important;
        }

        .emergency-nav::after {
            display: none !important;
        }

        @keyframes pulse-emergency {

            0%,
            100% {
                box-shadow: 0 0 0 0 rgba(231, 76, 60, 0.6);
            }

            50% {
                box-shadow: 0 0 0 15px rgba(231, 76, 60, 0);
            }
        }

        .menu-toggle {
            display: none;
            flex-direction: column;
            cursor: pointer;
            gap: 5px;
            z-index: 1001;
        }

        .menu-toggle span {
            height: 3px;
            width: 28px;
            background: var(--white);
            display: block;
            border-radius: 3px;
            transition: var(--transition);
        }

        @media (max-width: 968px) {
            nav ul {
                position: fixed;
                top: 0;
                left: 0;
                width: 100%;
                height: 100vh;
                background: rgba(5, 81, 119, 0.88);
                backdrop-filter: blur(18px);
                -webkit-backdrop-filter: blur(18px);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 30px;
                transform: translateX(-100%);
                transition: transform 0.4s ease-in-out;
                z-index: 999;
            }

            nav ul.active {
                transform: translateX(0);
            }

            nav a {
                font-size: 1.2rem;
            }

            .menu-toggle {
                display: flex;
            }
        }

        /* ===== HERO SLIDESHOW ===== */

        .hero {
            position: relative;
            height: 90vh;
            min-height: 600px;
            overflow: hidden;
        }

        .slide {
            position: absolute;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
        }

        .hero-overlay {
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg,
                    rgba(0, 60, 90, 0.65),
                    rgba(0, 40, 60, 0.3));
            color: white;
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 20px;
        }

        .hero-overlay h1 {
            font-size: 3.5rem;
            margin-bottom: 1rem;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
        }

        .hero-overlay p {
            font-size: 1.4rem;
            margin-bottom: 2rem;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            justify-content: center;
        }

        /* Navigation Buttons */

        .slide-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 3;

            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;

            width: 50px;
            height: 50px;
            border-radius: 50%;

            font-size: 24px;
            cursor: pointer;
            transition: 0.3s;
        }

        .slide-btn:hover {
            background: rgba(255, 255, 255, 0.4);
        }

        .prev {
            left: 20px;
        }

        .next {
            right: 20px;
        }

        /* Dots */

        .dots {
            position: absolute;
            bottom: 30px;
            width: 100%;
            display: flex;
            justify-content: center;
            gap: 10px;
            z-index: 3;
        }

        .dot {
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: 0.3s;
        }

        .dot.active {
            background: white;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* ===== BUTTONS ===== */
        .btn {
            background: var(--secondary);
            color: var(--white);
            padding: 14px 32px;
            border: none;
            border-radius: 30px;
            font-size: 1.05rem;
            cursor: pointer;
            transition: var(--transition);
            font-weight: 600;
            text-decoration: none;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 136, 204, 0.4);
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--white);
        }

        .btn-outline:hover {
            background: var(--white);
            color: var(--primary);
        }

        .btn-emergency {
            background: var(--danger);
            animation: pulse-emergency 2s infinite;
        }

        .btn-emergency:hover {
            background: #c0392b;
        }

        .btn-sm {
            padding: 8px 20px;
            font-size: 0.9rem;
        }

        /* ===== SECTIONS ===== */
        .section {
            padding: 80px 20px;
        }

        .section-alt {
            background: var(--white);
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .section-header h2 {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 15px;
            position: relative;
            display: inline-block;
        }

        .section-header h2::after {
            content: '';
            position: absolute;
            width: 60px;
            height: 4px;
            background: var(--accent);
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .section-subtitle {
            color: var(--text-light);
            font-size: 1.1rem;
            max-width: 650px;
            margin: 0 auto;
        }

        /* ===== STATS BANNER ===== */
        .stats-banner {
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: var(--white);
            padding: 50px 20px;
        }

        .stats-grid {
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            text-align: center;
        }

        .stat-item {
            flex: 1 1 180px;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            display: block;
            color: var(--accent);
        }

        .stat-label {
            font-size: 1rem;
            opacity: 0.9;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* ===== CARDS ===== */
        .grid {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .card {
            background: var(--white);
            padding: 35px 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            flex: 1 1 280px;
            max-width: 350px;
            transition: var(--transition);
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: var(--secondary);
            transform: scaleX(0);
            transition: var(--transition);
            transform-origin: left;
        }

        .card:hover::before {
            transform: scaleX(1);
        }

        .card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-hover);
        }

        .card-icon {
            font-size: 3rem;
            color: var(--secondary);
            margin-bottom: 20px;
        }

        .card h3 {
            color: var(--primary);
            margin-bottom: 12px;
            font-size: 1.3rem;
        }

        .card p {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* ===== DOCTOR CARDS ===== */
        .doctor-card img {
            width: 130px;
            height: 130px;
            border-radius: 50%;
            object-fit: cover;
            border: 4px solid var(--secondary);
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .doctor-card:hover img {
            border-color: var(--accent);
            transform: scale(1.05);
        }

        .doctor-specialty {
            color: var(--secondary) !important;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .doctor-rating {
            color: var(--accent);
            margin-bottom: 10px;
        }

        /* ===== APPOINTMENT FORM ===== */
        .appointment-wrapper {
            background: var(--white);
            max-width: 600px;
            margin: 0 auto;
            padding: 45px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            border-top: 5px solid var(--secondary);
        }

        .form-row {
            display: flex;
            gap: 15px;
            margin-bottom: 18px;
        }

        .form-group {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 6px;
            font-weight: 600;
            color: var(--primary);
            font-size: 0.9rem;
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            padding: 12px 16px;
            border: 2px solid #e0e0e0;
            border-radius: 8px;
            font-size: 1rem;
            transition: var(--transition);
            font-family: inherit;
            width: 100%;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--secondary);
            box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1);
        }

        @media (max-width: 600px) {
            .form-row {
                flex-direction: column;
                gap: 18px;
            }
        }

        /* ===== TESTIMONIALS ===== */
        .testimonial-card {
            background: var(--white);
            padding: 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            text-align: left;
            position: relative;
        }

        .testimonial-card .quote-icon {
            font-size: 2rem;
            color: var(--secondary);
            opacity: 0.3;
            position: absolute;
            top: 20px;
            right: 25px;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-author img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
        }

        .testimonial-author strong {
            color: var(--primary);
        }

        /* ===== INSURANCE PARTNERS ===== */
        .insurance-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
        }

        .insurance-logo {
            background: var(--white);
            padding: 20px 30px;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            font-weight: 700;
            color: var(--primary);
            font-size: 1.2rem;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .insurance-logo:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-hover);
        }

        /* ===== BLOG SECTION ===== */
        .blog-card {
            text-align: left;
        }

        .blog-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 15px;
        }

        .blog-date {
            color: var(--secondary);
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
        }

        .blog-card h3 {
            font-size: 1.1rem;
            margin-bottom: 10px;
        }

        .read-more {
            color: var(--secondary);
            font-weight: 600;
            text-decoration: none;
            transition: var(--transition);
        }

        .read-more:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* ===== GOOGLE MAPS ===== */
        .map-container {
            border-radius: var(--border-radius);
            overflow: hidden;
            box-shadow: var(--shadow);
            height: 450px;
        }

        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }

        /* ===== NEWSLETTER ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--secondary), var(--primary));
            color: var(--white);
            padding: 60px 20px;
            text-align: center;
        }

        .newsletter h2 {
            font-size: 2rem;
            margin-bottom: 15px;
        }

        .newsletter-form {
            display: flex;
            gap: 10px;
            max-width: 500px;
            margin: 25px auto 0;
            flex-wrap: wrap;
            justify-content: center;
        }

        .newsletter-form input {
            flex: 1;
            min-width: 250px;
            padding: 14px 20px;
            border: none;
            border-radius: 30px;
            font-size: 1rem;
        }

        .newsletter-form .btn {
            background: var(--accent);
            color: var(--dark);
            font-weight: 700;
        }

        .newsletter-form .btn:hover {
            background: #e6c200;
        }

        /* ===== FOOTER ===== */
        footer {
            background: var(--dark);
            color: var(--white);
        }

        .footer-top {
            padding: 50px 20px 30px;
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }

        .footer-col {
            flex: 1 1 220px;
        }

        .footer-col h4 {
            margin-bottom: 20px;
            color: var(--accent);
            font-size: 1.1rem;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background: var(--secondary);
        }

        .footer-col p,
        .footer-col a {
            color: rgba(255, 255, 255, 0.75);
            font-size: 0.9rem;
            text-decoration: none;
            display: block;
            margin-bottom: 10px;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-col i {
            margin-right: 8px;
            color: var(--secondary);
            width: 20px;
            text-align: center;
        }

        .footer-bottom {
            text-align: center;
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.85rem;
            opacity: 0.7;
        }

        /* ===== SCROLL TO TOP ===== */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--secondary);
            color: var(--white);
            border: none;
            border-radius: 50%;
            font-size: 1.3rem;
            cursor: pointer;
            z-index: 999;
            display: none;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }

        .scroll-top:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }

        .scroll-top.visible {
            display: block;
        }

        /* ===== LOADING ANIMATION ===== */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== SMOOTH SCROLL ===== */
        html {
            scroll-behavior: smooth;
        }