* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #4CAF50;
    --secondary-color: #66BB6A;
    --light-bg: #D5EDD4;
    --dark-green: #2E7D32;
    --text-dark: #333;
    --text-light: #666;
    --border-radius: 12px;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

html,
body {
    height: 100%;
    width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, #B8E6B8 0%, #A8DFA8 100%);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--box-shadow);
}

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

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8B7355 0%, #5D4E37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #4CAF50;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.logo-text {
    color: #D4A574;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 1px;
}

.title {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    letter-spacing: 1px;
}

/* Menu Button */
.menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 6px;
}

.menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
}

.menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background-color: #fff;
    border-bottom: 3px solid var(--primary-color);
    padding: 15px 0;
    position: absolute;
    top: 100px;
    width: 100%;
    z-index: 99;
}

.mobile-menu.active {
    display: flex;
}

.menu-link {
    padding: 12px 20px;
    text-decoration: none;
    color: var(--text-dark);
    border-left: 4px solid transparent;
    transition: all 0.3s ease;
    font-weight: 500;
}

.menu-link:hover {
    background-color: var(--light-bg);
    border-left-color: var(--primary-color);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    min-height: calc(100vh - 200px);
}

/* Subtitle Section */
.subtitle-section {
    background-color: var(--dark-green);
    padding: 20px;
    text-align: center;
    margin-bottom: 30px;
    border-radius: var(--border-radius);
}

.subtitle {
    color: white;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Hero Section */
.hero-section {
    margin-bottom: 30px;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    aspect-ratio: 4/3;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;

}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.hero-buttons .btn-primary {
    width: 170px;
}

.hero-buttons .btn-secondary {
    width: 150px;
}

/* Button Styles */
.btn {
    padding: 12px 24px;
    border: none;
    border-radius: var(--border-radius);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: #388E3C;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.btn-secondary {
    background-color: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--light-bg);
    transform: translateY(-2px);
}

.btn-action {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    margin-bottom: 12px;
}

/* Students Section */
.students-section {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.students-image-wrapper {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.students-content-top {
    background: white;
    border-radius: var(--border-radius) var(--border-radius) 0 0;
    padding: 25px 20px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.students-content-bottom {
    width: 85%;
    position: absolute;
    bottom: 0;
    left: 20px;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 15px;
    text-align: left;
    backdrop-filter: blur(5px);
    border-radius: 12px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
}

.students-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--border-radius);
}

.students-content {
    padding: 30px 20px;
    text-align: center;
}

.students-badge {
    width: 45px;
    height: 45px;
    background-color: var(--light-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.badge-icon {
    width: 35px;
    height: 35px;
    color: var(--primary-color);
}

.students-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
    line-height: 1.2;
}

.students-subtitle {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 0;
    line-height: 1.2;
}

.btn-students-login {
    padding: 8px 25px;
    font-size: 13px;
    width: auto;
    margin: 0 auto;
    display: inline-block;
}



.support-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.support-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.support-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.3s ease;
}

.support-link:hover {
    color: var(--dark-green);
}

.support-icon-small {
    font-size: 18px;
}

/* Action Buttons */
.action-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

/* Footer */
.footer {
    background: var(--dark-green);
    color: white;
    padding: 30px 20px;
    text-align: center;
    margin-top: 50px;

}

/* Responsive tweaks for mobile view */
@media (max-width: 768px) {
    .menu-btn {
        display: flex;
    }

    .header-container {
        padding: 0 12px;
        gap: 8px;
    }

    .logo {
        width: 48px;
        height: 48px;
    }

    .title {
        font-size: 20px;
    }

    .mobile-menu {
        top: 70px;
    }

    .container {
        padding: 12px;
        min-height: calc(100vh - 160px);
    }

    .hero-image-wrapper {
        aspect-ratio: 16/9;
    }

    .hero-buttons {
        padding: 12px;
        gap: 10px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 140px;
    }

    .students-content-bottom {
        width: calc(100% - 40px);
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 10px 12px;
    }

    .students-title {
        font-size: 15px;
    }

    .students-subtitle {
        font-size: 12px;
    }

    .footer {
        padding: 20px 12px;
    }
}

@media (max-width: 420px) {
    .title {
        font-size: 18px;
    }

    .logo {
        width: 44px;
        height: 44px;
    }

    .menu-btn span {
        width: 20px;
    }

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 120px;
        font-size: 13px;
        padding: 10px 14px;
    }

    .students-badge {
        width: 40px;
        height: 40px;
    }

    /* move overlay buttons slightly up so they don't overlap edges on very small screens */
    .hero-overlay {
        align-items: flex-end;
        padding-bottom: 8px;
    }

    .students-content-bottom {
        left: 8px;
        right: 8px;
        width: auto;
    }
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section {
    margin: 10px 0;
    font-size: 14px;
}

.footer-divider {
    height: 1px;
    background-color: rgba(255, 255, 255, 0.3);
    margin: 15px 0;
}

.footer-quote,
.footer-copyright {
    margin: 0;
}

.footer-quote span,
.footer-copyright span {
    font-style: italic;
    color: #FFE0B2;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background-color: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    max-width: 400px;
    width: 90%;
    animation: slideIn 0.3s ease;
    position: relative;
}

.logo-img {
    width: 127px;
    height: 57px;
}

@keyframes slideIn {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-content h2 {
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.modal-content p {
    color: var(--text-light);
    margin-bottom: 15px;
    text-align: center;
}

.close {
    position: absolute;
    right: 15px;
    top: 15px;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: var(--text-dark);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}



/* Responsive Design */
@media (max-width: 768px) {

    .support-wrapper {
        flex-wrap: wrap;
        gap: 10px;
    }



    .vls-container {
        position: relative;
        width: 100%;
        margin-top: 32px;

    }

    .vls {
        position: absolute;
        width: 50px;
        /* apne hisab se adjust kar lo */
    }

    .left {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .right {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }


    .menu-btn {
        display: flex;
    }

    .title {
        font-size: 22px;
    }

    .subtitle {
        font-size: 18px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn-primary {
        width: 170px;
    }

    .hero-buttons .btn-secondary {
        width: 150px;
    }

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

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

    .support-icon {
        margin: 0 auto;
    }

    .support-links {
        align-items: center;
    }

    .modal-content {
        padding: 30px 20px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {


    .vls-container {
        position: relative;
        width: 100%;
        margin-top: 32px;
    }

    .vls {
        position: absolute;
        width: 50px;
        /* apne hisab se adjust kar lo */
    }

    .left {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .right {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}

@media (max-width: 480px) {


    .vls-container {
        position: relative;
        width: 100%;
        margin-top: 32px;
    }

    .vls {
        position: absolute;
        width: 50px;
        /* apne hisab se adjust kar lo */
    }

    .left {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .right {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .header-container {
        padding: 0 15px;
    }

    .logo {
        width: 50px;
        height: 50px;
    }

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

    .title {
        font-size: 18px;
    }

    .subtitle {
        font-size: 16px;
        padding: 15px;
    }

    .subtitle-section {
        margin-bottom: 20px;
    }

    .container {
        padding: 15px;
    }

    .students-content {
        padding: 20px 15px;
    }



    .footer-section {
        font-size: 12px;
    }
}

@media (min-width: 1024px) {
    .container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 30px;
        align-items: start;
    }

    .subtitle-section {
        grid-column: 1 / -1;
    }

    .hero-section {
        grid-column: 1;
        grid-row: 2;
    }

    .students-section {
        grid-column: 2;
        grid-row: 2;
    }


    .action-buttons {
        grid-column: 1 / -1;
        flex-direction: row;
    }

    .btn-action {
        width: 100%;
        margin-bottom: 0;
    }


    .vls-container {
        position: relative;
        width: 100%;
        margin-top: 32px;
    }

    .vls {
        position: absolute;
        width: 50px;
        /* apne hisab se adjust kar lo */
    }

    .left {
        left: 0;
        top: 50%;
        transform: translateY(-50%);
    }

    .right {
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }

}

.support-section {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
}

/* Left icon */
.students-badge {
    font-size: 30px;

}

/* Right content */
.support-info {
    display: flex;
    flex-direction: column;
    margin-left: 70px;

}

.support-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    /* margin: 5px 0; */
}

.fa-whatsapp {
    color: #25D366;
}

.fa-instagram {
    color: #E4405F;
}
