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

:root {
    --primary-color: #2a9d8f;
    --primary-dark: #21867a;
    --primary-light: rgba(42, 157, 143, 0.1);
    --secondary-color: #e76f51;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
 .logo {
        display: flex;
        align-items: center;
    }



    .logo-img {
        height: 70px;  /* Adjust size as needed */
    }


    /* For responsive design */
    @media (max-width: 768px) {

        .logo-img {
            height: 50px;
        }
    }
/* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--primary-color);
            padding: 0 20px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            height: 70px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(42, 157, 143, 0.95);
            backdrop-filter: blur(5px);
            height: 60px;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            z-index: 1002; /* Keep logo above overlay */
        }


        /* Desktop Menu Styles */
        .menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            transition: all 0.3s ease;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            display: block;
            color: white;
            text-align: center;
            padding: 25px 16px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .scrolled .menu a {
            padding: 20px 16px;
        }

        .menu a:hover {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }

        /* Dropdown Styles */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }

        .dropdown:after {
            content: "▼";
            font-size: 10px;
            color: white;
            position: absolute;
            right: 5px;
            top: 25px;
            transition: transform 0.3s ease;
        }

        .scrolled .dropdown:after {
            top: 20px;
        }

        .dropdown:hover:after {
            transform: rotate(180deg);
        }

        /* Login & Signup Buttons */
        .auth-buttons {
            display: flex;
            align-items: center;
        }

        .login-btn {
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .login-btn:hover {
            background-color: #e05d3d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .login-btn i {
            margin-right: 8px;
        }

        .signup-btn {
            display: flex;
            align-items: center;
            background-color: transparent;
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .signup-btn:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .signup-btn i {
            margin-right: 8px;
        }

        /* Menu Toggle Button */
        .menu-toggle {
            display: none;
            background-color: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 1002; /* Above overlay */
            transition: all 0.3s ease;
            position: relative;
            padding: 10px;
            width: 44px;
            height: 44px;
            border-radius: 4px;
        }

        .menu-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-toggle:focus {
            outline: none;
        }

        /* Animated Hamburger Icon */
        .hamburger {
            width: 24px;
            height: 20px;
            position: relative;
            margin: 0 auto;
            transform: rotate(0deg);
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 9px;
        }

        .hamburger span:nth-child(4) {
            top: 18px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger.open span:nth-child(1) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.open span:nth-child(4) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px; /* Start off-screen */
            width: 280px;
            height: 100%;
            background-color: var(--primary-color);
            z-index: 1001;
            transition: right 0.3s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            padding-top: 70px; /* Space for navbar */
        }

        .mobile-menu.open {
            right: 0; /* Slide in */
        }

        /* Close button in mobile menu */
        .menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .menu-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        /* Mobile menu list styles */
        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-list a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .mobile-menu-list a:hover {
            background-color: var(--primary-dark);
        }

        /* Mobile dropdown styles */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown > a {
            position: relative;
        }

        .mobile-dropdown > a:after {
            content: "▼";
            font-size: 10px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s;
        }

        .mobile-dropdown.active > a:after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-dropdown-content {
            display: none;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .mobile-dropdown-content a {
            padding-left: 40px;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        /* Mobile auth buttons */
        .mobile-auth-buttons {
            padding: 20px;
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 10px;
        }

        .mobile-auth-buttons .signup-btn,
        .mobile-auth-buttons .login-btn {
            margin: 5px 0;
            width: 100%;
            justify-content: center;
        }

        .mobile-auth-buttons .signup-btn {
            margin-bottom: 10px;
            margin-left: 0;
        }

        .mobile-auth-buttons .login-btn {
            margin-left: 0;
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .menu {
                display: none;
            }

            .auth-buttons {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0 15px;
            }

            .logo-img {
                height: 50px;
            }

            .mobile-menu {
                width: 250px;
                right: -250px;
            }
        }

/* Image Slider */
.slider-container {
    margin-top: 70px;
    position: relative;
    width: 100%;
    height: 800px;
    overflow: hidden;
}

.slider {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.slide-1 {
    background-image: url('/logo/banner-1.jpg');
}

.slide-2 {
    background-image: url('/api/placeholder/1200/500');
}

.slide-3 {
    background-image: url('/api/placeholder/1200/500');
}

.slide-content {
    position: absolute;
    bottom: 80px;
    left: 50px;
    max-width: 500px;
    color: white;
    text-shadow: 1px 1px 10px rgba(0,0,0,0.7);
}

.slide-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.slide-content p {
    font-size: 18px;
    margin-bottom: 25px;
}

.slide-btn {
    display: inline-block;
    background-color: var(--secondary-color);
    color: white;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.slide-btn:hover {
    background-color: #e05d3d;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
}

.slider-nav-btn {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-nav-btn.active {
    background-color: white;
    transform: scale(1.2);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.slider-arrow:hover {
    background-color: rgba(255, 255, 255, 0.4);
}

.slider-arrow.left {
    left: 20px;
}

.slider-arrow.right {
    right: 20px;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 70px 20px;
    box-shadow: 0 0 30px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stats-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    z-index: -1;
}

.stats-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(231, 111, 81, 0.05);
    border-radius: 50%;
    bottom: -50px;
    right: -50px;
    z-index: -1;
}

.carousel-inner {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    position: relative;
}

.stat-item {
    text-align: center;
    padding: 40px 30px;
    flex: 1;
    min-width: 220px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden;
    z-index: 1;
}

.stat-item::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 5px;
    background: var(--primary-color);
    bottom: 0;
    left: 0;
    transition: all 0.3s ease;
}

.stat-item:hover::before {
    height: 10px;
}

.stat-item::after {
    content: "";
    position: absolute;
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(42, 157, 143, 0.1) 0%, rgba(255,255,255,0) 70%);
    border-radius: 50%;
    top: 10px;
    right: 10px;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.stat-item:hover .stat-value {
    color: var(--secondary-color);
    transform: scale(1.1);
}

.stat-value {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 2px 2px 0px rgba(0,0,0,0.05);
    line-height: 1;
}

.stat-value::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 3px;
    background-color: var(--secondary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-value::before {
    width: 60px;
    height: 4px;
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    padding: 0 10px;
}

.stat-label::before,
.stat-label::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.stat-label::before {
    left: -10px;
}

.stat-label::after {
    right: -10px;
}

.stat-item:hover .stat-label::before,
.stat-item:hover .stat-label::after {
    opacity: 1;
}

/* Icon indicators for each stat */
.stat-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg);
    background-color: var(--primary-color);
    color: white;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Fix for section header subtitle centering */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -8px;
    left: 15%;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center; /* Ensure text alignment is centered */
    width: 100%; /* Make sure it takes full width for proper centering */
    display: block; /* Ensure it's a block element for proper margin centering */
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.pricing-card.popular .pricing-header {
    background-color: var(--secondary-color);
    padding-top: 50px;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f3a183;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 12px;
    font-size: 14px;
}

.pricing-features .fa-check {
    color: #2ecc71;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

.pricing-features .disabled {
    opacity: 0.6;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
}

.pricing-tools-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.pricing-tools-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.pricing-tools-btn i {
    margin-right: 5px;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.2);
}

.pricing-card.popular .pricing-btn {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.2);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular .pricing-btn:hover {
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: none;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.modal h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transform: translateX(-50%);
}

/* Tools List */
.tools-list {
    margin-bottom: 30px;
}

.tools-list ol {
    padding-left: 25px;
    counter-reset: item;
}

.tools-list ol li {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.tools-list ol li:hover {
    background-color: var(--primary-light);
    padding-left: 15px;
}

.tools-list ol li:last-child {
    border-bottom: none;
}

.close-btn {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-btn:hover {
    background-color: #e05d3d;
    transform: rotate(90deg);
}

/* Add animation classes for counter */
.stat-item.counting {
    animation: pulse 1.5s infinite alternate;
}

.stat-item.counted .stat-value {
    animation: bounce 0.5s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    100% {
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.counter {
    display: inline-block;
    position: relative;
}

.counter-plus {
    position: relative;
    top: -5px;
    font-size: 70%;
    color: var(--secondary-color);
    font-weight: 700;
    margin-left: 2px;
}

/* Animated Hamburger Icon */
.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
    top: 9px;
}

.hamburger span:nth-child(4) {
    top: 18px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

/* Add glow effect when menu is open */
.menu-toggle:has(.hamburger.open) {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Right side container for login button */
.right-container {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .carousel-inner {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 180px;
        padding: 30px 20px;
    }
    
    .stat-value {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
        justify-content: space-between;
    }

    .menu {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #2a9d8f;
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, opacity 0.3s ease;
        opacity: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .scrolled .menu {
        top: 60px;
    }

    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu a {
        text-align: left;
        padding: 15px 20px;
    }

    .dropdown-content {
        position: static;
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        transform: none;
        opacity: 1;
        border-radius: 0;
    }

    .dropdown-content a {
        padding-left: 40px;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown:after {
        right: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown.active .dropdown-content {
        max-height: 1000px;
        display: block;
    }

    .menu.show {
        display: block;
        max-height: 1000px;
        opacity: 1;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active:after {
        transform: rotate(180deg);
    }
    
    .slide-content {
        left: 30px;
        bottom: 50px;
        max-width: 80%;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-container {
        height: 350px;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .stats-section {
        padding: 50px 20px;
    }
    
    .carousel-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        padding: 30px 25px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
        margin: 20% auto;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .modal h2 {
        font-size: 24px;
    }

    .tools-list ol li {
        font-size: 14px;
    }
}
/* Updated See All Packages Button Styles */
.see-all-packages-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.see-all-packages-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(42, 157, 143, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.see-all-packages-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #f3a183);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.see-all-packages-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(42, 157, 143, 0.4);
}

.see-all-packages-btn:hover:before {
    opacity: 1;
}

.see-all-packages-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.see-all-packages-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .see-all-packages-btn {
        padding: 10px 28px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .see-all-packages-btn {
        padding: 10px 25px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}
/* Single Tools Section Styles */
.single-tools-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.single-tools-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 0;
}

.single-tools-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(231, 111, 81, 0.05);
    border-radius: 50%;
    top: 50px;
    right: -100px;
    z-index: 0;
}

.single-tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tool Card Styles */
.tool-card {
    width: 260px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

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

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(7) { animation-delay: 0.7s; }
.tool-card:nth-child(8) { animation-delay: 0.8s; }

.tool-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Animated background */
.tool-card .animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: 400% 400%;
}

.tool-card:hover .animated-bg {
    opacity: 0.06;
    animation: gradientAnimation 3s ease infinite;
}

/* Card Header */
.tool-card .card-header {
    padding: 25px 20px 15px;
    text-align: center;
    position: relative;
}

.tool-card .tool-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-logo {
    transform: scale(1.1);
}

.tool-card .tool-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.tool-card .tool-category {
    font-size: 13px;
    color: var(--text-medium);
    background-color: var(--primary-light);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Card Content */
.tool-card .card-content {
    padding: 15px;
    position: relative;
}

.tool-card .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0 15px;
}

/* Features List */
.tool-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.tool-card .features-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.tool-card .features-list li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
    padding-top: 2px;
}

/* Price Container */
.tool-card .price-container {
    text-align: center;
    margin: 20px 0 15px;
    position: relative;
}

.tool-card .original-price {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--danger-color);
    opacity: 0.8;
    margin-right: 8px;
    font-weight: 500;
    position: relative;
}

.tool-card .current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--success-color);
}

.tool-card .period {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 400;
}

/* Card Buttons */
.tool-card .card-actions {
    text-align: center;
    padding: 0 15px 20px;
}

.tool-card .btn {
    display: inline-block;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.tool-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
    width: 100%;
}

.tool-card .btn-primary:hover {
    box-shadow: 0 6px 15px rgba(42, 157, 143, 0.4);
    transform: translateY(-3px);
}

/* Save Badge */
.tool-card .save-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: pulse 2s infinite;
}

/* Unique Styles - 4 designs that repeat */
.product-card-1 .animated-bg {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-card-2 .animated-bg {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.product-card-3 .animated-bg {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.product-card-4 .animated-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Tool category styles */
.product-card-1 .tool-category {
    background-color: rgba(79, 172, 254, 0.1);
    color: #4facfe;
}

.product-card-2 .tool-category {
    background-color: rgba(67, 233, 123, 0.1);
    color: #43e97b;
}

.product-card-3 .tool-category {
    background-color: rgba(250, 112, 154, 0.1);
    color: #fa709a;
}

.product-card-4 .tool-category {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Feature icon colors */
.product-card-1 .features-list li i {
    color: #4facfe;
}

.product-card-2 .features-list li i {
    color: #43e97b;
}

.product-card-3 .features-list li i {
    color: #fa709a;
}

.product-card-4 .features-list li i {
    color: #667eea;
}

/* Button styles */
.product-card-1 .btn-primary {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
}

.product-card-2 .btn-primary {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.product-card-3 .btn-primary {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 4px 10px rgba(250, 112, 154, 0.3);
}

.product-card-4 .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

/* All Tools Button */
.all-tools-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.all-tools-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.2);
}

.all-tools-btn:hover {
    background-color: #e05d3d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

.all-tools-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.all-tools-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .single-tools-container {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .tool-card {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .single-tools-section {
        padding: 40px 15px;
    }
    
    .single-tools-container {
        gap: 15px;
    }
    
    .tool-card {
        width: 220px;
    }
    
    .tool-card .tool-name {
        font-size: 18px;
    }
    
    .tool-card .features-list li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .single-tools-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tool-card {
        width: 100%;
        max-width: 320px;
    }
    
    .all-tools-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}
/* Reviews Section Styles */
.reviews-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before,
.reviews-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.reviews-section::before {
    width: 250px;
    height: 250px;
    background: rgba(42, 157, 143, 0.05);
    top: -100px;
    left: -100px;
}

.reviews-section::after {
    width: 300px;
    height: 300px;
    background: rgba(231, 111, 81, 0.05);
    bottom: -150px;
    right: -150px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -8px;
    left: 15%;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Container */
.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Slider */
.reviews-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

/* When we need to jump without animation */
.reviews-slider.no-transition {
    transition: none !important;
}

/* Slide */
.review-slide {
    flex: 0 0 25%; /* Show 4 at once */
    padding: 10px;
    transition: all 0.3s ease;
}

/* Ensure cloned slides look identical */
.cloned-slide {
    flex-shrink: 0;
}

/* Review Card */
.review-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(42, 157, 143, 0.2);
}

.review-card::before {
    content: '❝';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(42, 157, 143, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    margin-right: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.reviewer-title {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0 0 5px;
}

/* Enhanced Star Rating */
.stars-container {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.stars-background {
    color: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
}

.stars-foreground {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: middle;
}

/* Review Text */
.review-text {
    flex: 1;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.review-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

/* Review Date */
.review-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-style: normal;
}

/* Review Product */
.review-product {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 5px 12px;
    background-color: var(--primary-light);
    border-radius: 20px;
    display: inline-block;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 16px;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.2);
}

.reviews-prev {
    left: 5px;
}

.reviews-next {
    right: 5px;
}

/* Navigation Dots */
.reviews-nav-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.nav-dot:hover {
    background-color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .review-slide {
        flex: 0 0 33.333%; /* Show 3 at once */
    }
    
    .reviews-prev {
        left: 10px;
    }
    
    .reviews-next {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .review-slide {
        flex: 0 0 50%; /* Show 2 at once */
    }
    
    .review-card {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 15px;
    }
    
    .review-slide {
        flex: 0 0 100%; /* Show 1 at once */
    }
    
    .review-card::before {
        font-size: 50px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 40px 10px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .reviewer-img {
        width: 45px;
        height: 45px;
    }
}
.footer {
        background-color: #263238;
        color: #f5f5f5;
        padding: 60px 0 0 0;
        font-family: 'Poppins', sans-serif;
    }
    
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e76f51;
    }
    
    .footer-section p {
        margin-bottom: 15px;
        line-height: 1.6;
        color: #b0bec5;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #b0bec5;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        position: relative;
        padding-left: 15px;
    }
    
    .footer-links a:before {
        content: '›';
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #e76f51;
        padding-left: 20px;
    }
    
    .footer-links a:hover:before {
        left: 5px;
    }
    
    /* Advanced Social Icons */
    .social-icons-container {
        display: flex;
        gap: 20px;
        margin-top: 25px;
        justify-content: flex-start;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: #37474f;
        color: #f5f5f5;
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .social-icon:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: scale(0);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: -1;
        border-radius: 50%;
    }
    
    .social-icon i {
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        transform: translateY(-7px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .social-icon:hover i {
        transform: scale(1.2);
    }
    
    .social-icon:hover:before {
        transform: scale(1);
    }
    
    /* Social icon specific colors */
    .social-icon.facebook:before {
        background-color: #3b5998;
    }
    
    .social-icon.whatsapp:before {
        background-color: #25d366;
    }
    
    .social-icon.phone:before {
        background-color: #4CAF50;
    }
    
    .social-icon.instagram:before {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    
    /* Tooltip */
    .social-icon .tooltip {
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%) scale(0);
        background-color: #000;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .social-icon .tooltip:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -5px;
        transform: translateX(-50%);
        border-width: 5px 5px 0;
        border-style: solid;
        border-color: #000 transparent transparent;
    }
    
    .social-icon:hover .tooltip {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        top: -45px;
    }
    
    .newsletter-form {
        display: flex;
        margin-top: 20px;
    }
    
    .newsletter-form input {
        flex: 1;
        padding: 10px 15px;
        border: none;
        background-color: #37474f;
        color: white;
        border-radius: 4px 0 0 4px;
        font-family: 'Poppins', sans-serif;
    }
    
    .newsletter-form input::placeholder {
        color: #90a4ae;
    }
    
    .newsletter-form button {
        padding: 10px 15px;
        background-color: #2a9d8f;
        color: white;
        border: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .newsletter-form button:hover {
        background-color: #e76f51;
    }
    
    .footer-bottom {
        background-color: #1e272c;
        padding: 20px;
        text-align: center;
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-bottom p {
        margin: 0;
        color: #90a4ae;
        font-size: 14px;
    }
    
    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }
    
    .footer-bottom-links a {
        color: #90a4ae;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .footer-bottom-links a:hover {
        color: #e76f51;
    }
    
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
        }
        
        .footer-section {
            width: 100%;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 15px;
        }
        
        .social-icons-container {
            justify-content: center;
        }
    }

        /* Active Menu */
        .menu a:hover, .menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .dropdown-content a:hover, .dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }
        .mobile-menu a:hover, .mobile-menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .mobile-dropdown-content a:hover, .mobile-dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }
        /* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    width: 50px; /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Make it fully rounded */
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Show the button */
.back-to-top.show {
    display: flex !important; /* Ensure it's displayed as flex for centering */
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2a9d8f;
    --primary-dark: #21867a;
    --primary-light: rgba(42, 157, 143, 0.1);
    --secondary-color: #e76f51;
    --text-light: #ffffff;
    --text-dark: #333333;
    --transition-speed: 0.3s;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
}
 .logo {
        display: flex;
        align-items: center;
    }



    .logo-img {
        height: 70px;  /* Adjust size as needed */
    }


    /* For responsive design */
    @media (max-width: 768px) {

        .logo-img {
            height: 50px;
        }
    }
/* Navbar Styles */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            background-color: var(--primary-color);
            padding: 0 20px;
            width: 100%;
            position: fixed;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            height: 70px;
            transition: all 0.3s ease;
        }

        .navbar.scrolled {
            background-color: rgba(42, 157, 143, 0.95);
            backdrop-filter: blur(5px);
            height: 60px;
        }

        /* Logo Styles */
        .logo {
            display: flex;
            align-items: center;
            z-index: 1002; /* Keep logo above overlay */
        }


        /* Desktop Menu Styles */
        .menu {
            list-style-type: none;
            margin: 0;
            padding: 0;
            display: flex;
            transition: all 0.3s ease;
        }

        .menu li {
            position: relative;
        }

        .menu a {
            display: block;
            color: white;
            text-align: center;
            padding: 25px 16px;
            text-decoration: none;
            transition: all 0.2s ease;
            font-weight: 500;
        }

        .scrolled .menu a {
            padding: 20px 16px;
        }

        .menu a:hover {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }

        /* Dropdown Styles */
        .dropdown-content {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
            z-index: 1;
            border-radius: 4px;
            overflow: hidden;
            transform: translateY(10px);
            opacity: 0;
            transition: all 0.3s ease;
        }

        .dropdown:hover .dropdown-content {
            display: block;
            transform: translateY(0);
            opacity: 1;
        }

        .dropdown-content a {
            color: #333;
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            text-align: left;
            border-bottom: 1px solid #eee;
        }

        .dropdown-content a:last-child {
            border-bottom: none;
        }

        .dropdown-content a:hover {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }

        .dropdown:after {
            content: "▼";
            font-size: 10px;
            color: white;
            position: absolute;
            right: 5px;
            top: 25px;
            transition: transform 0.3s ease;
        }

        .scrolled .dropdown:after {
            top: 20px;
        }

        .dropdown:hover:after {
            transform: rotate(180deg);
        }

        /* Login & Signup Buttons */
        .auth-buttons {
            display: flex;
            align-items: center;
        }

        .login-btn {
            display: flex;
            align-items: center;
            background-color: var(--secondary-color);
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 15px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .login-btn:hover {
            background-color: #e05d3d;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .login-btn i {
            margin-right: 8px;
        }

        .signup-btn {
            display: flex;
            align-items: center;
            background-color: transparent;
            color: white;
            padding: 8px 18px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 2px solid white;
            cursor: pointer;
            font-family: 'Poppins', sans-serif;
            font-size: 14px;
            margin-left: 10px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
        }

        .signup-btn:hover {
            background-color: white;
            color: var(--primary-color);
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.15);
        }

        .signup-btn i {
            margin-right: 8px;
        }

        /* Menu Toggle Button */
        .menu-toggle {
            display: none;
            background-color: transparent;
            border: none;
            color: white;
            font-size: 28px;
            cursor: pointer;
            z-index: 1002; /* Above overlay */
            transition: all 0.3s ease;
            position: relative;
            padding: 10px;
            width: 44px;
            height: 44px;
            border-radius: 4px;
        }

        .menu-toggle:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        .menu-toggle:focus {
            outline: none;
        }

        /* Animated Hamburger Icon */
        .hamburger {
            width: 24px;
            height: 20px;
            position: relative;
            margin: 0 auto;
            transform: rotate(0deg);
            transition: .5s ease-in-out;
            cursor: pointer;
        }

        .hamburger span {
            display: block;
            position: absolute;
            height: 2px;
            width: 100%;
            background: white;
            border-radius: 4px;
            opacity: 1;
            left: 0;
            transform: rotate(0deg);
            transition: .25s ease-in-out;
        }

        .hamburger span:nth-child(1) {
            top: 0px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger span:nth-child(2), .hamburger span:nth-child(3) {
            top: 9px;
        }

        .hamburger span:nth-child(4) {
            top: 18px;
            width: 80%;
            right: 0;
            left: auto;
        }

        .hamburger.open span:nth-child(1) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        .hamburger.open span:nth-child(2) {
            transform: rotate(45deg);
        }

        .hamburger.open span:nth-child(3) {
            transform: rotate(-45deg);
        }

        .hamburger.open span:nth-child(4) {
            top: 9px;
            width: 0%;
            left: 50%;
        }

        /* Mobile Menu Styles */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -280px; /* Start off-screen */
            width: 280px;
            height: 100%;
            background-color: var(--primary-color);
            z-index: 1001;
            transition: right 0.3s ease-in-out;
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
            overflow-y: auto;
            padding-top: 70px; /* Space for navbar */
        }

        .mobile-menu.open {
            right: 0; /* Slide in */
        }

        /* Close button in mobile menu */
        .menu-close {
            position: absolute;
            top: 15px;
            right: 15px;
            background: transparent;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            z-index: 1002;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s ease;
        }

        .menu-close:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        /* Mobile menu list styles */
        .mobile-menu-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .mobile-menu-list li {
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .mobile-menu-list a {
            display: block;
            padding: 15px 20px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .mobile-menu-list a:hover {
            background-color: var(--primary-dark);
        }

        /* Mobile dropdown styles */
        .mobile-dropdown {
            position: relative;
        }

        .mobile-dropdown > a {
            position: relative;
        }

        .mobile-dropdown > a:after {
            content: "▼";
            font-size: 10px;
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            transition: transform 0.3s;
        }

        .mobile-dropdown.active > a:after {
            transform: translateY(-50%) rotate(180deg);
        }

        .mobile-dropdown-content {
            display: none;
            background-color: rgba(0, 0, 0, 0.1);
        }

        .mobile-dropdown-content a {
            padding-left: 40px;
        }

        .mobile-dropdown.active .mobile-dropdown-content {
            display: block;
        }

        /* Mobile auth buttons */
        .mobile-auth-buttons {
            padding: 20px;
            display: flex;
            flex-direction: column;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: 10px;
        }

        .mobile-auth-buttons .signup-btn,
        .mobile-auth-buttons .login-btn {
            margin: 5px 0;
            width: 100%;
            justify-content: center;
        }

        .mobile-auth-buttons .signup-btn {
            margin-bottom: 10px;
            margin-left: 0;
        }

        .mobile-auth-buttons .login-btn {
            margin-left: 0;
        }

        /* Overlay for mobile menu */
        .menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s ease, visibility 0.3s ease;
        }

        .menu-overlay.open {
            opacity: 1;
            visibility: visible;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .menu {
                display: none;
            }

            .auth-buttons {
                display: none;
            }

            .menu-toggle {
                display: block;
            }
        }

        @media (max-width: 480px) {
            .navbar {
                padding: 0 15px;
            }

            .logo-img {
                height: 50px;
            }

            .mobile-menu {
                width: 250px;
                right: -250px;
            }
        }



/* Icon indicators for each stat */
.stat-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(42, 157, 143, 0.1);
    border-radius: 50%;
    color: var(--primary-color);
    font-size: 14px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon {
    transform: rotate(360deg);
    background-color: var(--primary-color);
    color: white;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Fix for section header subtitle centering */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -8px;
    left: 15%;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
    text-align: center; /* Ensure text alignment is centered */
    width: 100%; /* Make sure it takes full width for proper centering */
    display: block; /* Ensure it's a block element for proper margin centering */
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 26px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

.pricing-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-header {
    padding: 30px 20px;
    text-align: center;
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.pricing-card.popular .pricing-header {
    background-color: var(--secondary-color);
    padding-top: 50px;
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    background-color: #f3a183;
    color: white;
    text-align: center;
    padding: 8px 0;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.price {
    font-size: 42px;
    font-weight: 700;
    line-height: 1;
}

.price span {
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.pricing-features {
    padding: 30px 20px;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    display: flex;
    align-items: center;
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    margin-right: 12px;
    font-size: 14px;
}

.pricing-features .fa-check {
    color: #2ecc71;
}

.pricing-features .fa-times {
    color: #e74c3c;
}

.pricing-features .disabled {
    opacity: 0.6;
}

.pricing-footer {
    padding: 20px;
    text-align: center;
}

.pricing-tools-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #f8f9fa;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.3s ease;
    margin-bottom: 15px;
    border: 1px solid var(--primary-color);
    cursor: pointer;
}

.pricing-tools-btn:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.pricing-tools-btn i {
    margin-right: 5px;
}

.pricing-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(42, 157, 143, 0.2);
}

.pricing-card.popular .pricing-btn {
    background-color: var(--secondary-color);
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.2);
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.pricing-card.popular .pricing-btn:hover {
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    opacity: 1;
}

.modal-content {
    background-color: #fefefe;
    margin: 10% auto;
    padding: 30px;
    border: none;
    border-radius: 10px;
    width: 80%;
    max-width: 600px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(-50px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.show .modal-content {
    transform: translateY(0);
    opacity: 1;
}

.modal h2 {
    margin-bottom: 30px;
    color: var(--primary-color);
    font-size: 28px;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.modal h2:after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 80px;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: 2px;
    transform: translateX(-50%);
}

/* Tools List */
.tools-list {
    margin-bottom: 30px;
}

.tools-list ol {
    padding-left: 25px;
    counter-reset: item;
}

.tools-list ol li {
    padding: 12px 10px;
    border-bottom: 1px solid #eee;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    transition: all 0.3s ease;
}

.tools-list ol li:hover {
    background-color: var(--primary-light);
    padding-left: 15px;
}

.tools-list ol li:last-child {
    border-bottom: none;
}

.close-btn {
    display: block;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: absolute;
    top: 20px;
    right: 20px;
}

.close-btn:hover {
    background-color: #e05d3d;
    transform: rotate(90deg);
}

/* Add animation classes for counter */
.stat-item.counting {
    animation: pulse 1.5s infinite alternate;
}

.stat-item.counted .stat-value {
    animation: bounce 0.5s;
}

@keyframes pulse {
    0% {
        box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    }
    100% {
        box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.counter {
    display: inline-block;
    position: relative;
}

.counter-plus {
    position: relative;
    top: -5px;
    font-size: 70%;
    color: var(--secondary-color);
    font-weight: 700;
    margin-left: 2px;
}

/* Animated Hamburger Icon */
.hamburger {
    width: 24px;
    height: 20px;
    position: relative;
    margin: 0 auto;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: white;
    border-radius: 4px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger span:nth-child(1) {
    top: 0px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger span:nth-child(2), .hamburger span:nth-child(3) {
    top: 9px;
}

.hamburger span:nth-child(4) {
    top: 18px;
    width: 80%;
    right: 0;
    left: auto;
}

.hamburger.open span:nth-child(1) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.hamburger.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

/* Add glow effect when menu is open */
.menu-toggle:has(.hamburger.open) {
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
    background-color: rgba(255, 255, 255, 0.15);
}

/* Right side container for login button */
.right-container {
    display: flex;
    align-items: center;
}

@media (max-width: 992px) {
    .carousel-inner {
        gap: 20px;
    }
    
    .stat-item {
        min-width: 180px;
        padding: 30px 20px;
    }
    
    .stat-value {
        font-size: 48px;
    }
    
    .stat-label {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 15px;
        justify-content: space-between;
    }

    .menu {
        flex-direction: column;
        display: none;
        width: 100%;
        background-color: #2a9d8f;
        position: absolute;
        top: 70px;
        left: 0;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out, opacity 0.3s ease;
        opacity: 0;
        border-bottom-left-radius: 8px;
        border-bottom-right-radius: 8px;
    }

    .scrolled .menu {
        top: 60px;
    }

    .menu li {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .menu a {
        text-align: left;
        padding: 15px 20px;
    }

    .dropdown-content {
        position: static;
        background-color: rgba(0, 0, 0, 0.1);
        box-shadow: none;
        width: 100%;
        max-height: 0;
        padding: 0;
        overflow: hidden;
        transition: max-height 0.5s ease-out;
        transform: none;
        opacity: 1;
        border-radius: 0;
    }

    .dropdown-content a {
        padding-left: 40px;
        color: white;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .dropdown:after {
        right: 20px;
    }

    .menu-toggle {
        display: block;
    }

    .dropdown.active .dropdown-content {
        max-height: 1000px;
        display: block;
    }

    .menu.show {
        display: block;
        max-height: 1000px;
        opacity: 1;
    }

    .dropdown:hover .dropdown-content {
        display: none;
    }

    .dropdown.active:after {
        transform: rotate(180deg);
    }
    
    .slide-content {
        left: 30px;
        bottom: 50px;
        max-width: 80%;
    }
    
    .slide-content h2 {
        font-size: 28px;
    }
    
    .slide-content p {
        font-size: 16px;
    }
    
    .slider-container {
        height: 350px;
    }

    .pricing-card {
        margin-bottom: 30px;
    }

    .stats-section {
        padding: 50px 20px;
    }
    
    .carousel-inner {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        padding: 30px 25px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
        margin: 20% auto;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .section-header p {
        font-size: 16px;
    }
    
    .pricing-header h3 {
        font-size: 20px;
    }
    
    .price {
        font-size: 36px;
    }
    
    .modal h2 {
        font-size: 24px;
    }

    .tools-list ol li {
        font-size: 14px;
    }
}
/* Updated See All Packages Button Styles */
.see-all-packages-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.see-all-packages-btn {
    display: inline-block;
    padding: 12px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 14px;
    box-shadow: 0 6px 15px rgba(42, 157, 143, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.see-all-packages-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--secondary-color), #f3a183);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.see-all-packages-btn:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 12px 25px rgba(42, 157, 143, 0.4);
}

.see-all-packages-btn:hover:before {
    opacity: 1;
}

.see-all-packages-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.see-all-packages-btn:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .see-all-packages-btn {
        padding: 10px 28px;
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .see-all-packages-btn {
        padding: 10px 25px;
        font-size: 12px;
        letter-spacing: 1px;
    }
}
/* Single Tools Section Styles */
.single-tools-section {
    padding: 50px 20px;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
    margin-top: -40px;
}

.single-tools-section::before {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    background: rgba(42, 157, 143, 0.05);
    border-radius: 50%;
    bottom: -150px;
    left: -150px;
    z-index: 0;
}

.single-tools-section::after {
    content: "";
    position: absolute;
    width: 200px;
    height: 200px;
    background: rgba(231, 111, 81, 0.05);
    border-radius: 50%;
    top: 50px;
    right: -100px;
    z-index: 0;
}

.single-tools-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Tool Card Styles */
.tool-card {
    width: 260px;
    border-radius: 15px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #ffffff;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s forwards;
}

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

.tool-card:nth-child(1) { animation-delay: 0.1s; }
.tool-card:nth-child(2) { animation-delay: 0.2s; }
.tool-card:nth-child(3) { animation-delay: 0.3s; }
.tool-card:nth-child(4) { animation-delay: 0.4s; }
.tool-card:nth-child(5) { animation-delay: 0.5s; }
.tool-card:nth-child(6) { animation-delay: 0.6s; }
.tool-card:nth-child(7) { animation-delay: 0.7s; }
.tool-card:nth-child(8) { animation-delay: 0.8s; }

.tool-card:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Animated background */
.tool-card .animated-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    background-size: 400% 400%;
}

.tool-card:hover .animated-bg {
    opacity: 0.06;
    animation: gradientAnimation 3s ease infinite;
}

/* Card Header */
.tool-card .card-header {
    padding: 25px 20px 15px;
    text-align: center;
    position: relative;
}

.tool-card .tool-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto 15px;
    transition: transform 0.3s ease;
}

.tool-card:hover .tool-logo {
    transform: scale(1.1);
}

.tool-card .tool-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 5px;
}

.tool-card .tool-category {
    font-size: 13px;
    color: var(--text-medium);
    background-color: var(--primary-light);
    padding: 3px 10px;
    border-radius: 20px;
    display: inline-block;
}

/* Card Content */
.tool-card .card-content {
    padding: 15px;
    position: relative;
}

.tool-card .divider {
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0 15px;
}

/* Features List */
.tool-card .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}

.tool-card .features-list li {
    padding: 6px 0;
    font-size: 14px;
    color: var(--text-medium);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.tool-card .features-list li i {
    color: var(--primary-color);
    margin-right: 8px;
    font-size: 14px;
    padding-top: 2px;
}

/* Price Container */
.tool-card .price-container {
    text-align: center;
    margin: 20px 0 15px;
    position: relative;
}

.tool-card .original-price {
    font-size: 15px;
    text-decoration: line-through;
    color: var(--danger-color);
    opacity: 0.8;
    margin-right: 8px;
    font-weight: 500;
    position: relative;
}

.tool-card .current-price {
    font-size: 22px;
    font-weight: 700;
    color: var(--success-color);
}

.tool-card .period {
    font-size: 13px;
    color: var(--text-medium);
    font-weight: 400;
}

/* Card Buttons */
.tool-card .card-actions {
    text-align: center;
    padding: 0 15px 20px;
}

.tool-card .btn {
    display: inline-block;
    padding: 10px 25px;
    font-weight: 600;
    font-size: 14px;
    text-align: center;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.tool-card .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 10px rgba(42, 157, 143, 0.3);
    width: 100%;
}

.tool-card .btn-primary:hover {
    box-shadow: 0 6px 15px rgba(42, 157, 143, 0.4);
    transform: translateY(-3px);
}

/* Save Badge */
.tool-card .save-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: var(--secondary-color);
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 2;
    animation: pulse 2s infinite;
}

/* Unique Styles - 4 designs that repeat */
.product-card-1 .animated-bg {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
}

.product-card-2 .animated-bg {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
}

.product-card-3 .animated-bg {
    background: linear-gradient(135deg, #fa709a, #fee140);
}

.product-card-4 .animated-bg {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

/* Tool category styles */
.product-card-1 .tool-category {
    background-color: rgba(79, 172, 254, 0.1);
    color: #4facfe;
}

.product-card-2 .tool-category {
    background-color: rgba(67, 233, 123, 0.1);
    color: #43e97b;
}

.product-card-3 .tool-category {
    background-color: rgba(250, 112, 154, 0.1);
    color: #fa709a;
}

.product-card-4 .tool-category {
    background-color: rgba(102, 126, 234, 0.1);
    color: #667eea;
}

/* Feature icon colors */
.product-card-1 .features-list li i {
    color: #4facfe;
}

.product-card-2 .features-list li i {
    color: #43e97b;
}

.product-card-3 .features-list li i {
    color: #fa709a;
}

.product-card-4 .features-list li i {
    color: #667eea;
}

/* Button styles */
.product-card-1 .btn-primary {
    background: linear-gradient(135deg, #4facfe, #00f2fe);
    box-shadow: 0 4px 10px rgba(79, 172, 254, 0.3);
}

.product-card-2 .btn-primary {
    background: linear-gradient(135deg, #43e97b, #38f9d7);
    box-shadow: 0 4px 10px rgba(67, 233, 123, 0.3);
}

.product-card-3 .btn-primary {
    background: linear-gradient(135deg, #fa709a, #fee140);
    box-shadow: 0 4px 10px rgba(250, 112, 154, 0.3);
}

.product-card-4 .btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 4px 10px rgba(102, 126, 234, 0.3);
}

/* All Tools Button */
.all-tools-container {
    text-align: center;
    margin-top: 40px;
    width: 100%;
}

.all-tools-btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
    box-shadow: 0 5px 15px rgba(231, 111, 81, 0.2);
}

.all-tools-btn:hover {
    background-color: #e05d3d;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(231, 111, 81, 0.3);
}

.all-tools-btn i {
    margin-right: 10px;
    transition: transform 0.3s ease;
}

.all-tools-btn:hover i {
    transform: translateY(-2px);
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .single-tools-container {
        gap: 20px;
    }
}

@media (max-width: 992px) {
    .tool-card {
        width: 240px;
    }
}

@media (max-width: 768px) {
    .single-tools-section {
        padding: 40px 15px;
    }
    
    .single-tools-container {
        gap: 15px;
    }
    
    .tool-card {
        width: 220px;
    }
    
    .tool-card .tool-name {
        font-size: 18px;
    }
    
    .tool-card .features-list li {
        font-size: 13px;
    }
}

@media (max-width: 576px) {
    .single-tools-container {
        flex-direction: column;
        align-items: center;
    }
    
    .tool-card {
        width: 100%;
        max-width: 320px;
    }
    
    .all-tools-btn {
        padding: 10px 25px;
        font-size: 13px;
    }
}
/* Reviews Section Styles */
.reviews-section {
    padding: 70px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.reviews-section::before,
.reviews-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    z-index: 0;
}

.reviews-section::before {
    width: 250px;
    height: 250px;
    background: rgba(42, 157, 143, 0.05);
    top: -100px;
    left: -100px;
}

.reviews-section::after {
    width: 300px;
    height: 300px;
    background: rgba(231, 111, 81, 0.05);
    bottom: -150px;
    right: -150px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.section-header h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 12px;
    position: relative;
    display: inline-block;
}

.section-header h2:after {
    content: '';
    position: absolute;
    width: 70%;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    bottom: -8px;
    left: 15%;
    border-radius: 2px;
}

.section-header p {
    color: var(--text-medium);
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto;
}

/* Slider Container */
.reviews-slider-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    padding: 20px 0;
}

/* Slider */
.reviews-slider {
    display: flex;
    transition: transform 0.6s ease-in-out;
    width: 100%;
}

/* When we need to jump without animation */
.reviews-slider.no-transition {
    transition: none !important;
}

/* Slide */
.review-slide {
    flex: 0 0 25%; /* Show 4 at once */
    padding: 10px;
    transition: all 0.3s ease;
}

/* Ensure cloned slides look identical */
.cloned-slide {
    flex-shrink: 0;
}

/* Review Card */
.review-card {
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 25px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.review-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border-color: rgba(42, 157, 143, 0.2);
}

.review-card::before {
    content: '❝';
    position: absolute;
    top: 10px;
    right: 20px;
    font-size: 60px;
    color: rgba(42, 157, 143, 0.1);
    font-family: serif;
    line-height: 1;
}

/* Review Header */
.review-header {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.reviewer-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-light);
    margin-right: 15px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0 0 5px;
}

.reviewer-title {
    font-size: 13px;
    color: var(--text-medium);
    margin: 0 0 5px;
}

/* Enhanced Star Rating */
.stars-container {
    position: relative;
    display: inline-block;
    margin-right: 5px;
    vertical-align: middle;
}

.stars-background {
    color: rgba(0, 0, 0, 0.1);
    font-size: 14px;
    letter-spacing: 1px;
}

.stars-foreground {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #FFD700;
    font-size: 14px;
    letter-spacing: 1px;
}

.rating-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    vertical-align: middle;
}

/* Review Text */
.review-text {
    flex: 1;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.review-text p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-medium);
    font-style: italic;
    margin: 0;
}

/* Review Date */
.review-date {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
    font-style: normal;
}

/* Review Product */
.review-product {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    padding: 5px 12px;
    background-color: var(--primary-light);
    border-radius: 20px;
    display: inline-block;
    margin-top: auto;
    position: relative;
    z-index: 1;
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary-color);
    opacity: 0.8;
    font-size: 16px;
}

.slider-arrow:hover {
    background-color: var(--primary-color);
    color: white;
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(42, 157, 143, 0.2);
}

.reviews-prev {
    left: 5px;
}

.reviews-next {
    right: 5px;
}

/* Navigation Dots */
.reviews-nav-dots {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.nav-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.nav-dot.active {
    background-color: var(--primary-color);
    transform: scale(1.3);
}

.nav-dot:hover {
    background-color: var(--primary-dark);
}

/* Responsive Adjustments */
@media (max-width: 1200px) {
    .review-slide {
        flex: 0 0 33.333%; /* Show 3 at once */
    }
    
    .reviews-prev {
        left: 10px;
    }
    
    .reviews-next {
        right: 10px;
    }
}

@media (max-width: 992px) {
    .review-slide {
        flex: 0 0 50%; /* Show 2 at once */
    }
    
    .review-card {
        padding: 20px;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 50px 15px;
    }
    
    .review-slide {
        flex: 0 0 100%; /* Show 1 at once */
    }
    
    .review-card::before {
        font-size: 50px;
    }
    
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .section-header p {
        font-size: 14px;
    }
}

@media (max-width: 576px) {
    .reviews-section {
        padding: 40px 10px;
    }
    
    .slider-arrow {
        width: 35px;
        height: 35px;
    }
    
    .nav-dot {
        width: 8px;
        height: 8px;
        margin: 0 4px;
    }
    
    .review-card {
        padding: 18px;
    }
    
    .reviewer-img {
        width: 45px;
        height: 45px;
    }
}
.footer {
        background-color: #263238;
        color: #f5f5f5;
        padding: 60px 0 0 0;
        font-family: 'Poppins', sans-serif;
    }
    
    .footer-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }
    
    .footer-section {
        flex: 1;
        min-width: 250px;
        margin-bottom: 40px;
        padding: 0 15px;
    }
    
    .footer-section h3 {
        color: #fff;
        font-size: 18px;
        margin-bottom: 20px;
        position: relative;
        padding-bottom: 10px;
    }
    
    .footer-section h3::after {
        content: '';
        position: absolute;
        left: 0;
        bottom: 0;
        width: 40px;
        height: 2px;
        background-color: #e76f51;
    }
    
    .footer-section p {
        margin-bottom: 15px;
        line-height: 1.6;
        color: #b0bec5;
    }
    
    .footer-links {
        list-style: none;
        padding: 0;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links a {
        color: #b0bec5;
        text-decoration: none;
        transition: all 0.3s ease;
        display: block;
        position: relative;
        padding-left: 15px;
    }
    
    .footer-links a:before {
        content: '›';
        position: absolute;
        left: 0;
        top: 0;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        color: #e76f51;
        padding-left: 20px;
    }
    
    .footer-links a:hover:before {
        left: 5px;
    }
    
    /* Advanced Social Icons */
    .social-icons-container {
        display: flex;
        gap: 20px;
        margin-top: 25px;
        justify-content: flex-start;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 45px;
        height: 45px;
        background-color: #37474f;
        color: #f5f5f5;
        border-radius: 50%;
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        position: relative;
        overflow: hidden;
        z-index: 1;
        text-decoration: none;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }
    
    .social-icon:before {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        transform: scale(0);
        transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        z-index: -1;
        border-radius: 50%;
    }
    
    .social-icon i {
        font-size: 18px;
        transition: all 0.3s ease;
    }
    
    .social-icon:hover {
        transform: translateY(-7px);
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
    }
    
    .social-icon:hover i {
        transform: scale(1.2);
    }
    
    .social-icon:hover:before {
        transform: scale(1);
    }
    
    /* Social icon specific colors */
    .social-icon.facebook:before {
        background-color: #3b5998;
    }
    
    .social-icon.whatsapp:before {
        background-color: #25d366;
    }
    
    .social-icon.phone:before {
        background-color: #4CAF50;
    }
    
    .social-icon.instagram:before {
        background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    }
    
    /* Tooltip */
    .social-icon .tooltip {
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%) scale(0);
        background-color: #000;
        color: white;
        padding: 5px 10px;
        border-radius: 4px;
        font-size: 12px;
        white-space: nowrap;
        opacity: 0;
        transition: all 0.3s ease;
        pointer-events: none;
    }
    
    .social-icon .tooltip:after {
        content: '';
        position: absolute;
        left: 50%;
        bottom: -5px;
        transform: translateX(-50%);
        border-width: 5px 5px 0;
        border-style: solid;
        border-color: #000 transparent transparent;
    }
    
    .social-icon:hover .tooltip {
        opacity: 1;
        transform: translateX(-50%) scale(1);
        top: -45px;
    }
    
    .newsletter-form {
        display: flex;
        margin-top: 20px;
    }
    
    .newsletter-form input {
        flex: 1;
        padding: 10px 15px;
        border: none;
        background-color: #37474f;
        color: white;
        border-radius: 4px 0 0 4px;
        font-family: 'Poppins', sans-serif;
    }
    
    .newsletter-form input::placeholder {
        color: #90a4ae;
    }
    
    .newsletter-form button {
        padding: 10px 15px;
        background-color: #2a9d8f;
        color: white;
        border: none;
        border-radius: 0 4px 4px 0;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .newsletter-form button:hover {
        background-color: #e76f51;
    }
    
    .footer-bottom {
        background-color: #1e272c;
        padding: 20px;
        text-align: center;
        margin-top: 20px;
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-bottom p {
        margin: 0;
        color: #90a4ae;
        font-size: 14px;
    }
    
    .footer-bottom-links {
        display: flex;
        gap: 20px;
    }
    
    .footer-bottom-links a {
        color: #90a4ae;
        text-decoration: none;
        font-size: 14px;
        transition: all 0.3s ease;
    }
    
    .footer-bottom-links a:hover {
        color: #e76f51;
    }
    
    @media (max-width: 768px) {
        .footer-container {
            flex-direction: column;
        }
        
        .footer-section {
            width: 100%;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 15px;
        }
        
        .social-icons-container {
            justify-content: center;
        }
    }
/* Contact Widget Container */
        .contact-widget {
            position: fixed;
            left: 20px;
            bottom: 20px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        /* Main Button */
        .contact-main-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background-color: #2a9d8f;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            cursor: pointer;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            z-index: 10;
        }

        .contact-main-btn i {
            color: white;
            font-size: 24px;
            transition: all 0.3s ease;
        }

        .contact-main-btn:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            background-color: #21867a;
        }

        .contact-main-btn.active i {
            transform: rotate(135deg);
        }

        /* Contact Options Container */
        .contact-options {
            position: absolute;
            bottom: 100%;
            left: 0;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            margin-bottom: 15px;
            opacity: 0;
            transform: translateY(20px);
            visibility: hidden;
            transition: all 0.3s ease;
            pointer-events: none;
        }

        .contact-options.active {
            opacity: 1;
            transform: translateY(0);
            visibility: visible;
            pointer-events: auto;
        }

        /* Individual Contact Options */
        .contact-option {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            transform: scale(0);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            pointer-events: none;
        }

        .contact-options.active .contact-option {
            transform: scale(1);
            pointer-events: auto;
        }

        /* Delay each option animation */
        .contact-options.active .contact-option:nth-child(1) {
            transition-delay: 0.1s;
        }

        .contact-options.active .contact-option:nth-child(2) {
            transition-delay: 0.2s;
        }

        .contact-options.active .contact-option:nth-child(3) {
            transition-delay: 0.3s;
        }

        .contact-option-btn {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .contact-option-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(255, 255, 255, 0.1);
            transform: scale(0);
            transition: all 0.3s ease;
            border-radius: 50%;
            z-index: -1;
        }

        .contact-option-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
        }

        .contact-option-btn:hover:before {
            transform: scale(1);
        }

        .contact-option-btn i {
            font-size: 20px;
            color: white;
        }

        /* WhatsApp Button */
        .contact-whatsapp {
            background-color: #25d366;
        }

        /* Messenger Button */
        .contact-messenger {
            background-color: #0084ff;
        }

        /* Call Button */
        .contact-call {
            background-color: #4CAF50;
        }

        /* Label for each option */
        .contact-option-label {
            background-color: white;
            color: #333;
            padding: 5px 15px;
            border-radius: 20px;
            margin-left: 10px;
            font-weight: 500;
            font-size: 14px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            font-family: 'Poppins', sans-serif;
            opacity: 0;
            transform: translateX(-10px);
            transition: all 0.3s ease;
        }

        .contact-option:hover .contact-option-label {
            opacity: 1;
            transform: translateX(0);
        }

        /* Pulse animation for the main button */
        .pulse {
            animation: pulse 1.5s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(42, 157, 143, 0.7);
            }
            70% {
                box-shadow: 0 0 0 15px rgba(42, 157, 143, 0);
            }
            100% {
                box-shadow: 0 0 0 0 rgba(42, 157, 143, 0);
            }
        }

        /* For mobile screens */
        @media (max-width: 768px) {
            .contact-widget {
                left: 10px;
                bottom: 10px;
            }

            .contact-main-btn {
                width: 50px;
                height: 50px;
            }

            .contact-main-btn i {
                font-size: 20px;
            }

            .contact-option-btn {
                width: 40px;
                height: 40px;
            }

            .contact-option-btn i {
                font-size: 16px;
            }

            .contact-option-label {
                font-size: 12px;
                padding: 4px 10px;
            }
        }

        /* Active Menu */
        .menu a:hover, .menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .dropdown-content a:hover, .dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }
        .mobile-menu a:hover, .mobile-menu a.active {
            background-color: var(--primary-dark);
            text-shadow: 0 0 1px rgba(255, 255, 255, 0.7);
        }
        .mobile-dropdown-content a:hover, .mobile-dropdown-content a.active {
            background-color: #f5f5f5;
            color: #2a9d8f;
        }
        /* Back to Top Button Styles */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: none;
    background-color: var(--primary-color);
    color: white;
    width: 50px; /* Set width */
    height: 50px; /* Set height */
    border-radius: 50%; /* Make it fully rounded */
    text-align: center;
    font-size: 24px; /* Adjust font size as needed */
    transition: all 0.3s ease;
    z-index: 1003;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    justify-content: center;
    align-items: center;
    display: flex;
}

/* Show the button */
.back-to-top.show {
    display: flex !important; /* Ensure it's displayed as flex for centering */
    opacity: 1;
    visibility: visible;
}

/* Hover effect */
.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}