
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family: Arial, sans-serif;
}

.hero{
    background:url('images/school.jpg') no-repeat center center/cover;
    height:100vh;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    padding:40px;
}

.form-card{
    background:#f8f8f8;
    padding:30px;
    width:400px;
    border-radius:20px;
    border:3px solid #b59b3b;
    box-shadow:0 10px 25px rgba(0,0,0,0.2);
}

.form-card h2{
    text-align:center;
    color:#9c842b;
    margin-bottom:20px;
}

.row{
    display:flex;
    gap:15px;
    margin-bottom:15px;
}

input, select{
    flex:1;
    padding:12px;
    border-radius:30px;
    border:2px solid #b59b3b;
    outline:none;
    font-size:10px;
}

.btn{
    width:100%;
    padding:14px;
    border:none;
    border-radius:30px;
    background:#b59b3b;
    color:white;
    font-size:16px;
    cursor:pointer;
    transition:0.3s;
}

.btn:hover{
    background:#9c842b;
}

.bottom-bar{
    background:#eee;
    padding:20px;
    text-align:center;
    font-size:18px;
    border-radius:20px 20px 0 0;
}

/* Responsive */

@media(max-width:768px){

    .hero{
        justify-content:center;
        padding:20px;
    }

    .form-card{
        width:100%;
        max-width:400px;
    }

    .row{
        flex-direction:column;
    }

    .bottom-bar{
        font-size:14px;
        padding:15px;
    }
}


/* ===== Milestones Section ===== */

.milestones {
    padding: 80px 100px;
    background: #ffffff;
    text-align: center;
}

.section-title {
    font-size: 32px;
    margin-bottom: 60px;
}

.timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.milestone {
    flex: 1;
    min-width: 220px;
}

.year {
    background: #1f3c88;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    display: inline-block;
    font-weight: bold;
    margin-bottom: 15px;
    border: 3px solid #b59b3b;
}

.milestone p {
    font-size: 15px;
    color: #333;
}

/* ===== Admission Info Section ===== */

.admission-info {
    padding: 80px 100px;
    text-align: center;
}

.admission-title {
    font-size: 34px;
    color: #9c842b;
    margin-bottom: 40px;
}

.info-box {
    max-width: 800px;
    margin: auto;
    border: 3px solid #b59b3b;
    border-radius: 25px;
    overflow: hidden;
}

.info-box div {
    padding: 18px;
    border-bottom: 2px solid #b59b3b;
    font-size: 18px;
    font-weight: 500;
}

.info-box div:last-child {
    border-bottom: none;
}

/* ===== Responsive ===== */

@media(max-width:768px) {

    .timeline {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 24px;
    }

    .admission-title {
        font-size: 24px;
    }

    .info-box div {
        font-size: 14px;
        padding: 14px;
    }
}

/* ===== Timeline Arrow ===== */

.timeline-arrow {
    position: relative;
    width: 100%;
    height: 4px;
    background: #b59b3b;
    margin: 30px 0 60px 0;
}

/* Arrow head */
.timeline-arrow::after {
    content: "";
    position: absolute;
    right: 0;
    top: -8px;
    border-left: 18px solid #b59b3b;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}



/* ===== Admission Process ===== */

.process-section {
    padding: 100px 100px;
    background: #ffffff;
    position: relative;
}

.process-title {
    text-align: center;
    font-size: 32px;
    color: #9c842b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.process-title span {
    flex: 1;
    height: 3px;
    background: #b59b3b;
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr 120px 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
}

.process-box {
    text-align: center;
}

.step-badge {
    display: inline-block;
    background: #1f3c88;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    border: 3px solid #b59b3b;
    margin-bottom: 20px;
    font-weight: bold;
}

.process-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

/* ===== Arrows ===== */

.arrow {
    width: 100%;
    height: 4px;
    background: #b59b3b;
    position: relative;
}

.arrow-right::after {
    content: "";
    position: absolute;
    right: 0;
    top: -8px;
    border-left: 18px solid #b59b3b;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.arrow-left::after {
    content: "";
    position: absolute;
    left: 0;
    top: -8px;
    border-right: 18px solid #b59b3b;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
}

.arrow-down {
    grid-column: 3;
    width: 4px;
    height: 100px;
    margin: auto;
}

.arrow-down::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: -8px;
    border-top: 18px solid #b59b3b;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

/* ===== Responsive ===== */

@media(max-width:768px){

    .process-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .arrow {
        display: none;
    }

    .process-title {
        font-size: 24px;
    }
}   



/* ===== Why Parents Trust Section ===== */

.trust-section {
    padding: 100px 100px;
    background: #ffffff;
    text-align: center;
}

.trust-title {
    font-size: 36px;
    color: #9c842b;
    margin-bottom: 10px;
}

.trust-line {
    width: 200px;
    height: 3px;
    background: #b59b3b;
    margin: 15px auto 40px auto;
}

.trust-description {
    max-width: 850px;
    margin: 0 auto 60px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #444;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.trust-card {
    background: #1f3c88;
    color: white;
    padding: 30px;
    border-radius: 25px;
    border: 3px solid #b59b3b;
    font-size: 16px;
    line-height: 1.7;
    transition: 0.3s ease;
}

.trust-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* ===== Responsive ===== */

@media(max-width:768px){

    .trust-grid {
        grid-template-columns: 1fr;
    }

    .trust-title {
        font-size: 26px;
    }

    .trust-description {
        font-size: 15px;
    }

    .trust-card {
        font-size: 14px;
        padding: 20px;
    }
}


/* ===== Facilities Section ===== */

.facilities-section {
    padding: 100px 100px;
    background: #ffffff;
    text-align: center;
}

.facilities-title {
    font-size: 34px;
    color: #9c842b;
    margin-bottom: 70px;
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px 40px;
}

.facility-item {
    text-align: center;
}

.facility-icon {
    font-size: 45px;
    color: #1f3c88;
    margin-bottom: 15px;
}

.facility-item p {
    font-size: 16px;
    font-weight: 500;
    color: #222;
}

/* Hover Effect */
.facility-item:hover .facility-icon {
    transform: scale(1.2);
    transition: 0.3s ease;
}


.facility-icon {
    font-size: 42px;
    color: #1f3c88;   /* Solid Blue */
    margin-bottom: 15px;
    transition: 0.3s ease;
}

.facility-item:hover .facility-icon {
    color: #9c842b;   /* Gold on hover */
    transform: scale(1.15);
}   

/* Responsive */

@media(max-width:992px){
    .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media(max-width:600px){
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .facilities-title {
        font-size: 24px;
    }
}


/* ===== Testimonials Section ===== */

.testimonial-section {
    padding: 100px 100px;
    background: #ffffff;
    text-align: center;
}

.testimonial-title {
    font-size: 32px;
    color: #9c842b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 70px;
}

.testimonial-title span {
    flex: 1;
    height: 3px;
    background: #1f3c88;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #1f3c88;
    color: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 3px solid #b59b3b;
    position: relative;
    transition: 0.3s ease;
}

.testimonial-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 50px;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

/* Author Badge */

.testimonial-author {
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    background: #b59b3b;
    color: #fff;
    padding: 8px 25px 8px 10px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.testimonial-author img {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author span {
    font-weight: bold;
    font-size: 14px;
}

/* Responsive */

@media(max-width:992px){
    .testimonial-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px){
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-title {
        font-size: 24px;
    }
}


/* ===== Leadership Section ===== */

.leadership-section {
    padding: 100px 100px;
    background: #ffffff;
    text-align: center;
}

.leadership-title {
    font-size: 32px;
    color: #9c842b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
}

.leadership-title span {
    flex: 1;
    height: 3px;
    background: #1f3c88;
}

.leadership-box {
    max-width: 1100px;
    margin: auto;
    background: #1f3c88;
    color: #fff;
    border-radius: 35px;
    border: 4px solid #b59b3b;
    padding: 50px;
    display: flex;
    align-items: center;
    gap: 40px;
}

.leadership-image img {
    width: 380px;
    border-radius: 25px;
    object-fit: cover;
}

.leadership-content {
    text-align: left;
}

.leadership-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 25px;
}

.leadership-content h4 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.leadership-content span {
    font-size: 14px;
    opacity: 0.9;
}

/* ===== Responsive ===== */

@media(max-width:992px){

    .leadership-box {
        flex-direction: column;
        text-align: center;
    }

    .leadership-content {
        text-align: center;
    }

    .leadership-image img {
        width: 100%;
        max-width: 400px;
    }
}

@media(max-width:600px){

    .leadership-title {
        font-size: 24px;
    }

    .leadership-box {
        padding: 30px;
    }

    .leadership-content p {
        font-size: 14px;
    }
}


/* ===== Contact Section ===== */

.contact-section {
    padding: 100px 100px;
    background: #ffffff;
    text-align: center;
}

.contact-title {
    font-size: 32px;
    color: #9c842b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.contact-title span {
    flex: 1;
    height: 3px;
    background: #b59b3b;
}

.contact-info {
    max-width: 1100px;
    margin: auto;
    background: #1f3c88;
    color: #fff;
    border-radius: 40px;
    border: 4px solid #b59b3b;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    overflow: hidden;
}

.contact-item {
    padding: 30px;
    font-size: 16px;
    border-right: 2px solid rgba(255,255,255,0.3);
}

.contact-item:last-child {
    border-right: none;
}

/* Map */

.map-container {
    max-width: 1100px;
    margin: 50px auto 0 auto;
    border-radius: 30px;
    overflow: hidden;
    border: 4px solid #b59b3b;
}

/* Responsive */

@media(max-width:992px){

    .contact-info {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .contact-item {
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.3);
    }

    .contact-item:last-child {
        border-bottom: none;
    }
}

@media(max-width:600px){

    .contact-title {
        font-size: 24px;
    }

    .contact-item {
        font-size: 14px;
        padding: 20px;
    }
}


/* ===== CTA Section ===== */

.cta-section {
    background: #1f3c88;
    padding: 40px 20px;
}

.cta-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cta-container h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 500;
}

.cta-btn {
    background: #b59b3b;
    color: #fff;
    padding: 10px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
    border: 2px solid #fff;
}

.cta-btn:hover {
    background: #9c842b;
    transform: translateY(-3px);
}

/* Responsive */

@media(max-width:768px){

    .cta-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-container h3 {
        font-size: 16px;
    }
}