:root {
    --primary: #1e3a8a;
    --accent-orange: linear-gradient(135deg, #f97316, #facc15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
}

#page-loader {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.35s ease, visibility 0.35s ease;
}

#page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

.loader-content {
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.loader-ring {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(0, 0, 0, 0.15);
    border-top: 3px solid #f97316;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.loader-content p {
    margin-top: 10px;
    font-size: 13px;
    color: #0f172a;
    letter-spacing: 0.8px;
    opacity: 0.7;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.navbar {
    position: sticky;
    top: 0;
    width: 100%;
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    z-index: 1000;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px clamp(16px, 4vw, 32px);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    flex-shrink: 0;
}

.logo img {
    height: 56px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 32px;
    flex-shrink: 0;
}


@media (max-width: 900px) {
    .nav-links {
        position: absolute;
        top: 75px;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f172a, #1e3a8a);
        flex-direction: column;
        align-items: center;
        gap: 25px;
        padding: 30px 0;
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }
}

.nav-links li a {
    text-decoration: none;
    font-weight: 500;
    color: #ffffff;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links li a:not(.contact-btn):hover,
.nav-links li a.active:not(.contact-btn) {
    color: #ff8c00;
}

.nav-links li a:not(.contact-btn)::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #f97316, #facc15);
    transition: width 0.3s ease;
}

.nav-links li a:not(.contact-btn):hover::after,
.nav-links li a.active:not(.contact-btn)::after {
    width: 100%;
}

.contact-btn {
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 600;
    color: #0f172a;
    background: linear-gradient(to left, #facc15, #f97316);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.45);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(249, 115, 22, 0.65);
    color: #0f172a;
}

.contact-btn::after {
    display: none;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.menu-toggle span {
    height: 3px;
    width: 28px;
    background: #ffffff;
    margin: 4px 0;
    border-radius: 2px;
}

@media (max-width: 900px) {
    .menu-toggle {
        display: flex;
    }

    nav {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: linear-gradient(135deg, #0f172a, #1e3a8a);
        display: none;
        flex-direction: column;
        align-items: center;
    }

    nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 25px;
        padding: 30px 0;
    }

    .contact-btn {
        margin-top: 10px;
    }

    .logo img {
        height: 42px;
        max-width: 150px;
    }
}

.hero-slider {
    position: relative;
    overflow: hidden;
    padding-top: 16px;
    min-height: auto;
    background: linear-gradient(135deg, #e0f2ff, #fff8e1, #fffbe6);
}

.slides {
    display: flex;
    transition: transform 1s ease-in-out;
    touch-action: pan-y;
}

.slide {
    min-width: 100%;
    display: flex;
    align-items: flex-start;
    padding: 20px 5% 50px;
    justify-content: space-between;
    position: relative;
}

.slide::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(249, 115, 22, 0.08), transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.banner-text {
    max-width: 55%;
    color: #1e293b;
    z-index: 2;
    animation: slideText 1s ease forwards;
    margin-top: 0;
}

.banner-text h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.banner-text h1 span {
    color: #f97316;
}

.subheading {
    font-size: 1.3rem;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 25px;
}

.banner-points {
    list-style: none;
    padding: 0;
    margin: 15px 0 35px;
}

.banner-points li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #475569;
    line-height: 1.6;
    font-weight: 500;
    opacity: 0;
    transform: translateY(10px);
    animation: pointFade 0.6s forwards;
}

.banner-points li:nth-child(1) {
    animation-delay: 0s;
}

.banner-points li:nth-child(2) {
    animation-delay: 0.2s;
}

.banner-points li:nth-child(3) {
    animation-delay: 0.4s;
}

.banner-points li:nth-child(4) {
    animation-delay: 0.6s;
}

.banner-points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 7px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #f97316);
}

.banner-text a.btn-primary {
    background: linear-gradient(to right, #f97316, #facc15);
    padding: 12px 30px;
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 0 8px 20px rgba(249, 115, 22, 0.3);
    transition: all 0.4s ease;
}

.banner-text a.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(249, 115, 22, 0.5);
}

.banner-image img {
    max-width: 450px;
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

.banner-image {
    display: flex;
    align-items: center;
    height: 100%;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 12px;
}

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

.dot.active {
    background: #f97316;
    transform: scale(1.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes slideText {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pointFade {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 900px) {

    .hero-slider {
        padding-top: 8px;
        min-height: auto;
    }

    .slide {
        flex-direction: column;
        padding: 0 5% 28px;
        text-align: center;
        justify-content: flex-start;
    }

    .banner-image {
        order: 1;
        margin: 0 0 14px 0;
        display: block;
        height: auto;
    }

    .banner-image img {
        width: 100%;
        height: 220px;
        object-fit: cover;
        border-radius: 14px;
        display: block;
    }

    .banner-text {
        order: 2;
        margin-top: 0;
        max-width: 100%;
    }

    .banner-text h1 {
        font-size: 2.05rem;
        line-height: 1.25;
        margin-bottom: 12px;
    }

    .subheading {
        font-size: 1.05rem;
        margin-bottom: 14px;
    }
}

.stats {
    background: linear-gradient(135deg, #0f172a, #1e3a8a);
    padding: 40px 5%;
}

.stats-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.stat-box {
    text-align: left;
    position: relative;
    padding-left: 25px;
}

.stat-box::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    height: 60%;
    width: 3px;
    background: linear-gradient(to bottom, #f97316, #facc15);
    border-radius: 10px;
}

.stat-box h2 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    display: flex;
    align-items: center;
}

.stat-box .plus {
    font-size: 2rem;
    margin-left: 4px;
    color: #ffffff;
}

.stat-box p {
    margin-top: 0;
    font-size: 1rem;
    color: #ffffff;
    line-height: 1.4;
}

.stat-box:hover h2 {
    text-shadow: 0 0 15px rgba(250, 204, 21, 0.6);
    transform: translateY(-3px);
    transition: all 0.3s ease;
}

@media (max-width: 1100px) {
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .stats {
        padding: 30px 5%;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box {
        text-align: center;
        padding: 20px 16px;
        background: rgba(255, 255, 255, 0.06);
        border-radius: 14px;
    }

    .stat-box::before {
        display: none;
    }

    .stat-box h2 {
        font-size: 2.2rem;
        justify-content: center;
    }

    .stat-box .plus {
        font-size: 1.6rem;
    }

    .stat-box p {
        font-size: 0.95rem;
        margin-top: 6px;
        opacity: 0.9;
    }
}

.slide-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: slideLeft 1s ease forwards;
}

.slide-right {
    opacity: 0;
    transform: translateX(50px);
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 900px) {
    .banner {
        flex-direction: column;
        text-align: center;
    }

    .banner-text {
        max-width: 100%;
    }

    .banner-image {
        margin-top: 40px;
    }

    .stats {
        flex-direction: column;
        gap: 30px;
    }
}

.review-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    background: transparent;
    padding: 14px 24px;
    border-radius: 10px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.06);
    margin-top: 20px;
    margin-bottom: 20px;
}

.review-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-logo {
    width: 36px;
    height: auto;
}

.review-logo.fb {
    width: 32px;
}

.review-text h3 {
    font-size: 20px;
    font-weight: 700;
    color: #1f4fd8;
    margin: 0;
}

.review-text h3 span {
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-left: 4px;
}

.stars {
    color: #ff9800;
    font-size: 14px;
    letter-spacing: 1px;
    margin: 2px 0;
}

.review-text p {
    margin: 0;
    font-size: 12px;
    color: #555;
}

@media (max-width: 768px) {
    .review-strip {
        flex-direction: column;
        gap: 16px;
        padding: 16px;
        margin-bottom: 16px;
    }
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    text-align: center;
    margin-bottom: 50px;
}

.courses-section {
    padding: 80px 5%;
    background: linear-gradient(180deg, #f6f8fc, #eef2ff);
}

.course-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 35px;
}

.course-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
}

.course-card img {
    width: 90px;
    margin-bottom: 25px;
}

.course-card h3 {
    font-size: 1.35rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 15px;
}

.course-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #64748b;
    margin-bottom: 25px;
}

.course-card button {
    padding: 10px 26px;
    border-radius: 8px;
    border: none;
    background: #1e3a8a;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
}

.course-card button:hover {
    background: #0f172a;
}

.why-choose {
    padding: 80px 5%;
    background: linear-gradient(180deg, #f6f8fc, #eef2ff);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.why-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 28px 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.why-card:hover {
    transform: translateY(-6px);
}

.why-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 10px;
}

.why-head img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.why-head h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #1e3a8a;
}

.why-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #64748b;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 1.9rem;
    }

    .why-choose {
        padding: 60px 5%;
    }
}

.corporates {
    background: #f8fafc;
    padding: 40px 5%;
}

.corporates-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.corporates-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1e3a8a;
    margin-bottom: 40px;
}

.corporates-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.corporates-grid img {
    height: 48px;
    width: auto;
    object-fit: contain;
    opacity: 1;
}

@media (max-width: 768px) {
    .corporates-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .corporates-grid {
        gap: 35px;
    }

    .corporates-grid img {
        height: 38px;
    }
}

.awards-section {
    padding: 70px 5%;
    background: #ffffff;
}

.awards-container {
    max-width: 1200px;
    margin: auto;
    text-align: center;
}

.awards-title {
    font-size: 2.6rem;
    font-weight: 700;
    color: #0b5cab;
    margin-bottom: 50px;
}

.awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.award-card {
    text-align: center;
    padding: 10px 15px;
}

.award-card img {
    height: 70px;
    max-width: 160px;
    object-fit: contain;
    margin-bottom: 20px;
}

.award-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.award-card p {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.5;
}

.award-card:hover img {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.awards-slider {
    overflow: hidden;
}

.awards-track {
    display: flex;
    transition: transform 0.6s ease;
    will-change: transform;
}

.awards-grid {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.awards-dots {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.awards-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    transition: 0.3s;
}

.awards-dots span.active {
    background: #f97316;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .awards-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 992px) {
    .awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .awards-title {
        font-size: 2rem;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .award-card img {
        height: 65px;
    }
}

.testimonials {
    background: linear-gradient(135deg, #1e3a8a, #2563eb);
    padding: 35px 6%;
    text-align: center;
    color: #fff;
}

.testimonials h2 {
    font-size: 2.1rem;
    margin-bottom: 35px;
}

.testimonial-slider {
    max-width: 1100px;
    margin: auto;
    overflow: hidden;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.testimonial-card {
    flex: 0 0 33.333%;
    padding: 12px;
    box-sizing: border-box;
}

.testimonial-inner {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 26px 22px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card.active .testimonial-inner {
    background: rgba(255, 255, 255, 0.22);
    transform: translateY(-6px);
}

.avatar-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f97316, #facc15);
    color: #fff;
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.testimonial-inner h3 {
    font-size: 1rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.stars {
    color: #facc15;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.testimonial-inner p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.testimonial-inner span {
    font-size: 0.85rem;
    opacity: 0.75;
}

.testimonial-dots {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.testimonial-dots span {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.testimonial-dots span.active {
    background: #f97316;
    transform: scale(1.2);
}

@media (max-width: 900px) {
    .testimonial-card {
        flex: 0 0 100%;
    }
}

.cta {
    background: var(--accent-orange);
    color: #fff;
    text-align: center;
    padding: 20px 20px;
}

.cta h2 {
    font-size: 2.6rem;
    margin-bottom: 12px;
}

.cta p {
    opacity: 0.9;
    margin-bottom: 30px;
}

.cta-btn {
    padding: 14px 36px;
    background: #fff;
    color: #1e3a8a;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: 0.35s;
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.cta-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(6px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.cta-modal.active {
    display: flex;
}

.cta-modal-content {
    background: #fff;
    padding: 35px;
    width: 100%;
    max-width: 420px;
    border-radius: 18px;
    position: relative;
    animation: scaleIn 0.35s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.cta-modal-content h3 {
    text-align: center;
    margin-bottom: 20px;
    color: #1e3a8a;
}

.cta-modal-content input,
.cta-modal-content select {
    width: 100%;
    padding: 12px 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #cbd5e1;
}

.cta-modal-content button {
    width: 100%;
    padding: 12px;
    background: var(--accent-orange);
    color: #fff;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
}

.close {
    position: absolute;
    right: 16px;
    top: 12px;
    font-size: 24px;
    cursor: pointer;
    color: #475569;
}

@media (max-width: 768px) {
    .cta h2 {
        font-size: 2rem;
    }
}

.footer-modern {
    background: linear-gradient(180deg, #f8fafc, #ffffff);
    padding: 70px 0 0;
    font-family: "Segoe UI", sans-serif;
}

.footer-wrapper {
    max-width: 1400px;
    margin: auto;
    padding: 0 4%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-card {
    width: 100%;
    background: #ffffff;
    border-radius: 18px;
    padding: 36px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.footer-card:hover {
    transform: translateY(-6px);
}

.footer-card h3 {
    font-size: 1.5rem;
    color: #1e3a8a;
    margin-bottom: 18px;
}

.footer-card h3::after {
    content: "";
    width: 260px;
    height: 3px;
    background: #1e3a8a;
    display: block;
    margin-top: 6px;
    border-radius: 10px;
}

.address {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 22px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.contact-item a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.icon {
    font-size: 1.1rem;
}

.footer-card iframe {
    width: 100%;
    height: 260px;
    border-radius: 14px;
    border: none;
    margin-top: 18px;
}

.footer-bottom-modern {
    margin-top: 10px;
    padding: 16px 10px;
    background: #f1f5f9;
    text-align: center;
    font-size: 0.9rem;
    color: #64748b;
}

.full-width-card {
    width: 100%; 
    margin-bottom: 40px;
}

.footer-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.map-section iframe {
    width: 100%;
    height: 280px;
    border-radius: 14px;
    border: none;
}

.address-section,
.map-section {
    flex: 1;
}

@media screen and (max-width: 767px) {
    .footer-wrapper {
        grid-template-columns: 1fr; 
    }

    .map-section iframe {
        height: 220px;
    }
}

@media screen and (min-width: 768px) {
    .footer-card-content {
        flex-direction: row;
        gap: 30px;
        align-items: center;
    }

    .map-section {
        flex: 2;   
    }

    .address-section {
        flex: 1;
    }

    .map-section iframe {
        height: 240px;
    }
}

.whatsapp-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #25D366, #1fa855);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 12px 30px rgba(37, 211, 102, 0.45),
        inset 0 0 0 1px rgba(255, 255, 255, 0.25);
    z-index: 9999;
    transition: all 0.35s ease;
}

.wa-icon {
    width: 34px;
    height: 34px;
    color: #fff;
}

.whatsapp-float:hover {
    transform: translateY(-4px) scale(1.06);
    box-shadow:
        0 18px 40px rgba(37, 211, 102, 0.6),
        inset 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.whatsapp-float::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    animation: wa-pulse 2.4s infinite;
}

@keyframes wa-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
    }

    70% {
        box-shadow: 0 0 0 22px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        width: 56px;
        height: 56px;
        right: 16px;
        bottom: 16px;
    }

    .wa-icon {
        width: 30px;
        height: 30px;
    }
}