.hero {
    position: relative;
    height: 85vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    background-size: cover;
    background-position: center;
    transition: background-image 1.5s ease-in-out; /* Smooth transition */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

/* Text Fade-in Animation */
.fade-up {
    animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Floating Buttons (Vertical) */
.floating-buttons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.float-btn {
    writing-mode: vertical-rl;
    padding: 25px 12px;
    color: white;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 1.5px;
}

.enquire { background: var(--primary-blue); }
.tour { background: var(--accent-red); }

.whatsapp-icon {
    background: #25D366;
    color: white;
    font-size: 1.8rem;
    padding: 12px;
    text-align: center;
    
}
/* --- GIIS STYLE SECTION --- */
.giis-section {
    padding: 80px 5%;
    background-color: #fff;
    font-family: 'Arial', sans-serif;
}

.giis-container {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr; /* Two equal columns */
    gap: 40px;
}

/* Left Side */
.giis-left .giis-title {
    color: #1a365d;
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.giis-left .giis-desc {
    color: #777;
    line-height: 1.6;
    margin-bottom: 15px;
    font-size: 0.95rem;
}

.giis-enquire-btn {
    display: inline-block;
    background: #fff8ef;
    color: #f39c12;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.85rem;
    margin-bottom: 30px;
    border: 1px solid #ffe0b3;
}

/* Image Scroller */
.giis-image-box {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 5px;
    position: relative;
}

.giis-slider {
    display: flex;
    width: 300%; /* For 3 images */
    animation: giisScroll 15s linear infinite;
}

.giis-slider img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@keyframes giisScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-66.66%); }
}

/* Right Side Cards */
.giis-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.giis-card {
    background: #fff;
    padding: 40px 25px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

/* Hover Effect: Background Blue, Text White */
.giis-card:hover {
    background-color: #1a365d;
    transform: translateY(-10px) scale(1.02);
}

.giis-card:hover h3, 
.giis-card:hover p {
    color: #fff;
}

.giis-icon-circle {
    width: 60px;
    height: 60px;
    background: #f0f7ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: 0.3s;
}

.giis-icon-circle img {
    width: 35px;
}

.giis-card h3 {
    font-size: 1.2rem;
    color: #1a365d;
    margin-bottom: 15px;
}

.giis-card p {
    font-size: 0.85rem;
    color: #888;
    line-height: 1.5;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .giis-container { grid-template-columns: 1fr; }
    .giis-right { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .giis-right { grid-template-columns: 1fr; }
}
.campus-section { padding: 60px 8%; background: #fff; }
.campus-container { display: flex; align-items: center; gap: 50px; max-width: 1200px; margin: 0 auto; }
.campus-content { flex: 1; }
.campus-content h2 { color: #1a365d; font-size: 24px; margin-bottom: 20px; font-weight: 700; }
.campus-content p { color: #666; font-size: 15px; line-height: 1.6; margin-bottom: 25px; }
.view-all { color: #f39c12; text-decoration: none; font-weight: bold; font-size: 14px; background: #fff8ef; padding: 8px 20px; border-radius: 20px; }

.campus-image { flex: 1; position: relative; }
.campus-image img { width: 100%; border-radius: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
.image-label { position: absolute; bottom: 20px; left: 20px; color: white; font-weight: bold; text-shadow: 1px 1px 5px rgba(0,0,0,0.5); }

.curricula-section { padding: 60px 8%; background: #fff; border-top: 1px solid #f0f0f0; }
.curricula-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 15px; }
.curricula-header h2 { color: #1a365d; font-size: 24px; }
.view-all-link { color: #f39c12; text-decoration: none; font-weight: bold; font-size: 13px; }
.curricula-desc { color: #777; font-size: 15px; margin-bottom: 40px; max-width: 90%; }

.curricula-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.curr-item img { height: 50px; margin-bottom: 15px; }
.curr-item h3 { color: #1a365d; font-size: 18px; margin-bottom: 10px; }
.curr-item p { color: #888; font-size: 13px; line-height: 1.5; }

.campus-section { padding: 80px 10%; background: #fff; }
.campus-container { display: flex; align-items: center; gap: 60px; }
.campus-text { flex: 1; }
.campus-text h2 { color: #1a365d; font-size: 26px; margin-bottom: 20px; font-weight: 700; }
.campus-text p { color: #666; line-height: 1.7; font-size: 15px; margin-bottom: 30px; }
.btn-view-all { background: #fff8ef; color: #f39c12; padding: 10px 25px; border-radius: 30px; text-decoration: none; font-weight: bold; border: 1px solid #ffe0b3; font-size: 13px; }

.campus-img-box { flex: 1; position: relative; }
.campus-img-box img { width: 100%; border-radius: 30px; box-shadow: 0 15px 40px rgba(0,0,0,0.1); }
.img-tag { position: absolute; bottom: 25px; left: 25px; color: #fff; font-weight: bold; font-size: 18px; }
.curricula-section { padding: 60px 10%; background: #fff; }
.curr-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 15px; }
.curr-header h2 { color: #1a365d; font-size: 24px; }
.view-link { color: #f39c12; font-weight: bold; text-decoration: none; font-size: 14px; }
.curr-intro { color: #777; margin: 20px 0 40px; font-size: 15px; max-width: 85%; }

.curr-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.curr-box img { height: 60px; margin-bottom: 20px; }
.curr-box h3 { color: #1a365d; margin-bottom: 12px; font-size: 19px; }
.curr-box p { color: #888; font-size: 14px; line-height: 1.6; }

/* --- SCREENSHOT 4 & 5 STYLES --- */
.achievements-container {
    padding: 60px 8%;
    background-color: #f9fbff;
}

.achievements-header {
    margin-bottom: 40px;
    text-align: left;
}

.achievements-header h2 {
    color: #1a365d;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}

.achievements-header p {
    color: #888;
    font-size: 14px;
    max-width: 900px;
}

.results-grid-layout {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
}

.result-box-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border: 1px solid #f0f0f0;
}

.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 20px;
}

.card-header-flex h3 {
    color: #1a365d;
    font-size: 18px;
    font-weight: 800;
}

.year-text {
    color: #ccc;
    font-size: 11px;
}

.data-row {
    margin-bottom: 18px;
}

.data-row p {
    font-size: 12px;
    color: #666;
    margin-bottom: 6px;
}

.data-row p span {
    font-weight: 800;
    color: #1a365d;
    font-size: 15px;
    display: block;
}

.progress-track {
    height: 6px;
    background-color: #f0f0f0;
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 1s ease-in-out;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .results-grid-layout {
        grid-template-columns: 1fr;
    }
}

.achievements-section { padding: 80px 0; background: #f8fafc; }
.main-title { color: #1a365d; font-size: 26px; text-align: left; margin-bottom: 10px; }
.main-desc { color: #888; font-size: 14px; margin-bottom: 50px; }

.results-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(400px, 1fr)); gap: 30px; }
.result-box { background: #fff; padding: 25px; border-radius: 12px; border: 1px solid #f0f0f0; box-shadow: 0 4px 15px rgba(0,0,0,0.03); }

.box-header { display: flex; justify-content: space-between; border-bottom: 1px solid #eee; margin-bottom: 25px; padding-bottom: 10px; }
.box-header h3 { font-size: 19px; color: #1a365d; font-weight: 800; }
.year-label { color: #bbb; font-size: 12px; }

.bar-container { margin-bottom: 22px; }
.bar-info { font-size: 13px; color: #666; margin-bottom: 8px; display: flex; flex-direction: column; }
.bar-info span { font-weight: 800; color: #1a365d; font-size: 16px; margin-bottom: 2px; }

.bar-bg { height: 6px; background: #eee; border-radius: 10px; overflow: hidden; }
.bar-fill { height: 100%; border-radius: 10px; transition: width 1.5s ease-in-out; }