/* ===================================
   EuroSchool Gunjur - Main Stylesheet
   Font: Montserrat
   Primary Color: #007DC5 (Blue)
   =================================== */

/* CSS Variables */
:root {
    --primary-blue: #007DC5;
    --primary-dark: #005a8c;
    --text-dark: #2D2D2D;
    --text-gray: #666666;
    --text-light: #999999;
    --white: #ffffff;
    --light-bg: #f8f9fa;
    --light-blue-bg: #E8F4FC;
    --footer-bg: #1B3A4B;
    --gradient-blue: linear-gradient(135deg, #007DC5 0%, #00a8e8 100%);
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.15);
    --border-radius: 12px;
    --transition: all 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.blue-text {
    color: var(--primary-blue);
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

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

.nav-menu ul {
    display: flex;
    align-items: center;
    gap: 35px;
}

.nav-menu > ul > li {
    position: relative;
}

.nav-menu > ul > li > a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-menu > ul > li > a:hover {
    color: var(--primary-blue);
}

.nav-menu > ul > li > a i {
    font-size: 10px;
    transition: var(--transition);
}


.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-dark);
}

.dropdown li a:hover {
    background: var(--light-bg);
    color: var(--primary-blue);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-admissions {
    background: var(--primary-blue);
    color: var(--white);
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-admissions:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===================================
   HERO SECTION
   =================================== */
.hero-section {
    position: relative;
    margin-top: 74px;
    display: flex;
    min-height: 550px;
}

.hero-banner {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 550px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
   
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 60px;
    transform: translateY(-50%);
    color: var(--white);
    animation: fadeInDown 0.8s ease;
	background-color: #00000069;
    margin: 0px 0px 0px 0px;
    padding: 10px 10px 10px 10px;
}


.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .tagline {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.95;
}

.hero-form-container {
    width: 420px;

    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
	position: absolute;
    right: 80px;
}

.enquiry-form-box {
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    padding: 30px;
    width: 100%;
    animation: fadeInRight 0.8s ease;
}

.enquiry-form-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 125, 197, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}



.box-new{
	
	    margin-top: -75px;
}


.box-new .box-s {
   
    margin: 0px;
    padding: 30px;
    border-radius: 30px 0 30px 30px;
    text-align: center;
    background: #007dc5;
    min-height: 270px;
    margin-top: 5%;
}

.box-new .box-s .head{
    display: flex;
}

.box-new .box-s .head h3{
	       font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-align: left;
    margin-bottom: 16px;
    line-height: 22px;
}

.box-new .box-s .head p{
	       width: 55px;
    height: 40px;
    padding: 7px;
    border: 1px solid;
    border-radius: 50%;
    background: #fff;
    color: #007dc5;
    font-weight: 800;
}

.box-new .box-s .head-tit p{
	    font-size: 14px;

    color: #fff;
	    line-height: 22px;
		text-align: left;
}

.card_title h3{
	color:#007dc5;
}
/* ===================================
   ABOUT SECTION
   =================================== */
.about-section {
    padding: 0px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 120px;
    align-items: center;
}

.section-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 43px;
}

.stat-highlight {
    margin-bottom: 40px;
}

.stat-number {
    font-size: 75px;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 24px;
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 5px;
}

.stat-description {
 font-size: 31px;
    color: var(--text-dark);
    line-height: 33px;
  
}

/* About Content Box with Light Blue Background */
.about-content-box {
    background-color: #007dc5;
    background-image: url(../images/Left-Bg.webp);
    padding: 95px 95px 95px 95px;
    background-position: center left;
background-repeat: no-repeat;
}

.about-stats{
	 padding: 32px 95px 95px 95px;
}

.about-content-box p {
    font-size: 16px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 30px;
}

.quick-stats {
    display: flex;
    gap: 40px;
}

.quick-stat {
    text-align: left;
	flex: 1;
}

.qs-number {
    display: block;
    font-size: 17px;
    font-weight: 700;
    color: #fff;
}

.qs-label {
    font-size: 16px;
    color: #fff;
}

/* ===================================
   AMENITIES SECTION
   =================================== */
.amenities-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.amenities-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 50px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

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

.amenity-card {
    border-radius: var(--border-radius);
    overflow: hidden;
    cursor: pointer;
}

.amenity-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.amenity-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.amenity-card:hover .amenity-image img {
    transform: scale(1.1);
}

.amenity-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.2));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

.amenity-card:hover .amenity-overlay {
    opacity: 1;
}

.amenity-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
}

.amenity-overlay span {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
}

/* ===================================
   WHY CHOOSE SECTION
   =================================== */
.why-choose-section {
    padding: 60px 0;
    background: var(--white);
    text-align: center;
}

.section-description {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ===================================
   WHY BEST SECTION - Updated Layout
   =================================== */
.why-best-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.why-best-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.features-container {
    display: flex;
    gap: 30px;
}

.features-left {
    flex: 0 0 400px;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.feature-main-card {
    background: var(--gradient-blue);
    border-radius: var(--border-radius);
    padding: 30px;
    color: var(--white);
}

.feature-main-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

.feature-main-image {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 20px;
}

.feature-main-card p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 15px;
    opacity: 0.95;
}

.read-more-link {
    color: var(--white);
    font-weight: 600;
    font-size: 14px;
    text-decoration: underline;
}

.read-more-link:hover {
    opacity: 0.8;
}

.features-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-card-alt {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 25px;
    display: flex;
    gap: 25px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card-alt:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-card-alt.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 10px;
}

.feature-text .read-more-link {
    color: var(--primary-blue);
}

.feature-img-wrap {
    flex: 0 0 200px;
}

.feature-img-wrap h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-img-wrap img {
    width: 100%;
    border-radius: 8px;
}

/* ===================================
   PRINCIPAL SECTION
   =================================== */
.principal-section {
    padding: 80px 0;
    background: var(--white);
}

.principal-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 50px;
    align-items: center;
}

.principal-image img {
    width: 100%;

}

.principal-content .section-title {
    text-align: left;
    margin-bottom: 25px;
}

.principal-content p {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* ===================================
   JOURNEY SECTION
   =================================== */
.journey-section {
    padding: 80px 0;
    background: var(--light-blue-bg);
}

.journey-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.journey-stats {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 18px;
}




.journey-stat {
    text-align: center;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.journey-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-blue);
    display: inline;
}

.journey-suffix {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-blue);
}

.journey-label {
    display: block;
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
}

/* ===================================
   SUCCESS STORIES SECTION
   =================================== */
.success-section {
    padding: 80px 0;
    background: #007dc5
}

.success-section .section-title {
    text-align: center;
    margin-bottom: 0px;
	    line-height: 46px;
}

.alumni-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    max-width: 1200px;
    margin: auto;
    gap: 95px;
}

.alumni-row {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 25px;
}
.alumni-card {
    width: 31%;
    margin: 10px;
    padding: 30px;
    border-radius: 30px 0 30px 30px;
    text-align: center;
    background: #fff;
    min-height: 300px;
    margin-top: 5%;
}

.alumni-card img {
    width: 120px;
    border-radius: 50%;
    height: 120px;
    object-fit: cover;
    display: block;
    margin: auto;
    margin-top: -82px;
    margin-bottom: 20px;
}

.elementor-kit-6 h3 {
    color: #007dc5;
    font-size: 26px;
    font-weight: 600;
    line-height: 30px;
    margin-bottom: 6px;
    margin-top: 25px;
}
.alumni-card p {
    font-size: 15px;
    margin: 0;
}

.institue_name {
    color: #000;
    margin: 0;
    padding: 10px 0;
    border-top: 1px solid #ada8a8;
    margin-top: 12px;
}

.section-subtitle {
    text-align: center;
    font-size: 16px;
    color: #fff;
    margin-bottom: 50px;
}

.alumni-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.alumni-card {
    background: var(--light-bg);

        transition: var(--transition);
}



.alumni-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.alumni-image {
    height: 250px;
    overflow: hidden;
}

.alumni-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.alumni-info {
    padding: 20px;
}

.alumni-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.alumni-school {
    font-size: 13px;
    color: var(--primary-blue);
    margin-bottom: 5px;
}

.alumni-college {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 10px;
}

.alumni-detail {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 3px;
}

.alumni-cta {
    text-align: center;
	margin-top:40px;
}

.btn-view-more {
    background-color: #ffffff;
      border-radius: 0 25px 25px 25px;
    color: #007dc5;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    padding: 12px 24px;
    fill: #007dc5;
    text-align: center;
    transition: all .3s;
}

.btn-view-more:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: 80px 0;
    background: var(--light-bg);
}

.contact-section .section-title {
    text-align: center;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: start;
}

.contact-card {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--light-blue-bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 24px;
    color: var(--primary-blue);
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.contact-details p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 16px;
    margin-top: 5px;
}

.contact-link:hover {
    text-decoration: underline;
}

.contact-map iframe {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

/* ===================================
   FOOTER - Updated Background Color
   =================================== */
.footer {
    background:#fff;
    color: #000;
    padding: 60px 0 0;
}

.footer-top {
      padding-top: 25px;
    grid-template-columns: 1.2fr 2.8fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand{
	    display: flex;
		gap: 156px;
		    border-bottom: 1px solid #d8d8d8;
}

.logo-fo{
	    width: 40%;
}

.footer-brand img {
    margin-bottom: 20px;
}

.footer-tagline {
    font-size: 16px;
    color: #000;
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-contact-info {
    margin-bottom: 20px;
}

.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
}

.footer-contact-link:hover {
    color: var(--primary-blue);
}

.footer-contact-link i {
width: 30px;
    border: 2px solid;
    padding: 7px;
    font-size: 12px;
    border-radius: 10px;
}

.social-links {
    display: flex;
    gap: 6px;
}

.social-links a {
 width: 36px;
    height: 36px;
    border-radius: 5px;
    background: #007dc5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #fff;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-blue);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 0px;
    color: #007dc5;
}

.footer-column ul{
	    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 2px;
}

.footer-column ul li a {
    font-size: 16px;
    color:#000;
}

.footer-column ul li a:hover {
    color: var(--primary-blue);
}

.footer-presence {
    padding: 30px;
    text-align: center;
	background: #007dc5;
	    border-radius: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-presence h4 {
    font-size: 20px;
    font-weight: 600;
	Color:#fff;
    margin-bottom: 15px;
}

.presence-links {
    display: flex;
    justify-content: center;
    gap: 14px;
}

.footer-column{
	    border-right: 1px solid #d8d8d8;
}

.lef-pd{
    padding-left: 22%;
}

.presence-links a {
    font-size: 14px;
    color: #fff;
	    font-weight: 500;
}

.presence-links a:hover {
    color: #000;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}
.footer-top
.footer-bottom p {
    font-size: 13px;
    color: #000;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    font-size: 13px;
    color: #000;
}

.footer-legal a:hover {
    color: var(--primary-blue);
}

/* ===================================
   STICKY ADMISSION BUTTON
   =================================== */
.sticky-admission-btn {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-blue);
    color: var(--white);
    padding: 15px 12px;
    border-radius: 8px 0 0 8px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    box-shadow: var(--shadow-md);
    z-index: 999;
    transition: var(--transition);
}

.sticky-admission-btn:hover {
    background: var(--primary-dark);
    padding-right: 18px;
}

.admsi{
	    grid-template-columns: 520px 1fr;
}

.admsi img{
	  border-radius:40px;
}

/* ===================================
   ANIMATIONS
   =================================== */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(-50%);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===================================
   RESPONSIVE DESIGN
   =================================== */
@media (max-width: 1024px) {
    .hero-section {
        flex-direction: column;
    }
    
    .hero-form-container {
		        position: relative;
        width: 100%;
        padding: 40px 20px;
    }
    
    .hero-content h1 {
        font-size: 36px;
    }
    
    .features-container {
        flex-direction: column;
    }
    
    .features-left {
        position: static;
        flex: auto;
    }
    
    .feature-card-alt,
    .feature-card-alt.reverse {
        flex-direction: column;
    }
    
    .feature-img-wrap {
        flex: auto;
    }
    
    .principal-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .principal-image {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .journey-stats {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 12px 20px;
    }
	
.alumni-row{
	    display: block;
}

.hero-form-container{
	right:0;
}

.alumni-card {
	margin-bottom: 26%;
    width: 93%;
}
.footer-brand {
    display: block;
}

.lef-pd {
    padding-left: 0%;
}

.footer-column {
    border-right: 0px solid #d8d8d8;
	   border-bottom: 1px solid #d8d8d8;
}

.alumni-cta {
    
    margin-top: -26px;
}

.about-stats {
    padding: 41px 41px 41px 41px;
}

.stat-description {
    font-size: 22px;
}
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-md);
        padding: 20px;
    }
    
    .nav-menu.active {
        display: block;
    }
    
    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }
    
    .nav-menu > ul > li {
        border-bottom: 1px solid #eee;
    }
    
    .nav-menu > ul > li > a {
        padding: 15px 0;
        justify-content: space-between;
    }
    

    
    .has-dropdown.active .dropdown {
        display: block;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .btn-admissions {
        display: none;
    }
    
    .hero-content {
        left: 20px;
        right: 20px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-content .tagline {
        font-size: 14px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .stat-number {
        font-size: 55px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .alumni-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .presence-links {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .sticky-admission-btn {
        font-size: 12px;
        padding: 12px 8px;
    }
	
	.navbar {
		
    display: flex;
    flex-wrap: balance;
	}
	
	.navbar-light .navbar-brand, .navbar-light a.btn {
    height: 75px;
    width: 68%;
}

.box-new {
    margin-top: 0px;
}

.box-new .box-s{
	min-height: auto;
}

.box-new .box-s .head {
    gap: 7px;
}

.box-new .box-s .head p {
    width: 40px;
    height: 40px;
    padding: 9px;
}
	
}

@media (max-width: 480px) {
    .hero-image {
        min-height: 350px;
    }
	

    .enquiry-form-box {
        padding: 25px 20px;
    }
    
    .about-content-box {
        padding: 25px;
    }
    
    .quick-stats {
        flex-wrap: wrap;
        gap: 25px;
    }
    
    .amenities-grid {
        grid-template-columns: 1fr;
    }
    
    .journey-stats {
        grid-template-columns: 1fr 1fr;
    }
    
    .journey-number {
        font-size: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
}


@media (max-width: 320px) {
	    .stat-description {
        font-size: 19px;
    }
}