/* ================================================
   HERO SECTION
   ================================================ */
   .hero {
    position: relative;
    padding-top: 120px;
    padding-bottom: clamp(295px, 28vw, 450px);
    overflow: visible;

}


.hero-bg-wrapper {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: visible;
    pointer-events: none;
}

.hero-bg {
    position: absolute;
    bottom: -200px;
    left: 50%;
    width: min(100%, 1600px);
    transform: translateX(-50%);
    display: block;
    height: auto;
    pointer-events: none;
}

/* All hero content layers sit above the bg */
.hero-content,
.hero-heading,
.hero-subtitle,
.hero-button,
.features {
    position: relative;
    z-index: 5;
}

.hero-content {
    display: flex;
    justify-content: center;
}

.tagline-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.tagline {
    margin-top: 20px;
    font-size: clamp(13px, 1.5vw, 18px);
    font-weight: 650;
    text-align: center;
}

.tagline-line {
    width: clamp(180px, 20vw, 275px);
    display: block;
    margin: -18px auto 0;
}

.hero-heading {
    text-align: center;
    margin-top: 18px;
    padding: 0 20px;
}

.hero-heading h1 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: clamp(24px, 4vw, 50px);
    line-height: 1.25;
    margin: 0;
    display: inline-block;
}

.blue,
.hero-heading .blue {
    color: #197AE9;
    background: transparent;
    /* ✅ remove box */
    padding: 0;
    /* ✅ remove spacing */
    border-radius: 0;
    /* ✅ remove rounding */
}

.hero-heading .blue:hover {
    background: transparent !important;
    color: #197AE9 !important;
    box-shadow: none !important;
}

.hero-heading h1:hover {
    background: transparent !important;
    box-shadow: none !important;
}

.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: clamp(14px, 1.5vw, 16px);
    line-height: 1.7;
    color: #000;
    text-align: center;
    margin: 12px auto 0;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-button {
    display: flex;
    justify-content: center;
    margin-top: 14px;
}

.demo-btn.big {
    font-size: clamp(15px, 1.4vw, 16px);
    font-weight: 600;
    padding: 13px 32px;
    border-radius: 12px;
    background-color: #FF9900;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
}

.demo-btn.big:hover {
    background-color: #e68a00;
}

.features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
    margin-top: 22px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-item span {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 500;
}

.feature-item img {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

/* ================================================
   BENEFITS SECTION
   ================================================ */
.benefits-section {
    text-align: center;
    /* clamp: on mobile ~80px gap, on desktop ~220px */
    padding: clamp(130px, 24vw, 300px) 20px 40px;
}

.benefits-heading {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.3;
}

.benefits-heading .highlight {
    color: #FF9900;
}

.benefits-subtitle {
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 500;
    color: #5F6C7B;
    max-width: 1400px;
    margin: 0 auto;
    line-height: 1.55;
}

/* ================================================
   MODULES SLIDER
   ================================================ */
.modules-slider {
    text-align: center;
    padding: 8px 30px 0;
    margin-top: -10px;
}

.slides {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
    overflow: hidden;
}

.slide {
    display: none;
    width: 100%;
    max-width: 1350px;
    height: clamp(200px, 35vw, 500px);
    object-fit: cover;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;

    /* ✅ ADD THESE */
    transition: transform 0.4s ease;
}

/* .slide:hover {
    transform: scale(1.03);
    border-radius: 40px;
} */

.slide.active {
    display: block;
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    padding: 0 20px;
}

.prev,
.next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #197AE9;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding: 0;
    flex-shrink: 0;
    transition: background 0.2s;
}

.prev:hover,
.next:hover {
    background: #197AE9;
}

.prev:hover img,
.next:hover img {
    filter: brightness(0) invert(1);
}

.prev img,
.next img {
    width: 28px;
    height: 28px;
    display: block;
}

.dots {
    display: flex;
    align-items: center;
    gap: 10px;
}

.dot {
    width: 6px;
    height: 6px;
    background: #d0d0d0;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    width: 10px;
    height: 10px;
    background: #197AE9;
}

/* ================================================
   TRANSFORM SECTION
   ================================================ */
.transform-section {
    padding: 80px 100px;
    background: #ffffff;
}

.transform-container {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.transform-left {
    flex: 1.2;
    max-width: 680px;
}

.transform-left h2 {
    font-size: clamp(22px, 2.6vw, 34px);
    font-weight: 700;
    line-height: 1.4;
    color: #000;
    letter-spacing: -0.3px;
    margin: 0 0 16px;
}

.transform-left h2 span {
    font-weight: 700;
    color: #197AE9;
}

.desc {
    font-size: clamp(14px, 1.4vw, 17px);
    color: #222;
    line-height: 1.75;
    font-weight: 500;
    margin: 0;
}

.desc+.desc {
    margin-top: 16px;
}

.transform-left h3 {
    margin: 28px 0 0;
    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 700;
    color: #000;
}

.stakeholders {
    margin-top: 18px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.stake {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stake span {
    font-size: clamp(15px, 1.4vw, 20px);
    font-weight: 700;
    color: #000;
}

.stake img {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    object-fit: contain;
}

/* RIGHT CARD GRID */
.transform-right {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    align-content: start;
}

.card {
    background: #FFF7EC;
    padding: 20px;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    gap: 4px;
}

.card h1 {
    color: #FF9900;
    font-size: clamp(34px, 4vw, 56px);
    font-weight: 700;
    line-height: 1;
    margin: 0;
}

.card h4 {
    color: #197AE9;
    font-size: clamp(14px, 1.3vw, 17px);
    font-weight: 700;
    margin: 6px 0 0;
    line-height: 1.3;
}

.card p {
    color: #333;
    font-size: clamp(13px, 1.2vw, 15px);
    line-height: 1.5;
    font-weight: 500;
    margin: 6px 0 0;
}

/* Stagger — desktop only */
@media (min-width: 1025px) {

    .transform-right .card:nth-child(2),
    .transform-right .card:nth-child(4) {
        transform: translateY(56px);
    }
}

/* ================================================
   INTEGRATED SECTION
   ================================================ */
.integrated-section {
    text-align: center;
    padding: 70px 20px 30px;
    background: #ffffff;
}

.integrated-heading {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    color: #000;
    margin: 0 0 16px;
    line-height: 1.3;
}

.integrated-subtitle {
    font-size: clamp(14px, 1.7vw, 20px);
    font-weight: 500;
    color: #333;
    max-width: 1200px;
    margin: 0 auto;
    line-height: 1;
}

/* ================================================
   INTEGRATION CARDS
   ================================================ */
.integration-cards {
    padding: 24px 80px 70px;
    background: #fff;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.integration-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 28px 22px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.integration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(49, 131, 238, 0.18);
}

.integration-card img {
    width: 96px;
    height: 56px;
    object-fit: contain;
    margin-bottom: 14px;
    display: block;
}

.integration-card h4 {
    font-size: clamp(16px, 1.5vw, 20px);
    font-weight: 700;
    color: #FF9900;
    margin: 0 0 8px;
}

.integration-card p {
    font-size: clamp(13px, 1.2vw, 16px);
    color: #5A6A7A;
    line-height: 1.55;
    margin: 0;
}

/* ================================================
   TESTIMONIAL SECTION
   ================================================ */
.testimonial-section {
    text-align: center;
    padding: 80px 20px;
    background: #ffffff;
}

.testimonial-heading {
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 700;
    margin: 0 0 8px;
}

.testimonial-subtitle {
    font-size: clamp(15px, 1.8vw, 22px);
    color: #464a4d;
    font-weight: 500;
    margin: 0 0 40px;
}

.testimonial-slider {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial {
    display: none;
    text-align: center;
    /* padding keeps content away from the arrow buttons */
    padding: 0 64px;
}

.testimonial.active {
    display: block;
}

/* 🔥 OUTER ORANGE CIRCLE */
.avatar-circle {
    width: clamp(95px, 8vw, 130px);
    height: clamp(95px, 8vw, 130px);
    border-radius: 50%;
    background: #FF9900;
    /* ORANGE */
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    overflow: visible;
    position: relative;
}

/* ✅ REAL IMAGE */
.avatar-img {
    width: 90%;
    height: 90%;
    border-radius: 50%;
    object-fit: cover;

    position: absolute;
    /* ✅ ADD */
    top: 50%;
    /* ✅ ADD */
    left: 50%;
    /* ✅ ADD */
    transform: translate(-50%, -50%);
    /* ✅ ADD */
}

/* ✅ DEFAULT VECTOR */
.avatar-icon {
    width: 90%;
    height: 90%;
    object-fit: contain;

    position: absolute;
    /* ✅ ADD */
    top: 50%;
    /* ✅ ADD */
    left: 50%;
    /* ✅ ADD */
    transform: translate(-50%, -50%);
    /* ✅ ADD */

    display: block;
    text-decoration: none;
}

.avatar-img {
    z-index: 2;
}

.avatar-icon {
    z-index: 1;
}

.testimonial h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.5vw, 19px);
    font-weight: 700;
    color: #000;
    margin: 8px 0 16px;
    line-height: 1.4;
}

.quote {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(15px, 1.5vw, 18px);
    font-weight: 600;
    color: #555;
    margin: 0 0 20px;
}

.testimonial .desc {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(14px, 1.4vw, 17px);
    font-weight: 500;
    color: #3b4b53;
    line-height: 1.75;
    margin: 0;
}

/* ARROW BUTTONS */
.test-prev,
.test-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: #FF9900;
    color: white;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s;
    flex-shrink: 0;
}

.test-prev:hover,
.test-next:hover {
    background: #e68a00;
}

.test-prev {
    left: 0;
}

.test-next {
    right: 0;
}

/* DOTS */
.test-dots {
    margin-top: 28px;
}

.test-dot {
    width: 8px;
    height: 8px;
    background: #ccc;
    display: inline-block;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.test-dot.active {
    background: #197AE9;
    transform: scale(1.3);
}

/* ================================================
   BROCHURE BANNER
   ================================================ */
.banner {
    width: 100%;
    max-width: 1300px;
    margin: 70px auto;
    position: relative;
    padding: 0 20px;
}

.banner .banner-img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 16px;
}

.download-btn {
    position: absolute;
    top: 72%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(160px, 20vw, 260px);
    height: clamp(44px, 5vw, 60px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    color: transparent;
}



/* ================================================
   CLIENTS SECTION
   ================================================ */
.clients-section {
    text-align: center;
    padding: 60px 40px;
    background: #fff;
}

.clients-heading {
    font-size: clamp(22px, 2.8vw, 34px);
    font-weight: 700;
    margin: 0 0 10px;
}

.clients-subtitle {
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 500;
    color: #464c52;
    max-width: 800px;
    margin: 0 auto 48px;
    line-height: 1.6;
}

.clients-slider {
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 70px;
    width: max-content;
    animation: scrollLogos 30s linear infinite;
    will-change: transform;
    align-items: center;
}

.clients-track img {
    height: 90px;
    object-fit: contain;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.clients-track img:hover {
    transform: scale(1.08);
}

.clients-slider:hover .clients-track {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ================================================
   CONTACT SECTION
   ================================================ */
.contact-section {
    padding: 50px 70px;
    background: #fff;
}

.contact-container {
    display: flex;
    gap: 32px;
    align-items: center;
    padding: 32px;
    border-radius: 24px;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.contact-container::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    background:
        radial-gradient(circle at top left, rgba(123, 97, 255, 0.12), transparent 22%),
        radial-gradient(circle at top right, rgba(255, 217, 0, 0.12), transparent 22%),
        radial-gradient(circle at bottom left, rgba(0, 149, 255, 0.12), transparent 22%),
        radial-gradient(circle at bottom right, rgba(0, 200, 255, 0.12), transparent 22%);
    z-index: 0;
    pointer-events: none;
}

.contact-container>* {
    position: relative;
    z-index: 1;
}

.contact-left {
    flex-shrink: 0;
}

.contact-left img {
    width: clamp(220px, 32vw, 450px);
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    display: block;
}

.contact-right {
    flex: 1;
    min-width: 0;
}

.contact-right h2 {
    font-size: clamp(22px, 2.5vw, 36px);
    font-weight: 700;
    margin: 0 0 20px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-row {
    display: flex;
    gap: 18px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.form-group.full {
    width: 100%;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #333;
}

.form-group input {
    padding: 11px 14px;
    border-radius: 10px;
    border: 1px solid #dcdcdc;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    width: 100%;
    box-sizing: border-box;
    outline: none;
    transition: border-color 0.2s;
    color: #333;
}

.form-group input:focus {
    border-color: #197AE9;
    box-shadow: 0 0 0 3px rgba(25, 122, 233, 0.08);
}

.form-group input::placeholder {
    color: #aaa;
}

.submit-btn {
    width: fit-content;
    padding: 12px 32px;
    border-radius: 10px;
    border: none;
    background: #FF9900;
    color: white;
    font-weight: 600;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
}

.submit-btn:hover {
    background: #e68a00;
}

/* ================================================
   REQUEST DEMO BANNER
   ================================================ */
.demo-banner {
    position: relative;
    width: 100%;
    max-width: 1300px;
    margin: 50px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.demo-banner .banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.home-college-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.home-college-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 18px;
    border: 2px solid #eee;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.home-college-card p {
    font-size: clamp(14px, 1.2vw, 18px);
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.4;
}

.home-college-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 32px rgba(49, 131, 238, 0.15);
}


/* ================================================
   FOOTER / APP STORE BANNER
   ================================================ */
/* .footer-banner {
    position: relative;
    width: 100%;
    margin: 0;
    overflow: hidden;
} */

/* .footer-bg {
    width: 100%;
    height: auto;
    display: block;
    pointer-events: none;

    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
} */

/* .playstore-btn,
.appstore-btn { */
/* position: absolute;
    right: 7%;
    width: 14%;
    min-width: 110px;
    max-width: 190px;
    aspect-ratio: 195 / 58;
    z-index: 10;
    cursor: pointer; */
/* background: rgba(255,0,0,0.3); */
/* debug */
/* } */

/* .playstore-btn { top: 24%; }
.appstore-btn  { top: 46%; } */


/* ====================================================
   RESPONSIVE BREAKPOINTS
   ==================================================== */

/* ── LARGE DESKTOP (≤ 1440px) ── */
@media (max-width: 1440px) {
    .transform-section {
        padding: 80px 60px;
    }

    .integration-cards {
        padding: 24px 60px 60px;
    }

    .contact-section {
        padding: 80px 50px;
    }
}

/* ── LAPTOP (≤ 1200px) ── */
@media (max-width: 1200px) {
    .transform-section {
        padding: 70px 40px;
    }

    .transform-container {
        gap: 40px;
    }

    .transform-left {
        max-width: 100%;
    }

    .integration-cards {
        padding: 20px 40px 50px;
    }

    .contact-section {
        padding: 60px 40px;
    }

    .college-section {
        padding: 70px 30px;
    }

    .clients-section {
        padding: 70px 30px;
    }
}

/* ── TABLET LANDSCAPE (≤ 1024px) ── */
@media (max-width: 1024px) {

    /* Transform — stack */
    .transform-section {
        padding: 60px 30px;
    }

    .transform-container {
        flex-direction: column;
        gap: 36px;
        align-items: stretch;
    }

    .transform-left {
        max-width: 100%;
    }

    .transform-right {
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    /* Integration cards → 2 cols */
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .integration-cards {
        padding: 20px 30px 50px;
    }

    /* College → 3 cols */
    .college-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .college-section {
        padding: 70px 30px;
    }

    /* Contact */
    .contact-section {
        padding: 60px 28px;
    }

    /* Testimonial arrows are at left:0/right:0 — add padding to slide */
    .testimonial {
        padding: 0 54px;
    }

    /* Footer store buttons */
    .playstore-btn {
        top: 22%;
    }

    .appstore-btn {
        top: 44%;
    }
}

/* ── TABLET PORTRAIT (≤ 768px) ── */
@media (max-width: 768px) {

    /* Hero */
    .tagline {
        font-size: 14px;
    }

    .tagline-line {
        width: 200px;
    }


    .hero {
        padding-bottom: calc(55vw + 8px);
    }

    .hero-bg {
        bottom: -20px;
        width: 100%;
        right: 0;
    }


    /* Benefits */
    .benefits-section {
        padding-top: 80px;
    }

    /* Modules */
    .slides {
        padding: 0 16px;
    }

    .slide {
        height: auto;
        width: 90%;
        max-width: 500px;
        margin: 0 auto;
    }

    .avatar-circle {
        width: 110px;
        height: 110px;
    }

    /* .demo-btn-overlay {
        top: 62%; 
    } */

    /* Transform */
    .transform-section {
        padding: 50px 20px;
    }

    .stakeholders {
        gap: 14px;
    }

    /* Integration */
    .card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .integration-cards {
        padding: 16px 20px 40px;
    }

    /* Testimonial */
    .testimonial {
        padding: 0 48px;
    }

    .testimonial-section {
        padding: 60px 16px;
    }

    /* College */
    .college-section {
        padding: 60px 20px;
    }

    .home-college-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    /* Clients */
    .clients-section {
        padding: 60px 20px;
    }

    .clients-track {
        gap: 50px;
    }

    .clients-track img {
        height: 68px;
    }

    /* Contact — stack image above form */
    .contact-section {
        padding: 40px 20px;
    }

    .contact-container {
        flex-direction: column;
        gap: 22px;
        padding: 22px;
        align-items: stretch;
    }

    .contact-left img {
        width: 100%;
        max-height: 260px;
        object-fit: cover;
    }

    .form-row {
        flex-direction: column;
        gap: 16px;
    }

    /* Banners */
    .banner {
        margin: 40px auto;
    }

    .demo-banner {
        margin: 30px auto;
    }

    /* Footer store buttons */
    .playstore-btn {
        top: 20%;
    }

    .appstore-btn {
        top: 42%;
    }
}

/* ── MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    /* Hero */
    .hero {
        padding-top: 80px;
        padding-bottom: calc(52vw + 8px);
    }

    .hero-bg {
        bottom: -15px;
        width: 100%;
        right: 0;
        /* min-height: 320px; */
    }

    .tagline {
        font-size: 13px;
    }

    .tagline-line {
        width: 175px;
    }

    .features {
        flex-direction: column;
        gap: 10px;
    }

    /* Benefits */
    .benefits-section {
        padding-top: 80px;
        padding-left: 16px;
        padding-right: 16px;
    }

    /* Modules */
    .slides {
        padding: 0 12px;
    }

    .slide {
        height: auto;
        width: 88%;
        max-width: 420px;
        margin: 0 auto;
    }

    .slider-controls {
        gap: 10px;
        margin-top: 14px;
    }

    .prev,
    .next {
        width: 30px;
        height: 30px;
    }

    .prev img,
    .next img {
        width: 16px;
        height: 16px;
    }

    .dot {
        width: 5px;
        height: 5px;
    }

    .dot.active {
        width: 8px;
        height: 8px;
    }

    .avatar-circle {
        width: 90px;
        height: 90px;
    }

    /* Transform */
    .transform-section {
        padding: 40px 16px;
    }

    .transform-right {
        grid-template-columns: 1fr;
    }

    /* Integration — 2 tight cols */
    .card-grid {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .integration-cards {
        padding: 14px 14px 36px;
    }

    .integration-card {
        padding: 14px;
    }

    .integration-card img {
        width: 64px;
        height: 42px;
    }

    /* Testimonial */
    .testimonial {
        padding: 0 40px;
    }

    .test-prev,
    .test-next {
        width: 34px;
        height: 34px;
        font-size: 13px;
    }

    /* Banner */
    .banner {
        padding: 0 12px;
        margin: 28px auto;
    }

    /* College */
    .college-section {
        padding: 48px 14px;
    }

    .home-college-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .college-card {
        padding: 18px 12px;
    }

    .icon-circle {
        width: 58px;
        height: 58px;
    }

    .icon-circle img {
        width: 26px;
        height: 26px;
    }

    /* Clients */
    .clients-section {
        padding: 48px 14px;
    }

    .clients-track {
        gap: 32px;
    }

    .clients-track img {
        height: 52px;
    }

    /* Contact */
    .contact-section {
        padding: 28px 12px;
    }

    .contact-container {
        padding: 16px;
        gap: 18px;
    }

    .submit-btn {
        font-size: 15px;
        padding: 11px 26px;
    }

    /* Demo banner */
    .demo-banner {
        padding: 0 12px;
        margin: 24px auto;
    }

    /* .demo-btn-overlay {
        top: 58%;
        padding: 10px 20px;
        font-size: 13px;
        border-radius: 18px;
    } */

    /* Footer store buttons */
    .playstore-btn,
    .appstore-btn {
        right: 4%;
        width: 21%;
    }

    .playstore-btn {
        top: 20%;
    }

    .appstore-btn {
        top: 42%;
    }
}

/* ── VERY SMALL MOBILE (≤ 360px) ── */
@media (max-width: 360px) {

    /* .hero {
        padding-bottom: calc(66vw + 8px);
    }
    .hero-bg {
        bottom: 0;
        width: 160%;
        right: -30%;
        min-height: 280px;
    }
    
   
    .benefits-section { padding-top: 8px; }
    .hero-heading h1   { font-size: 20px; } */
    .hero {
        padding-bottom: calc(52vw + 10px);
        /* reduce spacing */
    }

    .hero-bg {
        bottom: -10px;
        /* align properly */
        width: 100%;
        /* 🔥 FIX: no overflow */
        right: 0;
        /* 🔥 FIX: center properly */
        min-height: auto;
        /* remove forced height */
    }

    .benefits-section {
        padding-top: 80px;
        /* match other mobiles */
    }

    .hero-heading h1 {
        font-size: 20px;
        line-height: 1.3;
    }

    .home-college-grid {
        grid-template-columns: 1fr 1fr;
    }

    .card-grid {
        grid-template-columns: 1fr;
    }

    .integration-cards {
        padding: 12px 12px 30px;
    }

    /* .demo-btn-overlay {
        top: 55%;
        font-size: 11px;
        padding: 6px 14px;
    } */
    .testimonial {
        padding: 0 36px;
    }

}


.required {
    color: red;
    margin-left: 2px;
    font-weight: 700;
}