* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: \"Noto Sans\", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
h1, h2 {
    font-family: "Lora", serif;
    font-weight: 700;
}
.main {
    background-image: url(./images/home.jpg);
    min-height: 650px;
    position: relative;
    background-position: center;
    background-size: cover; 
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    margin-top: 5px;
    overflow: hidden;
}

.main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 109, 0, 0.1);
    z-index: 1;
}

.main .container .row .text{
    position: relative;
    z-index: 2;
    color: #fff;
    animation: fadeInUp 1s ease-out;
    max-width: 600px;
    padding-right: 20px;
}

.main .container .row .text p {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: #ffeb3b;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.main .container .row .text h1 {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.3;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
}

.main .container .row .text h3 {
    font-size: 1.5rem;
    color: #e8e8e8;
    margin-bottom: 30px;
}

.main .container .row .col-lg-2 {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

/* Admission Badge */
.admission-badge {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: linear-gradient(135deg, #d4a542 0%, #b8860b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.5rem;
    line-height: 1.4;
    box-shadow: 0 15px 40px rgba(212, 165, 66, 0.5);
    position: relative;
    z-index: 3;
    margin-top: 80px;
    flex-shrink: 0;
}

/* Navbar Styles */
.navbar {
    background: linear-gradient(135deg, #006d00 0%, #004d00 100%);
    box-shadow: 0 2px 15px rgba(0, 109, 0, 0.3);
}

.navbar .container-fluid {
    background-color: transparent;
}

.navbar .container-fluid img {
    padding: 10px;
    height: 45px;
    transition: transform 0.3s ease;
}

.navbar .container-fluid img:hover {
    transform: scale(1.05);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #00d000 !important;
}

.navbar .nav-link {
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0 8px;
}

.navbar .nav-link:hover {
    color: #00d000 !important;
    transform: translateY(-2px);
}

.navbar .btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.navbar .btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
}

.btn-danger {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border: none;
    transition: all 0.3s ease;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.btn-danger:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(220, 53, 69, 0.3);
    background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.btn-lg {
    padding: 12px 40px;
    font-size: 1.1rem;
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* About Section */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.about .container h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #006d00;
    position: relative;
    padding-bottom: 20px;
}

.about .container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #006d00 0%, #00d000 100%);
    border-radius: 2px;
}

.about .container .row img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 109, 0, 0.2);
    transition: transform 0.3s ease;
}

.about .container .row img:hover {
    transform: scale(1.02);
}

.about .container .row h4 {
    color: #006d00;
    font-weight: 700;
    margin: 20px 0;
}

.about .container .row .students {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    margin: 10px;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(255, 152, 0, 0.2);
    transition: all 0.3s ease;
}

.about .container .row .students:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 152, 0, 0.3);
}

.about .container p {
    color: #555;
    line-height: 1.8;
}

.courses .container h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 15px;
    color: #fff;
    padding-top: 10px;
    position: relative;
    padding-bottom: 20px;
}

.courses .container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00d000 0%, #90ee90 100%);
    border-radius: 2px;
}

.courses .container .row .col-lg-3 {
    margin-top: 20px;
}

.courses .container .row .col-lg-3 .card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    height: 100%;
}

.courses .container .row .col-lg-3 .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.courses .container .row .col-lg-3 .card-img-top {
    height: 200px;
    object-fit: cover;
}

.courses .container .row .col-lg-3 .card-body {
    padding: 20px;
}

.courses .container .row .col-lg-3 .card h5 {
    color: #006d00;
    font-weight: 700;
    margin: 15px 0;
}

.courses .container .row .col-lg-3 .card p {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
}

.courses .container .text {
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.courses .container .row img {
    width: 100%;
}

.courses {
    background: linear-gradient(135deg, #006d00 0%, #004d00 100%);
    padding: 40px 0;
}

.courses .container {
    padding-bottom: 40px;
}


.director .container h1 {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    color: #006d00;
    position: relative;
    padding-bottom: 20px;
}

.director .container h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #006d00 0%, #00d000 100%);
    border-radius: 2px;
}

.director .container .row img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 109, 0, 0.15);
    transition: transform 0.3s ease;
}

.director .container .row img:hover {
    transform: scale(1.02);
}

.director .container .row {
    border: none;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    padding: 25px;
    margin: 30px 0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 5px solid #00d000;
}

.director .container .row::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, #006d00 50%, transparent 100%);
}

.director .container .row:last-child::after {
    display: none;
}

.director .container .row:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-left: 5px solid #006d00;
}

.director .container .row h4 {
    color: #006d00;
    font-weight: 700;
    margin-top: 20px;
}

.director .container .row h5 {
    color: #00d000;
    font-weight: 600;
    margin: 10px 0 20px 0;
}

.director .container .row p {
    color: #555;
    line-height: 1.8;
    font-size: 0.95rem;
}

/* Director Section */
.director {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}


.contactus {
    background: linear-gradient(135deg, #006d00 0%, #004d00 100%);
    padding: 40px 0;
}

.contactus .container p{
    text-align: center;
    margin-top: 30px;
    color: #ffeb3b;
    padding-top: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contactus .container h1{
    text-align: center;
    margin-bottom: 30px;
    color: #fff;
    padding-top: 10px;
    font-size: 2.5rem;
}

.container > .row {
    margin-top: 30px;
    margin-bottom: 30px;
}

.container > .row h4 {
    color: #006d00;
    font-weight: 700;
    margin: 15px 0 10px 0;
}

.container > .row p {
    color: #555;
    line-height: 1.8;
}

.container > .btn-danger {
    margin-top: 20px;
    margin-bottom: 40px;
}


/* ===== FOOTER STYLES ===== */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #fff;
    margin-top: 50px;
    padding: 60px 0 30px 0;
    border-top: 4px solid linear-gradient(90deg, #006d00 0%, #00d000 100%);
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #006d00 0%, #00d000 100%);
}

.footer .container {
    padding-top: 20px;
}

.footer .row {
    margin-bottom: 40px;
}

.footer .col-lg-4,
.footer .col-lg-3 {
    margin-bottom: 30px;
}

.footer h5 {
    color: #00d000;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 12px;
}

.footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #00d000 0%, #90ee90 100%);
    border-radius: 2px;
}

.footer h5 i {
    margin-right: 8px;
    color: #00d000;
    font-size: 1.3rem;
}

.footer p {
    color: #e9e7e7;
    line-height: 1.8;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer ul li {
    margin-bottom: 12px;
}

.footer .nav-link {
    color: #d0d0d0;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: block;
}

.footer .nav-link i {
    margin-right: 8px;
    color: #00d000;
    width: 18px;
}

.footer .nav-link:hover {
    color: #00d000;
    transform: translateX(8px);
}

.footer > .container > p {
    text-align: center;
    color: #ffffff;
    border-top: 1px solid #404040;
    padding-top: 30px;
    margin: 30px 0 0 0;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Social Media Links */
.footer .col-lg-3 .nav-link::before {
    content: '';
}

.footer .col-lg-3 .nav-link:hover::before {
    opacity: 0;
}

/* Footer Animation */
@keyframes slideInFooter {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.footer .row {
    animation: slideInFooter 0.6s ease-out;
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer .col-lg-4,
    .footer .col-lg-3 {
        margin-bottom: 40px;
    }
    
    .footer .col-lg-2 {
        display: none;
    }
}

/* Additional Responsive Styles */
@media (max-width: 992px) {
    .main .container .row .text h1 {
        font-size: 2.5rem;
    }
    
    .courses .container .row .col-lg-3 {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .navbar-brand {
        font-size: 1rem;
    }
    
    .main {
        min-height: auto;
        padding: 80px 0 40px 0;
        background-attachment: scroll;
    }
    
    .main .container .row {
        flex-direction: column;
        align-items: center;
    }
    
    .main .container .row .text {
        max-width: 100%;
        padding: 0 15px;
        text-align: center;
        margin-bottom: 30px;
    }
    
    .main .container .row .text h1 {
        font-size: 1.8rem;
        margin: 15px 0;
    }
    
    .main .container .row .text p {
        font-size: 14px;
    }
    
    .main .container .row .text h3 {
        font-size: 1.1rem;
    }
    
    .main .container .row .col-lg-2 {
        justify-content: center;
        width: 100%;
    }
    
    .admission-badge {
        width: 180px;
        height: 180px;
        font-size: 1.1rem;
        margin-top: 30px;
    }
    
    .about .container h1,
    .courses .container h1,
    .director .container h1 {
        font-size: 2rem;
    }
    
    .about .container,
    .courses .container,
    .director .container {
        padding: 0 15px !important;
        max-width: 100%;
    }
    
    .container,
    .container-fluid {
        max-width: 100% !important;
        margin: 0 auto;
        padding: 0 15px;
    }
    
    .row {
        margin: 0 !important;
    }
    
    [class*='col-'] {
        padding: 10px 5px !important;
    }
    
    .about .container .row .students {
        flex: 0 1 calc(50% - 10px);
        min-width: 120px;
        margin: 5px !important;
        padding: 10px !important;
    }
    
    .about .container .row {
        margin: 0 -5px !important;
    }
}