    * {
        margin: 0px;
    }

    html {
        margin: 0px;
        scroll-behavior: smooth;
    }

    body {
        margin: 0px;
        background-color: #f5f7fb;


    }

    /* Google Font */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* *{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
} */

/* ================= Navbar ================= */

.main-navbar{
    width:100%;
    background:#ffffff;
    box-shadow:0 4px 18px rgba(0,0,0,.08);
    position:sticky;
    top:0;
    z-index:1000;
}

.nav-container{
    width:90%;
    max-width:1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    height:75px;
}

/* ================= Logo ================= */

.nav-logo{
    display:flex;
    align-items:center;
    gap:10px;
    cursor:pointer;
}

.logo-icon{
    font-size:34px;
}

.logo-text{
    font-size:24px;
    font-weight:700;
    color:#0f4c81;
    color:#0f4c81;
    letter-spacing:.5px;
}

/* ================= Menu ================= */

.nav-links{
    list-style:none;
    display:flex;
    align-items:center;
    gap:30px;
}

.nav-links li{
    position:relative;
}

.nav-links a{
    text-decoration:none;
    /* color:#333; */
    color:#0f4c81;
    font-size:16px;
    font-weight:500;
    transition:.3s;
    padding:8px 0;
}

/* Hover Effect */

.nav-links a:hover{
    color:#0f4c81;
}

/* Active Link */

.nav-links a.active{
    color:#0f4c81;
    font-weight:600;
}

.nav-links a::after{
    content:"";
    position:absolute;
    left:0;
    bottom:-4px;
    width:0%;
    height:3px;
    background:#2b7de9;
    border-radius:20px;
    transition:.3s;
}

.nav-links a:hover::after,
.nav-links a.active::after{
    width:100%;
}

/* ================= Responsive ================= */

@media(max-width:768px){

    .nav-container{
        flex-direction:column;
        height:auto;
        padding:15px 0;
    }

    .nav-links{
        flex-direction:column;
        gap:18px;
        margin-top:15px;
    }

    .logo-text{
        font-size:20px;
    }

}


    /* .main-navbar {
        background-color: aliceblue;
        box-shadow: 0 2px 12px rgba(11, 61, 62, 0.08);
        position: sticky;
        top: 0;
        z-index: 999;
    }

    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 24px;
    }

    /* ===== Logo ===== */
    .nav-logo {
        display: flex;
        align-items: center;
        gap: 8px;
        font-family: 'Sora', sans-serif;
        font-weight: 700;
        font-size: 20px;
        /* color: #0B3D3E; */
    }

    .logo-icon {
        font-size: 24px;
    }

    /* ===== Nav Links ===== */
    .nav-links {
        display: flex;
        list-style: none;
        gap: 32px;
    }

    .nav-links a {
        text-decoration: none;
        color: #3A5A58;
        font-size: 15px;
        font-weight: 500;
        padding: 6px 2px;
        position: relative;
        transition: color 0.2s ease;
    }

    .nav-links a::after {
        content: "";
        position: absolute;
        left: 0;
        bottom: -4px;
        width: 0%;
        height: 2px;
        background-color: #0f4c81;
        transition: width 0.25s ease;
    }

    .nav-links a:hover {
        color: #0f4c81;
    }

    .nav-links a:hover::after {
        width: 100%;
    }

    .nav-links a.active {
        color: #0f4c81;
        font-weight: 600;
    }

    .nav-links a.active::after {
        width: 100%;
    }

    /* ===== CTA Button ===== */
    .nav-btn {
        background-color: #FF6F59;
        color: #ffffff;
        text-decoration: none;
        padding: 10px 22px;
        border-radius: 30px;
        font-size: 14px;
        font-weight: 600;
        transition: background-color 0.2s ease, transform 0.15s ease;
        white-space: nowrap;
    }

    .nav-btn:hover {
        background-color: #ff5a40;
        transform: translateY(-1px);
    } */

    /* ----------------------------------------------------------- */
    /* ----------------------------------------------------------- */
    /* ----------------------------------------------------------- */

    .container1 {
        height: 62vh;
        width: 100%;
    }

    .vedio1 {
        height: 144%;
        width: 100%;
        object-fit: cover;
    }


/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
/* ------------------------------------------------------------------ */
    
    /* ===== Appointment Section ===== */
    .appointment-section {
         padding: 30px;
        background: linear-gradient(135deg, #e8f5ff, #f7fbff);
        /* display: flex; */
        justify-content: center;
        align-items: center;
    }

    /* Card */
    .appointment-card {
        display: flex;
        /* max-width: 1000px; */
        width: 100%;
        background: #ffffff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }

    /* Left Info */
    .appointment-info {
        flex: 1;
        background: linear-gradient(135deg, #0ea5e9, #2563eb);
        color: white;
        padding: 40px;
    }

    .appointment-info h2 {
        font-size: 28px;
        margin-bottom: 10px;
    }

    .appointment-info p {
        font-size: 15px;
        opacity: 0.9;
        margin-bottom: 20px;
    }

    .appointment-info ul {
        list-style: none;
        padding: 0;
    }

    .appointment-info ul li {
        margin-bottom: 12px;
        padding-left: 20px;
        position: relative;
        font-size: 14px;
    }

    .appointment-info ul li::before {
        content: "✔";
        position: absolute;
        left: 0;
        color: #a5f3fc;
    }

    /* Right Form */
    .appointment-form {
        flex: 1.2;
        padding: 40px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .form-group {
        display: flex;
        flex-direction: column;
    }

    .form-group label {
        font-size: 13px;
        margin-bottom: 6px;
        color: #374151;
        font-weight: 600;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px 12px;
        border: 1px solid #d1d5db;
        border-radius: 8px;
        outline: none;
        font-size: 14px;
        transition: 0.3s;
        background: #f9fafb;
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        border-color: #2563eb;
        background: #fff;
        box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    }

    /* Full width textarea */
    .full-width {
        grid-column: span 2;
    }

    textarea {
        resize: none;
        height: 100px;
    }

    /* Button */
    .submit-btn {
        margin-top: 20px;
        width: 100%;
        padding: 12px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, #2563eb, #0ea5e9);
        color: white;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

    .submit-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
    }

    /* Status message */
    .form-status {
        margin-top: 10px;
        font-size: 14px;
        color: #16a34a;
    }

    /* ===== Responsive ===== */
    @media (max-width: 768px) {
        .appointment-card {
            flex-direction: column;
        }

        .form-grid {
            grid-template-columns: 1fr;
        }

        .full-width {
            grid-column: span 1;
        }
    }


    ----------------------------------------------------------
    /* ---------------------------------------------------------- */
    /* ---------------------------------------------------------- */

    .container3 {
        display: flex;
        height: 530px;
        margin-top: 87px;
        padding: 10px;
        background-color: aqua;
    }

    /* ----------------------------------------------------------- */
    /* ----------------------------------------------------------- */
    /* ----------------------------------------------------------- */
    .container4 {
        position: relative;
        width: 100%;
        height: 44vh;
        overflow: hidden;
        margin-top: 120px;
    }

    .video4 {
        position: absolute;
        width: 166%;
        height: 50vh;
        object-fit: cover;
        opacity: 0;
        transition: translate(100%) scale(1.1);
        transition: 1s ease-in-out;
    }

    .video4.active {
        opacity: 1;
        transition: translate(0) scale(1);
    }

    .con-child4 {
        padding: 20px;
        position: absolute;
        width: 87%;
        margin-left: 91px;
        height: 100%;
        /* background: rgba(0, 0, 0, 0.4); */
        color: white;
        font-size: 20px;
        display: flex;
        align-items: center;
        gap: 10px;
        z-index: 2;
        text-align: center;
    }

    /* ------------------------------------------------------------ */
    /* ------------------------------------------------------------ */
    /* ------------------------------------------------------------ */

    .container5 {
        padding: 43px;
        display: flex;
        height: 300px;
        align-items: center;
        color: white;
        position: relative;
        margin-top: -36px;

    }

    .container5 #col1 {
        padding: 20px;
        border-radius: 20px 0 0 20px;
        background-color: #21cdc0;
        height: 300px;
        margin-top: -48px;
        align-items: left;
        box-shadow: -5px 1px 15px rgba(0, 0, 0, 0.5);
    }

    .container5 #col2 {
        padding: 20px;
        background-color: #3851a2;
        height: 300px;
        margin-top: -48px;
        box-shadow: 5px 1px 7px rgba(0, 0, 0, 5.5);

    }

    .container5 #col3 {
        padding: 20px;
        border-radius: 0 20px 20px 0;
        background-color: #2d4990;
        height: 300px;
        margin-top: -48px;
        box-shadow: 5px 1px 15px rgba(0, 0, 0, 0.5);
    }


    /* -------------------------------------------------------------- */
    /* -------------------------------------------------------------- */
    /* -------------------------------------------------------------- */
    .container6 {
        width: 100%;
        /* background: #f5f9fc; */
        /* background: linear-gradient(
    135deg,
    #5f6c7b,
    #7fd8d1,
    #ffffff
); */
    }

    .child-con6 {
        /* max-width: 1200px;
    margin: auto; */
        text-align: center;
        justify-content: center;

    }

    .child-con6 h1 {
        text-align: center;
        font-size: 40px;
        color: #0a4d68;
        margin-bottom: 40px;
        font-family: Arial, sans-serif;

    }

    .child-con6 .Con6 {
        /* background: linear-gradient(135deg,#5f6c7b,#7fd8d1,ffffff); */
        margin-bottom: 30px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
        transition: 0.3s ease;
    }

    .child-con6>.Con6:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    }

    .child-con6 p {
        padding: 10px;
        font-size: 18px;
        line-height: 1.8;
        color: #444;
        margin-bottom: 15px;
        font-weight: 500;
    }

    .child-con6 .con6 {
        width: 100%;
        height: 280px;
        border-radius: 12px;
        overflow: hidden;
    }

    @media(max-width:768px) {

        .child-con6 h1 {
            font-size: 30px;
        }

        .child-con6 p {
            font-size: 16px;
        }

        .child-con6 .Con6 {
            height: 220px;
        }
    }



    .con-emergency {
        position: fixed;
        right: 10px;
        top: 93%;
        transform: translateY(-50%);
        z-index: 9999;
    }

    .emergency-btn {
        display: flex;
        background: rgba(220, 53, 69, 1);
        color: white;
        padding: 12px 16px;
        border-radius: 50px;
        font-weight: 600;
        text-decoration: none;
        display: inline-block;
        box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        transition: 0.3s ease;
    }

    .emergency-btn:hover {
        background: #b02a37;
        transform: scale(1.05);
    }

    /* ---------------------------------------------------------- */
    /* ---------------------------------------------------------- */
    /* ---------------------------------------------------------- */

    .footer {
        background: linear-gradient(135deg, #0f172a, #1e3a5f);
        color: white;
        margin-top: 80px;
    }

    .footer-container {
        max-width: 1200px;
        margin: auto;
        padding: 50px 30px;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 30px;
    }

    .footer-box h3 {
        margin-bottom: 15px;
        color: #7dd3c0;
        font-size: 22px;
    }

    .footer-box p,
    .footer-box li {
        color: #dbeafe;
        line-height: 1.8;
        list-style: none;
    }

    .footer-box ul {
        padding: 0;
    }

    .footer-box a {
        text-decoration: none;
        color: #dbeafe;
        transition: 0.3s;
    }

    .footer-box a:hover {
        color: #7dd3c0;
        padding-left: 8px;
    }

    .footer-bottom {
        text-align: center;
        padding: 18px;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        background: rgba(0, 0, 0, 0.2);
    }

    .footer-bottom p {
        margin: 0;
        font-size: 14px;
    }

    /* Admin Button */

    .admin-fixed {
        position: fixed;
        bottom: 25px;
        left: 25px;
        z-index: 1000;
    }

    .admin-fixed button {
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        border: none;
        padding: 12px 22px;
        border-radius: 10px;
        cursor: pointer;
        font-size: 15px;
        font-weight: 600;
        box-shadow: 0 5px 15px rgba(0, 0, 0, .2);
        transition: all .3s ease;
    }

    .admin-fixed button:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
    }

    /* Overlay */

    .overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);
        /* backdrop-filter: blur(6px); */
        justify-content: center;
        align-items: center;
        z-index: 9999;
    }

    /* Login Box */

    .login-box {
        width: 380px;
        background: #fff;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 35px rgba(0, 0, 0, .25);
        position: relative;
        animation: popup .4s ease;
    }

    @keyframes popup {
        from {
            opacity: 0;
            transform: scale(.8);
        }

        to {
            opacity: 1;
            transform: scale(1);
        }
    }

    .login-box h2 {
        text-align: center;
        color: #1e293b;
        margin-bottom: 25px;
    }

    /* Inputs */

    .login-box input {
        width: 100%;
        padding: 13px;
        margin-bottom: 15px;
        border: 1px solid #d1d5db;
        border-radius: 10px;
        font-size: 15px;
        box-sizing: border-box;
        transition: .3s;
    }

    .login-box input:focus {
        outline: none;
        border-color: #2563eb;
        box-shadow: 0 0 8px rgba(37, 99, 235, .3);
    }

    /* Login Button */

    .login-box button {
        width: 100%;
        padding: 13px;
        border: none;
        border-radius: 10px;
        background: linear-gradient(135deg, #2563eb, #1d4ed8);
        color: white;
        font-size: 16px;
        font-weight: 600;
        cursor: pointer;
        transition: .3s;
    }

    .login-box button:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(37, 99, 235, .4);
    }

    /* Close Button */

    .close-btn {
        position: absolute;
        right: 18px;
        top: 12px;
        font-size: 24px;
        color: #64748b;
        cursor: pointer;
        transition: .3s;
    }

    .close-btn:hover {
        color: red;
    }

    /* Fixed Admin Button

.admin-fixed {
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 1000;
}

.admin-fixed button {
    background: #0d6efd;
    color: white;
    border: none;
    padding: 12px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0,0,0,.2);
    transition: .3s;
}

.admin-fixed button:hover {
    transform: translateY(-2px);
}

/* Overlay */

    .overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, .5);

        justify-content: center;
        align-items: center;

        z-index: 9999;
    }

    /* Login Box */

    .login-box {
        background: white;
        width: 350px;
        padding: 30px;
        border-radius: 15px;
        box-shadow: 0 8px 25px rgba(0, 0, 0, .3);
        position: relative;
    }

    .login-box h2 {
        text-align: center;
        margin-bottom: 20px;
    }

    .login-box input {
        width: 100%;
        padding: 12px;
        margin-bottom: 12px;
        border: 1px solid #ddd;
        border-radius: 8px;
        box-sizing: border-box;
    }

    .login-box button {
        width: 100%;
        padding: 12px;
        background: #0d6efd;
        color: white;
        border: none;
        border-radius: 8px;
        cursor: pointer;
    }

    .login-box button:hover {
        background: #0b5ed7;
    }

    /* Close Button */

    .close-btn {
        position: absolute;
        right: 15px;
        top: 10px;
        font-size: 25px;
        cursor: pointer;
    }

    /* ------------------------------------- */
    /* ------------------------------------- */
    /* ------------------------------------- */