/* ======================================================
   LingualSync — PUBLIC UI ONLY
   Applies to:
   ✔ index.php
   ✔ login.php
   ✔ signup.php
====================================================== */

/* ==============================
   GLOBAL RESET
============================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: "Poppins", system-ui, sans-serif;
}

body {
    background: #f5f7fa;
    color: #111827;
}

/* ==============================
   NAVBAR
============================== */
.landing-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: #02355c;
    /*padding: 14px 28px;*/
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}
.logo img {
    height: 50px;
    object-fit: contain;
        border-radius: 50%;
        padding-left: 7px;

}


.nav-links a {
    color: #ddd;
    margin-left: 14px;
    text-decoration: none;
    font-weight: 500;
    transition: color .2s ease;
}

.nav-links a:hover {
    color: #fc9300;
}

.login-btn {
    /*background: #fc930;*/
    color: #fff;
    padding: 8px 14px;
    border-radius: 8px;
}

.login-btn a:hover {
    color: #f78105 ;
}
/* ==============================
   HERO SECTION
============================== */
/*.lp-hero {*/
/*    position: relative;*/
/*    height: calc(100vh - 70px);*/
/*    min-height: 520px;*/
/*    background: url("assets/img/imageherro.jpg") center/cover no-repeat;*/
/*    background-size: contain;*/

/*    margin-top: 70px;*/
/*    display: flex;*/
/*    align-items: center;*/
/*    justify-content: center;*/
/*}*/

/*.lp-hero-overlay {*/
/*    position: absolute;*/
/*    inset: 0;*/
/*    background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.25));*/
/*}*/

/*.lp-hero-content {*/
/*    position: relative;*/
/*    z-index: 2;*/
/*    text-align: center;*/
/*    color: #fff;*/
/*    max-width: 820px;*/
/*    padding: 20px;*/
/*}*/

/*.lp-hero-content h1 {*/
/*    font-size: 44px;*/
/*    font-weight: 700;*/
/*    margin-bottom: 12px;*/
/*}*/

/*.lp-hero-content h1 span {*/
/*    color: #ffadc6;*/
/*}*/

/*.lp-hero-content p {*/
/*    font-size: 18px;*/
/*    margin-bottom: 18px;*/
/*}*/

/*.lp-hero-btn {*/
/*    background: #ff9a00;*/
/*    color: #fff;*/
/*    padding: 12px 26px;*/
/*    border-radius: 30px;*/
/*    font-weight: 700;*/
/*    text-decoration: none;*/
/*}*/

/* ======================================================
   PREMIUM HERO SECTION — LingualSync
====================================================== */

.lp-hero {
    position: relative;
    min-height: 100vh;
    width: 100%;
    background: linear-gradient(
        rgba(10,15,30,0),
        rgba(10,15,30,0)
    ),
    url("assets/img/finalfulllogo.jpg") center / cover no-repeat fixed;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

/* Mobile optimization */
@media (max-width: 768px) {
    .lp-hero {
        background-attachment: scroll;
    }
}

/* Glass overlay container */
/*.lp-hero-content {*/
/*    background: rgba(255, 255, 255, 0.12);*/
/*    backdrop-filter: blur(14px);*/
/*    -webkit-backdrop-filter: blur(14px);*/
/*    border-radius: 22px;*/
/*    border: 1px solid rgba(255,255,255,0.18);*/
/*    box-shadow: 0 20px 60px rgba(0,0,0,.45);*/

/*    max-width: 820px;*/
/*    width: 100%;*/
/*    padding: 60px 55px;*/
/*    animation: heroFade 1.2s ease forwards;*/
/*}*/

/* Headline */
.lp-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: .6px;
    margin-bottom: 14px;
    color: #ffffff;
}

/* Highlight text */
.lp-hero-content h1 span {
    color: #ffb703;
}

/* Subtitle */
.lp-hero-content p {
    font-size: 18px;
    opacity: .9;
    line-height: 1.6;
    margin-bottom: 26px;
}

/* CTA Button */
.lp-hero-btn {
    display: inline-block;
    background: linear-gradient(135deg,#ff9f1c,#ffbf69);
    color: #000;
    padding: 14px 42px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: .4px;
    text-decoration: none;
    transition: all .3s ease;
}

.lp-hero-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 30px rgba(255,160,0,.45);
}

/* Subtle animation */
@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(25px) scale(.97);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Responsive text scaling */
@media (max-width: 992px) {
    .lp-hero-content {
        padding: 45px 35px;
    }

    .lp-hero-content h1 {
        font-size: 38px;
    }
}

@media (max-width: 600px) {
    .lp-hero-content {
        padding: 36px 26px;
    }

    .lp-hero-content h1 {
        font-size: 30px;
    }

    .lp-hero-content p {
        font-size: 16px;
    }
}



.lp-hero-premium {
    min-height: 100vh;
    background: url("assets/img/finallogo.png") center/cover no-repeat;
    /*background : white;*/
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 8%;
    overflow: hidden;
}

/* Glass overlay */
.hero-glass {
    position: absolute;
    inset: 0;
    background: rgba(249, 249, 249, 0.7);
    backdrop-filter: blur(8px);
    z-index: 0;
    pointer-events: none;
}

.hero-content-wrap {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    color: #02355c;
}

/* Left Content */
.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 40px;
}

.hero-left h1 span {
    background: linear-gradient(135deg, #f8af24, #e36d08 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #02355c;
}

.hero-desc {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #02355c;
}

.hero-buttons {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.hero-btn {
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 600;
    transition: 0.3s ease;
    text-decoration: none;
}

.hero-btn.primary {
    background: linear-gradient(135deg,#f4a21f, #ea8111);
    color: #fff;
}

.hero-btn.secondary {
    border: 2px solid #eb8512;
    color: #eb8512;
}

.hero-btn:hover {
    transform: translateY(-3px);
}

/* Right Card */
.hero-right {
    display: flex;
    align-items: center;
}

.what-we-do-card {
    background: rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 35px;
    width: 100%;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.35);
}

.what-we-do-card h3 {
    font-size: 1.6rem;
    margin-bottom: 20px;
    /*color: #e36d08;*/
}

.what-we-do-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.what-we-do-card ul li {
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.hero-tagline {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.3);
    font-size: 1.1rem;
    font-weight: 600;
}

.hero-tagline span {
    color: #00d2ff;
}

/* Responsive */
@media(max-width: 900px) {
    .hero-content-wrap {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 2.3rem;
    }

    .lp-hero-premium {
        padding: 110px 6% 80px;
    }
}



/* ==============================
   SECTIONS (ABOUT, ETC)
============================== */
section {
    padding: 20px 6%;
}

#about {
    background: #f8fafc;
}

#about h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

#about p {
    /*max-width: 880px;*/
    line-height: 1.6;
    margin-bottom: 18px;
}

.features-row {
    display: flex;
    gap: 20px;
    margin-top: 18px;
}

.feature-box {
    flex: 1;
    font-size: 18px;
    font-weight: 600;
}

/* ==============================
   COURSES SLIDER
============================== */
.courses-section {
    position: relative;
    padding: 15px 6%;
}

.section-title {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    color: #555;
    margin-bottom: 24px;
}

.course-slider-container {
    position: relative;
}

.course-slider {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding: 18px 10px;
    scroll-behavior: smooth;
}

.course-card {
    flex: 0 0 360px;
    background: #fff;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 10px 26px rgba(0,0,0,.08);
}

.course-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    padding: 20px 0;
    align-items: stretch;
}

 Card layout fix 
.course-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

 Button alignment fix 
.course-card .enroll-btn {
    margin-top: auto;
}

 Equal height + smooth spacing 
.course-card ul {
    margin-bottom: 20px;
}


.course-card h3 {
    font-size: 20px;
    background: #272748;
    color: #fff;
    padding: 10px;
    border-radius: 12px;
}

.course-card ul {
    padding-left: 18px;
}

.enroll-btn {
    display: block;
    background: #ff9a00;
    color: #fff;
    padding: 10px;
    border-radius: 10px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
}

 arrows 
.course-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #fff;
    border: none;
    cursor: pointer;
}

.course-nav.left { left: 12px; }
.course-nav.right { right: 12px; }

.course-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 28px;
    padding: 20px 0;
    align-items: stretch;
}

/* Card layout alignment */
.course-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Push button to bottom */
.course-card .enroll-btn {
    margin-top: auto;
}

/* Consistent spacing */
.course-card p {
    min-height: 52px;
}

/* Uniform list spacing */
.course-card ul {
    margin-bottom: 20px;
}

/*.course-slider {*/
/*    display: grid;*/
/*    grid-template-columns: repeat(4, 1fr);*/
/*    gap: 28px;*/
/*    padding: 20px 0;*/
/*}*/

/* Responsive behavior */
/*@media (max-width: 1200px) {*/
/*    .course-slider {*/
/*        grid-template-columns: repeat(3, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 900px) {*/
/*    .course-slider {*/
/*        grid-template-columns: repeat(2, 1fr);*/
/*    }*/
/*}*/

/*@media (max-width: 600px) {*/
/*    .course-slider {*/
/*        grid-template-columns: 1fr;*/
/*    }*/
/*}*/

/* Card layout alignment */
/*.course-card {*/
/*    display: flex;*/
/*    flex-direction: column;*/
/*    height: 100%;*/
/*}*/

/* Keep buttons aligned */
/*.course-card .enroll-btn {*/
/*    margin-top: auto;*/
/*}*/

/* ==============================
   TESTIMONIALS
============================== */

       
        /*#testimonials {*/
        /*    padding: 110px 5%;*/
        /*    background: linear-gradient(135deg, #050d1f, #081d3a);*/
        /*    color: #fff;*/
        /*    overflow: hidden;*/
        /*    position: relative;*/
        /*}*/

#testimonials {
    padding: 60px 5%;
    background: 
        linear-gradient(rgba(4,12,30,0.35), rgba(4,12,30,0.35)),
        url("assets/img/testimonials.jpg") center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    position: relative;
}

        #testimonials h2 {
            text-align: center;
            font-size: 42px;
            margin-bottom: 12px;
        }

        #testimonials .sub-title {
            text-align: center;
            font-size: 17px;
            color: #b5c7ff;
            margin-bottom: 60px;
        }

        .testimonial-wrapper {
            overflow: hidden;
            position: relative;
        }

        .testimonial-slider {
            display: flex;
            gap: 25px;
            animation: testimonialScroll 45s linear infinite;
            width: max-content;
        }
/*        .testimonial-slider {*/
/*    will-change: transform;*/
/*}*/

.testimonial-slider {
    animation-play-state: running;
}

#testimonials:hover .testimonial-slider {
    animation-play-state: paused;
}


        .testimonial-card {
            width: 380px;
            background: rgba(28,55,99,0.90);
            backdrop-filter: blur(14px);
            border-radius: 20px;
            padding: 32px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.4);
            border: 1px solid rgba(255,255,255,0.1);
            transition: 0.4s;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testimonial-card:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 25px 60px rgba(0,0,0,0.6);
        }

        .testimonial-card p {
            font-size: 15.5px;
            line-height: 1.75;
            color: #e4eaff;
        }

        .testimonial-user {
            margin-top: 22px;
            font-size: 16px;
            font-weight: 600;
            color: #6fa8ff;
            text-align: right;
        }

        .stars {
            color: gold;
            font-size: 18px;
            margin-bottom: 12px;
        }

        /*@keyframes testimonialScroll {*/
        /*    0% { transform: translateX(0); }*/
        /*    100% { transform: translateX(-50%); }*/
        /*}*/
        @keyframes testimonialScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


        @media (max-width: 768px) {
            .testimonial-card {
                width: 300px;
            }

            #testimonials h2 {
                font-size: 32px;
            }
        }

/* ==============================
   CONTACT & FOOTER
============================== */
#contact {
    text-align: center;
}

footer {
    background: #1e1e2f;
    color: #fff;
    padding: 18px;
    text-align: center;
    /*margin-top: 40px;*/
}

/* ==============================
   LOGIN & SIGNUP (shared)
============================== */
.auth-wrapper,
.auth-container {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    width: 100%;
    max-width: 980px;
    background: #fff;
    border-radius: 22px;
    display: flex;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,.15);
}

/* Left panel */
.auth-left {
    flex: 1;
    background: #02355c;
    color: #f4e8d2;
    padding: 80px 60px;
    position: relative;
}

.auth-left h1 {
    font-size: 40px;
    margin-bottom: 12px;
}

/* Right panel */
.auth-right {
    flex: 1;
    padding: 60px 50px;
    background: #f4e8d2;
}

.auth-right h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #6ba9a6;
}

.auth-right input,
.auth-right select {
    width: 100%;
    padding: 14px 16px;
    border-radius: 12px;
    border: 1px solid #ddd;
    margin-bottom: 16px;
}

.login-btn button {
    background: #fc930;
    color: #fff;
    padding: 14px;
    border-radius: 14px;
    border: none;
    font-weight: 700;
    cursor: pointer;
}

.auth-links {
    display: flex;
    justify-content: space-between;
    margin-top: 18px;
}

.auth-links a {
    font-size: 14px;
    color: #6ba9a6;
    font-weight: 600;
}



/* Errors */
.error {
    background: #ffe1e1;
    color: #b00020;
    padding: 12px;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* ==============================
   RESPONSIVE
============================== */
@media (max-width: 900px) {
    .auth-card {
        flex-direction: column;
    }
    .features-row {
        flex-direction: column;
    }
}

.about-premium {
    background: linear-gradient(180deg, #f8fafc, #eef2f7);
}

.about-container {
    /*max-width: 1100px;*/
    margin: auto;
    text-align: center;
}

.about-premium h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #0b2c5f;
}

.about-intro {
    font-size: 18px;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 16px;
}

.about-premium p {
    font-size: 16px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 14px;
}

/* Grid Layout */
.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px,1fr));
    gap: 25px;
    margin: 45px 0;
}

.about-card {
    background: #fff;
    padding: 26px 24px;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(2 53 92);
    text-align: left;
}

.about-card h3 {
    color: #0b2c5f;
    margin-bottom: 12px;
    font-size: 22px;
}

.about-card ul {
    padding-left: 18px;
}

.about-card ul li {
    margin-bottom: 10px;
    font-size: 15px;
}

/* Values */
.center-title {
    margin-top: 50px;
    margin-bottom: 20px;
    font-size: 26px;
    color: #0b2c5f;
}

.values-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
}

.values-row span {
    background: linear-gradient(135deg,#0e95be, #02355c);
    color: #fff;
    padding: 10px 18px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 6px 16px rgba(0,0,0,.12);
}

/* Experience Box */
.about-experience {
    margin-top: 55px;
    background: #ffffff;
    padding: 30px 28px;
    border-radius: 16px;
    box-shadow: 0 12px 36px rgba(2 53 92);
}

.about-experience h3 {
    margin-bottom: 12px;
    color: #0b2c5f;
}

/* Responsive */
@media (max-width: 768px) {
    .about-premium h2 {
        font-size: 30px;
    }
}

.floating-help {
    position: fixed;
    right: 25px;
    bottom: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    gap: 8px;
    animation: floatPulse 2s infinite;
}

.help-text {
    background: #ffffff;
    color: #0b2c48;
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.help-icon img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    box-shadow: 0 0 15px rgba(37,211,102,0.7);
    animation: pulse 1.8s infinite;
}

.close-help {
    cursor: pointer;
    font-size: 18px;
    background: #fff;
    border-radius: 50%;
    padding: 2px 7px;
    box-shadow: 0 0 6px rgba(0,0,0,0.2);
}

/* Animations */

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.08); }
    100% { transform: scale(1); }
}

@keyframes floatPulse {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

/* ==============================
   CONTACT SECTION – PROFESSIONAL
============================== */

.contact-section {
    padding: 80px 6% 60px;
    text-align: center;
}

.contact-subtitle {
    margin-bottom: 40px;
    font-size: 16px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1000px;
    margin: auto;
}

.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 26px 20px;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
}
.contact-card {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 50;
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}
#contact,
.contact-section,
.contact-grid,
.contact-card {
    position: relative;
    z-index: 9999;
}

/* Responsive */
@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ======================================================
   FULL RESPONSIVE OPTIMIZATION – MOBILE & TABLET
====================================================== */

.landing-header {
    position: sticky;
    top: 0;
    z-index: 9999;
}

/* Push hero down properly */
.hero {
    padding-top: 140px;
}

/* ---------- NAVBAR ---------- */
@media (max-width: 992px) {
    .landing-header {
        padding: 12px 16px;
        flex-wrap: wrap;
    }

    .nav-links {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }

    .nav-links a {
        display: inline-block;
        margin: 6px 10px;
        font-size: 14px;
    }
}

/* ---------- HERO SECTION ---------- */
@media (max-width: 992px) {
    .hero-content-wrap {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
    }

    .hero-left h1 {
        font-size: 2.4rem;
    }

    .hero-subtitle {
        font-size: 1.15rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-right {
        justify-content: center;
    }
        .hero {
        padding-top: 160px;
    }
}

@media (max-width: 576px) {
    /*.hero-left h1 {*/
    /*    font-size: 2rem;*/
    /*}*/

    /*.hero-desc {*/
    /*    font-size: 0.95rem;*/
    /*}*/

    .what-we-do-card {
        padding: 22px;
    }

    .what-we-do-card h3 {
        font-size: 1.3rem;
    }

    .what-we-do-card ul li {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    
    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }   
    .hero {
        padding-top: 170px;
    }

}

/* ---------- COURSES GRID ---------- */
.course-slider {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1200px) {
    .course-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .course-slider {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .course-slider {
        grid-template-columns: 1fr;
    }

    .course-card {
        padding: 18px;
    }

    .course-card h3 {
        font-size: 18px;
    }
}

/* ---------- ABOUT SECTION ---------- */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-premium h2 {
        font-size: 28px;
    }

    .about-card {
        padding: 22px;
    }
}

/* ---------- TESTIMONIALS ---------- */
@media (max-width: 768px) {
    #testimonials h2 {
        font-size: 30px;
    }

    .testimonial-card {
        width: 300px;
        padding: 24px;
    }
}

/* ---------- FOOTER & CONTACT ---------- */
@media (max-width: 576px) {
    footer {
        font-size: 13px;
    }

    #contact p {
        font-size: 14px;
    }
}

/* ---------- FLOATING WHATSAPP ---------- */
@media (max-width: 576px) {
    .floating-help {
        right: 15px;
        bottom: 15px;
        transform: scale(0.9);
    }

    .help-text {
        display: none;
    }
}


