
        /* :root {
            --orange: #FF6B35;
            --dark-blue: #0A1628;
            --light-blue: #1a2942;
        } */

            :root {
        --orange: #FF6B35;
        --orange-light: #ff8c5a;
        --dark-blue: #0A1628;
        --light-blue: #1a2942;
        --white: #ffffff;
        --text-light: #d7d7d7;
    }

   
        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
         background: var(--dark-blue) !important;
        }

        /* Navbar Styles */
        .navbar {
            background: var(--dark-blue) !important;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.3);
        }

        .navbar-brand {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--orange) !important;
        }

        .navbar-nav .nav-link {
            color: #fff !important;
            font-weight: 500;
            padding: 0.5rem 1rem !important;
            position: relative;
            transition: color 0.3s;
        }

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 2px;
            background: var(--orange);
            transition: width 0.3s;
        }

        .navbar-nav .nav-link:hover {
            color: var(--orange) !important;
        }

        .navbar-nav .nav-link:hover::after {
            width: 80%;
        }

        .navbar-toggler {
            border-color: var(--orange);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23FF6B35' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Video Section */
        .video-section {
            position: relative;
            height: 100vh;
            overflow: hidden;
            margin-top: 56px;
        }

        .video-section video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            transform: translateX(-50%) translateY(-50%);
            object-fit: cover;
        }

        .video-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(10, 22, 40, 0.6);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .video-content {
            text-align: center;
            color: white;
            z-index: 2;
        }

        .video-content h1 {
            font-size: 4rem;
            font-weight: bold;
            margin-bottom: 1rem;
            animation: fadeInUp 1s;
        }

        .video-content p {
            font-size: 1.5rem;
            animation: fadeInUp 1.5s;
        }

        /* Profile Section */
        .profile-section {
            padding: 100px 0;
            background: #f8f9fa;
            position: relative;
            overflow: hidden;
        }

        .profile-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            background: linear-gradient(135deg, transparent 0%, rgba(255, 107, 53, 0.05) 100%);
            z-index: 0;
        }

        .profile-icon-box {
            position: relative;
            z-index: 1;
        }

        .profile-icon {
            width: 300px;
            height: 300px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50% 40% 60% 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
            animation: morphing 8s ease-in-out infinite;
            position: relative;
        }

        .profile-icon i {
            font-size: 8rem;
            color: white;
        }

        .profile-content {
            position: relative;
            z-index: 1;
        }

        .profile-content h2 {
            font-size: 3rem;
            font-weight: bold;
            color: var(--dark-blue);
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .profile-content h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100px;
            height: 4px;
            background: var(--orange);
        }

        .profile-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1rem;
        }

        /* Vision Section */
        .vision-section {
            padding: 100px 0;
            background: var(--dark-blue);
            position: relative;
            overflow: hidden;
        }

        .vision-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -10%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }

        .vision-card {
            background: var(--light-blue);
            border-radius: 20px;
            padding: 3rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }

        .vision-card:hover {
            transform: translateY(-10px);
        }

        .vision-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 200px;
            height: 200px;
            background: var(--orange);
            opacity: 0.1;
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .vision-icon {
            width: 80px;
            height: 80px;
            background: var(--orange);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 2rem;
        }

        .vision-icon i {
            font-size: 2.5rem;
            color: white;
        }

        .vision-card h3 {
            color: var(--orange);
            font-size: 2rem;
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .vision-card p {
            color: #ccc;
            font-size: 1.1rem;
            line-height: 1.8;
        }

        /* Milestone Section */
        .milestone-section {
            padding: 100px 0;
            /* background: #fff; */
                background: var(--light-blue);
        }

        .milestone-section h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            color: var(--orange);;
            margin-bottom: 4rem;
            position: relative;
                
        }

        .milestone-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--orange);
        }

        .milestone-card {
            position: relative;
            margin-bottom: 3rem;
            transition: transform 0.3s;
        }

        .milestone-card:hover {
            transform: translateY(-10px);
        }

        .milestone-image {
            position: relative;
            overflow: hidden;
            border-radius: 15px;
            height: 300px;
        }

        .milestone-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s;
        }

        .milestone-card:hover .milestone-image img {
            transform: scale(1.1);
        }

        .milestone-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(to bottom, transparent 0%, var(--dark-blue) 100%);
            display: flex;
            align-items: flex-end;
            padding: 2rem;
        }

        .milestone-year {
            font-size: 3rem;
            font-weight: bold;
            color: var(--orange);
        }

        .milestone-content {
            background: #2a4764;
            /* background-color: var(--light-blue); */
            /* color: #0a1628; */
            padding: 2rem;
            border-radius: 0 0 15px 15px;
            margin-top: -5px;
        }

        .milestone-content h4 {
            /* color: var(--dark-blue); */
color: var(--orange);            font-weight: bold;
            margin-bottom: 1rem;
        }

        .milestone-content p {
            /* color: #666; */
            color: white;
            line-height: 1.6;
        }

        

        /* Contact Section */
        .contact-section {
            padding: 100px 0;
            /* background: var(--dark-blue); */
            background-color: #11213a !important;
        }

        .contact-section h2 {
            text-align: center;
            font-size: 3rem;
            font-weight: bold;
            color: white;
            margin-bottom: 4rem;
            position: relative;
        }

        .contact-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 4px;
            background: var(--orange);
        }

        .contact-form {
            background: var(--light-blue);
            padding: 3rem;
            border-radius: 15px;
        }

        .contact-form .form-control {
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .contact-form .form-control:focus {
            background: rgba(255, 255, 255, 0.15);
            border-color: var(--orange);
            color: white;
            box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
        }

        .contact-form .form-control::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }

        .contact-form textarea {
            min-height: 150px;
        }

        .btn-submit {
            background: var(--orange);
            color: white;
            padding: 0.8rem 3rem;
            border: none;
            border-radius: 30px;
            font-weight: bold;
            transition: all 0.3s;
        }

        .btn-submit:hover {
            background: #ff8c5a;
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(255, 107, 53, 0.3);
        }

        .contact-info {
            background: var(--light-blue);
            padding: 3rem;
            border-radius: 15px;
        }

        .contact-info h3 {
            color: var(--orange);
            margin-bottom: 2rem;
            font-weight: bold;
        }

        .contact-item {
            margin-bottom: 2rem;
            color: white;
        }

        .contact-item i {
            width: 40px;
            height: 40px;
            background: var(--orange);
            border-radius: 50%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-right: 1rem;
        }

        .social-icons {
            margin-top: 2rem;
        }

        .social-icons a {
            display: inline-flex;
            width: 50px;
            height: 50px;
            background: var(--orange);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 1rem;
            transition: all 0.3s;
        }

        .social-icons a:hover {
            background: #ff8c5a;
            transform: translateY(-5px);
        }

        /* Footer */
        footer {
            background: var(--dark-blue);
            padding: 3rem 0 1rem;
            color: white;
            border-top: 3px solid var(--orange);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            margin-bottom: 2rem;
        }

        .footer-logo {
            font-size: 2rem;
            font-weight: bold;
            color: var(--orange);
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            margin: 0 1rem;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--orange);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: rgba(255, 255, 255, 0.6);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes morphing {
            0%, 100% {
                border-radius: 50% 40% 60% 50%;
            }
            25% {
                border-radius: 40% 60% 50% 40%;
            }
            50% {
                border-radius: 60% 50% 40% 60%;
            }
            75% {
                border-radius: 50% 60% 40% 50%;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .video-content h1 {
                font-size: 2.5rem;
            }
            
            .video-content p {
                font-size: 1.2rem;
            }

            .profile-icon {
                width: 200px;
                height: 200px;
            }

            .profile-icon i {
                font-size: 5rem;
            }

            .profile-content h2,
            .vision-section h2,
            .milestone-section h2,
            .gallery-section h2,
            .contact-section h2 {
                font-size: 2rem;
            }

            .footer-content {
                flex-direction: column;
                text-align: center;
            }

            .footer-links {
                margin: 1rem 0;
            }

            .footer-links a {
                display: block;
                margin: 0.5rem 0;
            }
        }
   

/* about section stylings  */
   .pf-about-section {
    margin-top: 80px;
            padding: 80px 0;
            /* background: #fff; */
            background: var(--light-blue);
        }

        .pf-about-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            color: var(--orange);
            font-size: 1.1rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .pf-about-badge i {
            width: 30px;
            height: 30px;
            background: rgba(255, 107, 53, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 0.9rem;
        }

        .pf-about-title {
            font-size: 3rem;
            font-weight: 800;
            /* color: var(--dark-blue); */
            color: white;
            line-height: 1.2;
            margin-bottom: 1.5rem;
        }

        .pf-about-description {
            font-size: 1.1rem;
            /* color: #6c757d; */
            color: #99afc2;
            line-height: 1.8;
            margin-bottom: 3rem;
        }

        .pf-feature-item {
            display: flex;
            align-items: flex-start;
            gap: 1.5rem;
            margin-bottom: 2.5rem;
            transition: all 0.3s ease;
            padding: 1rem;
            border-radius: 15px;
        }

        .pf-feature-item:hover {
            background: rgba(255, 107, 53, 0.05);
            transform: translateX(10px);
        }

        .pf-feature-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
        }

        .pf-feature-icon i {
            font-size: 2rem;
            color: white;
        }

        .pf-feature-content h4 {
            font-size: 1.5rem;
            font-weight: 700;
            /* color: var(--dark-blue); */
         color: white;
            margin-bottom: 0.5rem;
        }

        .pf-feature-content p {
            font-size: 1rem;
            /* color: #6c757d; */
            color: #9ccffb;;
            line-height: 1.6;
            margin: 0;
        }

        .pf-image-wrapper {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .pf-main-image-container {
            position: relative;
            border-radius: 50px 200px 50px 200px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.2);
        }

        .pf-main-image {
            width: 100%;
            height: auto;
            display: block;
        }

        .pf-small-image-container {
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 250px;
            height: 250px;
            border-radius: 30px 100px 30px 100px;
            overflow: hidden;
            border: 8px solid var(--orange);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
        }

        .pf-small-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .pf-stats-badge {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            width: 200px;
            height: 200px;
            background: linear-gradient(135deg, var(--orange), #ff8c5a);
            border-radius: 50%;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            color: white;
            box-shadow: 0 20px 50px rgba(255, 107, 53, 0.4);
            z-index: 10;
        }

        .pf-stats-badge h3 {
            font-size: 3rem;
            font-weight: 900;
            margin: 0;
            line-height: 1;
        }

        .pf-stats-badge p {
            font-size: 1.1rem;
            font-weight: 600;
            margin: 0.5rem 0 0 0;
        }

        @media (max-width: 768px) {
            .pf-about-title {
                font-size: 2rem;
            }

            .pf-image-wrapper {
                margin-bottom: 4rem;
            }

            .pf-small-image-container {
                width: 150px;
                height: 150px;
            }

            .pf-stats-badge {
                width: 150px;
                height: 150px;
            }

            .pf-stats-badge h3 {
                font-size: 2rem;
            }

            .pf-stats-badge p {
                font-size: 0.9rem;
            }
        }


        /* hero section */
        .hero-section {
        background: var(--light-blue); /* Now uses root variable */
        padding: 80px 0;
        border-radius: 40px;
        position: relative;
        overflow: hidden;
        margin: 20px;
        margin-top: 100px;
        box-shadow: 0 20px 80px rgba(0,0,0,0.6);
    }

    .hero-section::before {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        width: 40%;
        height: 100%;
    }

    .welcome-badge {
        font-size: 0.75rem;
        color: var(--orange);
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 700;
        margin-bottom: 1.5rem;
    }

    .hero-title {
        font-size: 3.8rem;
        font-weight: 800;
        color: var(--white);
        line-height: 1.1;
        margin-bottom: 2rem;
    }

    .hero-description {
        font-size: 1.05rem;
        color: var(--text-light); /* Now uses root variable */
        line-height: 1.8;
        margin-bottom: 2.5rem;
        max-width: 380px;
    }

    .appointment-btn {
        background: var(--orange);
        color: var(--white);
        padding: 16px 38px;
        border-radius: 40px;
        border: none;
        font-weight: 700;
        font-size: 0.85rem;
        letter-spacing: 1px;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        cursor: pointer;
        transition: 0.3s;
        text-transform: uppercase;
        box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    }

    .appointment-btn:hover {
        transform: translateY(-3px);
        background: var(--orange-light);
    }

    /* Doctor Image */
    .doctor-image-wrapper {
        display: flex;
        justify-content: center;
    }

    .doctor-image-oval {
        width: 380px;
        height: 480px;
        border-radius: 50%;
        overflow: hidden;
        border: 8px solid var(--orange);
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
    }

    .doctor-image-oval img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* Stats Cards */
    .stats-container {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 10;
    }

    .stat-card {
        background: var(--dark-blue);
        padding: 25px 35px;
        border-radius: 20px;
        margin-bottom: 25px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.4);
        border-left: 5px solid var(--orange);
        min-width: 220px;
        transition: 0.3s;
    }

    .stat-card:hover {
        transform: translateX(-10px);
        box-shadow: 0 20px 60px rgba(255, 107, 53, 0.35);
    }

    .stat-number {
        font-size: 3rem;
        font-weight: 800;
        color: var(--orange);
        margin: 0;
    }

    .stat-label {
        font-size: 0.75rem;
        color: var(--text-light);
        margin-top: 8px;
        letter-spacing: 1px;
    }

    /* Responsive */
    @media (max-width: 992px) {
        .stats-container {
            position: relative;
            transform: none;
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-top: 30px;
            flex-wrap: wrap;
        }
    }

    @media (max-width: 768px) {
        .hero-section {
            padding: 50px 20px;
        }

        .hero-title {
            font-size: 2.5rem;
        }

        .doctor-image-oval {
            width: 260px;
            height: 340px;
        }
    }

        /* Doctor Image */
        .doctor-image-wrapper {
            display: flex;
            justify-content: center;
        }

        .doctor-image-oval {
            width: 380px;
            height: 480px;
            border-radius: 50%;
            overflow: hidden;
            border: 8px solid var(--orange);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.25);
        }

        .doctor-image-oval img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        /* Stats Cards */
        .stats-container {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
        }

        .stat-card {
            background: var(--dark-blue);
            padding: 25px 35px;
            border-radius: 20px;
            margin-bottom: 25px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.4);
            border-left: 5px solid var(--orange);
            min-width: 220px;
            transition: 0.3s;
        }

        .stat-card:hover {
            transform: translateX(-10px);
            box-shadow: 0 20px 60px rgba(255, 107, 53, 0.35);
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 800;
            color: var(--orange);
            margin: 0;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #cccccc;
            margin-top: 8px;
            letter-spacing: 1px;
        }

        /* Responsive */
        @media (max-width: 992px) {
            .stats-container {
                position: relative;
                transform: none;
                display: flex;
                justify-content: center;
                gap: 20px;
                margin-top: 30px;
                flex-wrap: wrap;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                padding: 50px 20px;
            }

            .hero-title {
                font-size: 2.5rem;
            }

            .doctor-image-oval {
                width: 260px;
                height: 340px;
            }
        }

        /* video section  */
         .video-section {
        position: relative;
        /* width: 100%;
        height: 100vh; */
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background: black; /* Fallback background for letterboxing */
    }

    /* Video styling */
    .video-section .bg-video {
        width: 1600px;
        height: 1000px;
        object-fit: contain; /* Entire video visible, no cropping */
        object-position: center;
    }

    /* Optional dark overlay */
    .video-section::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        /* width: 100%;
        height: 100%; */
        background: rgba(0, 0, 0, 0.2); /* adjust darkness */
        z-index: 0;
    }

    .video-section{
        margin-top: 85px !important;
    }


   /* gallery section  */
   .gallery-section {
    padding: 80px 0;
    background: #0a1628; /* Dark Blue Background */
    color: #fff;
}

.gallery-section h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 50px;
    color: #ff6b35; /* Orange Highlight */
    font-weight: 700;
    position: relative;
}

.gallery-section h2::after {
    content: '';
    width: 80px;
    height: 3px;
    background: #ff6b35;
    display: block;
    margin: 10px auto 0;
    border-radius: 2px;
}

.gallery-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: all 0.5s ease;
    transform: perspective(1000px) rotateY(0deg);
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-card:hover {
    transform: perspective(1000px) rotateY(5deg) scale(1.05);
    box-shadow: 0 20px 50px rgba(255,107,53,0.5);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,107,53,0.35);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-card:hover .overlay {
    opacity: 1;
}

.overlay i {
    color: #fff;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.gallery-card:hover .overlay i {
    transform: scale(1.3);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .gallery-grid {
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-card {
        border-radius: 15px;
    }
}



#hero-style-section{
    background-color: red;
}