:root {
    --primary-color: #00401c;
    --primary-dark: #002a12;
    --primary-light: #00682a;
    --secondary-color: #fff;
    --accent-color: #f8b739;
    --accent-dark: #e6a326;
    --light-bg: #f8f9fa;
    --dark-text: #333;
    --light-text: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

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

a {
    text-decoration: none;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.3;
}

/* Top Bar Styles */
.top-bar {
    background-color: var(--secondary-color);
    padding: 12px 0;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    max-height: 80px;
    transition: var(--transition);
}

.logo:hover {
    transform: scale(1.05);
}

.social-icons a {
    margin-left: 18px;
    font-size: 20px;
    color: var(--primary-color);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 64, 28, 0.05);
}

.social-icons a:hover {
    color: var(--secondary-color);
    background: var(--primary-color);
    transform: translateY(-3px);
}

/* Hero Section Styles */
.hero-section {
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--secondary-color);
    padding: 50px 0 50px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 500;
    opacity: 0.95;
}

.hero-badge {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.amenities-card {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.amenities-card h3 {
    text-align: center;
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.amenities-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.amenity-item {
    display: flex;
    text-align: left;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: var(--transition);
}

.amenity-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}

.amenity-icon {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-right: 12px;
}

.admission-badge {
    background: var(--primary-color);
    color: var(--secondary-color);                
    padding: 18px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    display: inline-block;
    box-shadow: 0 10px 25px rgba(248, 183, 57, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.contact{
    padding-top: 50px;
}

.admission-badge:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 30px rgba(248, 183, 57, 0.5);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Main Section Styles */
.main-section {
    padding: 60px 0;
    background-color: var(--light-bg);
    position: relative;
}

.section-title {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 15px;
    font-size: 1.65rem;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-title.center {
    text-align: center;
}

.section-title.center:after {
    left: 50%;
    transform: translateX(-50%);
}

.content-card {
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.content-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}
.sports_item_img{
    padding-bottom: 1rem;                                                         
}

.achievement-item {
    display: flex;
    align-items: center;
    padding: 20px;
    background: var(--secondary-color);
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: var(--transition);
    border-left: 4px solid var(--primary-color);
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-left: 4px solid var(--accent-color);
}

.achievement-number {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 20px;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.sports-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.sports-item {
    background: var(--secondary-color);
    padding: 15px 10px;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.sports-item:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 64, 28, 0.2);
}

.activity-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--secondary-color);
    box-shadow: var(--box-shadow);
    height: 100%;
}

.activity-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.activity-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.3rem;
}

/* Form Styles - COMPLETELY REMOVED STICKY POSITIONING */
.form-container {
    background: var(--secondary-color);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border: 5px solid var(--accent-color);
    /* NO position: sticky; NO top: 100px; */
    position: static; /* Explicitly set to static */
    margin-bottom: 30px;
}

.form-title {
    color: var(--light-bg);
    font-weight: 700;
    margin-bottom: 15px;
    text-align: center;
    font-size: 1.8rem;
}

.form-subtitle {
    text-align: center;
    margin-bottom: 30px;
    color: var(--light-bg);
    font-size: 1rem;
}
h4.form-title {
    font-size: 1.4rem;
    line-height: 1.2rem;
}


.principal_message {
    height: 50rem;
    overflow-y: scroll;
}

.form-control, .form-select {
    padding: 14px 16px;
    margin-bottom: 20px;
    border: 1px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 64, 28, 0.15);
}

.btn-submit {
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    width: 100%;
    transition: var(--transition);
    font-size: 1.1rem;
    margin-top: 10px;
}

.btn-submit:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 64, 28, 0.3);
}

/* Why Choose Section */
.why-choose-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.feature-box {
    text-align: center;
    padding: 40px 25px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    background: var(--secondary-color);
    box-shadow: var(--box-shadow);
    height: 100%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.feature-box:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    z-index: 2;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 50px;
    color: var(--primary-color);
    margin-bottom: 25px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image {
   
    margin-bottom: 25px;
   
}                      

.feature-title {
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 1.4rem;
}

.feature-box p {
    color: var(--light-text);
}

/* Footer Styles */
.footer {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
    color: var(--secondary-color);
    padding: 20px 0;
    text-align: center;
}

.footer p {
    margin: 0;
    font-size: 1rem;
    opacity: 0.9;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* slider css start*/
.sports-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    transition: 0.3s ease;
}

.sports-item:hover {
    transform: translateY(-5px);
}

            
/* slider css end*/


.home_image {
   display: flex;
    justify-content: flex-start;
    align-items: flex-end;
}
.home_image img{
    width: 90%;                        
}

.admission_table{
    padding: 50px 0;
}
table.table.table-bordered.table-fees.bg-white.table-striped {
    width: 68%;
    margin: auto;
}

section.abt-sec {
    text-align: center;
}

.contact .info-box {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}
.contact .info-box a {
    color: #444444;
    text-align: center;
    box-shadow: 0 0 30px rgba(214, 215, 216, 0.3);
    padding: 20px 0 30px 0;
}


.contact .info-box i {
    font-size: 32px;
    color: rgba(8, 135, 57, 0.9);
    border-radius: 50%;
    padding: 8px;
               
}
.enquery_buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding-bottom: 50px;
}

.bx {
    font-family: boxicons !important;
    font-weight: 400;
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
    display: inline-block;
    text-transform: none;
    speak: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.contact .info-box h3 {
    font-size: 20px;
    color: #777777;
    font-weight: 700;
    margin: 10px 0;
    font-family: Arial, Helvetica, sans-serif;
}
.contact .info-box p {
    padding: 0;
    line-height: 24px;
    font-size: 14px;
    margin-bottom: 0;
} 


/* ==============sticky button start=========== */
#whatsapp_button {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: #ffffff;

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

    position: fixed;
    bottom: 100px;
    right: 30px;

    text-decoration: none;

    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;

    opacity: 1;
    z-index: 1000;
}
#call_button {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    color: #ffffff;

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

    position: fixed;
    bottom: 170px;
    right: 30px;

    text-decoration: none;

    transition: background-color 0.3s, opacity 0.5s, visibility 0.5s;

    opacity: 1;
    z-index: 1000;
}

.whats_app{
    width: 50%;                    
}
.call_ico{
    width: 80%;                                                  
}
/* ==============sticky button end=========== */




@media (max-width:1366px){
       .principal_message {
    height: 42rem;
    overflow-y: scroll;                               
}
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .amenities-list {
        grid-template-columns: 1fr;
    }

    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Mobile form appears first after hero section */
    .main-section .row {
        display: flex;
        flex-direction: column;
    }
    
    /* Mobile form container */
    .d-lg-none.form-mobile-container {
        order: -1;
        margin-bottom: 40px;
    }
    
    /* Desktop form hidden on mobile */
    .d-none.d-lg-block {
        display: none !important;
    }
    
    /* Make mobile form full width */
    .d-lg-none.col-12 {
        width: 100%;
        padding-left: 0;
        padding-right: 0;
    }
    
    /* Adjust left content spacing */
    .col-lg-7 {
        order: 2;
    }
    .principal_message {
    height: 40rem;
    overflow-y: scroll;                               
}

}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .social-icons {
        text-align: center;
        margin-top: 15px;
    }

    .social-icons a {
        margin: 0 8px;
    }
    
    /* Adjust form padding on mobile */
    .form-container {
        padding: 30px 20px;
    }
    .home_image img{
    width: 100%;
}
.social_icons_mobile{
    display: none;
}
.logo_mobile {
    display: flex;
    justify-content: center;
}
.hero-section{
    padding: 10px 0 50px;
}
.form_mobile .mb-3 {
    margin-bottom: 5px !important;
}
.form-control, .form-select {
    padding: 10px 16px;
    margin-bottom: 10px;
}
.form-title {
    margin-bottom: 5px;  
}

.main-section {
    padding-bottom:0;
    padding-top: 30px;
  
}

table.table.table-bordered.table-fees.bg-white.table-striped {
    width: 100%;

}
.content-card {
        padding: 10px;
    }

    .enquery_buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding-bottom: 50px;
    flex-direction: column;
    align-items: center;
}

}

/* Floating elements animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

                           