/* === BRAND COLORS === */
:root {
    --brand-blue: #0A79DF;;
    --brand-dark: #1B1464;
    --brand-gold: #F2C335;
    --text-dark: #222;
}

/* === GLOBAL === */
body {
    margin: 0;
    font-family: "Poppins", sans-serif;
}

/* === HEADER === */
.header {
    background: var(--brand-blue);
    height: 150px;         /* Fixed height */
    display: flex;
    align-items: center;
}


.container {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 395px;        /* Fits inside header */
    width: 400px;
    object-fit: contain;
}


/* NAV MENU */
.navbar a,
.dropbtn,
.enquiry-btn {
    color: white;
    text-decoration: none;
    margin-left: 25px;
    font-weight: 500;
    cursor: pointer;
    background: none;
    border: none;
    font-size: 22px;
}

/* ENQUIRY BUTTON */
.enquiry-btn {
    background: var(--brand-dark);
    padding: 10px 18px;
    border-radius: 6px;
}

/* DROPDOWN */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background: white;
    min-width: 180px;
    box-shadow: 0px 4px 10px rgba(0,0,0,0.2);
    z-index: 5;
}

.dropdown-content a {
    color: #333;
    padding: 10px 14px;
    display: block;
}

.dropdown-content a:hover {
    background: #eee;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* === POPUP FORM (FIXED, CLEAN, OVERLAP-SAFE) === */
.popup {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    justify-content: center;
    align-items: center;
    z-index: 9998 !important;   /* popup stays above all */
}

.popup-content {
    background: #ffffff;
    width: 350px;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    z-index: 9999 !important;   /* content is highest layer */
    box-shadow: 0 12px 30px rgba(0,0,0,0.25);
    animation: popupFade 0.3s ease-out;
}

/* Fade animation */
@keyframes popupFade {
    from { transform: scale(0.85); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close {
    position: absolute;
    right: 12px;
    top: 8px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #444;
}

.popup-content input {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 15px;
}

.submit-btn {
    margin-top: 18px;
    padding: 12px;
    width: 100%;
    background: var(--brand-blue);
    border: none;
    color: white;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #005ad6;
    transform: scale(1.03);
}

.success-msg {
    color: #0a9f34;
    font-weight: 700;
    margin-top: 12px;
}


/* FULL PAGE WIDTH SLIDER */
.full-slider {
    width: 100%;
    height: 580px; /* Adjust height for banner */
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.full-slider .slide {
    width: 100%;
    height: 100%;
    display: none;
    position: absolute;
}

.full-slider .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Fade Animation */
.fade {
    animation: fadeEffect 1.2s ease-in-out;
}

@keyframes fadeEffect {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ABOUT OUR COURSES SECTION */
.about-courses {
    padding: 60px 5%;
    text-align: center;
}

.about-courses h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 40px;
}

.about-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

/* COURSE INFO CARDS */
.about-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 14px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
    opacity: 0;
    transform: translateY(40px);
}

/* Hover lift + Glow effect */
.about-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 15px 30px rgba(10,121,223,0.3);
}

/* Fade-Up Animation Trigger */
.about-card.show {
    opacity: 1;
    transform: translateY(0);
}

/* PROFESSIONAL COURSES SECTION */
.pro-courses {
    padding: 60px 5%;
    text-align: center;
}

.sec-title {
    font-size: 34px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 40px;
}

/* COURSE GRID */
.pro-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* COURSE CARD */
.pro-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0px 12px 25px rgba(0,0,0,0.12);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
    
    /* For animation: */
    transform-style: preserve-3d;
}

/* Zoom Image */
.pro-card img {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Card Title */
.pro-card h3 {
    margin-top: 12px;
    font-size: 20px;
    color: var(--brand-dark);
    font-weight: 600;
}

/* Card Text */
.pro-card p {
    font-size: 14px;
    color: #555;
    margin-top: 6px;
}

/* Hover Zoom + Lift */
.pro-card:hover img {
    transform: scale(1.12);
}

.pro-card:hover {
    box-shadow: 0 20px 40px rgba(0, 140, 255, 0.25);
}

/* SECTION */
.why-join {
    padding: 60px 5%;
    text-align: center;
}

.why-title {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 40px;
    color: var(--brand-blue);
}

/* GRID */
.why-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* CARD DESIGN */
.why-card {
    background: #fff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0px 12px 25px rgba(0,0,0,0.12);
    transition: all 0.35s ease-in-out;
    cursor: pointer;
    transform-style: preserve-3d;
}

/* CARD IMAGE */
.why-card img {
    width: 100%;
    height: 160px;
    border-radius: 14px;
    object-fit: cover;
    transition: 0.35s ease;
}

/* TEXT */
.why-card h3 {
    margin-top: 12px;
    font-size: 20px;
    font-weight: 600;
    color: var(--brand-dark);
}

.why-card p {
    font-size: 14px;
    margin-top: 6px;
    color: #444;
}

/* HOVER EFFECT (PRO LEVEL) */
.why-card:hover {
    transform: scale(1.12);
    box-shadow: 0px 25px 45px rgba(0, 140, 255, 0.35);
    border: 1.5px solid var(--brand-blue);
}

.why-card:hover img {
    transform: scale(1.18);
}

/* Floating toggle button */
.chat-toggle {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0056ff;
    color: #fff;
    border: none;
    padding: 16px 18px;
    border-radius: 50%;
    font-size: 26px;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(0,0,0,0.25);
    transition: 0.3s;
    z-index: 999;
}

.chat-toggle:hover {
    transform: scale(1.1);
}

/* Chatbot Box */
.chatbot-container {
    width: 330px;
    height: 450px;
    background: #fff;
    position: fixed;
    bottom: 100px;
    right: 30px;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    display: none;
    flex-direction: column;
    overflow: hidden;
    animation: openChat 0.3s ease;
    z-index: 999;
}

@keyframes openChat {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Minimize button */
.min-btn {
    background: none;
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
}

/* Chat header */
.chat-header {
    background: #0056ff;
    color: white;
    padding: 12px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Chat body */
.chat-body {
    flex: 1;
    padding: 12px;
    overflow-y: auto;
    background: #f7f7f7;
}

/* Messages */
.bot-msg, .user-msg {
    padding: 10px 14px;
    border-radius: 14px;
    margin-bottom: 10px;
    width: fit-content;
    max-width: 80%;
}

.bot-msg {
    background: #e3efff;
}

.user-msg {
    background: #d1ffd6;
    margin-left: auto;
}

/* Input field */
.chat-input-area {
    padding: 10px;
    display: flex;
    gap: 8px;
    background: #fff;
}

.chat-input-area input {
    flex: 1;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    outline: none;
}

#send-btn {
    padding: 10px 15px;
    background: #0056ff;
    color: #fff;
    border-radius: 10px;
    border: none;
    cursor: pointer;
}

/* === CHATBOT FLOATING BUTTON === */
.chatbot-button {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #0A79DF;
    color: white;
    padding: 15px 17px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

/* === CHATBOT BOX === */
.chatbot-box {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 300px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
    display: none;
    flex-direction: column;
    z-index: 999;
}

.chatbot-header {
    background: #1B1464;
    color: white;
    padding: 12px;
    border-radius: 12px 12px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header button {
    background: none;
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
}

/* Messages */
.chatbot-messages {
    height: 280px;
    overflow-y: auto;
    padding: 10px;
}

.chat-msg {
    background: #e6e6e6;
    padding: 8px 10px;
    margin: 6px 0;
    border-radius: 6px;
    width: fit-content;
    max-width: 80%;
}

.chat-reply {
    background: #0A79DF;
    color: white;
    margin-left: auto;
}

/* Input area */
.chatbot-input-area {
    display: flex;
    border-top: 1px solid #ddd;
}

.chatbot-input-area input {
    flex: 1;
    padding: 10px;
    border: none;
}

.chatbot-input-area button {
    padding: 10px 15px;
    background: #0A79DF;
    border: none;
    color: white;
    cursor: pointer;
}

/* Responsive */
@media (max-width: 480px) {
    .chatbot-box {
        width: 90%;
        right: 5%;
    }
}

/* MAIN BOX */
.success-box {
    position: relative;
    background: #1f5bff;
    padding: 60px 40px;
    margin: 40px auto;
    width: 80%;
    border-radius: 30px;
    text-align: center;
    color: white;
    overflow: hidden;
}

/* ZOOM ANIMATED Background Layer */
.success-bg {
    position: absolute;
    top: -20%;
    left: -20%;
    width: 140%;
    height: 140%;
    background: linear-gradient(135deg, #1a52ff, #1764ff, #0e40ff);
    background-size: 200% 200%;
    transition: transform 0.25s ease-out;
    z-index: 0;
}

/* Text & Buttons Above Background */
.success-box h2, 
.success-box p, 
.success-buttons {
    position: relative;
    z-index: 2;
}

/* Buttons */
.success-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.whatsapp-btn, .call-btn {
    padding: 12px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    background: white;
    color: #1f5bff;
    transition: 0.3s;
}

.whatsapp-btn { background: #25D366; color: white; }
.call-btn { background: white; color: #1f5bff; }

.whatsapp-btn:hover, .call-btn:hover {
    transform: scale(1.08);
}

.admission-section {
    text-align: center;
    padding: 40px 10px;
}

.admission-title {
    font-size: 36px;
    font-weight: 800;
    color: #222;
}

.admission-text {
    font-size: 18px;
    color: #555;
    margin: 10px auto 30px;
    max-width: 700px;
}

/* BUTTONS WRAPPER */
.admission-buttons {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 20px;
}

/* YELLOW BATCH BUTTON */
.batch-btn {
    background: #FFC700;
    padding: 14px 30px;
    border-radius: 40px;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease-out;
    box-shadow: 0 5px 12px rgba(255, 199, 0, 0.4);
}

/* GREEN EMI BUTTON */
.emi-btn {
    background: #19C463;
    padding: 14px 30px;
    border-radius: 40px;
    color: white;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease-out;
    box-shadow: 0 5px 12px rgba(25, 196, 99, 0.4);
}

/* HOVER EFFECT */
.batch-btn:hover,
.emi-btn:hover {
    transform: scale(1.08);
}

.admission-process {
    text-align: center;
    padding: 50px 10px;
}

.process-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 35px;
}

/* GRID */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 0 20px;
}

/* CARD DESIGN */
.step-card {
    background: #ffffff;
    padding: 25px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(0,0,0,0.12);
    transition: 0.25s ease;
    cursor: pointer;
    position: relative;
}

/* Number Circle */
.step-number {
    width: 45px;
    height: 45px;
    background: #1f5bff;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    margin: 0 auto 12px;
}

/* Text */
.step-card h3 {
    font-size: 20px;
    font-weight: 600;
}

.step-card p {
    font-size: 14px;
    margin-top: 8px;
    color: #555;
}

/* CLICK ANIMATION */
.step-card.clicked {
    transform: scale(1.15);
    box-shadow: 0 18px 40px rgba(0, 102, 255, 0.35);
    border: 2px solid #1f5bff;
}

/* Section Wrapper */
.timing-section {
    padding: 60px 6%;
    text-align: center;
    background: #f7faff;
}

/* Title */
.timing-title {
    font-size: 34px;
    font-weight: 800;
    color: #222;
}

/* Subtitle */
.timing-sub {
    font-size: 17px;
    color: #555;
    margin-top: 10px;
    margin-bottom: 40px;
}

/* Grid Layout */
.timing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Time Card */
.time-card {
    background: rgba(255, 255, 255, 0.85);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(7px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover Effect */
.time-card:hover {
    transform: translateY(-10px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0,0,0,0.17);
}

/* Icon Circle */
.time-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    color: white;
    margin-bottom: 18px;
}

.blue-bg { background: #3f74ff; }
.green-bg { background: #18c46b; }
.purple-bg { background: #a15cff; }

/* Card Heading */
.time-heading {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

/* Slot List Styling */
.time-slots {
    list-style: none;
    padding: 0;
    margin: 0 0 15px;
}

.time-slots li {
    background: white;
    padding: 10px 0;
    margin-bottom: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* Color Themes */
.blue-slots li { border-left: 5px solid #3f74ff; }
.green-slots li { border-left: 5px solid #18c46b; }
.purple-slots li { border-left: 5px solid #a15cff; }

/* Days */
.time-days {
    font-size: 14px;
    color: #777;
    display: block;
    margin-top: 5px;
}

.timing-footer {
    margin-top: 40px;
    font-size: 16px;
    color: #222;
}

.fast-review-section {
    width: 100%;
    padding: 40px 0;
    background: #f0f6ff;
    overflow: hidden;
    text-align: center;
}

/* Section Title */
.fast-review-title {
    font-size: 32px;
    font-weight: 800;
    color: #222;
    margin-bottom: 25px;
}

/* Wrapper */
.fast-review-marquee {
    overflow: hidden;
    width: 100%;
}

/* Moving Track */
.fast-review-track {
    display: flex;
    gap: 35px;
    animation: fastScroll 20s linear infinite;
}

/* Bigger Professional Review Box */
.fast-review {
    background: #ffffff;
    padding: 15px 25px;
    border-radius: 18px;
    font-size: 16px;
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    border-left: 5px solid #3f74ff;
    transition: 0.3s ease;
}

/* Hover to lift */
.fast-review:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.14);
}

/* Stars */
.fast-stars {
    color: #ffc400;
    font-size: 18px;
}

/* Animation — Smooth Continuous */
@keyframes fastScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.footer {
    background: #0A79DF;;
    color: #ffffff;
    padding: 60px 6% 25px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 35px;
}

.footer-box h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 15px;
}

.footer-box h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.footer-box p {
    font-size: 14px;
    color: #d0d5e8;
    line-height: 1.6;
    margin-bottom: 15px;
}

.footer-box ul {
    list-style: none;
    padding: 0;
}

.footer-box ul li {
    margin-bottom: 10px;
}

.footer-box ul li a {
    color: #bfc8e8;
    font-size: 14px;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-box ul li a:hover {
    color: #ffffff;
    padding-left: 5px;
}

/* Follow Us */
.follow-title {
    margin-top: 18px;
}

.footer-social a {
    font-size: 22px;
    margin-right: 12px;
    color: #b9c4e8;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    color: #ffffff;
    transform: scale(1.18);
}

/* WhatsApp Button */
.footer-whatsapp {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 18px;
    background: #25D366;
    color: #fff;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-whatsapp:hover {
    background: #1eb150;
    transform: scale(1.05);
}

/* Bottom Bar */
.footer-bottom {
    text-align: center;
    margin-top: 35px;
    padding-top: 15px;
    border-top: 1px solid #1a234e;
    color: #9aa4d4;
    font-size: 14px;
}

/* ======= ADVANCE MS OFFICE SECTION ======= */

.promo-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 6%;
    gap: 40px;
}

.promo-left h2 {
    font-size: 36px;
    font-weight: 800;
    color: #222;
    line-height: 1.4;
}

.promo-points {
    margin-top: 25px;
    list-style: none;
    padding: 0;
}

.promo-points li {
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.promo-points i {
    color: #0A79DF;
    font-size: 20px;
}

.promo-btn {
    margin-top: 25px;
    background: #FF7A00;
    padding: 14px 34px;
    border-radius: 10px;
    border: none;
    color: white;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.3s ease;
}

.promo-btn:hover {
    background: #ff8f2a;
    transform: scale(1.05);
}

/* RIGHT SIDE - CIRCLE UI */
.promo-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-circle {
    position: relative;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: #eef5ff;
    display: flex;
    justify-content: center;
    align-items: center;
}

.promo-img {
    width: 250px;
    border-radius: 10px;
}

/* FLOATING TAG STYLING */
.promo-tag {
    position: absolute;
    background: white;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}

/* === Floating Tag Positions === */
.tag-word {
    top: 20px;
    left: 20px;
}

.tag-excel {
    top: 35%;
    right: -15px;
}

.tag-powerpoint {
    bottom: 25px;
    left: 35px;
}

.tag-outlook {
    top: 50px;
    right: 90px;
}

.tag-automation {
    bottom: -10px;
    right: 70px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
    .promo-section {
        flex-direction: column;
        text-align: center;
    }

    .promo-circle {
        width: 300px;
        height: 300px;
    }

    .promo-img {
        width: 200px;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .promo-section {
        flex-direction: column;
        text-align: center;
    }

    .promo-circle {
        width: 300px;
        height: 300px;
    }
}

/* ===================== What Will You Learn ===================== */

.learn-section {
    padding: 70px 6%;
    text-align: center;
}

.learn-title {
    font-size: 38px;
    font-weight: 800;
    color: #222;
    margin-bottom: 40px;
}

.learn-title span {
    color: #0A79DF;
}

/* GRID */
.learn-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD */
.learn-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 12px 28px rgba(0,0,0,0.08);
    text-align: left;
    transition: 0.3s ease;
}

.learn-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.learn-card h3 {
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 15px;
}

.learn-card ul {
    list-style: none;
    padding: 0;
}

.learn-card ul li {
    font-size: 16px;
    padding: 8px 0;
    color: #333;
    font-weight: 500;
}

/* Scroll reveal */
.reveal {
    opacity: 0;
    transform: scale(0.8);
    filter: blur(6px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

.reveal.from-left { transform: translateX(-60px) scale(0.8); }
.reveal.from-right { transform: translateX(60px) scale(0.8); }
.reveal.from-bottom { transform: translateY(60px) scale(0.8); }

.reveal.active { transform: translate(0,0) scale(1); }

/* ===================== Comparison Section ===================== */

.compare-section {
    padding: 60px 6%;
    text-align: center;
}

.compare-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #222;
}

/* Table Box */
.compare-table {
    width: 100%;
    max-width: 1050px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid #e3e6ef;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Header Row */
.compare-header {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    background: #f7f8ff;
    font-weight: 700;
    padding: 18px 20px;
    font-size: 18px;
}

.compare-header .highlight {
    background: #e8ecff;
    padding: 8px 0;
    border-radius: 8px;
}

/* Rows */
.compare-row {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr;
    padding: 18px 20px;
    align-items: center;
    border-top: 1px solid #ececec;
    font-size: 16px;
}

.compare-row:nth-child(even) {
    background: #fafbff;
}

/* Check & Cross Icons */
.tick {
    color: #19c463;
    font-size: 22px;
    font-weight: 700;
}

.cross {
    color: #bfbfbf;
    font-size: 22px;
}

/* Responsive */
@media (max-width: 700px) {
    .compare-header,
    .compare-row {
        grid-template-columns: 1fr 0.5fr 0.5fr;
        font-size: 14px;
        padding: 14px;
    }

    .tick, .cross {
        font-size: 18px;
    }
}
/* Title */
.visit-title {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: #0A79DF;
    margin-bottom: 20px;
}

/* Main Rectangle Box */
.visit-container {
    width: 78%;
    margin: auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 14px; /* Make it rectangle but slightly smooth */
    border: 1px solid #dce6ff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    text-align: center;
}

/* Icon */
.visit-icon {
    font-size: 70px;
    margin-bottom: 15px;
}

/* Institute Name */
.visit-heading {
    font-size: 32px;
    font-weight: 700;
    color: #0037b3;
    margin-bottom: 15px;
}

/* Address */
.visit-address {
    font-size: 18px;
    line-height: 1.6;
    color: #333;
    margin-bottom: 25px;
}

/* Contact Info */
.visit-contact {
    font-size: 18px;
    margin-bottom: 25px;
    color: #222;
}

/* Button */
.visit-map-btn {
    display: inline-block;
    margin-top: 10px;
    background: #0A79DF;
    padding: 15px 40px;
    border-radius: 50px;
    color: white;
    font-size: 20px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    transition: 0.3s ease;
}

.visit-map-btn:hover {
    transform: scale(1.05);
}
