:root {
    --overlay-dark: rgba(8, 10, 12, 0.55);
    --accent: yellow;
    --prime-color-1: yellow;
    --prime-color-2: #148eb0;
    --prime-color-3: red;
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: white;
}

.bg-layer {
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    transition: opacity 700ms ease;
    opacity: 0;
    transform: scale(1.05);
    z-index: 1;
}

.bg-layer.visible {
    opacity: 1;
    transform: scale(1);
}

.bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--prime-color-2), rgba(0, 0, 0, 0));
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 60px 18px;
}

.hero-left {
    max-width: 640px;
}

.eyebrow {
    letter-spacing: 4px;
    font-weight: 600;
    opacity: .9;
    font-size: 0.9rem;
    margin-bottom: 6px;
}

.title {
    font-size: clamp(34px, 6vw, 56px);
    font-weight: 900;
    line-height: 1;
    margin: 0;
}

.subtitle {
    color: var(--accent);
    font-size: clamp(22px, 3vw, 28px);
    font-weight: 800;
    margin-top: 8px;
}

.desc {
    max-width: 58ch;
    margin-top: 18px;
    color: rgba(255, 255, 255, 0.92);
}

.btns {
    margin-top: 22px;
}

.btn-cta {
    border-radius: 999px;
    padding: 10px 20px;
    font-weight: 700;
    margin-right: 10px;
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, 0.18);
    background: transparent;
    color: #fff;
}

/* Thumbnails */
.thumbs {
    position: absolute;
    right: 40px;
    bottom: 48px;
    z-index: 20;
    display: flex;
    gap: 14px;
    align-items: end;
    user-select: none;
    max-width: 90%;
    overflow-x: auto;
    padding-bottom: 10px;
}

@media (max-width: 992px) {
    .thumbs {
        position: relative;
        right: initial;
        bottom: initial;
        margin-top: 40px;
        justify-content: center;
        width: 100%;
        padding-bottom: 0;
    }
}

.thumb {
    min-width: 100px;
    width: 100px;
    height: 140px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
    transition: transform .28s cubic-bezier(.2, .9, .2, 1), box-shadow .2s;
    border: 3px solid rgba(255, 255, 255, 0.02);
    background: #111;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: relative;
}

.thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumb.active {
    transform: translateY(-12px) scale(1.04);
    border-color: rgba(255, 255, 255, 0.18);
}

@media (max-width: 992px) {
    .thumb.active {
        transform: scale(1.04);
    }
}

.thumb-caption {
    position: absolute;
    bottom: -18px;
    width: 100%;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.text-fade {
    opacity: 0;
    transform: translateY(10px);
    transition: all .5s ease;
}

.text-fade.show {
    opacity: 1;
    transform: translateY(0);
}

.slider-controls {
    position: absolute;
    bottom: 48px;
    left: 48px;
    z-index: 20;
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .slider-controls {
        left: 18px;
        bottom: 18px;
    }
}

.arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    cursor: pointer;
    margin-right: 10px;
    transition: background 0.2s;
}

.arrow:hover {
    background: rgba(255, 255, 255, 0.2);
}

.progress-bar-container {
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.2);
    margin-left: 10px;
    overflow: hidden;
    display: none;
}

.progress-bar {
    height: 100%;
    width: 0;
    background: var(--accent);
    transition: none;
}

.progress-bar.animate {
    animation: progress-slide 2s linear forwards;
}

@keyframes progress-slide {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

.navbar {
    z-index: 100;
    background: var(--prime-color-2) !important;
}

.navbar-brand {
    color: white;
    padding: 10px 0;
}

.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    color: var(--prime-color-2);
    background: var(--prime-color-1);
    border-radius: 5px;
}

.nav-link {
    color: white;
}

.nav-link:hover {
    background: var(--prime-color-1);
    color: var(--prime-color-2);
    border-radius: 5px;
}

.btn-light {
    background: var(--accent);
}

.btn-light:hover {
    background: var(--prime-color-3);
    color: white;
}

.btn-outline-white {
    border: 1px solid white;
}

.btn-outline-white:hover {
    background-color: white;
    color: var(--prime-color-3);
}

#about {
    padding: 50px 0;
}

#about h2 {
    color: var(--prime-color-2);
}

.feature-card {
    border-radius: 15px;
    padding: 30px 20px;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    border-top: 5px solid transparent;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: var(--prime-color-2);
    /* Blue circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    color: white;
    font-size: 20px;
}

.feature-title {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--prime-color-2);
    margin-bottom: 10px;
}

.border-gold {
    border-top-color: var(--prime-color-1);
}

.border-red {
    border-top-color: var(--prime-color-3);
}

#about .choose {
    background: #f9fafb;
}

.hero-card {
    position: relative;
    height: 260px;
    border-radius: 15px;
    overflow: hidden;
    /* IMPORTANT for hiding zoom overflow */
    cursor: pointer;
}

.hero-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-card:hover img {
    transform: scale(1.1);
    /* Zoom-in on hover */
}

.overlay-content {
    position: absolute;
    bottom: 0;
    width: 100%;
    padding: 25px;
    color: white;
    z-index: 2;
}

/* Blue gradient */
.blue-overlay::before,
.red-overlay::before,
.blue2-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 15px;
}

.blue-overlay::before {
    background: linear-gradient(to bottom, transparent, rgba(0, 41, 135, 0.85));
}

.red-overlay::before {
    background: linear-gradient(to bottom, transparent, rgba(200, 0, 0, 0.85));
}

.blue2-overlay::before {
    background: linear-gradient(to bottom, transparent, rgba(0, 45, 135, 0.85));
}

.hero-btn {
    background: #F2C200;
    border: none;
    color: #333;
    font-weight: 600;
    border-radius: 25px;
    padding: 8px 25px;
    margin-top: 10px;
}

.hero-btn:hover {
    background: var(--prime-color-1);
    color: #222;
}

.content2 {
    background: var(--prime-color-2);
}

.content2 h3 {
    color: var(--prime-color-1);
    font-weight: bold;
    font-size: 20px;
}

.content2 p {
    font-size: 20px;
}

.content2 a {
    background: var(--prime-color-1);
    color: var(--prime-color-2);
}

.content2 a:hover {
    background: var(--prime-color-3);
    color: var(--prime-color-1);
}

.footer {
    background: var(--prime-color-2);
    /* Deep Blue */
    color: white;
    padding: 60px 0 20px;
}

.footer h5 {
    color: var(--prime-color-1);
    /* Yellow Title */
    font-weight: 600;
    margin-bottom: 20px;
}

.footer a {
    color: white;
    text-decoration: none;
    line-height: 30px;
}

.footer a:hover {
    color: var(--prime-color-1);
}

.icon-text {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--prime-color-1);
    /* Yellow Circle */
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 10px;
    color: #153EB5;
    font-size: 20px;
    transition: .3s ease;
}

.social-icons a:hover {
    transform: scale(1.1);
    background: var(--prime-color-3);
}

.footer .copyright {
    text-align: center;
    margin-top: 40px;
    color: #ddd;
    font-size: 15px;
}

.footer .icon-text i {
    color: var(--prime-color-1) !important;
}

.about {
    padding: 150px 0;
    background: linear-gradient(90deg, rgb(21, 63, 191), royalblue);
}

.about h3 {
    color: var(--prime-color-1);
    font-weight: bold;
}

.about-content img {
    border-radius: 15px;
}

.mission {
    background: #f9fafb;
}

.mv-card {
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    background: white;
    border-left-width: 6px !important;
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: var(--prime-color-2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.mv-title {
    font-size: 1.4rem;
    font-weight: 600;
}

.border-warning {
    border-color: var(--prime-color-1) !important;
}

.border-danger {
    border-color: var(--prime-color-3) !important;
}

.principal-section {
    padding: 80px 0;
    font-size: 1.1rem;
}

.principal-title {
    color: var(--prime-color-2);
    /* Yellow */
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.principal-img {
    width: 330px;
    height: 330px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid var(--prime-color-2);
    /* Yellow Border */
}

.principal-text p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.principal-sign {
    margin-top: 20px;
    color: var(--prime-color-2);
    font-weight: 600;
    font-size: 1.1rem;
}

.chairperson-section {
    background: var(--prime-color-2);
    /* Deep Royal Blue */
    padding: 80px 0;
    color: #fff;
    font-size: 1.1rem;
}

.chairperson-title {
    color: #ffcc33;
    /* Yellow */
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.chairperson-img {
    width: 330px;
    height: 330px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ffcc33;
    /* Yellow Border */
}

.chairperson-text p {
    margin-bottom: 1.3rem;
    line-height: 1.7;
}

.chairperson-sign {
    margin-top: 20px;
    color: #ffcc33;
    font-weight: 600;
    font-size: 1.1rem;
}

.founder-card {
    background: #fff;
    border-radius: 12px;
    padding: 50px 20px;
    text-align: center;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.founder-card:hover {
    transform: translateY(-5px);
}

.founder-img {
    width: 180px;
    height: 180px;
    object-fit: cover;
    border-radius: 50%;
}

.founder-name {
    font-size: 1.6rem;
    font-weight: 600;
    margin-top: 25px;
    margin-bottom: 5px;
}

.founder-title {
    color: #777;
    font-size: 1rem;
}

/* Timeline Wrapper Centering */
.timeline-wrapper {
    max-width: 600px;
    margin: 0 auto;
    /* centers the whole timeline */
}

/* Timeline Item Layout */
.timeline-item {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: 40px;
}

/* Red Round Icon */
.timeline-icon {
    width: 55px;
    height: 55px;
    background: #d62828;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 24px;
    line-height: 0;
    /* prevents stretching */
    flex-shrink: 0;
    /* stops flex from squishing it */
}

/* Yellow Vertical Line */
.timeline-line {
    width: 4px;
    background: #f2c300;
    height: 50px;
    position: absolute;
    left: 23px;
    top: 55px;
}

/* Content Margin */
.timeline-content {
    margin-left: 25px;
}

/* Year Style */
.timeline-year {
    font-size: 18px;
    font-weight: 600;
    color: #d62828;
}

/* Description Text */
.timeline-text {
    margin-top: -5px;
    color: #333;
    line-height: 1.6;
}

.custom-tabs {
    display: flex;
    justify-content: center;
    border-bottom: none !important;
    margin-bottom: 25px;
}

.custom-tabs .nav-link {
    background: #f1f1f7;
    border-radius: 50px;
    margin: 0 10px;
    padding: 10px 40px;
    font-size: 16px;
    color: var(--prime-color-2);
    font-weight: 500;
    transition: 0.3s;
}

.custom-tabs .nav-link.active {
    background: var(--prime-color-2) !important;
    color: #fff !important;
    border-radius: 50px;
}

.tab-content-box {
    max-width: 900px;
    margin: auto;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #e5e5e5;
    background: #fff;
}

.tab-content-box h5 {
    color: var(--prime-color-2);
    font-weight: 600;
    margin-bottom: 20px;
}

.tab-content-box .title {
    font-size: 20px;
    color: #d69e2e;
    font-weight: 600;
    margin-top: 15px;
    color: var(--prime-color-3);
}

.subject-card {
    background: #fff;
    border-radius: 18px;
    padding: 40px 20px;
    text-align: center;
    border: 1px solid #e5e5e5;
    transition: 0.3s;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subject-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.subject-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    font-size: 35px;
    color: white;
    margin-bottom: 15px;
}

.icon-yellow1 {
    background: var(--prime-color-2);
}

.icon-red1 {
    background: var(--prime-color-3);
}

.subject-title {
    font-size: 17px;
    font-weight: 500;
    color: var(--prime-color-2);
    margin-top: 10px;
}

.calendar-section {
    background-color: var(--prime-color-2);
    padding: 60px 0;
}

.calendar-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    min-height: 330px;
}

.calendar-card h5 {
    color: var(--prime-color-2);
    font-weight: 600;
    margin-bottom: 25px;
}

.calendar-item {
    padding: 12px 0;
    border-bottom: 1px solid #e7e7e7;
    display: flex;
    justify-content: space-between;
    font-size: 16px;
}

.calendar-item:last-child {
    border-bottom: none;
}

.date-yellow {
    color: var(--prime-color-2);
    font-weight: 500;
}

.date-red {
    color: var(--prime-color-3);
    font-weight: 500;
}

.excellence-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-box {
    width: 70px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    color: var(--prime-color-2);
}

.yellow-box {
    background: var(--prime-color-1);
}

.red-box {
    background: var(--prime-color-3);
    color: white;
}

.stat-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.stat-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--prime-color-2);
}

.testimonial-card {
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    background: #fff;
    padding: 50px;
}

.student-img {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.testimonial-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--prime-color-2);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-top: 10px;
}

.carousel-indicators [data-bs-target] {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #666;
}

.carousel-indicators .active {
    background-color: #000;
}

.process-card {
    border: 1px solid #e4e4e4;
    border-radius: 15px;
    padding: 25px;
    background: #ffffff;
    transition: 0.3s ease;
    height: 100%;
}

.process-number {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: var(--prime-color-2);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 20px;
    margin-bottom: 15px;
}

.process-card h5 {
    color: var(--prime-color-2);
    font-weight: 600;
    margin-bottom: 10px;
}

.process-card p {
    color: #444;
    font-size: 15px;
    margin: 0;
}

/* Hover Effect */
.process-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.doc {
    background: #f9fafb;
}

.docs-box {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    border: 1px solid #e6e6e6;
    max-width: 900px;
    margin: auto;
}

.doc-item {
    display: flex;
    align-items: start;
    gap: 10px;
    margin-bottom: 18px;
    font-size: 16px;
    color: #333;
}

.doc-icon {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid #f2b400;
    color: #f2b400;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

h3.section-title {
    color: #1f3bb3;
    font-weight: 600;
    text-align: center;
    margin-bottom: 30px;
}

.fee-card {
    background: #fff;
    border-radius: 12px;
    padding: 40px 30px;
    border: 1px solid #e5e5e5;
    box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.03);
    text-align: center;
    transition: 0.3s;
}

.fee-card:hover {
    transform: translateY(-5px);
}

.fee-top-yellow {
    border-top: 4px solid var(--prime-color-1);
}

.fee-top-red {
    border-top: 4px solid var(--prime-color-3);
}

.fee-price {
    font-size: 38px;
    font-weight: 700;
    color: var(--prime-color-3);
    margin: 10px 0;
}

.fee-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 16px;
    color: #333;
}

.icon-yellow,
.icon-red {
    width: 20px !important;
    height: 20px !important;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.icon-yellow {
    color: var(--prime-color-1);
}

.icon-red {
    color: var(--prime-color-1);
}

h4 {
    color: #1d3bb8;
    font-weight: 600;
}

.download {
    background: var(--prime-color-2);
}

.download-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.icon-box {
    background: var(--prime-color-3);
    color: white;
    padding: 15px 18px;
    border-radius: 10px;
    font-size: 25px;
}

.download-btn {
    background: var(--prime-color-3);
    border: none;
}

.download-btn:hover {
    background: var(--prime-color-3);
}

.apply-btn {
    background-color: var(--prime-color-1);
    color: #000;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    border: none;
}

.apply-btn:hover {
    background-color: var(--prime-color-3);
    color: white;
}

.tour-btn {
    border: 2px solid #1447c5;
    color: #1447c5;
    padding: 10px 25px;
    border-radius: 8px;
    font-weight: 500;
    background: none;
}

.tour-btn:hover {
    background-color: var(--prime-color-2);
    color: #fff;
}

/* Left update cards */
.update-card {
    background: #fff;
    padding: 22px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
}

/* Colors */
.icon-yellow {
    background: var(--prime-color-1);
}

.icon-red {
    background: var(--prime-color-3);
}

.icon-blue {
    background: var(--prime-color-2);
}

/* Right Upcoming Events Box */
.events-box {
    background: var(--prime-color-2);
    border-radius: 12px;
    padding: 25px;
    color: #fff;
}

.event-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.event-item:last-child {
    border-bottom: none;
}

.event-date {
    background: #fcd34d;
    width: 65px;
    padding: 10px;
    border-radius: 12px;
    text-align: center;
    font-weight: 600;
    color: #000;
}

.event-date small {
    display: block;
    margin-top: -4px;
}

/* Quick Links panel */
.quick-box {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
}

/* Subscribe panel */
.subscribe-box {
    background: #d62828;
    padding: 25px;
    border-radius: 12px;
    color: #fff;
}

.subscribe-btn {
    background: #fcd34d;
    border: none;
    padding: 10px 22px;
    border-radius: 12px;
    font-weight: 600;
}

.news-ticker {
    background: var(--prime-color-3);
    color: #fff;
    padding: 10px 0;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

/* FIXED LABEL */
.news-label {
    color: var(--prime-color-1);
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    background: var(--prime-color-3);
    z-index: 100;
    padding-right: 10px;
}

/* MOVING TEXT */
.ticker-move {
    white-space: nowrap;
    display: inline-block;
    animation: scroll-left 18s linear infinite;
    font-size: 16px;
}

@keyframes scroll-left {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

.custom-tab .nav-link {
    border-radius: 20px;
    padding: 8px 30px;
    font-weight: 500;
    color: #555;
}

.custom-tab .nav-link.active {
    background-color: var(--prime-color-2);
    color: white !important;
}

.facility-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

/* IMAGE HOVER OVERLAY */
.image-box {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 15px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(30px);
    transition: 0.4s ease;
    background: linear-gradient(to top, rgba(4, 97, 143, 0.7), transparent);
}

.image-box:hover .image-overlay {
    opacity: 1;
    transform: translateY(0);
}

.facility-section {
    padding: 60px 0;
}

.facility-img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffd33b;
    margin-bottom: 15px;
}

.icon-red {
    background: #ff4b4b;
}

.feature-box {
    padding: 15px;
    border: 2px solid #f2f2f2;
    border-radius: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

/* Background Section */
.safety-section {
    background: var(--prime-color-2);
}

/* Yellow Small Heading */
.section-subtitle {
    color: var(--prime-color-1);
    font-size: 1.1rem;
}

/* Large White Title */
.section-title {
    color: white !important;
    line-height: 1.5;
}

/* Transparent Blue Boxes */
.safety-box {
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(4px);
    border-radius: 18px;
}

/* Yellow Checkmark */
.tick {
    color: var(--prime-color-1);
    font-weight: bold;
    margin-right: 8px;
}

.campus-title {
    color: var(--prime-color-2);
    font-weight: 600;
}

.campus-text {
    max-width: 750px;
    margin: 0 auto;
    color: #333;
    font-size: 1.1rem;
}

/* Yellow Filled Button */
.schedule-btn {
    background-color: var(--prime-color-1);
    color: var(--prime-color-2);
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s;
}

.schedule-btn:hover {
    background-color: var(--prime-color-3);
    color: white;
}

/* Outline Button */
.virtual-btn {
    border: 2px solid var(--prime-color-2);
    color: var(--prime-color-2);
    font-weight: 600;
    border-radius: 12px;
    transition: 0.3s;
}

.virtual-btn:hover {
    background-color: var(--prime-color-2);
    color: white;
}

.icon-box {
    background: var(--prime-color-2);
    color: white;
    padding: 12px 15px;
    border-radius: 12px;
    font-size: 20px;
}

.info-card {
    background: #fff;
    border-radius: 12px;
    border-width: 4px !important;
}

.contact-form-box {
    background: #fff;
    border-radius: 12px;
}

.contact-form-box .form-control {
    background: #f6f7fb;
    border-radius: 10px;
    padding: 10px 14px;
}

.contact-submit-btn {
    background: var(--prime-color-1);
    color: var(--prime-color-2);
    font-weight: 600;
    border-radius: 10px;
    transition: 0.3s;
}

.contact-submit-btn:hover {
    background: var(--prime-color-2);
    color: white;
}

.visit-section {
    background-color: var(--prime-color-2);
    /* Blue background */
    padding: 100px 20px;
    color: white;
}

.visit-subtitle {
    font-size: 20px;
    font-weight: 500;
    color: var(--prime-color-1);
    /* Yellowish title */
    margin-bottom: 25px;
}

.visit-text {
    font-size: 24px;
    max-width: 900px;
    margin: 0 auto 40px auto;
    line-height: 1.5;
}

.visit-btn {
    padding: 12px 40px;
    font-size: 18px;
    border-radius: 8px;
    font-weight: 500;
    background: var(--prime-color-1);
}

.visit-btn:hover {
    background: white;
    color: var(--prime-color-2);
}