/* assets/css/style.css - COMPLETE FIXED VERSION */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: #1b1b1b;
    background: #fff;
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-padding {
    padding: 80px 0;
}

.mt-center{
    margin-top:30px; 
    text-align:center;
}

/* TOP HEADER */
.top-header {
    background: #16324F;
    color: #fff;
    padding: 10px 0;
    font-size: 14px;
}

.top-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left, .top-right {
    display: flex;
    gap: 20px;
}

.top-right a {
    color: #fff;
}




/* NAVBAR */
.main-header {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #16324F;
}

.logo img {
    width: 40px;
}

.main-header a span {
    font-size: clamp(15px, 1.5vw, 24px);
    line-height: 1;
}

.nav-menu {
    display: flex;
    gap: 15px;
}

.nav-menu a {
    color: #16324F;
    font-weight: 500;
}
.nav-menu a.active {
    color: #0d6efd;
    font-weight: 600;
}
.nav-menu a:hover, .nav-menu .active {
    color: #4EA5D9;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* HERO SECTION - two column layout */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: url('../images/page/hero_parallex.jpeg') center center/cover no-repeat fixed;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8,20,35,0.85) 0%, rgba(8,20,35,0.5) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.hero-left {
    flex: 1.2;
    color: #fff;
}

.hero-left h1 {
    font-size: clamp(1.4rem, 3.8vw, 2.2rem);
    line-height: 1.2;
    margin: 20px 0;
    font-weight: 600;
    letter-spacing: -1.5px;
    color: #ffffff;
    text-transform: capitalize;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.25),
        0 2px 4px rgba(0,0,0,0.15);
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.hero-tag {
    display: inline-block;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(5px);
    margin-top:8px;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.85rem;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #4EA5D9;
    color: #fff;
    margin-top:10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    background: #3b8bbf;
    transform: translateY(-2px);
}

.btn-outline {
    border: 1px solid rgba(255,255,255,0.5);
    color: #fff;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: 0.3s;
}

.btn-outline:hover {
    background: #fff;
    color: #16324F;
}

/* HERO ACHIEVEMENT STRIP */

.hero-achievement-strip{
    margin-top:25px;
    display:flex;
    gap:15px;
    flex-wrap:wrap;
    align-items:center;
}

.achievement-item{
    min-width:160px;
    padding:13px 17px;
    border-radius:18px;
    background:rgba(255,255,255,0.10);
    backdrop-filter:blur(6px);
    border:1px solid rgba(255,255,255,0.12);
    transition:0.3s;
}

.achievement-item:hover{
    transform:translateY(-4px);
    background:rgba(255,255,255,0.16);
}

.achievement-item h3{
    color:#ffffff;
    font-size:1.3rem; 
    line-height:1;
    margin-bottom:8px;
    font-weight:800;
}

.achievement-item p{
    color:#d8e5f0;
    font-size:0.9rem;
    margin:0;
    line-height:1.4;
}



/* RIGHT SIDE NEWS PANEL */
.hero-right {
    flex: 0.9;
    min-width: 280px;
    margin-bottom:10px;
}

.news-panel {
    background: rgba(0, 0, 0, 0.30);  /* Semi-transparent dark background */
    backdrop-filter: blur(5px);       /* Frosted glass effect */
    border-radius: 20px;
    padding: 18px;
    box-shadow: 0 15px 25px -8px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.15);
    width: 100%;                       /* Keep responsive width */
    max-width: 320px;                  /* Limit maximum width (reduced from ~400px) */
    margin: 0 auto;   
}

.news-header {
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 2px solid #4EA5D9;
    padding-bottom: 10px;
    margin-bottom: 14px;
}

.news-header i {
    font-size: 22px;
    color: #fff;
}

.news-header h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 0;
}

.news-badge {
    background: #4EA5D9;
    color: #fff;
    font-size: 0.6rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-left: auto;
}

/* Simple scrollable news list (no auto-scroll to avoid bugs) */
.news-scroll {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 5px;
}

.news-scroll::-webkit-scrollbar {
    width: 4px;
}

.news-scroll::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.1);
}

.news-scroll::-webkit-scrollbar-thumb {
    background: #4EA5D9;
    border-radius: 10px;
}

.news-item {
    border-bottom: 1px solid #eee;
    padding: 14px 0;
}

.news-item:last-child {
    border-bottom: none;
}

.news-date, .news-category {
    font-size: 11px;
    color: #4EA5D9; 
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}
.news-read-more{
    color: #4EA5D9; 
}

.news-item h4 {
    font-size: 0.9rem;
    margin-bottom: 3px;
    color: #ffffff;
}

.news-item p {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.85);  /* Light gray text */
    margin: 0;
}

.news-link, .news-external-link {
    display: inline-block;
    margin-top: 12px;
    color: #4EA5D9;
    font-weight: 600;
    font-size: 0.8rem;
}

.news-link:hover {
    color: #ffffff;
}

.news-external-link:hover{
    color:#16324F;
}

/* SECTION TITLES */
.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-subtitle {
    color: #4EA5D9;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title h2 {
    font-size: 2.2rem;
    color: #16324F;
    margin-top: 8px;
    line-height:1.2;
}


/* WELCOME */
.welcome-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.welcome-image img {
    border-radius: 20px;
}

.welcome-content h2 {
    font-size: 2rem;
    color: #16324F;
    margin-bottom: 20px;
    line-height:1.2;
}

/* FEATURES */
.features-section {
    background: #f8fbff;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.feature-card i {
    font-size: 40px;
    color: #4EA5D9;
    margin-bottom: 20px;
}

.feature-card h3 {
    color: #16324F;
    margin-bottom: 10px;
}

/* FACILITIES */
.facility-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.facility-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.facility-card img {
    transition: 0.3s;
}

.facility-card:hover img {
    transform: scale(1.05);
}

.facility-card h3 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    background: rgba(0,0,0,0.5);
    padding: 5px 12px;
    border-radius: 30px;
    font-size: 0.9rem;
}

.smart-learning {
    background: #f8fbff;
}

/* STATS SECTION */
.stats-section {
    background: #fff;
}
.streams-card {
    background: #f8fbff !important;
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    text-align: center;
}

.stat-card {
    background: #f8fbff;
    padding: 35px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

.stat-card i {
    font-size: 45px;
    color: #4EA5D9;
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #16324F;
    margin-bottom: 5px;
}

.stat-card p {
    color: #5a6e7c;
    font-weight: 500;
}


/* TOPPER SECTION INDEX */
/* CENTER GRID */
.topper-grid{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:30px;
}
/* CARD */
.topper-card{
    width:300px;
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 35px rgba(0,0,0,0.08);
    transition:0.3s ease;
    text-align:center;
}

.topper-card:hover{
    transform:translateY(-8px);
}

.topper-card img{
    width:100%;
    height:320px;
    object-fit:cover;
}

/* CONTENT */
.topper-content{
    padding:22px;
}

.topper-content h4{
    font-size:20px;
    color:#16324F;
    margin:15px 0 10px;
    font-weight:700;
    line-height:1; 
}

/* POSITION BADGE */
.topper-position{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#f59e0b,#fbbf24);
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    box-shadow:0 8px 20px rgba(245,158,11,0.25);
}

.topper-position i{
    font-size:15px;
}

/* PERCENTAGE */
.topper-percent{
    display:inline-block;
    margin-top:10px;
    background:#0d6efd;
    color:#fff;
    padding:8px 18px;
    border-radius:40px;
    font-weight:700;
    font-size:16px;
}





/* CTA */
.cta-section {
    background: #16324F;
    padding: 60px 0;
    color: #fff;
}

.cta-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.btn-light {
    background: #fff;
    color: #16324F;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
}

/* FOOTER */
.footer {
    background: #0f2236;
    color: #fff;
    padding-top: 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-col p, .footer-col li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #ddd;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-col input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    margin-bottom: 10px;
}

.footer-col button {
    background: #4EA5D9;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 8px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 50px;
}
.footer-bottom a {
    color: #7dd3fc;
    font-weight: 600;
    position: relative;
    transition: 0.3s ease;
}

.footer-bottom a:hover {
    color: #fff;
    text-shadow: 0 0 10px rgba(125, 211, 252, 0.5);
}

#newsletterMsg{
    margin-top: 12px;
    font-size: 14px;
    font-weight: 500;
}



/* ========== ABOUT US PAGE STYLES ========== */

/* Inner Banner */
.inner-banner {
    background: linear-gradient(135deg, #16324F 0%, #2a4a6e 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}
.inner-banner h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}
.inner-banner p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Story Section (About) */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.story-content h2 {
    font-size: 2rem;
    color: #16324F;
    margin: 15px 0 20px;
    line-height: 1.2;
}
.story-content p {
    margin-bottom: 25px;
    line-height: 1.7;
}
.story-image img {
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    width: 100%;
}

/* Mission & Vision Cards */
.mission-vision {
    background: #f8fbff;
}
.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.mission-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 24px;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px -10px rgba(0,0,0,0.08);
}
.mission-card i {
    font-size: 48px;
    color: #4EA5D9;
    margin-bottom: 20px;
}
.mission-card h3 {
    font-size: 1.6rem;
    color: #16324F;
    margin-bottom: 15px;
}
.mission-card p {
    color: #4a5568;
    line-height: 1.6;
}

/* Core Values */
.values-section {
    background: #fff;
}
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.value-card {
    background: #f9fbfe;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.2s;
}
.value-card:hover {
    background: #fff;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}
.value-icon i {
    font-size: 42px;
    color: #4EA5D9;
    margin-bottom: 20px;
}
.value-card h3 {
    margin-bottom: 12px;
    color: #16324F;
}
.value-card p {
    color: #5a6e7c;
    font-size: 0.95rem;
}

/* Principal Section */
.principal-section {
    background: #f8fbff;
}
.principal-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    align-items: center;
}
.principal-image {
    text-align: center;
}
.principal-image img {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #4EA5D9;
    margin: 0 auto 20px;
    box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}
.principal-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #16324F;
}
.principal-title {
    color: #4EA5D9;
    font-weight: 500;
}
.principal-message h2 {
    font-size: 2rem;
    color: #16324F;
    margin: 15px 0 20px;
    line-height:1.2;
}
.principal-message p {
    margin-bottom: 20px;
    line-height: 1.7;
}

/* SCHOOL SONG SECTION */

.school-song-section{
    background:#fff;
}

.song-wrapper{
    max-width:900px;
    margin:auto;
    background:#f8fbff;
    padding:50px;
    border-radius:28px;
    box-shadow:0 15px 35px rgba(0,0,0,0.05);
    position:relative;
}

.song-icon{
    width:90px;
    height:90px;
    border-radius:50%;
    background:#16324F;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin:0 auto 35px;
    font-size:2rem;
}

.song-content{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:30px;
}

.song-block{
    background:#f9fbfe;
    padding:25px;
    border-radius:20px;
    transition:0.3s;
}

.song-block:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 25px rgba(0,0,0,0.06);
}

.song-block p{
    line-height:2;
    color:#16324F;
    font-size:1rem;
    text-align:center;
    font-weight:500;
}






/* ========== ACADEMICS PAGE STYLES ========== */

/* Academic levels grid */
.academic-levels {
    background: #fff;
}
.levels-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.level-card {
    background: #f9fbfe;
    border-radius: 24px;
    padding: 30px 20px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.level-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
    background: #fff;
}
.level-icon i {
    font-size: 48px;
    color: #4EA5D9;
    margin-bottom: 20px;
}
.level-card h3 {
    font-size: 1.4rem;
    color: #16324F;
    margin-bottom: 15px;
}
.level-card p {
    color: #4a5568;
    margin-bottom: 20px;
    line-height: 1.5;
}
.level-card ul {
    list-style: none;
    padding-left: 0;
}
.level-card ul li {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #2d3e50;
}
.level-card ul li i {
    color: #4EA5D9;
    font-size: 14px;
    margin-right: 8px;
}

/* Curriculum & Methodology grid */
.curriculum-section {
    background: #f8fbff;
}
.curriculum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}
.curriculum-content h2, .methodology-content h2 {
    font-size: 1.8rem;
    color: #16324F;
    margin: 15px 0 20px;
    line-height: 1.2;
}
.curriculum-list, .method-list {
    list-style: none;
    margin: 25px 0;
}
.curriculum-list li, .method-list li {
    margin-bottom: 15px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.curriculum-list li i {
    color: #4EA5D9;
    font-size: 1.2rem;
    width: 24px;
}
.method-list li i {
    color: #4EA5D9;
    font-size: 1.2rem;
    width: 28px;
}

/* Assessment section */
.assessment-section {
    background: #f8fbff;
}
.assessment-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}
.assessment-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: 0.2s;
}
.assessment-card i {
    font-size: 44px;
    color: #4EA5D9;
    margin-bottom: 20px;
}
.assessment-card h3 {
    font-size: 1.3rem;
    color: #16324F;
    margin-bottom: 12px;
}
.assessment-card p {
    color: #4a5568;
    font-size: 0.9rem;
}

/* Highlights section */
.highlights-section {
    background: #fff;
}
.highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}
.highlight-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    background: #f8fbff;
    padding: 25px;
    border-radius: 20px;
    transition: 0.2s;
}
.highlight-item i {
    font-size: 36px;
    color: #4EA5D9;
}
.highlight-item h3 {
    color: #16324F;
    margin-bottom: 8px;
}
.highlight-item p {
    color: #5a6e7c;
    font-size: 0.9rem;
}

/* STREAMS TABLE */

.streams-table-wrapper{
    overflow-x:auto;
}

.streams-table{
    width:100%;
    border-collapse:collapse;
    background:#ffffff;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.streams-table thead{
    background:#16324F;
}

.streams-table thead th{
    color:#ffffff;
    padding:20px;
    text-align:left;
    font-size:1rem;
    font-weight:600;
}

.streams-table tbody tr{
    border-bottom:1px solid #edf2f7;
    transition:0.3s;
}

.streams-table tbody tr:hover{
    background:#f8fbff;
}

.streams-table tbody td{
    padding:20px;
    color:#2d3e50;
    line-height:1.7;
    font-size:0.95rem;
}

.streams-table tbody td strong{
    color:#16324F;
    font-size:1rem;
}



/* ========== ADMISSIONS PAGE STYLES ========== */

.admission-steps {
    background: #f8fbff;
}


/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.step-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    transition: 0.3s;
}
.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}
.step-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: #4EA5D9;
    color: #fff;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}
.step-card i {
    font-size: 44px;
    color: #4EA5D9;
    margin: 20px 0 15px;
}
.step-card h3 {
    font-size: 1.3rem;
    color: #16324F;
}

/* Eligibility & Dates */
.eligibility-section {
    background: #f8fbff;
}
.eligibility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}
.age-table, .fee-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.age-table th, .age-table td, .fee-table th, .fee-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #edf2f7;
}
.age-table th, .fee-table th {
    background: #16324F;
    color: #fff;
}
.dates-list {
    list-style: none;
    background: #fff;
    padding: 20px;
    border-radius: 20px;
}
.dates-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.dates-list li i {
    color: #4EA5D9;
    width: 24px;
}

/* Documents */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}
.doc-card {
    background: #f9fbfe;
    padding: 25px;
    border-radius: 20px;
}
.doc-card i {
    font-size: 36px;
    color: #4EA5D9;
    margin-bottom: 15px;
}
.doc-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #16324F;
}
.doc-card ul {
    list-style: none;
}
.doc-card ul li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}
.doc-card ul li:before {
    content: "•";
    color: #4EA5D9;
    position: absolute;
    left: 0;
}

/* Fee table */
.fee-table tbody {
    background: #f8fbff;
}
.fee-table-wrapper {
    overflow-x: auto;
}
.fee-table th, .fee-table td {
    text-align: center;
}
.fee-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #5a6e7c; 
    text-align: center;
}

.important-fee-note{
    background:#edf6ff;
    border-left:5px solid #16324F;
    padding:18px 22px;
    border-radius:14px;
    margin-bottom:35px;
    display:flex;
    gap:15px;
    align-items:flex-start;
}

.important-fee-note i{
    color:#16324F;
    font-size:1.2rem;
    margin-top:3px;
}

.important-fee-note p{
    margin:0;
    line-height:1.7;
    color:#2d3e50;
}

/* Enquiry Form */
.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #f9fbfe;
    padding: 25px;
    border-radius: 24px;
}
.admission-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.form-group {
    display: flex;
    flex-direction: column;
}
.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #16324F;
}
.form-group input, .form-group select, .form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 12px;
    font-family: inherit;
    font-size: 0.95rem;
}
.full-width {
    grid-column: span 2;
}
.admission-form button {
    width: fit-content;
    align-self: center;
    margin-top: 10px;
    cursor: pointer;
}
.form-note {
    text-align: center;
    margin-top: 20px;
    color: #4EA5D9;
    font-size: 0.9rem;
}


/* News Page Styles */
.news-grid-full {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}
.news-card-full {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: 0.3s;
}
.news-card-full:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}
.news-image img {
    height: 200px;
    object-fit: cover;
    width: 100%;
}
.news-content-full {
    padding: 20px;
}
.news-content-full .news-date {
    display: inline-block;
    background: #f0f4f9;
    padding: 4px 12px;
    border-radius: 30px;
    font-size: 12px;
    margin-bottom: 12px;
}
.news-content-full h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #16324F;
}
.news-content-full p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
}
.btn-readmore {
    color: #4EA5D9;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}
.btn-readmore:hover {
    color: #16324F;
}
.pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}
.page-link {
    display: inline-block;
    padding: 8px 16px;
    background: #f0f4f9;
    border-radius: 8px;
    color: #16324F;
    font-weight: 500;
    transition: 0.2s;
}
.page-link:hover, .page-link.active {
    background: #4EA5D9;
    color: #fff;
}

/* News Detail Page */
.news-detail-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.news-detail-image {
    margin-bottom: 30px;
    border-radius: 24px;
    overflow: hidden;
}
.news-detail-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
}
.news-detail-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2d3e50;
}
.news-detail-content p {
    margin-bottom: 20px;
}
.news-detail-footer {
    margin-top: 40px;
    text-align: center;
}

/* Faculty */

.faculty-table-section{
    background: #fff;
}

.table-responsive{
    width: 100%;
    overflow-x: auto;
    border: 1px solid #dbe4ee;
    border-radius: 12px;
}

.faculty-table{
    width: 100%;
    min-width: 900px;
    border-collapse: collapse;
    background: #fff;
}

.faculty-table thead tr{
    background: #0d4d8b;
}

.faculty-table th,
.faculty-table td{
    border: 1px solid #dbe4ee;
    padding: 16px 18px;
    text-align: left;
    vertical-align: top;
}

.faculty-table thead th{
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
}

.faculty-table tbody td{
    color: #444;
    font-size: 15px;
    line-height: 1.6;
}

.faculty-table tbody tr:nth-child(even){
    background: #f7faff;
}

.faculty-table tbody tr:hover{
    background: #eef5ff;
}

/* Department Column */
.faculty-table tbody td:first-child{
    font-weight: 600;
    color: #0d4d8b;
    min-width: 180px;
}

/* Section Background Balancing */
.bg-white{
    background: #ffffff;
}

/* Center Section Different Background */
.faculty-table-section{
    background: linear-gradient(
        180deg,
        #f4f8fd 0%,
        #eef5ff 100%
    );
    position: relative;
}

/* Optional subtle top-bottom divider effect */
.faculty-table-section::before,
.faculty-table-section::after{
    content: "";
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(13,77,139,0.08);
}

.faculty-table-section::before{
    top: 0;
}

.faculty-table-section::after{
    bottom: 0;
}

/* ========== ACHIEVEMENTS ========== */

/* HERO */
.hero-badge{
    display:inline-block;
    background:rgba(255,255,255,0.12);
    padding:10px 20px;
    border-radius:40px;
    margin-bottom:15px;
    backdrop-filter:blur(10px);
    font-weight:600;
}

.stat-card-achievement{
    background:#fff;
    border-radius:28px;
    padding:23px 15px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.stat-card-achievement::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(78,165,217,0.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

.stat-card-achievement:hover{
    transform:translateY(-8px);
}

.stat-icon{
    width:65px;
    height:65px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(135deg,#16324F,#4EA5D9);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    margin-bottom:8px;
}

.section-title span{
    color:#4EA5D9;
    font-weight:500;
    text-transform:uppercase;
    letter-spacing:1px;
}

/* TABLE */
.achievement-table-section{
    background:#f8fbff;
}
.achievement-table-wrapper{
    overflow-x:auto;
    background:#fff;
    border-radius:30px;
    box-shadow:0 15px 40px rgba(0,0,0,0.06);
    padding:25px;
}

.achievement-table{
    width:100%;
    border-collapse:collapse;
    min-width:1300px;
}

.achievement-table thead{
    background:#16324F;
    color:#fff;
}

.achievement-table th{
    padding:18px;
    font-size:14px;
    white-space:nowrap;
}

.achievement-table td{
    padding:16px;
    text-align:center;
    border-bottom:1px solid #edf2f7;
    white-space:nowrap;
}

.achievement-table tbody tr{
    transition:0.3s;
}

.achievement-table tbody tr:hover{
    background:#f8fbff;
    transform:scale(1.01);
}

.year-cell{
    font-weight:700;
    color:#16324F;
}

.pass-badge{
    background:#22c55e;
    color:#fff;
    padding:8px 14px;
    border-radius:40px;
    font-size:13px;
    font-weight:600;
}

/* TIMELINE SECTION */
.timeline-section{
    position:relative;
}

.timeline-scroll-wrapper{
    background:#f8fbff;
    max-height:700px;
    overflow-y:auto;
    padding:20px 10px;
}

/* CUSTOM SCROLLBAR */
.timeline-scroll-wrapper::-webkit-scrollbar{
    width:8px;
}

.timeline-scroll-wrapper::-webkit-scrollbar-thumb{
    background:#4EA5D9;
    border-radius:20px;
}

/* TIMELINE */
.achievement-timeline{
    position:relative;
    max-width:1200px;
    margin:auto;
    padding:40px 0;
}

/* CENTER LINE */
.achievement-timeline::before{
    content:'';
    position:absolute;
    width:4px;
    background:linear-gradient(
        to bottom,
        #16324F,
        #4EA5D9
    );

    top:0;
    bottom:0;
    left:50%;
    transform:translateX(-50%);
    border-radius:20px;
}


/* ITEM */
.timeline-item{
    position:relative;
    width:50%;
    padding:15px 25px;
    margin-bottom:20px;
}

.timeline-item.left{
    left:0;
    text-align:right;
}

.timeline-item.right{
    left:50%;
    text-align:left;
}


/* DOT */
.timeline-dot{
    position:absolute;
    width:24px;
    height:24px;
    background:#4EA5D9;
    border:5px solid #fff;
    border-radius:50%;
    top:35px;
    z-index:5;
    box-shadow:0 0 0 6px rgba(78,165,217,0.15);
}

.timeline-item.left .timeline-dot{
    right:-12px;
}

.timeline-item.right .timeline-dot{
    left:-12px;
}


/* CONTENT CARD */
.timeline-content{
    background:#fff;
    border-radius:25px;
    padding:20px;
    box-shadow:0 15px 35px rgba(0,0,0,0.06);
    transition:0.4s;
    position:relative;
    overflow:hidden;
}

.timeline-content::before{
    content:'';
    position:absolute;
    width:120px;
    height:120px;
    background:rgba(78,165,217,0.08);
    border-radius:50%;
    top:-40px;
    right:-40px;
}

.timeline-content:hover{
    transform:translateY(-6px);
}

/* YEAR */
.timeline-year{
    display:inline-block;
    background:linear-gradient(
        135deg,
        #16324F,
        #4EA5D9
    );

    color:#fff;
    padding:10px 18px;
    border-radius:40px;
    font-size:14px;
    font-weight:700;
    /*margin-bottom:18px;*/
}


/* TITLE */
.timeline-content h3{
    font-size:22px;
    color:#16324F;
    margin-bottom:10px;
    font-weight:600;
}


/* DETAILS */
.timeline-details{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:15px;
}

.detail-box{
    background:#f8fbff;
    border-radius:18px;
    padding:10px;
}

.detail-box span{
    display:block;
    color:#666;
    font-size:13px;
    margin-bottom:5px;
}

.detail-box strong{
    color:#16324F;
    font-size:20px;
}


/* RANK */
.timeline-rank{
    margin-top:10px;
    background:#fff6db;
    color:#8a6500;
    padding:12px 16px;
    border-radius:14px;
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-weight:600;
}
/* DATATABLE CUSTOM */
.dataTables_wrapper{
    margin-top:20px;
}

.dataTables_length,
.dataTables_filter{
    margin-bottom:20px;
}

.dataTables_filter input{
    border:1px solid #ddd !important;
    border-radius:10px !important;
    padding:8px 12px !important;
}

.dataTables_length select{
    border:1px solid #ddd;
    border-radius:10px;
    padding:5px 10px;
}

.dataTables_paginate .paginate_button{
    border-radius:10px !important;
    margin:0 3px;
}

.dataTables_wrapper .dataTables_paginate .paginate_button.current{
    background:#16324F !important;
    color:#fff !important;
    border:none !important;
}

.dataTables_wrapper .dataTables_paginate .paginate_button:hover{
    background:#4EA5D9 !important;
    color:#fff !important;
    border:none !important;
}


/* ========== CONTACT PAGE STANDOUT STYLES ========== */

/* Contact Cards Grid */
.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    /*margin-top: -60px;*/
    position: relative;
    z-index: 2;
}
.contact-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 28px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: 0.3s;
    border-bottom: 4px solid #4EA5D9;
}
.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 40px rgba(0,0,0,0.15);
}
.contact-icon {
    width: 70px;
    height: 70px;
    background: #EFF6FF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.contact-icon i {
    font-size: 32px;
    color: #4EA5D9;
}
.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #16324F;
}
.contact-card p {
    color: #4a5568;
    margin-bottom: 15px;
    line-height: 1.5;
}
.card-link {
    color: #4EA5D9;
    font-weight: 600;
    display: inline-block;
    margin-top: 5px;
}
.card-link:hover {
    color: #16324F;
}

/* Form + Map Row */
.form-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    background: #fff;
    border-radius: 32px;
    overflow: hidden;
}
.form-wrapper {
    /*background: #fff;*/
    padding: 35px;
    border-radius: 32px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.form-header {
    margin-bottom: 25px;
}
.form-header h2 {
    font-size: 2rem;
    color: #16324F;
    margin-top: 5px;
}
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}
.contact-form .form-group {
    display: flex;
    flex-direction: column;
}
.contact-form label {
    font-weight: 600;
    margin-bottom: 8px;
    color: #16324F;
}
.contact-form input, .contact-form textarea, .contact-form select {
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    font-family: inherit;
    transition: 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: #4EA5D9;
    box-shadow: 0 0 0 3px rgba(78,165,217,0.1);
}
.contact-form .full-width {
    grid-column: span 2;
}
.contact-form button {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.form-status {
    margin-top: 15px;
    font-size: 0.9rem;
}

/* Map Wrapper */
.map-wrapper {
    background: #fff;
    padding: 25px;
    border-radius: 32px;
}
.map-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}
.map-header i {
    font-size: 28px;
    color: #4EA5D9;
}
.map-header h3 {
    font-size: 1.3rem;
    color: #16324F;
}
.google-map {
    height: 320px;
    border-radius: 24px;
    overflow: hidden;
}
.map-note {
    margin-top: 15px;
    font-size: 0.85rem;
    color: #5a6e7c;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* FAQ Accordion */
.faq-section {
    background: #f8fbff;
}
.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: #fff;
    margin-bottom: 16px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: 0.2s;
}
.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #16324F;
}
.faq-question i {
    color: #4EA5D9;
    transition: 0.2s;
}
.faq-answer {
    max-height: 0;
    padding: 0 25px;
    overflow: hidden;
    transition: 0.3s ease;
    background: #f9fbfe;
}
.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px 25px;
}
.faq-answer p {
    margin: 0;
    color: #4a5568;
}

/* Social Connect Section */
.social-connect {
    background: linear-gradient(120deg, #16324F 0%, #1e4a6e 100%);
    padding: 60px 0;
    text-align: center;
    color: #fff;
}
.social-content h3 {
    font-size: 1.2rem;
    margin-bottom: 12px;
}
.social-connect p {
    margin-bottom: 25px;
    opacity: 0.9;
}
.social-links-large {
    display: flex;
    justify-content: center;
    gap: 20px;
}
.social-circle {
    width: 55px;
    height: 55px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: 0.3s;
}
.social-circle:hover {
    background: #4EA5D9;
    transform: translateY(-5px);
}
.social-circle i {
    color: #fff;
}



/* TOAST MESSAGE */
.toast-message{
    position: fixed;
    top: 30px;
    right: 30px;
    min-width: 320px;
    max-width: 420px;
    padding: 16px 22px;
    border-radius: 14px;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    z-index: 99999;

    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);

    transition: all 0.35s ease;
}

/* SHOW */
.toast-message.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* SUCCESS */
.toast-message.success{
    background: linear-gradient(
        135deg,
        #16a34a,
        #22c55e
    );
}

/* ERROR */
.toast-message.error{
    background: linear-gradient(
        135deg,
        #dc2626,
        #ef4444
    );
}

 


/* RESPONSIVE */
@media (max-width: 1100px) {
    /* Responsive for Academics Page */
    .levels-grid, .assessment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .menu-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        transition: 0.3s;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .hero-left h1 {
        font-size: 2.2rem;
    }
    .hero-container {
        flex-direction: column;
        text-align: center;
    }
    .hero-buttons {
        justify-content: center;
    }
    .hero-right {
        width: 100%;
    }
    .welcome-grid, .features-grid, .facility-grid, .footer-grid, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    
/* Responsive for About Page */

    .story-grid, .principal-grid {
        grid-template-columns: 1fr;
    }
    .mission-grid, .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .story-image {
        order: -1;
    }
    .song-content{
        grid-template-columns:1fr;
    }
    
/* Responsive for Academics Page */
    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .highlights-grid {
        grid-template-columns: 1fr;
    }

/* Admission */
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .eligibility-grid, .documents-grid {
        grid-template-columns: 1fr;
    } 
/* Responsive for COntact Page */
    .contact-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        /*margin-top: -30px;*/
    }
    .form-map-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .contact-form .form-row {
        grid-template-columns: 1fr;
    }
    .contact-form .full-width {
        grid-column: span 1;
    }
    
/* RESPONSIVE ACHIEVEMENTS */
    .achievement-timeline::before{
        left:25px;
    }

    .timeline-item{
        width:100%;
        padding-left:80px;
        padding-right:20px;
        left:0 !important;
        text-align:left !important;
    }

    .timeline-dot{
        left:13px !important;
    }

    .timeline-details{
        grid-template-columns:1fr 1fr;
    }
    
}


    

@media (max-width: 768px) {
    .top-header {
        display: none;
    }
    /*.top-header {*/
    /*    padding: 8px 0;*/
    /*}*/

    /*.top-header-flex {*/
    /*    flex-direction: column;*/
    /*    justify-content: center;*/
    /*    text-align: center;*/
    /*    gap: 10px;*/
    /*}*/

    /*.top-left {*/
    /*    flex-direction: column;*/
    /*    gap: 8px;*/
    /*}*/

    /*.top-right {*/
    /*    justify-content: center;*/
    /*}*/
    
    .logo span {
        display: none;
    }
    .section-padding {
        padding: 60px 0;
    }
    .hero-left h1 {
        font-size: 1.4rem;
    }
    .hero-left p {
        font-size: 1rem;
    }
    .hero-achievement-strip{
        gap:12px;
    } 

    .achievement-item{
        width:calc(50% - 6px);
        min-width:auto;
        padding:16px;
    }

    .achievement-item h3{
        font-size:1.5rem;
    }
    .section-title h2, .welcome-content h2, .story-content h2, .principal-message h2, .curriculum-content h2, .social-content h3,.stat-card h3 {
        font-size: 1.6rem;
    }
    .inner-banner .container h1{
        font-size: 1.7rem;
        line-height:1.2;
    }
    .inner-banner .container p{
        font-size: 1rem;
        line-height:1.1;
    }
    .welcome-grid, .features-grid, .facility-grid, .footer-grid, .stats-grid {
        grid-template-columns: 1fr;
    }
    .stats-grid {
        gap: 20px;
    }
    .cta-flex {
        flex-direction: column;
        text-align: center;
    }
    
/* Responsive for About Page */    
    .inner-banner h1 {
        font-size: 2rem;
    }
    .mission-grid, .values-grid {
        grid-template-columns: 1fr;
    }
    .principal-image img {
        width: 200px;
        height: 200px;
    }
    .song-wrapper{
        padding:30px 20px;
    }
    
    
/* Responsive for Academics Page */    
    .levels-grid, .assessment-grid {
        grid-template-columns: 1fr;
    }
    .level-card h3 {
        font-size: 1.2rem;
    }
    .highlight-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    } 
    .streams-table thead th,
    .streams-table tbody td{
        padding:14px;
        font-size:0.85rem;
    }
    
/* Admission */
    .steps-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
    .form-wrapper {
        padding: 20px;
    }
    .age-table th, .age-table td, .fee-table th, .fee-table td {
        padding: 8px 10px;
        font-size: 0.85rem;
    }

/* News Page */
    .news-grid-full {
        grid-template-columns: 1fr;
    }
    .news-content-full h3 {
        font-size: 1.1rem;
    }
   
/* Faculty */
    .table-responsive{
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .faculty-table{
        min-width: 750px;
    }

    .faculty-table th,
    .faculty-table td{
        padding: 12px;
        font-size: 14px;
    }
/* RESPONSIVE ACHIEVEMENTS */
    .achievement-table-wrapper{
        padding:15px;
    }
/* Responsive for COntact Page */   
    .contact-cards-section {
        padding: 50px 0;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .contact-card {
        padding: 24px 18px;
        border-radius: 22px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 16px;
    }

    .contact-icon i {
        font-size: 26px;
    }

    .contact-card h3 {
        font-size: 1.15rem;
    }

    .contact-card p {
        font-size: 14px;
        line-height: 1.6;
        word-break: break-word;
    }

    .card-link {
        font-size: 14px;
    }


    .form-map-grid {
        border-radius: 22px;
        overflow: hidden;
    }

    .form-wrapper,
    .map-wrapper {
        padding: 18px;
        border-radius: 22px;
    }

    .contact-form input,
    .contact-form textarea {
        width: 100%;
        font-size: 15px;
    }

    .contact-form .form-row {
        gap: 15px;
    }

    .google-map {
        width: 100%;
        height: 260px;
        border-radius: 18px;
        overflow: hidden;
    }

    .google-map iframe {
        width: 100% !important;
        height: 100% !important;
        display: block;
    }

    .form-header h2 {
        font-size: 1.6rem;
        line-height: 1.2;
    }

    .map-header h3 {
        font-size: 1.1rem;
    }

    .contact-form button {
        width: 100%;
        justify-content: center;
    }
    .toast-message{
        top: 20px;
        right: 15px;
        left: 15px;
        min-width: auto;
        max-width: unset;
        font-size: 14px;
        padding: 14px 18px;
    }
    
    

}

@media(max-width:576px){
    .timeline-content{
        padding:20px 18px;
    }

    .timeline-content h3{
        font-size:20px;
    }

    .timeline-details{
        grid-template-columns:1fr;
    }

    .detail-box strong{
        font-size:18px;
    }
}

@media(max-width:480px){
    .hero-badge{
        font-size:13px;
    }
}

