
        .main-header {
            background: white;
        }

        .navbar {
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.31) 0%, rgba(27, 47, 110, 0.31) 100%);
        }

        .iima-blue {
            background-color: #063f7d;
        }

        .iima-blue-light {
            background-color: #0d5aa5;
        }

        .iima-text {
            color: #063f7d;
        }

        .iima-button {
            background-color: #0d5aa5;
            color: white;
            border-radius: 6px;
            padding: 10px 20px;
            text-align: center;
            font-weight: 600;
            transition: background-color 0.3s;
        }

        .iima-button:hover {
            background-color: #063f7d;
        }

        .hero-bg-base {
            background-size: cover;
            background-position: center;
        }

        .main-btn {
            background: linear-gradient(180deg, #2a75ae 0%, #1b2f6e 100%);
            color: #fff!important;
            border: none;
            padding: 15px 40px;
            border-radius: 10px;
            cursor: pointer;
            font-size: 18px;
            font-weight: 500;
            transition:
                transform 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
                box-shadow 0.35s cubic-bezier(0.25, 0.1, 0.25, 1),
                background 0.35s ease-in-out;
        }
        .main-btn a {
            color:white !important;
        }

        .main-btn:hover {
            transform: translateY(-2px) scale(1);
            box-shadow: 0 14px 28px rgba(27, 47, 110, 0.28);
        }

        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
        }

        .hero-bg {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .overlay {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            background: linear-gradient(to bottom,
                    rgba(0, 0, 0, 0.5),
                    rgba(0, 0, 0, 0.6));
        }

        .hero-content {
            position: absolute;
            top: 25%;
            left: 5%;
            color: #fff;
        }

        .hero-content h1 {
            font-size: 32px;
            line-height: 1.4;
            margin-bottom: 25px;
            font-weight: 700;
        }

        .hero-content h3 {
            font-size: 28px;
            margin-bottom: 25px;
            font-weight: 500;
        }

        .hero-content p {
            font-size: 20px;
            margin-bottom: 45px;
            line-height: 1.5;
        }

        .slider-container {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 1s ease-in-out;
        }

        .slide.active {
            opacity: 1;
            z-index: 2;
        }

        .section3-desc {
            background: linear-gradient(180deg, rgba(157, 156, 156, 0.6) 0%, rgba(27, 47, 110, 0.6) 100%);
        }

        .stories-card {
            border: 1px solid #9D9C9C;
            box-shadow: 0px 3.75px 3.75px 0px #00000040;
            border-radius: 20px;
        }

        .stories-title {
            font-weight: 500;
            font-size: 20px;
            color: #000;
            margin-bottom: 10px;
        }

        .stories-desc {
            font-weight: 500;
            font-size: 14px;
            color: #847F7F;
            text-align: justify;
        }

        .opacity-layer {
            background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(117, 119, 65, 0.6) 99.99%);
        }
    /* ===== NAV LINKS DEFAULT ===== */
.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
    color: #1b2f6e;
}

/* ===== HAMBURGER ===== */
.menu-toggle {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #1b2f6e;
    border-radius: 3px;
    transition: 0.3s;
     margin-left: auto;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {

    .navbar {
        padding: 18px 30px;
    }

    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 30px;
        gap: 20px;
        display: none;
    }

    .nav-links .main-btn {
        width: 100%;
        text-align: center;
    }

    /* Show hamburger */
    .hamburger {
        display: flex;
    }

    /* Show menu when checked */
    .menu-toggle:checked ~ .nav-links {
        display: flex;
    }

    /* Animate hamburger */
    .menu-toggle:checked + .hamburger span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .menu-toggle:checked + .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle:checked + .hamburger span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
}

/* ===== SMALL MOBILE ===== */
@media (max-width: 576px) {

    .navbar {
        padding: 15px 20px;
    }

    .nav-links a {
        font-size: 16px;
    }

    .main-btn {
        padding: 12px 20px;
        font-size: 16px;
    }

    .leading-tight h3,
    .leading-tight p {
        font-size: 14px;
    }
    .navbar img {
        width: 45px !important;
    }
}
