
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

         :root {
            --primary-red:#7d963d;
            --dark-red: #7d963d;
            --light-red: #c11b18;
            --accent-gold: #ffc107;
            --dark-bg: #1a1a1a;
            --light-gray: #f5f5f5;
            --text-dark: #333;
            --text-light: #666;
            --white: #ffffff;
            --shadow: 0 2px 15px rgba(0,0,0,0.1);
            --shadow-lg: 0 8px 25px rgba(211, 47, 47, 0.15);
        } 
    


        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--text-dark);
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background Icons */
        .background-icons {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 0;
            pointer-events: none;
            opacity: 0.08;
        }

        .floating-icon {
            position: absolute;
            font-size: 3rem;
            animation: floatAround 20s ease-in-out infinite;
            opacity: 0.6;
        }

        .floating-icon:nth-child(1) {
            top: 10%;
            left: 10%;
            animation-duration: 25s;
            animation-delay: 0s;
        }

        .floating-icon:nth-child(2) {
            top: 20%;
            right: 15%;
            animation-duration: 30s;
            animation-delay: 2s;
        }

        .floating-icon:nth-child(3) {
            top: 60%;
            left: 20%;
            animation-duration: 28s;
            animation-delay: 4s;
        }

        .floating-icon:nth-child(4) {
            bottom: 15%;
            right: 10%;
            animation-duration: 35s;
            animation-delay: 1s;
        }

        .floating-icon:nth-child(5) {
            top: 40%;
            left: 5%;
            animation-duration: 32s;
            animation-delay: 3s;
        }

        .floating-icon:nth-child(6) {
            top: 70%;
            right: 25%;
            animation-duration: 27s;
            animation-delay: 5s;
        }

        .floating-icon:nth-child(7) {
            top: 30%;
            left: 50%;
            animation-duration: 33s;
            animation-delay: 2.5s;
        }

        .floating-icon:nth-child(8) {
            bottom: 25%;
            left: 30%;
            animation-duration: 29s;
            animation-delay: 4.5s;
        }

        @keyframes floatAround {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(30px, -30px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translate(-20px, 20px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translate(40px, 10px) rotate(270deg) scale(1.05);
            }
        }

        /* Main Content Wrapper */
        .main-content {
            position: relative;
            z-index: 1;
        }

        /* Header & Navigation */
        header {
            /* position: sticky;
            top: 0;
            z-index: 1000;
            background: var(--white);
            box-shadow: var(--shadow);
            padding: 1rem 0;
            border-bottom: 3px solid var(--primary-red); */
                position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.8rem 0;
    border-bottom: 3px solid var(--primary-red);

        }

        nav {
            max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
        }

        .logo-container {
            display: flex;
            align-items: center;
            gap: 1rem;
            z-index: 1001;
        }

        .logo-img {
            /* width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red), var(--light-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            font-size: 1.5rem;
            box-shadow: var(--shadow-lg); */
             width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
        }
.logo-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

        .logo-text {
            font-size: 1.3rem;
            font-weight: bold;
            color: var(--primary-red);
            text-decoration: none;
        }

        .logo-tagline {
            font-size: 0.7rem;
            color: var(--text-light);
            font-weight: 500;
            margin-top: -0.3rem;
        }

        /* Mobile Menu Toggle */
        .mobile-menu-toggle {
            display: none;
            flex-direction: column;
            gap: 4px;
            cursor: pointer;
            padding: 0.5rem;
            z-index: 1001;
            transition: transform 0.3s ease;
        }

        .mobile-menu-toggle:hover {
            transform: scale(1.1);
        }

        .mobile-menu-toggle span {
            width: 30px;
            height: 3px;
            background: var(--primary-red);
            border-radius: 2px;
            transition: all 0.3s ease;
        }

        .mobile-menu-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(8px, 8px);
        }

        .mobile-menu-toggle.active span:nth-child(2) {
            opacity: 0;
        }

        .mobile-menu-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(8px, -8px);
        }

        .nav-links {
            display: flex;
            list-style: none;
            gap: 2rem;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--text-dark);
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a:hover {
            color: var(--primary-red);
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }

        .nav-links a:hover::after {
            width: 100%;
        }
        /* Mobile Responsive */
@media (max-width: 768px) {
    nav {
        padding: 0 1rem;
    }

    .logo-img {
        width: 50px;
        height: 50px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-tagline {
        font-size: 0.65rem;
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 2rem 1rem;
        gap: 2rem;
    }
}

        /* NEW: Expertise Dropdown */
        .expertise-dropdown {
            position: relative;
        }

        .expertise-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            font-weight: 600;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .expertise-toggle:hover {
            color: var(--primary-red);
        }

        .expertise-toggle::after {
            content: '▼';
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .expertise-toggle.active::after {
            transform: rotate(180deg);
        }

        /* NEW: Expertise Menu */
        .expertise-menu {
            position: absolute;
            top: 100%;
            left: 0;
            background: var(--white);
            min-width: 280px;
            border-radius: 10px;
            box-shadow: 0 10px 30px rgba(122, 166, 65, 0.2);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            padding: 1rem;
            margin-top: 0.5rem;
            border-top: 3px solid var(--primary-red);
            z-index: 999;
        }

        .expertise-menu.active {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .expertise-menu ul {
            list-style: none;
            padding: 0;
        }

        .expertise-menu li {
            padding: 0.8rem;
            border-bottom: 1px solid #f0f0f0;
            transition: all 0.3s ease;
        }

        .expertise-menu li:last-child {
            border-bottom: none;
        }

        .expertise-menu li:hover {
            background: linear-gradient(135deg, rgba(122, 166, 65, 0.1), rgba(101, 172, 9, 0.1));
            padding-left: 1.2rem;
        }

        .expertise-menu li a {
            color: var(--text-dark);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 500;
        }

        .expertise-menu li a::before {
            content: '🏢';
            font-size: 1.2rem;
        }

        .expertise-menu li:nth-child(2) a::before {
            content: '🏠';
        }

        .expertise-menu li:nth-child(3) a::before {
            content: '⚕️';
        }

        .expertise-menu li:nth-child(4) a::before {
            content: '🎓';
        }

        .expertise-menu li:nth-child(5) a::before {
            content: '🛒';
        }

        .expertise-menu li:nth-child(6) a::before {
            content: '🤝';
        }

        .expertise-menu li:nth-child(7) a::before {
            content: '🎯';
        }

        /* Mega Menu Service Dropdown */
        .service-dropdown {
            position: static;
        }

        .service-toggle {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            padding: 0.5rem 0;
            font-weight: 600;
            color: var(--text-dark);
            transition: color 0.3s ease;
        }

        .service-toggle:hover {
            color: var(--primary-red);
        }

        .service-toggle::after {
            content: '▼';
            font-size: 0.7rem;
            transition: transform 0.3s ease;
        }

        .service-toggle.active::after {
            transform: rotate(180deg);
        }

        /* UPDATED: Mega Menu Container with Scrolling */
      .mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    width: 95%;
    max-width: 1300px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
    z-index: 999;
    pointer-events: none;
}


        /* UPDATED: Custom scrollbar for mega menu */
        .mega-menu::-webkit-scrollbar {
            width: 8px;
        }

        .mega-menu::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .mega-menu::-webkit-scrollbar-thumb {
            background: var(--primary-red);
            border-radius: 10px;
        }

        .mega-menu::-webkit-scrollbar-thumb:hover {
            background: var(--dark-red);
        }

       .mega-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

        .mega-menu-content {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 2rem;
            padding: 2.5rem;
            background: linear-gradient(135deg, #fff5f5 0%, var(--white) 100%);
        }

        .service-category {
            animation: fadeInScale 0.5s ease-out;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .service-category-header {
            display: flex;
            align-items: center;
            gap: 0.8rem;
            margin-bottom: 1.2rem;
            padding: 0.8rem;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 10px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            text-decoration: none;
        }

        .service-category-header:hover {
            transform: translateX(5px);
            box-shadow: var(--shadow-lg);
        }

        .service-icon {
            font-size: 1.5rem;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-5px);
            }
        }

        .service-category-header h3 {
            color: var(--white);
            font-weight: 700;
            font-size: 1rem;
            letter-spacing: 0.3px;
        }

        .service-list {
            list-style: none;
            padding-left: 0;
        }

        .service-list li {
            margin-bottom: 0.8rem;
            position: relative;
            padding-left: 1.2rem;
        }

        .service-list li::before {
            content: '●';
            position: absolute;
            left: 0;
            color: var(--primary-red);
            font-size: 0.8rem;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.5;
            }
        }

        .service-list li a {
            color: var(--text-dark);
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .service-list li a:hover {
            color: var(--primary-red);
            transform: translateX(3px);
            font-weight: 600;
        }

        .mega-menu-cta {
            grid-column: 1 / -1;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            padding: 1.5rem;
            border-radius: 10px;
            text-align: center;
            margin-top: 1rem;
            animation: slideInUp 0.6s ease-out;
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .mega-menu-cta h4 {
            color: var(--white);
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }

        .mega-menu-cta p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .phone-btn {
            background: var(--white);
            color: var(--primary-red);
            padding: 0.7rem 1.5rem;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 700;
            transition: all 0.3s ease;
            box-shadow: var(--shadow);
            display: inline-block;
        }

        .phone-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: var(--shadow-lg);
        }

       /* NEW: Improved Certificate Section - Badge Style */
.google-certified-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
    margin: 4rem 0;
}

.google-certified-container {
    max-width: 1400px;
    margin: 0 auto;
}

.google-certified-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 700;
}

.google-certified-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 4rem;
}

.certifications-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem 4rem;
    margin-top: 3rem;
}

.certification-badge-item {
    transition: all 0.3s ease;
    filter: grayscale(0%);
}

.certification-badge-item:hover {
    transform: scale(1.1);
    filter: grayscale(0%) brightness(1.1);
}

.certification-badge-item img {
    max-width: 140px;
    max-height: 140px;
    object-fit: contain;
    display: block;
}

/* IMPROVED: Floating WhatsApp Chat Button with Human Icon */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0;
    text-decoration: none;
    animation: floatWhatsApp 3s ease-in-out infinite;
    max-width: 280px;
    border: 2px solid #e0e0e0;
}

.floating-whatsapp:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.whatsapp-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    flex-shrink: 0;
    margin: 15px;
    box-shadow: 0 4px 15px rgba(122, 166, 65, 0.3);
}

.whatsapp-content {
    padding: 15px 15px 15px 0;
    flex: 1;
}

.whatsapp-greeting {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-bottom: 3px;
    font-weight: 500;
}

.whatsapp-company {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.whatsapp-message {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
}

.whatsapp-click-text {
    font-size: 0.75rem;
    color: var(--primary-red);
    font-weight: 600;
    margin-top: 5px;
    display: inline-block;
}

/* IMPROVED: Mega Menu Hover Fix */
.service-dropdown {
    position: relative;
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--white);
    width: 95%;
    max-width: 1300px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    overflow-x: hidden;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-red);
    z-index: 999;
    pointer-events: none;
}


.mega-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* NEW: Consultation Popup Modal */
.consultation-popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    animation: fadeIn 0.3s ease;
}

.consultation-popup.active {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.popup-content {
  background: var(--white);
    border-radius: 15px;
    padding: 2rem 1.8rem;
    max-width: 420px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s ease;
    text-align: center;
    /* REMOVED: max-height and overflow-y */
    overflow: visible;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.popup-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 1.8rem;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
    border: none;
    line-height: 1;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

/* Custom scrollbar for popup */

.popup-close:hover {
    color: var(--primary-red);
    background: rgba(122, 166, 65, 0.1);
    transform: rotate(90deg);
}

.popup-icon {
    font-size: 3rem;
    margin-bottom: 0.8rem;
}

.popup-content h2 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
}

.popup-content h2 span {
    color: var(--primary-red);
}

.popup-content p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
    font-size: 0.9rem;
}
.popup-form {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.popup-input {
     padding: 0.75rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
    width: 100%;
    background: var(--white);
}

.popup-input:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(122, 166, 65, 0.1);
}
/* Fix for select dropdown to show all options with scrolling */
.popup-input[type="text"],
.popup-input[type="tel"],
.popup-input[type="email"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

select.popup-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237AA641' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 1.2rem;
    padding-right: 2.5rem;
}
select.popup-input::-ms-expand {
    display: none;
}

/* Ensure select options are visible and scrollable */
select.popup-input option {
    padding: 0.5rem;
    background: var(--white);
    color: var(--text-dark);
}

/* Mobile Safari fix for select */
@supports (-webkit-touch-callout: none) {
    select.popup-input {
        background-image: none;
        padding-right: 1rem;
    }
}

.popup-submit-btn {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    color: var(--white);
    padding: 0.85rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.popup-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(122, 166, 65, 0.3);
}

.popup-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
    margin-top: 1.2rem;
    text-align: left;
}
.popup-feature {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

.popup-feature::before {
    content: '✓';
    color: var(--primary-red);
    font-weight: bold;
    font-size: 1rem;
}

/* Add backdrop blur effect */
.consultation-popup::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backdrop-filter: blur(5px);
    z-index: -1;
}
.popup-close-hint {
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 1rem;
    opacity: 0.8;
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .mega-menu {
        position: static !important;
        margin: 1rem 0 !important;
        max-height: 0;
        overflow: hidden;
        border-radius: 10px;
        transition: max-height 0.4s ease;
        box-shadow: none;
        transform: none !important;
        width: 100%;
    }

    .mega-menu.active {
        max-height: 500px !important;
        overflow-y: auto !important;
    }

    .mega-menu-content {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .popup-content {
        padding: 1.8rem 1.5rem;
        max-width: 95%;
    }
     .popup-content h2 {
        font-size: 1.3rem;
    }

    .popup-icon {
        font-size: 2.5rem;
    }

    .popup-features {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .popup-feature {
        font-size: 0.75rem;
    }
}
@media (max-width: 480px) {
    .popup-content {
        padding: 1.5rem 1.2rem;
    }

    .popup-content h2 {
        font-size: 1.2rem;
    }

    .popup-close {
        font-size: 1.5rem;
        width: 30px;
        height: 30px;
    }
}

        /* Hero Section */
        .hero {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem 1rem;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(138, 237, 39, 0.1);
            color: var(--primary-red);
            padding: 0.5rem 1rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 1rem;
            border: 1px solid var(--primary-red);
            animation: pulseGlow 2s ease-in-out infinite;
        }

        @keyframes pulseGlow {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.3);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(211, 47, 47, 0);
            }
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 1rem;
            line-height: 1.2;
            color: #7d963d;
        }

        .hero-content h1 span {
            color:#d87928;
            position: relative;
        }

        .hero-content h1 span::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
            border-radius: 2px;
        }

        .tagline {
            font-size: 1.3rem;
            color: black;
            font-weight: 400;
            margin-bottom: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            animation: slideIn 0.8s ease-out;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(-20px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-subtitle {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            line-height: 1.8;
        }

        .hero-input-group {
            display: flex;
            margin-bottom: 2rem;
            gap: 0.5rem;
            animation: fadeInUp 1s ease-out 0.3s both;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-input-group input {
            flex: 1;
            padding: 0.9rem 1.2rem;
            border: 2px solid #ddd;
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }

        .hero-input-group input:focus {
            outline: none;
            border-color: var(--primary-red);
            box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
        }

        .cta-btn {
            background: #d87928;

            color: var(--white);
            padding: 0.9rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: var(--accent-gold);
            transition: left 0.3s ease;
            z-index: -1;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(211, 47, 47, 0.3);
        }

        .cta-btn:hover::before {
            left: 0;
        }

        .hero-partners {
            display: flex;
            gap: 1rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            align-items: center;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .partner-logo {
            height: 45px;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-weight: 600;
            color: var(--text-dark);
        }

        /* ================================================
           IMPROVED SALES GRAPH ANIMATION
           ================================================ */

        .hero-image {
            position: relative;
            animation: smoothFloat 4s ease-in-out infinite;
        }

        @keyframes smoothFloat {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-15px);
            }
        }

        .transformation-container {
            width: 100%;
            height: auto;
            background: linear-gradient(135deg, #0f1419 0%, #1a1f2e 30%, #0d1b2a 60%, #1b263b 100%);
            border-radius: 25px;
            padding: 2rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
            border: 2px solid rgba(211, 47, 47, 0.2);
            min-height: 450px;
        }

        /* Animated Background Glow */
        .transformation-container::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(211, 47, 47, 0.1) 0%, transparent 60%);
            animation: rotateGlow 20s linear infinite;
        }

        @keyframes rotateGlow {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* Chart Container Styling */
        .chart {
            flex: 1;
            width: 100%;
            max-width: 350px;
            background: rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            padding: 2rem 1.5rem;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            z-index: 2;
            border: 1px solid rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            animation: slideInLeft 0.8s ease-out;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chart.after {
            animation: slideInRight 0.8s ease-out;
        }

        @keyframes slideInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .chart h2 {
            text-align: center;
            margin-bottom: 1.5rem;
            font-size: 1rem;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .chart.before h2 {
            color: #ff6b6b;
            text-shadow: 0 0 10px rgba(255, 107, 107, 0.4);
        }

        .chart.after h2 {
            color: #ffc107;
            text-shadow: 0 0 10px rgba(255, 193, 7, 0.4);
        }

        /* Bars Container */
        .bars {
            display: flex;
            justify-content: space-between;
            align-items: flex-end;
            height: 180px;
            gap: 0.8rem;
            margin-bottom: 1.5rem;
        }

        .bar {
            flex: 1;
            border-radius: 6px;
            position: relative;
            overflow: hidden;
            min-width: 30px;
            animation: growBar 1.2s ease-in-out forwards;
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.3);
            transition: all 0.3s ease;
        }

        .bar:hover {
            filter: brightness(1.2);
            transform: scaleY(1.05);
        }

        /* Before Chart - Fluctuating Pattern */
        .chart.before .bar {
            background: linear-gradient(180deg, #ff6b6b 0%, #ee5a6f 50%, #ff4757 100%);
            box-shadow: 0 0 15px rgba(255, 107, 107, 0.5);
        }

        .chart.before .bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent);
            animation: shimmerRed 1.5s ease-in-out infinite;
        }

        @keyframes shimmerRed {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-3px);
            }
        }

        /* Before Chart Heights - Random Fluctuation */
        .chart.before .bar:nth-child(1) {
            height: 65%;
            animation-delay: 0.1s;
        }
        .chart.before .bar:nth-child(2) {
            height: 45%;
            animation-delay: 0.2s;
        }
        .chart.before .bar:nth-child(3) {
            height: 70%;
            animation-delay: 0.3s;
        }
        .chart.before .bar:nth-child(4) {
            height: 50%;
            animation-delay: 0.4s;
        }
        .chart.before .bar:nth-child(5) {
            height: 60%;
            animation-delay: 0.5s;
        }

        /* After Chart - Growing Pattern */
        .chart.after .bar {
            background: linear-gradient(180deg, #ffc107 0%, #ffb300 50%, #ff8c00 100%);
            box-shadow: 0 0 20px rgba(255, 193, 7, 0.6);
        }

        .chart.after .bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(180deg, rgba(255, 255, 255, 0.3), transparent);
            animation: shimmerGold 1.5s ease-in-out infinite;
        }

        @keyframes shimmerGold {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-4px);
            }
        }

        /* After Chart Heights - Consistent Growth */
        .chart.after .bar:nth-child(1) {
            height: 35%;
            animation-delay: 0.1s;
        }
        .chart.after .bar:nth-child(2) {
            height: 50%;
            animation-delay: 0.2s;
        }
        .chart.after .bar:nth-child(3) {
            height: 68%;
            animation-delay: 0.3s;
        }
        .chart.after .bar:nth-child(4) {
            height: 85%;
            animation-delay: 0.4s;
        }
        .chart.after .bar:nth-child(5) {
            height: 100%;
            animation-delay: 0.5s;
        }

        @keyframes growBar {
            0% {
                height: 0;
                opacity: 0;
                transform: translateY(20px);
            }
            100% {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Labels Below Bars */
        .labels {
            display: flex;
            justify-content: space-between;
            font-size: 0.75rem;
            margin-top: 1rem;
            gap: 0.5rem;
        }

        .chart.before .labels {
            color: #ff9999;
        }

        .chart.after .labels {
            color: #ffd666;
        }

        .labels span {
            text-align: center;
            flex: 1;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        /* Status Text */
        .chart-status {
            text-align: center;
            font-size: 0.9rem;
            font-weight: 600;
            padding-top: 1rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 1rem;
        }

        .chart.before .chart-status {
            color: #ff9999;
        }

        .chart.after .chart-status {
            color: #ffd666;
        }

        /* Connection Arrow - Center */
        .arrow-connector {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 1rem;
            z-index: 3;
            animation: fadeInScale 0.8s ease-out 0.3s both;
        }

        @keyframes fadeInScale {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .transform-symbols {
            display: flex;
            flex-direction: column;
            gap: 0.8rem;
            font-size: 1.5rem;
        }

        .transform-symbol {
            animation: symbolPulse 2s ease-in-out infinite;
            filter: drop-shadow(0 0 10px rgba(255, 193, 7, 0.6));
        }

        .transform-symbol:nth-child(1) {
            animation-delay: 0s;
        }

        .transform-symbol:nth-child(2) {
            animation-delay: 0.6s;
        }

        .transform-symbol:nth-child(3) {
            animation-delay: 1.2s;
        }

        @keyframes symbolPulse {
            0%, 100% {
                transform: scale(1) rotate(0deg);
                opacity: 0.6;
            }
            50% {
                transform: scale(1.3) rotate(20deg);
                opacity: 1;
            }
        }

        .arrow-line {
            width: 3px;
            height: 60px;
            background: linear-gradient(180deg, transparent, #ffc107, transparent);
            animation: arrowFlow 2s ease-in-out infinite;
            filter: drop-shadow(0 0 8px rgba(255, 193, 7, 0.6));
        }

        @keyframes arrowFlow {
            0% {
                opacity: 0;
                transform: translateY(-20px);
            }
            50% {
                opacity: 1;
            }
            100% {
                opacity: 0;
                transform: translateY(20px);
            }
        }

        /* Testimonials Bar */
        .testimonials-bar {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: var(--white);
            padding: 2.5rem 0;
            text-align: center;
        }

        .testimonials-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            padding: 0 2rem;
        }

        .testimonial-item {
            animation: scaleInUp 0.6s ease-out;
        }

        @keyframes scaleInUp {
            from {
                opacity: 0;
                transform: scale(0.9) translateY(20px);
            }
            to {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        .testimonial-item h3 {
            font-size: 1.3rem;
            margin-bottom: 0.5rem;
        }

        .testimonial-item p {
            font-size: 0.9rem;
            opacity: 0.95;
        }

        .stars {
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
            font-size: 1.7rem;
        }

        /* Results Section */
        .results-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .section-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: var(--text-dark);
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
            border-radius: 2px;
        }

        .results-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
            margin-top: 2rem;
        }

        .result-card {
            background: var(--light-gray);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: all 0.4s ease;
            border-left: 5px solid var(--primary-red);
        }

        .result-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .result-video {
            width: 100%;
            height: 220px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-size: 2rem;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }

        .result-video::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1), transparent);
        }

        .play-icon {
            font-size: 3rem;
            opacity: 0.9;
            transition: all 0.3s ease;
            position: relative;
            z-index: 1;
        }

        .result-video:hover .play-icon {
            transform: scale(1.2) rotate(90deg);
        }

        .result-content {
            padding: 2rem;
        }

        .result-content h3 {
            font-size: 1.3rem;
            margin-bottom: 1rem;
            color: var(--primary-red);
            font-weight: 700;
        }

        .result-quote {
            background: linear-gradient(135deg, rgba(211, 47, 47, 0.05), rgba(255, 193, 7, 0.05));
            padding: 1.2rem;
            border-left: 4px solid var(--primary-red);
            margin-bottom: 1.5rem;
            font-style: italic;
            border-radius: 5px;
        }

        .result-metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
        }

        .metric {
            background: var(--white);
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            border-top: 3px solid var(--primary-red);
            transition: all 0.3s ease;
        }

        .metric:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: bold;
            color: var(--primary-red);
        }

        .metric-label {
            font-size: 0.9rem;
            color: var(--text-light);
            margin-top: 0.5rem;
        }

        .read-case-study {
            display: inline-block;
            margin-top: 1rem;
            color: var(--primary-red);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            position: relative;
        }

        .read-case-study::after {
            content: '→';
            margin-left: 0.5rem;
            transition: transform 0.3s ease;
        }

        .read-case-study:hover::after {
            transform: translateX(5px);
        }

        /* Work With Section */
        .work-with-section {
            background: linear-gradient(135deg, #fff5f5, #ffe0e0);
            padding: 4rem 2rem;
            margin: 4rem 0;
        }

        .work-with-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
        }

        .work-with-content h2 {
            font-size: 2rem;
            margin-bottom: 1.5rem;
            color: var(--text-dark);
        }

        .work-with-content h2 span {
            color: var(--primary-red);
        }

        .work-with-content p {
            color: var(--text-light);
            margin-bottom: 1rem;
            line-height: 1.8;
        }

        .badge {
            display: inline-block;
            background: var(--primary-red);
            color: var(--white);
            padding: 0.6rem 1.2rem;
            border-radius: 25px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 2rem;
            animation: slideInLeft 0.8s ease-out;
        }

        .see-more-btn {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: var(--white);
            padding: 1rem 2rem;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            margin-top: 1rem;
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .see-more-btn::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .see-more-btn:hover::after {
            width: 300px;
            height: 300px;
        }

        .see-more-btn:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-lg);
        }

        .work-with-image {
            display: flex;
            align-items: center;
            justify-content: center;
            animation: fadeInRight 1s ease-out;
        }

        /* Testimonials Section */
        .testimonials-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-top: 3rem;
        }

        .testimonial-card {
            background: var(--light-gray);
            padding: 2rem;
            border-radius: 15px;
            border-left: 5px solid var(--primary-red);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .testimonial-card::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 100px;
            height: 100px;
            background: rgba(211, 47, 47, 0.05);
            border-radius: 50%;
            transform: translate(50%, -50%);
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .testimonial-card p {
            color: var(--text-light);
            margin-bottom: 1.5rem;
            font-size: 0.95rem;
            line-height: 1.8;
            position: relative;
            z-index: 1;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
            position: relative;
            z-index: 1;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            font-weight: bold;
            box-shadow: var(--shadow);
        }

        .author-info h4 {
            font-size: 1rem;
            margin-bottom: 0.25rem;
            color: var(--text-dark);
        }

        .author-info p {
            font-size: 0.85rem;
            color: var(--text-light);
            margin: 0;
        }

        /* AI SEO Section */
        .ai-seo-section {
            background: var(--dark-bg);
            color: var(--white);
            padding: 4rem 2rem;
            margin: 4rem 0;
            position: relative;
            overflow: hidden;
        }

        .ai-seo-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -10%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent);
            border-radius: 50%;
        }

        .ai-seo-container {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .ai-seo-title {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .ai-seo-subtitle {
            text-align: center;
            font-size: 1.1rem;
            margin-bottom: 3rem;
            opacity: 0.95;
        }

        .ai-metrics {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .ai-metric {
            text-align: center;
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 193, 7, 0.3);
            transition: all 0.3s ease;
        }

        .ai-metric:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
        }

        .ai-metric-value {
            font-size: 2.5rem;
            font-weight: bold;
            color: var(--accent-gold);
            margin-bottom: 0.5rem;
        }

        .ai-metric-label {
            font-size: 0.95rem;
            opacity: 0.95;
        }

        .ai-content {
            background: rgba(255, 255, 255, 0.1);
            padding: 2rem;
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-top: 2rem;
            backdrop-filter: blur(10px);
        }

        .ai-content h3 {
            margin-bottom: 1rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 1.3rem;
        }

        .ai-content p {
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Revenue Section */
        .revenue-section {
            max-width: 1200px;
            margin: 4rem auto;
            padding: 0 2rem;
        }

        .revenue-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
            align-items: center;
            margin-top: 2rem;
        }

        .revenue-image {
            /* background: linear-gradient(135deg, #fff5f5, #ffe0e0); */
            /* padding: 2rem;
            /* border-radius: 15px; */
            /* text-align: center;
            box-shadow: var(--shadow); */ 
        }

        /* Thrive Score Section */
        .thrive-score {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: var(--white);
            padding: 2.5rem;
            border-radius: 15px;
            margin-top: 2rem;
            box-shadow: var(--shadow-lg);
        }

        .thrive-score h3 {
            margin-bottom: 1rem;
            font-size: 1.4rem;
            font-weight: 700;
        }

        .score-description {
            line-height: 1.8;
            opacity: 0.95;
        }

        /* Footer */
        footer {
            background: var(--dark-bg);
            color: var(--white);
            padding: 3rem 2rem;
            text-align: center;
            border-top: 3px solid var(--primary-red);
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            font-size: 1.5rem;
            color: var(--primary-red);
            margin-bottom: 1rem;
            font-weight: bold;
        }

        .footer-content p {
            margin-bottom: 1rem;
            opacity: 0.9;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
            flex-wrap: wrap;
        }

        .footer-links a {
            color: var(--accent-gold);
            text-decoration: none;
            transition: color 0.3s ease;
            font-weight: 500;
        }

        .footer-links a:hover {
            color: var(--white);
        }

        /* Video */
        .hero-video {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 20px;
            box-shadow: 
                0 20px 60px rgba(120, 226, 63, 0.3),
                0 0 40px rgba(107, 255, 139, 0.2);
            object-fit: cover;
            display: block;
            border: 3px solid var(--primary-red);
            transition: all 0.4s ease;
        }

        .hero-video:hover {
            box-shadow: 
                0 25px 70px rgba(96, 211, 47, 0.4),
                0 0 60px rgba(142, 232, 97, 0.4);
            transform: scale(1.02);
        }

        /* Video Controls Overlay */
        .video-controls {
            position: absolute;
            bottom: 20px;
            right: 20px;
            z-index: 10;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .hero-image:hover .video-controls {
            opacity: 1;
        }

        .video-play-pause {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: var(--white);
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 20px rgba(112, 219, 54, 0.5);
            transition: all 0.3s ease;
        }

        .video-play-pause:hover {
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(107, 211, 47, 0.7);
        }

        .video-play-pause:active {
            transform: scale(0.95);
        }

        /* Video Loading State */
        .hero-video::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.3s ease;
        }

        .hero-video.loading::before {
            opacity: 0.3;
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .mobile-menu-toggle {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 70px;
                right: -100%;
                width: 80%;
                max-width: 300px;
                height: calc(100vh - 70px);
                background: var(--white);
                flex-direction: column;
                padding: 2rem;
                box-shadow: -5px 0 15px rgba(0,0,0,0.1);
                transition: right 0.4s ease;
                gap: 0;
                align-items: flex-start;
                overflow-y: auto;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                width: 100%;
                padding: 1rem 0;
                border-bottom: 1px solid var(--light-gray);
            }

            .nav-links a {
                display: block;
                width: 100%;
            }

            .service-dropdown {
                width: 100%;
            }

            .service-toggle {
                width: 100%;
                justify-content: space-between;
            }

            /* Expertise dropdown mobile */
            .expertise-dropdown {
                width: 100%;
            }

            .expertise-toggle {
                width: 100%;
                justify-content: space-between;
            }

            .expertise-menu {
                position: static !important;
                margin: 0.5rem 0 !important;
                max-height: 0;
                overflow: hidden;
                transition: max-height 0.4s ease;
                box-shadow: none;
            }

            .expertise-menu.active {
                max-height: 400px !important;
            }

            /* UPDATED: Enable mega menu on mobile with click */
            .mega-menu {
                position: static !important;
                margin: 1rem 0 !important;
                max-height: 0;
                overflow: hidden;
                border-radius: 10px;
                transition: max-height 0.4s ease;
                box-shadow: none;
            }

            .mega-menu.active {
                max-height: 500px !important;
                overflow-y: auto !important;
            }

            .mega-menu-content {
                grid-template-columns: 1fr;
                padding: 1.5rem;
                gap: 1.5rem;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 2rem 1rem;
                gap: 2rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }

            .tagline {
                font-size: 1.1rem;
            }

            .transformation-container {
                flex-direction: column;
                padding: 1.5rem;
                gap: 1.5rem;
                min-height: auto;
                height: auto;
            }

            .chart {
                max-width: 100%;
                width: 100%;
                padding: 1.5rem 1rem;
            }

            .bars {
                height: 150px;
            }

            .chart h2 {
                font-size: 0.95rem;
                margin-bottom: 1rem;
            }

            .labels {
                font-size: 0.7rem;
            }

            .arrow-connector {
                flex-direction: row;
                gap: 0.5rem;
                transform: rotate(90deg);
                margin: 1rem 0;
            }

            .arrow-line {
                width: 60px;
                height: 3px;
            }

            .transform-symbols {
                flex-direction: row;
                gap: 0.5rem;
            }

            .transform-symbol {
                font-size: 1.2rem;
            }

            .testimonials-container {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .results-grid {
                grid-template-columns: 1fr;
            }

            .work-with-container {
                grid-template-columns: 1fr;
            }

            .testimonials-grid {
                grid-template-columns: 1fr;
            }

            .ai-metrics {
                grid-template-columns: 1fr;
            }

            .revenue-grid {
                grid-template-columns: 1fr;
            }

            .hero-input-group {
                flex-direction: column;
            }

            .hero-input-group input,
            .hero-input-group button {
                width: 100%;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .floating-icon {
                font-size: 2rem;
            }

            .hero-video {
                max-width: 100%;
                border-radius: 15px;
            }

            .video-controls {
                bottom: 10px;
                right: 10px;
            }

            .video-play-pause {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            /* Google Certified Section Mobile */
            .certifications-grid {
                grid-template-columns: 1fr;
            }

            /* Floating WhatsApp Mobile */
            .floating-whatsapp {
                bottom: 20px;
                right: 20px;
                padding: 0.8rem 1rem;
            }

            .whatsapp-text {
                font-size: 0.85rem;
            }

            .whatsapp-message {
                font-size: 0.75rem;
            }
        }

        @media (max-width: 480px) {
            .hero-content h1 {
                font-size: 1.5rem;
            }

            nav {
                padding: 0 1rem;
            }

            .results-grid {
                gap: 1rem;
            }

            .result-content {
                padding: 1rem;
            }

            .logo-img {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .logo-text {
                font-size: 1rem;
            }

            .transformation-container {
                padding: 1rem;
                gap: 1rem;
            }

            .chart {
                padding: 1.2rem 0.8rem;
            }

            .bars {
                height: 120px;
            }

            .chart h2 {
                font-size: 0.85rem;
            }

            .bar {
                min-width: 20px;
            }

            .chart-status {
                font-size: 0.8rem;
            }

            .arrow-connector {
                margin: 0.5rem 0;
            }

            .hero-video {
                border-radius: 10px;
                border-width: 2px;
            }

            .floating-whatsapp {
                padding: 0.6rem 0.8rem;
            }

            .whatsapp-icon {
                font-size: 1.5rem;
            }
        }

        /* New Animation */
        /* Business Growth Process Animation */
.business-process-flow {
    margin: 3rem 0;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.process-title {
    text-align: center;
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
}

.process-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-red);
}

.process-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    position: relative;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    min-width: 140px;
    text-align: center;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-step:nth-child(1) { animation-delay: 0.1s; }
.process-step:nth-child(2) { animation-delay: 0.3s; }
.process-step:nth-child(3) { animation-delay: 0.5s; }
.process-step:nth-child(4) { animation-delay: 0.7s; }
.process-step:nth-child(5) { animation-delay: 0.9s; }
.process-step:nth-child(6) { animation-delay: 1.1s; }
.process-step:nth-child(7) { animation-delay: 1.3s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.process-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(122, 166, 65, 0.3);
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .process-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(122, 166, 65, 0.5);
}

.process-icon-wrapper::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px dashed var(--primary-red);
    animation: rotateBorder 10s linear infinite;
    opacity: 0.5;
}

@keyframes rotateBorder {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.process-icon {
    font-size: 2rem;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.process-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 0.5rem;
}

.process-description {
    font-size: 0.75rem;
    color: var(--text-light);
    line-height: 1.4;
}

/* Animated Arrow Between Steps */
.process-arrow {
    flex: 0 0 30px;
    text-align: center;
    font-size: 1.5rem;
    color: var(--primary-red);
    animation: arrowPulse 2s ease-in-out infinite;
    align-self: flex-start;
    margin-top: 30px;
}

@keyframes arrowPulse {
    0%, 100% {
        transform: translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateX(5px);
        opacity: 1;
    }
}

/* Progress Line Animation */
.process-progress-line {
    position: absolute;
    top: 40px;
    left: 80px;
    right: 80px;
    height: 3px;
    background: #e0e0e0;
    z-index: 0;
}

.process-progress-line::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--primary-red), var(--accent-gold));
    animation: progressFill 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes progressFill {
    to { width: 100%; }
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .process-container {
        flex-direction: column;
        gap: 2rem;
    }

    .process-arrow {
        transform: rotate(90deg);
        margin: 0;
    }

    .process-progress-line {
        display: none;
    }

    .process-icon-wrapper {
        width: 70px;
        height: 70px;
    }

    .process-icon {
        font-size: 1.8rem;
    }

    .process-label {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .process-icon-wrapper {
        width: 60px;
        height: 60px;
    }

    .process-icon {
        font-size: 1.5rem;
    }

    .business-process-flow {
        padding: 2rem 1rem;
    }
}

/* Hero Section Certification Logos - CENTERED */
.hero-certifications {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e0e0e0;
    animation: fadeInUp 1s ease-out 0.8s both;
    text-align: center;
}

.certifications-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-light);
    white-space: nowrap;
}

.certification-logos {
    display: flex;
    align-items: start;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.certification-logo {
    transition: all 0.3s ease;
    filter: grayscale(100%) opacity(0.6);
    display: flex;
    align-items: start;
    justify-content: start;
}

.certification-logo:hover {
    filter: grayscale(0%) opacity(1);
    transform: translateY(-3px);
}

.certification-logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .hero-certifications {
        gap: 1rem;
    }

    .certification-logos {
        gap: 1.5rem;
    }

    .certification-logo img {
        height: 28px;
    }
}

@media (max-width: 480px) {
    .certification-logos {
        gap: 1rem;
    }

    .certification-logo img {
        height: 24px;
    }
}
/* logo */



/* UPDATE existing .floating-whatsapp to allow visible overflow */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    left: 30px;
    z-index: 1000;
    background: var(--white);
    color: var(--text-dark);
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 0;
    text-decoration: none;
    animation: floatWhatsApp 3s ease-in-out infinite;
    max-width: 280px;
    border: 2px solid #e0e0e0;
    /* NEW: Ensures the close button (positioned absolute) is visible */
    overflow: visible; 
}

/* NEW: Styles for the Close Button */
.whatsapp-close {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--primary-red);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    z-index: 1002;
    transition: all 0.3s ease;
}

.whatsapp-close:hover {
    background: var(--dark-red);
    transform: scale(1.1) rotate(90deg);
}

/* Mobile Adjustment for Close Button */
@media (max-width: 768px) {
    .whatsapp-close {
        width: 24px;
        height: 24px;
        font-size: 16px;
        top: -8px;
        right: -8px;
    }
}

/* ========================================
   QUICK ABOUT SECTION */
   /* --- 1. CORE VARIABLES & DEFAULTS --- */
/* :root {
    --primary-green: #7d963d;
    --dark-green: #65ac09;
    --accent-orange: #d87928;
    --dark-bg: #1a1a1a;
    --light-gray: #f5f5f5;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --transition: all 0.3s ease;
    --shadow: 0 2px 15px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 25px rgba(125, 150, 61, 0.15);
} */

/* Container Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- 2. MAIN SECTION LAYOUT --- */
.quick-about {
    background: var(--white);
    padding: 100px 20px;
}

.quick-about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: start;
}

/* --- 3. TYPOGRAPHY & TEXT --- */
.quick-about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--primary-green);
}

.quick-about-text h2 span {
    color: var(--accent-orange);
    position: relative;
}

.quick-about-text h2 span::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--accent-orange));
    border-radius: 2px;
}

.quick-about-text > p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 30px;
}

/* --- 4. BUTTON STYLES --- */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: #d87928;
    color: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 1;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(216, 121, 40, 0.3);
}

.btn-primary:hover::before {
    left: 0;
}

.btn i {
    margin-right: 8px;
}

/* --- 5. CERTIFICATION BADGES --- */
.certifications-wrapper {
    margin: 35px 0;
}

.cert-badge {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-left: 5px solid var(--primary-green);
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.cert-badge:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-orange);
    background: linear-gradient(135deg, rgba(125, 150, 61, 0.05), rgba(125, 150, 61, 0.02));
}

.cert-icon {
    width: 70px;
    height: 70px;
    background: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
    padding: 10px;
}

.cert-badge:hover .cert-icon {
    background: linear-gradient(135deg, rgba(125, 150, 61, 0.1), rgba(101, 172, 9, 0.1));
}

.cert-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.cert-info {
    flex: 1;
}

.cert-info h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 700;
}

.cert-info p {
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.cert-info strong {
    color: var(--text-dark);
    font-weight: 600;
}

.cert-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 8px;
}

.cert-location i {
    color: var(--accent-orange);
}

.cert-verified {
    /* display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 10px 15px;
    background: var(--light-gray);
    border-radius: 8px;
    transition: var(--transition); */
    display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            padding: 10px 15px;
            background: var(--light-gray);
            border-radius: 8px;
            transition: var(--transition);
}

.cert-badge:hover .cert-verified {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
}

.cert-verified i {
    font-size: 1.8rem;
    color: var(--primary-green);
    transition: var(--transition);
}

.cert-badge:hover .cert-verified i {
    color: var(--white);
    animation: tickPop 0.4s ease-out;
}

@keyframes tickPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3) rotate(10deg); }
    100% { transform: scale(1) rotate(0deg); }
}

.cert-verified span {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}

.cert-badge:hover .cert-verified span {
    color: var(--white);
}

/* --- 6. STATS CARDS --- */
.quick-about-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background: var(--white);
    border: 2px solid #e0e0e0;
    border-left: 5px solid var(--primary-green);
    padding: 30px 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.stat-card:nth-child(2) {
    border-left-color: var(--dark-green);
}

.stat-card:nth-child(3) {
    border-left-color: var(--accent-orange);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.stat-card:nth-child(2) i {
    color: var(--dark-green);
}

.stat-card:nth-child(3) i {
    color: var(--accent-orange);
}

.stat-card h3 {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* --- 7. RESPONSIVE DESIGN --- */

/* Tablet (Max 992px) */
@media (max-width: 992px) {
    .quick-about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .quick-about-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-card:nth-child(3) {
        grid-column: 1 / -1;
        max-width: 350px;
        margin: 0 auto;
        width: 100%;
    }
}

/* Mobile Large (Max 768px) */
@media (max-width: 768px) {
    .cert-badge {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .cert-icon {
        width: 65px;
        height: 65px;
    }

    .cert-info h4 {
        font-size: 1.2rem;
    }

    .cert-location {
        justify-content: center;
    }

    .cert-verified {
        width: 100%;
        flex-direction: row;
        justify-content: center;
    }

    .quick-about-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-card:nth-child(3) {
        grid-column: auto;
        max-width: none;
    }

    .stat-card {
        padding: 25px 20px;
    }

    .stat-card h3 {
        font-size: 2.5rem;
    }

    .stat-card i {
        font-size: 2.2rem;
    }
}

/* Mobile Small (Max 576px) */
@media (max-width: 576px) {
    .quick-about {
        padding: 60px 20px;
    }

    .quick-about-text h2 {
        font-size: 2rem;
    }
}
 
/* Video section */
.video-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.7);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.play-overlay:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translate(-50%, -50%) scale(1.1);
}

/*Consultation Pop Up */
/* Success Animation Styles */
.success-animation {
    text-align: center;
    margin: 20px 0;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #7d963d, #65ac09);
    color: white;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(125, 150, 61, 0.3);
}

@keyframes scaleIn {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.success-info-box {
    background: rgba(125, 150, 61, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #7d963d;
    margin: 20px 0;
}

.success-info-box a {
    text-decoration: none;
    font-weight: bold;
}

.success-info-box a:hover {
    text-decoration: underline;
}

#formSection, #successSection {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Success Animation Styles */
.success-animation {
    text-align: center;
    margin: 20px 0;
}

.success-checkmark {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    background: linear-gradient(135deg, #7d963d, #65ac09);
    color: white;
    font-size: 50px;
    line-height: 80px;
    border-radius: 50%;
    animation: scaleIn 0.5s ease-out;
    box-shadow: 0 10px 30px rgba(125, 150, 61, 0.3);
}

@keyframes scaleIn {
    0% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
    }
    100% {
        transform: scale(1) rotate(360deg);
        opacity: 1;
    }
}

.success-info-box {
    background: rgba(125, 150, 61, 0.1);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #7d963d;
    margin: 20px 0;
    text-align: left;
}

.success-info-box a {
    text-decoration: none;
    font-weight: bold;
}

.success-info-box a:hover {
    text-decoration: underline;
}

#formSection, #successSection {
    animation: fadeIn 0.4s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/*Service section */
/* Prime Services Section */
.prime-services-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f5f5f5 100%);
    position: relative;
    overflow: hidden;
}

.prime-services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 20% 50%, rgba(125, 150, 61, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.prime-services-section .container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prime-services-section .section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--dark-green, #7d963d);
    margin-bottom: 1rem;
    font-weight: 700;
}

.prime-services-section .section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Service Box - Clean Styling with Shadow Border */
.service-box {
    background: var(--white);
    border-radius: 20px;
    padding: 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

/* Attractive Shadow Border on Hover */
.service-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #7d963d, #d87928, #7d963d, #d87928);
    background-size: 400% 400%;
    border-radius: 20px;
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
    animation: gradientRotate 4s ease infinite;
}

@keyframes gradientRotate {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 100% 50%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
}

.service-box::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    border-radius: 20px;
    z-index: -1;
}

.service-box:hover::before {
    opacity: 1;
}

.service-box:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(125, 150, 61, 0.2),
        0 0 0 1px rgba(125, 150, 61, 0.1),
        inset 0 0 50px rgba(125, 150, 61, 0.03);
    border-color: transparent;
}

/* Service Image with Enhanced Effects */
.service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 18px 18px 0 0;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    filter: brightness(0.95);
}

.service-box:hover .service-image img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.05);
}

/* Subtle Image Overlay */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.service-box:hover .image-overlay {
    opacity: 1;
}

/* Service Content */
.service-content {
    padding: 2rem;
    position: relative;
}

.service-content h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-weight: 700;
    transition: color 0.3s ease;
}

.service-box:hover .service-content h3 {
    color: #7d963d;
}

.service-content p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.service-highlights {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-highlights li {
    padding: 0.6rem 0;
    color: var(--text-light);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.8rem;
    transition: all 0.3s ease;
}

.service-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #7d963d;
    font-weight: bold;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.service-box:hover .service-highlights li::before {
    transform: scale(1.3) rotate(360deg);
}

.service-box:hover .service-highlights li {
    padding-left: 2rem;
    color: var(--text-dark);
}

/* Button Wrapper - Center Alignment */
.button-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1.5rem;
}

/* View Details Button - Enhanced with Attractive Effects */
.view-details-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #7d963d, #6b8035);
    color: var(--white);
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(125, 150, 61, 0.3);
    position: relative;
    overflow: hidden;
}

/* Shimmer Effect on Button */
.view-details-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.view-details-btn:hover::before {
    left: 100%;
}

.view-details-btn .arrow {
    font-style: normal;
    transition: transform 0.4s ease;
    display: inline-block;
}

.view-details-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(125, 150, 61, 0.5);
    background: linear-gradient(135deg, #ffb347, #ff7a18);

}

.view-details-btn:hover .arrow {
    transform: translateX(5px);
}

/* Ripple Effect on Click */
.view-details-btn:active {
    transform: scale(0.95);
}

/* View All Services Button - Enhanced */
.view-all-services-wrapper {
    text-align: center;
    margin-top: 4rem;
}

.view-all-services-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #d87928, #c26920);
    color: var(--white);
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(216, 121, 40, 0.35);
    position: relative;
    overflow: hidden;
}

/* Glowing Pulse Effect */
.btn-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.view-all-services-btn:hover .btn-glow {
    opacity: 1;
    animation: pulseGlow 1.5s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.view-all-services-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.view-all-services-btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 45px rgba(216, 121, 40, 0.5);
}

.view-all-services-btn:hover::before {
    width: 400px;
    height: 400px;
}

.view-all-services-btn:active {
    transform: translateY(-2px) scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .prime-services-section {
        padding: 3rem 1rem;
    }

    .prime-services-section .section-title {
        font-size: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-image {
        height: 200px;
    }

    .service-content {
        padding: 1.5rem;
    }

    .view-all-services-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .service-image {
        height: 180px;
    }

    .service-content h3 {
        font-size: 1.3rem;
    }

    .service-content p {
        font-size: 0.9rem;
    }

    .view-details-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .view-all-services-btn {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }
}

/*Contact Button Contact form styling */
/* Contact Info Modal */
.contact-info-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    overflow-y: auto;
    padding: 15px 10px;
}

.contact-info-modal.active {
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.contact-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: contactSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    padding: 18px 16px;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes contactSlideIn {
    from {
        transform: translateY(-15px) scale(0.97);
        opacity: 0;
    }
    to {
        transform: translateY(0) scale(1);
        opacity: 1;
    }
}

/* Scrollbar */
.contact-modal-content::-webkit-scrollbar {
    width: 4px;
}

.contact-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.contact-modal-content::-webkit-scrollbar-thumb {
    background: #7d963d;
    border-radius: 10px;
}

/* Close Button */
.contact-modal-content .close {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    border: none;
}

.contact-modal-content .close:hover {
    background: #ff4757;
    transform: rotate(90deg) scale(1.05);
}

.contact-modal-content .close i {
    font-size: 0.95rem;
    color: #333;
    transition: color 0.3s ease;
}

.contact-modal-content .close:hover i {
    color: var(--white);
}

/* Modal Header */
.contact-modal-header {
    text-align: center;
    margin-bottom: 14px;
}

.contact-icon-large {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #7d963d 0%, #6b8035 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    box-shadow: 0 6px 16px rgba(125, 150, 61, 0.3);
}

.contact-icon-large i {
    font-size: 1.3rem;
    color: var(--white);
}

.contact-modal-header h2 {
    font-size: 1.25rem;
    color: var(--text-dark, #333);
    margin-bottom: 4px;
    font-weight: 800;
}

.contact-modal-header p {
    font-size: 0.75rem;
    color: var(--text-light, #666);
}

/* Contact Details Grid */
.contact-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 12px;
}

.contact-detail-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 10px 8px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1.5px solid transparent;
}

.contact-detail-card:hover {
    transform: translateY(-3px);
    border-color: #7d963d;
    box-shadow: 0 8px 20px rgba(125, 150, 61, 0.2);
}

.contact-card-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #7d963d 0%, #6b8035 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    transition: all 0.3s ease;
}

.contact-detail-card:hover .contact-card-icon {
    transform: rotateY(360deg);
}

.contact-card-icon i {
    font-size: 1rem;
    color: var(--white);
}

.contact-card-icon.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
}

.contact-detail-card h3 {
    font-size: 0.85rem;
    color: var(--text-dark, #333);
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-link {
    display: block;
    color: #7d963d;
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 3px;
    transition: all 0.3s ease;
    font-size: 0.7rem;
    line-height: 1.3;
}

.contact-link:hover {
    color: #6b8035;
}

.email-link {
    word-break: break-word;
    font-size: 0.65rem;
    line-height: 1.3;
}

.whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: var(--white) !important;
    padding: 6px 12px;
    border-radius: 16px;
    margin-top: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.7rem;
}

.whatsapp-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 16px rgba(37, 211, 102, 0.4);
}

.whatsapp-link i {
    font-size: 0.85rem;
}

.contact-address {
    font-style: normal;
    color: var(--text-light, #666);
    line-height: 1.4;
    margin-bottom: 6px;
    font-size: 0.65rem;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: #7d963d;
    color: var(--white) !important;
    padding: 5px 10px;
    border-radius: 14px;
    margin-top: 4px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 0.65rem;
}

.map-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(125, 150, 61, 0.4);
}

.map-link i {
    font-size: 0.75rem;
}

.contact-time {
    color: var(--text-light, #666);
    font-size: 0.6rem;
    margin-top: 4px;
    font-style: italic;
}

/* Social Media Section */
.contact-social-section {
    text-align: center;
    margin-bottom: 12px;
    padding: 10px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 10px;
}

.contact-social-section h4 {
    font-size: 0.8rem;
    color: var(--text-dark, #333);
    margin-bottom: 8px;
    font-weight: 700;
}

.contact-social-links {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.social-btn {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.06);
}

.social-btn.facebook {
    background: linear-gradient(135deg, #1877F2 0%, #0e5dbd 100%);
}

.social-btn.instagram {
    background: linear-gradient(135deg, #E4405F 0%, #C13584 50%, #833AB4 100%);
}

.social-btn.linkedin {
    background: linear-gradient(135deg, #0077B5 0%, #005582 100%);
}

.social-btn.twitter {
    background: linear-gradient(135deg, #1DA1F2 0%, #0c85d0 100%);
}

.social-btn.youtube {
    background: linear-gradient(135deg, #FF0000 0%, #cc0000 100%);
}

/* Quick Action Buttons */
.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.btn-contact-action {
    padding: 9px 12px;
    border: none;
    border-radius: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.btn-contact-action i {
    font-size: 0.85rem;
}

.btn-contact-action.primary {
    background: linear-gradient(135deg, #d87928 0%, #c26920 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(216, 121, 40, 0.3);
}

.btn-contact-action.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(216, 121, 40, 0.5);
}

.btn-contact-action.secondary {
    background: transparent;
    color: #7d963d;
    border: 1.5px solid #7d963d;
}

.btn-contact-action.secondary:hover {
    background: #7d963d;
    color: var(--white);
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 480px) {
    .contact-modal-content {
        max-width: 95%;
        padding: 15px 12px;
    }

    .contact-details-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .contact-social-links {
        gap: 10px;
    }

    .social-btn {
        width: 36px;
        height: 36px;
    }

    .btn-contact-action {
        font-size: 0.7rem;
        padding: 8px 10px;
    }
}
