:root {
    --primary-color: #E72828;
    /* Red */
    --text-dark: #1A1A1A;
    --text-blue: #0A2540;
    /* Deep Blue for headings based on screenshot */
    --text-grey: #666666;
    --white: #FFFFFF;
    --light-grey: #F5F5F5;
    --font-main: 'Montserrat', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-weight: 700;
    letter-spacing: 1px;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: #c02020;
    border-color: #c02020;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(231, 40, 40, 0.3);
}

.btn-white {
    background-color: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-2px);
}

.section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.section.about {
    /* No margin top needed if using wrapper approach, but let's keep overlap logic */
    border-radius: 40px 40px 0 0;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.1);
    /* Ensure background is solid white to cover hero */
    background: white;
    position: relative;
    z-index: 10;
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-blue);
    text-transform: uppercase;
    margin-bottom: 20px;
}

/* Header */
.header {
    background: transparent;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    background: var(--white);
    padding: 10px 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    padding: 5px 10px;
    display: inline-block;
}

.logo-img {
    height: 60px;
    transition: height 0.3s ease;
}

.header.scrolled .logo-img {
    height: 50px;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 700;
    font-size: 13px;
    color: var(--white);
    /* White text on transparent hero */
    text-transform: uppercase;
    position: relative;
    padding-bottom: 5px;
}

.header.scrolled .nav-list a {
    color: var(--text-dark);
    /* Dark text on white header */
}

.nav-list a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

/* Navbar Dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 260px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1001;
    border-top: 3px solid var(--primary-color);
    padding: 10px 0;
    top: 100%;
}

.dropdown-content a {
    color: var(--text-dark) !important;
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    font-weight: 600;
    text-align: left;
    transition: all 0.2s;
}

.dropdown-content a::after {
    display: none;
    /* Remove bottom border from main nav links */
}

.dropdown-content a:hover {
    background-color: #f5f5f5;
    color: var(--primary-color) !important;
    padding-left: 25px;
    /* Slight movement on hover */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInUp 0.3s ease;
}

/* Update nav list item to handle dropdown alignment */
.nav-list li {
    display: flex;
    align-items: center;
    height: 100%;
}

/* Services List Links */
.services-list a {
    color: var(--text-blue);
    display: inline-block;
    width: 100%;
    transition: all 0.2s;
}

.services-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.hero {
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: fixed;
    /* FIXED HERO */
    top: 0;
    left: 0;
    z-index: 0;
    /* Changed from -1 to 0 to be visible */
    /* Behind content */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
}

.hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    transition: background 0.05s ease-out;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: -2px;
    line-height: 1.1;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.hero p {
    font-size: 22px;
    margin-bottom: 50px;
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    /* Image column larger */
    gap: 80px;
    align-items: center;
}

.about-image-wrapper {
    position: relative;
    padding-left: 20px;
    /* Space for badge */
}

.experience-badge {
    position: absolute;
    bottom: -30px;
    left: 0;
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 4px;
    text-align: center;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.experience-badge .years {
    display: block;
    font-size: 42px;
    font-weight: 900;
    line-height: 1;
}

.experience-badge .text {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    box-shadow: 20px 20px 0px rgba(231, 40, 40, 0.1);
    /* Decorative offset shadow */
    transition: transform 0.3s ease;
}

.about-image:hover img {
    transform: translate(-5px, -5px);
    box-shadow: 25px 25px 0px rgba(231, 40, 40, 0.2);
}

.about-text .lead-text {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.about-features {
    margin-top: 30px;
}

.about-features li {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.about-features i {
    font-size: 24px;
    color: var(--primary-color);
    margin-top: 5px;
}

.about-features strong {
    display: block;
    font-size: 16px;
    color: var(--text-blue);
    margin-bottom: 5px;
}

.about-features p {
    font-size: 14px;
    margin: 0;
    line-height: 1.5;
}

.about-text .subtitle {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: 2px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-grey);
}

/* Services */
.services {
    background-color: #f9f9f9;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.services-list {
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.services-list li {
    margin-bottom: 0px;
}

.services-list a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background: var(--white);
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-weight: 600;
    color: var(--text-blue);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    font-size: 13px;
    /* Slightly compact text */
    height: 100%;
}

.services-list a i {
    font-size: 18px;
    color: var(--primary-color);
    margin-right: 12px;
    width: 20px;
    /* Fixed width for alignment */
    text-align: center;
    transition: transform 0.3s ease;
}

.services-list a::after {
    display: none;
}

.services-list a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
    border-left-color: var(--primary-color);
}

.services-list a.disabled-service {
    opacity: 1;
    cursor: default;
    background: var(--white);
}

.services-list a.disabled-service:hover {
    transform: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    /* Match default shadow */
    border-left-color: transparent;
}



.services-list a.disabled-service:hover i {
    transform: none;
}

.services-note {
    margin-top: 40px;
    padding: 20px;
    background: #eef2f5;
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-grey);
    border-left: 4px solid var(--text-blue);
}

.services-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Fonts & Professionalism */
body {
    font-family: var(--font-main);
    color: var(--text-dark);
    line-height: 1.8;
    /* Increased for better readability */
    font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    letter-spacing: -0.5px;
    /* Tighter, more modern */
}

/* Features */
.features {
    padding: 120px 0;
    /* Increased padding */
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.feature-item {
    padding: 30px;
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 60px;
    /* Bigger icons */
    color: var(--primary-color);
    margin-bottom: 30px;
}

.features h4 {
    font-size: 22px;
    /* Bigger titles */
    font-weight: 800;
    color: var(--text-blue);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.features p {
    font-size: 16px;
    /* Bigger text */
    color: var(--text-grey);
    line-height: 1.6;
    max-width: 250px;
    margin: 0 auto;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animation Utility Classes */
.animate-on-scroll {
    will-change: opacity, transform;
}

.hidden-el {
    opacity: 0;
}

.fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.fade-in-left {
    animation: fadeInLeft 1s ease-out forwards;
}

.fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}

/* Delay Utils */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

/* Clients */
.clients-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.client-column {
    background: var(--white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.client-column:hover {
    transform: translateY(-5px);
}

.client-column img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    margin-bottom: 25px;
    border-radius: 8px;
}

.client-column h3 {
    font-size: 24px;
    color: var(--text-blue);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.client-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
}

.client-list li {
    margin-bottom: 15px;
    color: var(--text-grey);
    font-size: 15px;
    position: relative;
    padding-left: 25px;
    font-weight: 500;
    transition: color 0.2s;
}

.client-list li::before {
    content: "\f00c";
    /* fa-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--primary-color);
    position: absolute;
    left: 0;
    font-size: 12px;
    top: 3px;
}

.client-list li:hover {
    color: var(--text-blue);
}

/* Contact */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 16px;
    color: var(--text-dark);
}

.contact-info .info-item i {
    color: var(--primary-color);
    font-size: 20px;
    width: 25px;
}

.map-container {
    margin-top: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    overflow: hidden;
}

.contact-form-wrapper {
    background: var(--light-grey);
    padding: 40px;
    border-radius: 5px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-blue);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-main);
    background: var(--white);
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #fff;
    padding: 80px 0 30px;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col a {
    color: #bbb;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-col p {
    color: #bbb;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-col i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

.footer-logo {
    height: 45px;
    /* Slightly smaller to fit better */
    filter: brightness(0) invert(1);
    margin-bottom: 25px;
    display: block;
    /* Ensure it takes its own line */
}

/* Social Icons */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 35px;
    height: 35px;
    background-color: #333;
    color: #fff;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 16px;
    /* Ensure icon size is reasonable */
}

.social-btn i {
    margin: 0 !important;
    padding: 0 !important;
    width: auto !important;
    background: none !important;
    color: #fff !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.social-btn:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.social-btn:hover i {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    text-align: center;
    color: #777;
}

/* =========================================
   MOBILE OPTIMIZATION & RESPONSIVE DESIGN
   ========================================= */

/* Mobile Menu Button - Initial State */
.mobile-menu-btn {
    display: none;
    /* Hidden by default */
    font-size: 26px;
    color: var(--primary-color);
    cursor: pointer;
    z-index: 2000;
    padding: 10px;
}

/* Tablet & Mobile Styles */
@media (max-width: 968px) {

    /* Header & Navigation Refactoring */
    .mobile-menu-btn {
        display: block;
        /* Show hamburger */
    }

    .header-container {
        justify-content: space-between;
        padding: 0 10px;
    }

    /* Mobile Nav Drawer */
    .nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
        padding: 90px 30px 40px;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1500;
        display: flex;
        flex-direction: column;
        overflow-y: auto;
    }

    .nav.active {
        right: 0;
    }

    /* Mobile Menu Items */
    .nav-list {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }

    .nav-list li {
        width: 100%;
        display: block;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-list a {
        color: var(--text-dark);
        /* Dark text on white menu */
        font-size: 16px;
        display: block;
        padding: 15px 5px;
        font-weight: 600;
    }

    .nav-list a::after {
        display: none;
        /* No hover underline on mobile */
    }

    .nav-list a:hover {
        color: var(--primary-color);
    }

    /* Mobile Dropdown */
    .dropdown {
        display: block;
        width: 100%;
    }

    .dropbtn i {
        float: right;
        transition: transform 0.3s;
    }

    .dropdown:hover .dropbtn i {
        transform: rotate(180deg);
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--primary-color);
        padding-left: 10px;
        display: none;
        background: #fdfdfd;
        width: 100%;
        margin-top: 5px;
    }

    .dropdown:hover .dropdown-content {
        display: block;
        animation: none;
    }

    /* Hero Section Optimization */
    .hero h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .hero p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 50px;
    }

    .btn {
        width: 100%;
        /* Full width buttons on mobile */
        text-align: center;
    }

    /* General Layout Stacking (Single Column) */
    .about-grid,
    .services-grid,
    .about-grid,
    .contact-grid,
    .clients-grid,
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    /* Section Spacing Reduction */
    .section {
        padding: 50px 0;
    }

    .section-title {
        font-size: 24px;
        margin-bottom: 15px;
    }

    /* FEATURE VALUES (2x2 Compact Grid) */
    .features-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 15px;
        padding-right: 0;
        margin-right: 0;
    }

    .feature-item {
        padding: 15px 10px;
        border: 1px solid #f0f0f0;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
        /* Soft shadow */
        min-width: 0;
    }

    .icon-box {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .features h4 {
        font-size: 14px;
        margin-bottom: 5px;
    }

    .features p {
        font-size: 12px;
        line-height: 1.3;
        color: #888;
    }

    /* SERVICES ("App Button" Grid) */
    .services-list {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 10px;
    }

    .services-list a {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 15px 5px;
        height: 100%;
        background: #fff;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
        border: 1px solid #f5f5f5;
        font-size: 13px;
        font-weight: 600;
        line-height: 1.2;
    }

    .services-list a i {
        margin: 0 0 8px 0;
        font-size: 24px;
        width: auto;
        color: var(--primary-color);
    }

    .services-list a:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    /* GALLERY (2-Column Grid with View More) */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item img {
        height: 160px;
        /* Force uniform height */
        object-fit: cover;
    }

    /* Section Specific Adjustments */
    .about-image-wrapper {
        order: -1;
        padding-left: 0;
        margin-bottom: 10px;
    }

    .experience-badge {
        right: 0;
        left: auto;
        bottom: -15px;
        padding: 12px 20px;
    }

    /* Maximize width usage */
    .container {
        padding: 0 15px;
    }

    .experience-badge .years {
        font-size: 32px;
    }

    .section-title {
        font-size: 24px;
    }

    /* Contact & Form */
    .map-container iframe {
        height: 250px;
    }

    .contact-form-wrapper {
        padding: 20px;
    }

    /* Footer */
    .footer-grid {
        text-align: center;
        gap: 30px;
    }

    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
        /* Centered underline */
    }

    .social-links {
        justify-content: center;
    }

    .footer-logo {
        margin: 0 auto 20px auto;
    }
}

@media (max-width: 480px) {

    /* Extra Small Devices */
    .hero h1 {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .hero-buttons {
        padding: 0 20px;
    }
}

/* Main Wrapper to push content below fixed hero */
.main-wrapper {
    position: relative;
    z-index: 10;
    background: white;
    margin-top: 100vh;
    /* Start below full hero height */
    border-radius: 40px 40px 0 0;
    /* Rounded top corners */
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.15);
    /* Shadow for depth */
}

/* Ensure footer is handled */
.footer {
    position: relative;
    z-index: 10;
    background: #1A1A1A;
}

/* WhatsApp Button */
/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.whatsapp-float.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.whatsapp-float:hover {
    transform: scale(1.1) translateY(0);
    background-color: #128c7e;
    color: #fff;
    box-shadow: 2px 4px 10px rgba(0, 0, 0, 0.4);
}

.whatsapp-float i {
    margin-top: 2px;
}