/* 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;
            }
        }
        :root {
            --primary: #2a9d8f;
            --primary-dark: #1e7268;
            --primary-light: #e0f2f1;
            --secondary: #e76f51;
            --secondary-dark: #c55a40;
            --secondary-light: #fde8e1;
            --dark: #222222;
            --gray: #666666;
            --light-gray: #f5f5f5;
            --white: #ffffff;
            --green: #34a853;
            --yellow: #fbbc05;
            --orange: #e76f51;
            --blue: #4285f4;
        }
        
        .pricing-container {
            width: 100%;
            background-color: var(--white);
            box-shadow: 0 15px 50px rgba(42, 157, 143, 0.15);
            overflow: hidden;
            position: relative;
        }
        
        .pricing-header {
            background: linear-gradient(135deg, #2a9d8f, #38b2a3);
            color: var(--white);
            padding: 35px 30px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 70%);
            animation: pulse-bg 10s infinite;
        }
        
        .pricing-logo {
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .pricing-logo span {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 0.5px;
        }
        
        .pricing-logo i {
            color: var(--yellow);
            margin-right: 10px;
            font-size: 28px;
        }
        
        .pricing-header h1 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
        }
        
        .pricing-header p {
            opacity: 0.9;
            font-size: 18px;
            max-width: 700px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }
        
        .pricing-body {
            padding: 40px;
        }
        
        .plan-container {
            margin: 30px 0 50px;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .premium-plan {
            background: linear-gradient(to right, #f9f9f9, #f0f0f0);
            border-radius: 16px;
            padding: 40px;
            width: 100%;
            position: relative;
            border: 1px solid rgba(42, 157, 143, 0.15);
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .plan-badge {
            position: absolute;
            top: -15px;
            right: 30px;
            background: linear-gradient(to right, var(--secondary), #f18066);
            color: var(--white);
            padding: 8px 20px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.2);
        }
        
        .plan-header {
            text-align: center;
            margin-bottom: 30px;
            padding-bottom: 25px;
            border-bottom: 2px solid rgba(42, 157, 143, 0.1);
        }
        
        .plan-header h2 {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 15px;
        }
        
        .plan-header p {
            color: var(--gray);
            font-size: 16px;
            margin: 0 auto;
        }
        
        .price-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin: 30px 0;
        }
        
        .price-item {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px 30px;
            width: 100%;
            margin-bottom: 20px;
            border: 1px solid rgba(42, 157, 143, 0.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .price-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(42, 157, 143, 0.1);
            border-color: rgba(42, 157, 143, 0.2);
        }
        
        .price-item:last-child {
            margin-bottom: 0;
        }
        
        .price-label {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .price-label i {
            color: var(--secondary);
            margin-right: 10px;
            font-size: 20px;
        }
        
        .price-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 12px 0;
            display: flex;
            align-items: baseline;
        }
        
        .price-value span.price-currency {
            font-size: 18px;
            margin-right: 5px;
            font-weight: 600;
            color: var(--gray);
        }
        
        .price-value span.price-period {
            font-size: 16px;
            margin-left: 8px;
            font-weight: 400;
            color: var(--gray);
        }
        
        .price-original {
            text-decoration: line-through;
            color: var(--gray);
            font-size: 18px;
            margin-left: 15px;
            opacity: 0.8;
        }
        
        .price-description {
            font-size: 15px;
            color: var(--gray);
            margin-top: 10px;
        }
        
        .free-period {
            background-color: var(--primary-light);
            color: var(--primary-dark);
            padding: 12px 20px;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            margin: 25px 0;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .free-period i {
            margin-right: 10px;
            font-size: 20px;
        }
        
        .features-section {
            margin-top: 50px;
        }
        
        .section-title {
            font-size: 24px;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            text-align: center;
            justify-content: center;
        }
        
        .section-title i {
            margin-right: 12px;
            background-color: var(--primary-light);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            margin-top: 20px;
        }
        
        .feature-item {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px;
            transition: transform 0.3s, box-shadow 0.3s;
            display: flex;
            align-items: flex-start;
            border: 1px solid rgba(42, 157, 143, 0.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
        }
        
        .feature-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(42, 157, 143, 0.1);
            border-color: rgba(42, 157, 143, 0.2);
        }
        
        .feature-icon {
            background-color: var(--primary-light);
            width: 45px;
            height: 45px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
            flex-shrink: 0;
            font-size: 18px;
            color: var(--primary);
        }
        
        .feature-content h3 {
            font-size: 18px;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .feature-content p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        .benefits-section {
            margin-top: 50px;
            background: linear-gradient(135deg, rgba(42, 157, 143, 0.03), rgba(42, 157, 143, 0.08));
            border-radius: 14px;
            padding: 35px;
            text-align: center;
            border: 1px solid rgba(42, 157, 143, 0.15);
            position: relative;
            overflow: hidden;
        }
        
        .benefits-section::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, rgba(42, 157, 143, 0) 70%);
            top: -150px;
            right: -150px;
            border-radius: 50%;
        }
        
        .benefits-section::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(42, 157, 143, 0.05) 0%, rgba(42, 157, 143, 0) 70%);
            bottom: -100px;
            left: -100px;
            border-radius: 50%;
        }
        
        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin-top: 30px;
        }
        
        .benefit-item {
            background-color: var(--white);
            border-radius: 12px;
            padding: 25px 20px;
            text-align: center;
            transition: all 0.3s ease;
            border: 1px solid rgba(42, 157, 143, 0.1);
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        
        .benefit-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(42, 157, 143, 0.1);
            border-color: rgba(42, 157, 143, 0.2);
        }
        
        .benefit-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 15px;
            font-size: 24px;
        }
        
        .benefit-shield .benefit-icon {
            background-color: rgba(52, 168, 83, 0.1);
            color: var(--green);
        }
        
        .benefit-tools .benefit-icon {
            background-color: rgba(66, 133, 244, 0.1);
            color: var(--blue);
        }
        
        .benefit-credit .benefit-icon {
            background-color: rgba(251, 188, 5, 0.1);
            color: var(--yellow);
        }
        
        .benefit-h3 {
            font-size: 18px;
            margin-bottom: 12px;
            color: var(--dark);
        }
        
        .benefit-p {
            font-size: 14px;
            color: var(--gray);
            line-height: 1.6;
        }
        
        .cta-section {
            text-align: center;
            margin-top: 50px;
            padding: 30px;
            background-color: var(--primary-light);
            border-radius: 14px;
            border: 1px solid rgba(42, 157, 143, 0.2);
        }
        
        .cta-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--dark);
            margin-bottom: 15px;
        }
        
        .cta-text {
            font-size: 16px;
            color: var(--gray);
            max-width: 600px;
            margin: 0 auto 25px;
        }
        
        .cta-button {
            display: inline-flex;
            align-items: center;
            background: linear-gradient(to right, var(--secondary), #f18066);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
            font-size: 16px;
            padding: 14px 30px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(231, 111, 81, 0.2);
        }
        
        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(231, 111, 81, 0.3);
        }
        
        .cta-button i {
            margin-right: 10px;
        }
        
        @keyframes pulse-bg {
            0% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
            50% {
                transform: translate(-50%, -50%) scale(1.2);
                opacity: 0.2;
            }
            100% {
                transform: translate(-50%, -50%) scale(1);
                opacity: 0.5;
            }
        }
        
        @media (max-width: 768px) {
            .pricing-body {
                padding: 30px 20px;
            }
            
            .premium-plan {
                padding: 30px 20px;
            }
            
            .plan-badge {
                right: 20px;
            }
            
            .features-grid, .benefits-grid {
                grid-template-columns: 1fr;
            }
            
        }
        * {
            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;
            padding-top: 70px; /* Space for fixed navbar */
        }

        /* 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 */
        }


        .logo-img {
            height: 70px;
        }


        /* 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;
            }
        }

        /* Add a placeholder main content for testing */
        .content {
            padding: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .content h1 {
            margin-bottom: 20px;
            color: var(--primary-dark);
        }

        .content p {
            margin-bottom: 15px;
            line-height: 1.6;
        }

        /* 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;
        }
        .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;
        }
        .logo-img {
                height: 50px;
            }
        
        .footer-section {
            width: 100%;
        }
        
        .footer-bottom {
            flex-direction: column;
            gap: 15px;
        }
        
        .social-icons-container {
            justify-content: center;
        }
    }
     /* Full Page Preloader Styles */
        #full-preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--primary-color, #2a9d8f);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 10000;
            opacity: 1;
            visibility: visible;
            transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
        }

        /* Preloader container */
        .preloader-container {
            text-align: center;
            color: white;
            font-family: 'Poppins', sans-serif;
        }

        /* Spinner styles */
        .preloader-spinner {
            border: 8px solid rgba(255, 255, 255, 0.3);
            border-top: 8px solid white;
            border-radius: 50%;
            width: 50px;
            height: 50px;
            animation: spin 0.8s linear infinite;
        }

        /* Spinner animation */
        @keyframes spin {
            0% {
                transform: rotate(0deg);
            }
            100% {
                transform: rotate(360deg);
            }
        }

        /* Hide the preloader after page load */
        #full-preloader.hide {
            opacity: 0;
            visibility: hidden;
        }

        /* Responsive adjustments for the preloader */
        @media (max-width: 1200px) {
            .preloader-spinner {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 992px) {
            .preloader-spinner {
                width: 50px;
                height: 50px;
            }
        }

        @media (max-width: 768px) {
            .preloader-spinner {
                width: 45px;
                height: 45px;
            }
        }

        @media (max-width: 576px) {
            .preloader-spinner {
                width: 40px;
                height: 40px;
            }
        }
        /* 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);
}