/* === Rolling Countdown (Edubin-style circles) === */

html {
    scroll-behavior: smooth;
}
#enquiry-form {
    scroll-margin-top: 350px; /* adjust based on header height */
}
.arth-rolling-timer {
    display: flex;
    gap: 25px;
    margin-top: 20px;
    justify-content: center;   /* ✅ CENTER ALIGN */

}

.arth-rolling-timer .single-countdown {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: #ffffff;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    position: relative;
}

.arth-rolling-timer .count {
    font-size: 34px;
    font-weight: 700;
    color: #A9CE38;
    line-height: 1;
}

.arth-rolling-timer .value {
    font-size: 13px;
    text-transform: uppercase;
    color: #333;
    margin-top: 5px;
}

/* Optional glow / urgency */
.arth-rolling-timer .single-countdown::after {
    content: "";
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed rgba(169,206,56,0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0.6;
    }
}


/* Sticky Footer CTA */
/* Sticky Footer CTA */
#stickyFooterCTA {
    position: fixed;
    bottom: -80px; /* hidden initially */
    left: 0;
    width: 100%;
    background: linear-gradient(90deg, #1c1c1c, #2a2a2a);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    z-index: 9999;
    transition: bottom 0.4s ease;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.25);
}

/* Show on scroll */
#stickyFooterCTA.show {
    bottom: 0;
}

#stickyFooterCTA a {
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
}

/* Phone */
.cta-phone {
    color: #A9CE38;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Separator line */
.cta-separator {
    width: 1px;
    height: 28px;
    background: rgba(255,255,255,0.35);
    margin: 0 12px;
}

/* Enquiry button */
.cta-enquiry {
    background: #A9CE38;
    color: #1b1b1b;
    padding: 10px 18px;
    border-radius: 30px;
    font-weight: 700;
}

/* Mobile optimization */
@media (max-width: 768px) {
    #stickyFooterCTA {
        padding: 9px 12px;
    }
    .cta-enquiry {
        padding: 8px 14px;
        font-size: 14px;
    }
}

/* 🚫 HIDE ON DESKTOP (FIXED) */
@media (min-width: 992px) {
    #stickyFooterCTA {
        display: none !important;
    }
}




/* whatsapp float*/
.sticky-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #A9CE38; /* dark neutral works best with #A9CE38 */
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    z-index: 999;
}

/* Separator */
.footer-separator {
    width: 1px;
    height: 35px;
    background: rgba(255, 255, 255, 0.3);
}

/* WhatsApp Button */
.footer-whatsapp {
    position: absolute;
    top: -28px; /* THIS puts it above the separator */
    left: 50%;
    transform: translateX(-50%);
    width: 56px;
    height: 56px;
    background: #25D366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    animation: whatsapp-pulse 1.8s infinite;

}

/* Hover */
.footer-whatsapp:hover {
    transform: translateX(-50%) scale(1.08);
}



@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
        transform: translateX(-50%) scale(1);
    }
    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
        transform: translateX(-50%) scale(1.05);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
        transform: translateX(-50%) scale(1);
    }
}

@media (min-width: 992px) {
    .whatsapp-float {
        display: none;
    }
}

/* Hide footer CTA on desktop */
@media (min-width: 992px) {
    .stickyFooterCTA {
        display: none !important;
    }
}


#placementAnnouncement {
    position: fixed;
    bottom: 80px; /* above footer CTA */
    left: 20px;
    background: rgba(0,0,0,0.9);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

#placementAnnouncement.show {
    opacity: 1;
    transform: translateY(0);
    transition: all 0.5s ease;
}

#placementAnnouncement.hide {
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
}

#placementAnnouncement .icon {
    font-size: 18px;
    animation: horn 1s infinite;
}

.announce {
    position: relative;
    font-size: 22px;
    animation: hornPulse 2.5s infinite;
}

.announce-icon {
    position: relative;
    font-size: 22px;
    color: #A9CE38;
}

/* soft pulse ring */
.announce-icon::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(169, 206, 56, 0.6);
    transform: translate(-50%, -50%);
    animation: pulseRing 2.5s infinite;
}

@keyframes pulseRing {
    0% {
        transform: translate(-50%, -50%) scale(0.7);
        opacity: 0.8;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.4);
        opacity: 0;
    }
}



@keyframes horn {
    0% {
        transform: rotate(0);
    }
    25% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
    100% {
        transform: rotate(0);
    }
}



.footer-copyright-links a {
    color: black;
}

.single-student p{
    color: black;
    text-align: justify;
    padding-right: 10px;

}
.single-student span{
    color: #777;
}
.review-card {
    display: grid;
    grid-template-columns: 50px 1fr auto;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 6px;
    padding: 15px;
    font-family: Arial, sans-serif;
}

/* Avatar spans 2 rows */
.review-avatar {
    grid-row: 1 / span 2;
}

.review-avatar img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
}

/* Name + reviews */
.review-header {
    grid-column: 2;
}

.student-name {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
}

.student-reviews {
    font-size: 12px;
    color: #777;
    display: block;
    margin-top: 2px;
}

/* 3 dots */
.review-menu {
    grid-column: 3;
    grid-row: 1;
    font-size: 18px;
    color: #666;
    cursor: pointer;
}

/* ⭐ Stars start BELOW image */
.review-rating {
    grid-column: 2;
    grid-row: 2;
    font-size: 30px; /* bigger stars */
    color: #fbbc04;
    margin-top: 0px
}

/* Review text also below image */
.review-text {
    grid-column: 1 / span 3;
    grid-row: 3;
    font-size: 13px;
    color: #444;
    margin: 0;
}


p {
    text-align: justify;
}

.fa-file-alt{
    margin-right: 10px
}
.list-left{
    color:black;
}

