
        @import url('https://fonts.googleapis.com/css2?family=Caprasimo&family=Funnel+Display:wght@300..800&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
        :root {
            --primary-color: #FFCA28;
            --secondary-color: #039BE5;
            --dark-color: #202124;
            --light-color: #f8f9fa;
            --text-color: #5f6368;
        }
        
        body {
            font-family: 'Google Sans', Arial, sans-serif;
            margin: 0;
            padding: 0;
            color: var(--text-color);
            line-height: 1.6;
            background-color: #141414;
        }

        html, body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        
        .navbar {
            display: flex;
            align-items: center;
            padding: 0px 30px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            height: 60px;
            position: relative;
            z-index: 1005; /* Higher than dropdown */
        }
        
        .logo {
            display: flex;
            align-items: center;
            margin-left: 35px;
            margin-right: 50px;
        }
        
        .logo img {
            height: 30px;
            margin-right: 8px;
            padding-bottom: 3px;
        }
        
        .logo-text{
            font-weight: 500;
            font-size: 22px;
            font-family: "Funnel Display", sans-serif !important;
            color: rgb(225, 225, 225);
        }
        .nav-links {
            display: flex;
            list-style: none;
            gap: 13px;
            font-size: 14px;
        }
        
        .nav-links li {
            margin: 0 20px;
        }
        
        .nav-links a {
            text-decoration: none;
            color:rgb(225, 225, 225);
            font-weight: 500;
        }

        .nav-links a i {
            margin-left: 15px;
        }
        
        .nav-links a:hover {
            color: #ff9100;
        }
         
        .cta-button {
            background-color: #1f1f1f;
            color: rgb(225, 225, 225);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            border: 2px solid #ff9100;
            font-weight: 700;
            cursor: pointer;
            margin-left: 20px;
            font-family: 'Google Sans';
            display: flex;
            height: 35px;
            align-items: center;
            transition: all 0.2s ease;
        }


        .documentation-btn {
            background-color: #1f1f1f;
            color: rgb(225, 225, 225);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 700;
            cursor: pointer;
            font-family: 'Google Sans';
            display: flex;
            height: 35px;
            align-items: center;
            transition: all 0.2s ease;
            margin-right: 10px;
        }
        
        .hero {
            background: url('../Assets/landing-bg.svg') no-repeat center center;
            background-size: cover;
            color: white;
            padding: 80px 30px;
            text-align: center;
            display: flex;
            justify-content: center;
            flex-direction: column;
        }

        
        .hero h1 {
            font-size: 4.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 40px;
        }
        
        .hero a {
            background-color: #141414;
            border: 2px solid #ff9100;
            color: white;
            font-family: 'Google Sans', Arial, sans-serif;
            font-size: 18px;
            font-weight: 700;
            width: 13%;
            border-radius: 50px;
            height: 40px;
            display: flex;    
            margin: 0 auto; 
            text-decoration: none;
            align-items: center;
            justify-content: center;
            position: relative;
            z-index: 10;
            transition: all 0.3s ease;
        }

        .hero a:hover {
            background-color: #ff9100;
            border: 2px solid #ff9100;
            color: #141414;
            font-family: 'Google Sans', Arial, sans-serif;
            font-size: 18px;
            font-weight: 700;
            width: 13%;
            border-radius: 50px;
            height: 40px;
            display: flex;    
            margin: 0 auto; 
            text-decoration: none;
            align-items: center;
            justify-content: center;
        }
        
        .features {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            padding: 60px 30px;
            width: 100%;
            margin: 0 auto;
            background: url('../Assets/feature-bg.svg') no-repeat center center;
            background-size: cover;
            gap: 20px;
        }
        
        .feature-card {
            background: url('../Assets/layered.svg') no-repeat center center;
            background-size: cover;
            width: 300px;
            height: 235px; /* Ensures equal height */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start; /* Align content to top */
            padding: 30px 20px;
            margin: 20px;
            border-radius: 30px;
            border: 2px solid #ff9100;
            text-align: center;
        }
        
        .feature-card {
            width: 300px;
            height: 235px; /* Ensures equal height */
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-start; /* Align content to top */
            padding: 30px 20px;
            margin: 20px;
            border-radius: 30px;
            border: 2px solid #141414;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
            background-size: cover;
        }

        .feature-card:hover {
            transform: translateY(-4px);
        }

        .feature-card-1 {
            background: url('../Assets/layered-1.svg') no-repeat center center;
            background-size: cover;
        }

        .feature-card-2 {
            background: url('../Assets/layered-2.svg') no-repeat center center;
            background-size: cover;
        }

        .feature-card-3 {
            background: url('../Assets/layered-3.svg') no-repeat center center;
            background-size: cover;
        }
        
        
        .feature-card i {
            font-size: 1.5rem;
            color: #ffffff;
            border-radius: 50%;
            width: 70px;
            aspect-ratio: 1 / 1;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 15px;
            background-size: cover;
            background-position: center;
        }

        /* Unique SVG backgrounds for each */
        .icon-remote {
            background: url('../Assets/gradient-icon-1.svg') no-repeat center center;
            background-size: cover;
        }

        .icon-solar {
            background: url('../Assets/gradient-icon-2.svg') no-repeat center center;
            background-size: cover;
        }

        .icon-outdoor {
            background: url('../Assets/gradient-icon-3.svg') no-repeat center center;
            background-size: cover;
        }


        .feature-card h3 {
            color: rgb(225, 225, 225);
            margin: 0;
            margin-bottom: 10px;
        }

        .feature-card p {
            color: rgb(225, 225, 225);
            margin: 0;
        }
        
        .footer {
            background-color: #1f1f1f;
            color: white;
            padding: 40px 355px;
            text-align: left;
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 40px;
        }

        .contact-info {
            margin-bottom: 20px;
            flex: 1;
        }

        .contact-info h3 {
            color: #ff9100;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .contact-item {
            margin: 10px 0;
            color: #e1e1e1;
        }

        .contact-item i {
            margin-right: 10px;
            color: #ff9100;
            width: 20px;
        }

        .contact-btn {
            background: transparent;
            border: 2px solid #ff9100;
            color: #ff9100;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 16px;
            font-family: 'Google Sans';
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 50px;
        }

        .contact-btn:hover {
            background: #ff9100;
            color: #1f1f1f;
        }

        /* Modal Styles */
        .modal {
            display: none;
            position: fixed;
            z-index: 1000;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(5px);
            z-index: 1005;
        }

        .modal-content {
            background-color: #2a2a2a;
            margin: 5% auto;
            padding: 30px;
            border-radius: 40px;
            width: 90%;
            max-width: 500px;
            position: relative;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            margin-top: 20%;
            width: 20%;
            border: 2px solid #f79000;
            margin: auto;
            align-items: center;
            height: 65%;
            position: relative;
            top: 135px;
        }

        .close {
            color: #aaa;
            float: right;
            font-size: 28px;
            font-weight: bold;
            cursor: pointer;
            line-height: 1;
        }

        .close:hover {
            color: #ff9100;
        }

        .modal h2 {
            color: #ff9100;
            margin-bottom: 20px;
            text-align: center;
            font-family: "Funnel Display", sans-serif;
        }

        .form-group {
            margin-bottom: 20px;
            width: 75%;
            margin: auto;
            margin-bottom: 5%;
        }

        .form-group label {
            display: block;
            color: #e1e1e1;
            margin-bottom: 5px;
            font-weight: 500;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 12px;
            border: 2px solid #444;
            border-radius: 50px;
            background-color: #1a1a1a;
            color: #e1e1e1;
            font-family: 'Google Sans';
            font-size: 14px;
            transition: border-color 0.3s ease;
            box-sizing: border-box;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff9100;
        }

        .form-group textarea {
            resize: vertical;
            min-height: 120px;
            border-radius: 20px !important;
        }

        .submit-btn {
            background: #ff9100;
            border: none;
            color: #1f1f1f;
            padding: 12px 30px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 16px;
            font-family: 'Google Sans';
            cursor: pointer;
            width: 100%;
            transition: all 0.3s ease;
            width: 55%;
            margin-left: 85px;
        }

        .submit-btn:hover {
            background: #e68900;
            transform: translateY(-2px);
        }

        .submit-btn:disabled {
            background: #666;
            cursor: not-allowed;
            transform: none;
        }
        
        .lottie-container {
            margin-top: 30px;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 0px;
            margin-bottom: 70px;
        }

        .features-section {
            position: relative;
            overflow: hidden;
            background: #141414;
            justify-content: center;
            align-items: center;
        }

        .features-bg-lottie {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            opacity: 0.2; /* light background */
            pointer-events: none;
            margin-top: 0px;
        }

        .features-bg-lottie dotlottie-player {
            width: 100%;
            height: 100%;
        }

        .features {
            position: relative;
            z-index: 1;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            padding: 60px 30px;
            width: 100%;
            margin: 0 auto;
            gap: 20px;
            min-height: 500px;
            height: auto;
        }

        .see-btn {
            height: 35px;
            width: 200px;
            border-radius: 50px;
            background: black;
            color: #ffffff;
            display: flex;
            text-align: center;
            align-items: center;
            justify-content: center;
            margin-right: 200px;
            transition: all 0.3s ease;
            border: 2px solid black;
            font-weight: 700;
        }

        .see-btn:hover {
            background: #fbae3c;
            color: black;
            border: 2px solid black;
            font-weight: 700;
        }

        .see-text {
            width: 400px;
            color: #fff;
            font-size: 1.5em;
            font-weight: 500;
            color: black;
        }

        .features-right {
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            margin-left: 30px;
            margin-right: 50px;
        }

        .web-features {
            height: 600px;
            width: 100%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 80px 40px;
            box-sizing: border-box;
        }

        .extensions-container {
            display: flex;
            align-items: center;
            gap: 80px;
            max-width: 1200px;
            width: 100%;
        }

        .extensions-text {
            flex: 1;
        }

        .extensions-label {
            font-size: 14px;
            font-weight: 600;
            color: #666;
            letter-spacing: 1px;
            margin-bottom: 20px;
        }

        .extensions-title {
            font-size: 3rem;
            font-weight: 600;
            color: #1a1a1a;
            line-height: 1.2;
            margin-bottom: 40px;
        }

        .explore-btn {
            background: transparent;
            border: 2px solid #141414;
            color:rgb(0, 0, 0);
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 700;
            font-size: 18px;
            font-family: 'Google Sans';
            height: 40px;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
        }

        .explore-btn:hover {
            background: #ff9100;
            color: black;
        }

        .extensions-cards {
            flex: 1;
            position: relative;
        }

        .gradient-card {
            background: linear-gradient(135deg, #ff9100 0%,rgb(252, 186, 88) 100%);
            border-radius: 50px;
            padding: 50px;
            position: relative;
            overflow: hidden;
            width: 650px;
            height: 200px;
            display: flex;
            align-items: center;
        }

        .cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .extension-card {
            background: rgba(255, 255, 255, 0.6);
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            backdrop-filter: blur(10px);
            transition: transform 0.3s ease;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }

        .extension-card:hover {
            transform: translateY(-4px);
        }

        .extension-icon {
            width: 60px;
            height: 60px;
            background: url('../Assets/gradient-a.svg') no-repeat center center;
            border-radius: 50%;
            margin: 0 auto 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 20px;
        }

        .extension-card h4 {
            font-size: 16px;
            font-weight: 600;
            color: #1a1a1a;
            margin: 0 0 8px 0;
        }

        .extension-card p {
            font-size: 14px;
            color: #666;
            margin: 0;
            line-height: 1.4;
        }

        .extensions-cards-wrapper {
            position: relative;
            flex: 1;
            max-width: 650px;
            width: 100%;
            height: 200px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .extensions-lottie-overlay {
            position: absolute;
            top: 250px; 
            left: 50%;
            transform: translateX(-50%);
            z-index: 2;
            pointer-events: none;
        }

        .contact-btn-container {
            display: flex;
            justify-content: flex-end;
            align-items: center;
        }

        .qr-code-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;
            margin-right: 290px
        }

        .qr-code {
            width: 130px;
            height: 130px;
            border-radius: 8px;
            border: 2px solid #ff9100;
            padding: 3px;
            background: white;
        }

        .qr-code-text {
            color: #e1e1e1;
            font-size: 12px;
            font-weight: 500;
            margin: 0;
        }

        .lottie-container dotlottie-player {
            pointer-events: none;
        }

        body::-webkit-scrollbar {
            width: 10px;
        }

        body::-webkit-scrollbar-track {
            background: #1e1e1e;
        }

        body::-webkit-scrollbar-thumb {
            background: #1e1e1e;
            border: 2px solid #fbae3c;
            border-radius: 0px;
        }

        /* Add these styles to your existing CSS */

        .nav-links {
            display: flex;
            list-style: none;
            gap: 10px;
            font-size: 14px;
            font-weight: 700;
        }

        .nav-links li {
            margin: 0 15px;
            position: relative;
            padding: 20px 0; /* Add padding to create hover area */
            font-weight: 700;

        }

        .nav-links a {
            text-decoration: none;
            color: rgb(225, 225, 225);
            font-weight: 500;
            display: flex;
            align-items: center;
            padding: 10px 0; /* Add padding for better hover area */
            font-weight: 700;

        }

        .nav-links a i {
            margin-left: 10px;
            transition: transform 0.3s ease; /* Add transition for icon rotation */
        }

        .nav-links a:hover {
            color: #ff9100;
            font-weight: 700;
        }

        /* Dropdown Menu Styles */
        .dropdown {
            position: absolute;
            top: 100%; /* Position below the navbar item */
            left: 0;
            background: white;
            min-width: 450px;
            border-radius: 0 0 12px 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px); /* Start slightly below */
            transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
            z-index: 1003;
            padding: 20px; /* Adjust padding instead of padding-top */
            border: 1px solid #e0e0e0;
            border-top: none;
            display: flex;
            overflow: hidden;
            /* Remove padding-top: 60px */
        }

        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .nav-links li:hover .nav-link i {
            transform: rotate(180deg); /* Rotate arrow on hover */
        }

        /* Add navbar z-index to ensure proper layering */
        .navbar {
            display: flex;
            align-items: center;
            padding: 0px 30px;
            background-color: rgb(31, 31, 31, 0);
            box-shadow: 0 2px 5px rgba(0,0,0,0);
            height: 60px;
            position: relative;
            position: absolute; /* or fixed */

        }


        /* Left Section (Black) */
        .dropdown-left {
            background: #1a1a1a;
            flex: 1;
            padding: 30px 25px;
            color: white;
        }

        .dropdown-left-title {
            color: #ff9100;
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .dropdown-left-heading {
            color: white;
            font-size: 28px;
            font-weight: 600;
            margin-bottom: 15px;
            line-height: 1.2;
        }

        .dropdown-left-desc {
            color: #cccccc;
            font-size: 14px;
            line-height: 1.5;
            margin-bottom: 25px;
        }

        .dropdown-cta {
            background: #ff9100;
            color: #fff;
            padding: 12px 24px;
            border-radius: 25px;
            font-weight: 600;
            font-size: 14px;
            text-decoration: none;
            display: inline-block;
            transition: all 0.3s ease;
        }

        .dropdown-cta:hover {
            background: #e68900;
            transform: translateY(-2px);
        }

        /* Right Section (White) */
        .dropdown-right {
            background: white;
            flex: 1;
            padding: 30px 25px;
        }

        .dropdown-section {
            margin-bottom: 25px;
        }

        .dropdown-section:last-child {
            margin-bottom: 0;
        }

        .dropdown-title {
            color: #666;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .dropdown-item {
            display: block;
            color: #333;
            text-decoration: none;
            padding: 8px 0;
            font-size: 14px;
            font-weight: 500;
            transition: all 0.2s ease;
            border-radius: 6px;
        }

        .dropdown-item:hover {
            color: #ff9100;
            padding-left: 10px;
        }

        .dropdown-item-desc {
            font-size: 12px;
            color: #666;
            margin-top: 2px;
            line-height: 1.3;
            font-weight: 400;
        }

        /* Login Modal Specific Styles */
        #loginModal .modal-content {
            width: 384px;
            background: #f79000;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 581px;
            border-radius: 30px;
        }

        #loginModal .form-group {
            margin-bottom: 15px;
        }

        #loginModal input {
            background-color: #2a2a2a;
            border: 2px solid #444;
            color: #e1e1e1;
            padding: 12px 15px;
            width: 100%;
            box-sizing: border-box;
            border-radius: 50px;
            font-family: 'Google Sans';
            font-size: 14px;
            transition: border-color 0.3s ease;
        }

        #loginModal input:focus {
            outline: none;
            border-color: #ff9100;
        }

        #loginModal .submit-btn {
            width: 100%;
            margin-top: 10px;
        }

        /* Login Modal Styles */
        #loginModal .modal-content {
            max-width: 800px;
            display: flex;
            padding: 0;
            overflow: hidden;
        }

        .login-right {
            flex: 1;
            padding: 40px;
            background-color: #141414;
            border-radius: 30px;
            max-width: 300px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            justify-items: center;            
        }

        #loginModal input {
            background-color: #1a1a1a;
            border: 2px solid #444;
            color: #e1e1e1;
            padding: 12px 15px;
            width: 100%;
            box-sizing: border-box;
            border-radius: 8px;
            font-family: 'Google Sans';
            font-size: 14px;
            transition: all 0.3s ease;
        }

        #loginModal input:focus {
            outline: none;
            border-color: #ff9100;
        }

        #loginModal .submit-btn {
            width: 50%;
            margin-top: 10px;
            margin-left: 115px;
        }

        #loginModal .close {
            position: absolute;
            right: 20px;
            top: 20px;
            color: #aaa;
            font-size: 28px;
            font-weight: bold;
            z-index: 10;
        }

        #loginModal .close:hover {
            color: #ff9100;
            cursor: pointer;
        }

        #deviceId {
            border-radius: 50px;
        }

        .login-input{
            border-radius: 50px !important;
            border: 2px solid #f79000 !important;
        }

        .login-logo {
            width: 60px;
            height: 60px;
            margin: auto;
        }

        /* Add these styles for the modal animation */
        #loginModal .modal-content {
            animation: modalFadeIn 0.2s ease-out forwards;
            transform-origin: center;
            opacity: 0;
        }

        @keyframes modalFadeIn {
            0% {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
            100% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
        }

        /* Add transition for when closing */
        #loginModal.closing .modal-content {
            animation: modalFadeOut 0.1s ease-in forwards;
        }

        @keyframes modalFadeOut {
            0% {
                opacity: 1;
                transform: scale(1) translateY(0);
            }
            100% {
                opacity: 0;
                transform: scale(0.95) translateY(20px);
            }
        }

        /* Add backdrop fade animation */
        .modal {
            transition: backdrop-filter 0.1s ease, background-color 0.1s ease;
        }

        .modal:not([style*="display: none"]) {
            backdrop-filter: blur(5px);
            background-color: rgba(0, 0, 0, 0.5);
        }

        .toast-notification {
            position: fixed;
            bottom: 20px;
            right: 20px;
            padding: 15px 20px;
            border-radius: 50px;
            color: black;
            display: flex;
            align-items: center;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.3s ease;
            z-index: 2000;
        }

        .toast-notification.show {
            transform: translateY(0);
            opacity: 1;
        }

        .toast-notification.success {
            background-color: #fbae3c;
        }

        .toast-notification.error {
            background-color:rgb(233, 134, 4);
        }

        .toast-notification.info {
            background-color: #2196F3;
        }

        .toast-icon {
            margin-right: 10px;
            font-size: 20px;
        }

        .landing-text-logo {
            width: 90px;
            height: 90px;
            position: relative;
            top: 15px;
        }

        .gradient-text {
            background: linear-gradient(180deg, #fbae3c 0%,rgb(229, 81, 7) 100%);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            font-weight: 700; /* Optional: makes the gradient more visible */
        }

        /* Language Selector Styles */
        .language-selector {
            position: relative;
            margin-left: 20px;
        }

        .language-btn {
            background: transparent;
            border: none;
            color: #e1e1e1;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
            font-family: 'Google Sans';
            margin-left: 800px;
            font-weight: 500;
            padding: 8px 12px;
            border-radius: 4px;
            transition: all 0.2s ease;
        }

        .language-btn:hover {
            background: rgba(255,255,255,0.1);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 1000px;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.15);
            width: 150px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.2s ease;
            z-index: 1001;
        }

        .language-selector:hover .language-dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-item {
            padding: 10px 15px;
            cursor: pointer;
            color: #333;
            transition: all 0.2s ease;
        }

        .dropdown-item:hover {
            background: #f5f5f5;
            color: #ff9100;
        }

        .current-language {
            font-weight: 700;
        }

        /* Add to your existing CSS */
        .goog-te-banner-frame {
            display: none !important;
        }

        .goog-te-gadget {
            display: none !important;
        }

        .goog-te-combo {
            position: absolute;
            opacity: 0;
            width: 1px;
            height: 1px;
        }

    /* Language Selector Styles */
    .language-selector {
        position: relative;
        margin-right: 15px;
    }

    .language-btn {
        background: none;
        border: none;
        color: #e1e1e1;
        cursor: pointer;
        display: flex;
        align-items: center;
        gap: 5px;
        padding: 8px 12px;
        border-radius: 50px;
        transition: background-color 0.2s;
    }

    .language-btn:hover {
        background-color: #f0f0f037;
    }

    .language-dropdown {
        display: none;
        position: absolute;
        top: 100%;
        left: 770px;
        background: white;
        border: 1px solid #ddd;
        border-radius: 4px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        z-index: 1000;
        min-width: 120px;
    }

    .dropdown-item {
        padding: 8px 12px;
        cursor: pointer;
        transition: background-color 0.2s;
    }

    .dropdown-item:hover {
        background-color: #f5f5f5;
    }

    /* Google Translate Styles */
    #google_translate_element {
        display: none;
    }

    .goog-te-gadget {
        font-size: 0 !important;
    }

    .goog-te-combo {
        margin: 0 !important;
    }

    .navbar {
        display: flex;
        align-items: center;
        padding: 0rem 2rem 1rem 0rem;
        flex-wrap: wrap; /* Allow items to wrap if needed */
        max-height: 40px;
    }

    .nav-links {
        display: flex;
        position: relative;
        gap: 2.5rem; /* Consistent gap between items */
        margin: 0 auto; /* Center the nav links */
        padding: 0 0rem;
        flex: 1; /* Allow this container to grow */
        justify-content: center; /* Center items when there's extra space */
        top: -12px;
    }

    .language-selector, .documentation-btn, .cta-button {
        margin-left: auto; /* Push these items to the right */
        white-space: nowrap; /* Prevent text wrapping */
        position: relative;
        top: -12px;
    }

    .logo {
        position: relative;
        top: -12px;
    }
    
/* Target only the main nav links (Home, About, Features, Contact) */
.nav-links > li:not(.language-selector) > .nav-link {
    position: relative;
}

.nav-links > li:not(.language-selector) > .nav-link::after {
  content: '';
  position: absolute;
  width: 4px;
  height: 4px;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  transition: opacity 0.3s ease;
  border-radius: 50px;
  opacity: 0;
}

.nav-links > li:not(.language-selector):hover > .nav-link::after,
.nav-links > li:not(.language-selector) > .nav-link.active::after {
    opacity: 1;
}

/* Add to your landing.css */
@keyframes blink {
  0%, 100% { background-color: transparent; }
  50% { background-color: rgba(255, 145, 0, 0.3); border-radius: 10px;} /* Orange tint matching your theme */
}

.documentation-highlight {
  animation: blink 1s ease-in-out 3; /* 3 blinks, 1.5s each */
  border-radius: 4px;
  padding: 2px 8px;
}

.see-btn {
    background-color: #1f1f1f;
    color: rgb(225, 225, 225);
    border: none;
    padding: 10px 20px;
    border-radius: 50px;
    border: 2px solid #1f1f1f;
    font-weight: 700;
    cursor: pointer;
    margin-left: 0px;
    font-family: 'Google Sans';
    display: flex;
    height: 43px;
    align-items: center;
    transition: all 0.2s ease;
    font-size: 17px;
}

.features-right {
  position: relative; /* Needed for absolute positioning of background */
  z-index: 1; /* Ensure text stays above the animation */
}

.lottie-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  z-index: -1; /* Send to back */
  opacity: 0.3; /* Make it subtle */
  pointer-events: none; /* Allow clicks to pass through */
  top: 0px;
  right: -200px;
}

.lottie-background dotlottie-player {
  width: 100% !important;
  height: 100% !important;
}

.see-text {
  position: relative; /* Ensure text stays above */
  z-index: 2;
}

.logo {
    all: unset;
}

.nav-links {
    all: unset;
}

.language-btn {
    all: unset;
}

.documentation-btn {
    all: unset;
}

.cta-button {
    all: unset;
}

.nav-link.active {
    color: #f79000;
}

/* Reset and base styles */
.navbar {
    all: unset;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
    box-sizing: border-box;
    position: absolute;
}

/* Logo section - takes 30% width */
.logo {
    all: unset;
    display: flex;
    align-items: center;
    width: 30%;
    gap: 0.5rem;
    position: relative;
    left: 500px;
    top: -15px;
}

.logo img {
    height: 1rem; /* Adjust as needed */
}

.logo-text {
    margin: 0;
    font-size: 20px;
    font-weight: bold;
    font-family: 'Google Sans' !important;
}

/* Navigation links - takes remaining space */
.nav-links {
    all: unset;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
    flex-grow: 1;
    justify-content: center;
    position: relative;
    top: -10px;
    right: 10px;
}

.nav-links li {
    position: relative;
}

.nav-link {
    all: unset;
    cursor: pointer;
    font-weight: 500;
    padding: 0.5rem 0;
    position: relative;
}

/* Right side buttons - aligned to end */
.language-selector {
    position: relative;
    right: 0px;
    color: #e1e1e1;
    width: 120px;
    border-radius: 50px;
    height: 30px;
    align-items: center;
    padding-bottom: 10px;
}


.language-btn, .documentation-btn, .cta-button {
    all: unset;
    cursor: pointer;
    padding: 0.5rem 1rem;
    margin-left: 1rem;
    border-radius: 0.25rem;
    font-weight: 500;
}

.language-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #e1e1e1;
    height: 20px;
    border-radius: 50px;
    transition: all 0.2s ease;
}

.documentation-btn {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #e1e1e1;
    color: #e1e1e1;
    height: 20px;
    border-radius: 50px;
    position: relative;
    right: 120px;
    top: -12px;
    transition: all 0.2s ease;
    font-weight: 800;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid #e1e1e1;
    color: #e1e1e1;
    height: 20px;
    border-radius: 50px;
    position: relative;
    right: 110px;
    top: -12px;
    transition: all 0.2s ease;
}

.language-btn:hover, .documentation-btn:hover, .cta-button:hover {
    background-color: #e68900;
    border: 1px solid #e68900;
    color: black
}

.language-selector, .language-btn {
    all: unset;
}

.language-btn {
    all: unset;  
}

.language-dropdown {
    all: unset;
}

.navbar-container {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    margin: 5px auto 20px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    z-index: 1001;
    position: relative;
    gap: 8px;
}

/* Logo stays on left */
.navbar-container > .logo {
    margin-right: auto;
}

/* Nav links in center - use absolute positioning */
.navbar-container > .nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

/* Right side buttons - language selector triggers auto spacing */
.navbar-container > .language-selector {
    margin-left: auto;
}

.navbar {
    display: flex;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
    z-index: 10;
    position: relative;
}

.logo img {
    height: 35px;
    margin-right: 8px;
}

.logo-text {
    white-space: nowrap;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 5px;
    align-items: center;
    margin: 0;
    padding: 0;
    flex-grow: 1;
    flex-shrink: 1;
    justify-content: center;
    border-radius: 50px;
    height: 40px;
    color: white;
    font-size: 15px;
    z-index: 5;
    position: relative;
}


.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
}

.language-selector {
    position: relative;
    flex-shrink: 0;
    transition: all 0.2s ease;
    z-index: 8;
    order: 1;
}

.language-btn {
    background: none;
    border: none;
    font-weight: 800;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid white;
    padding: 4px 10px;
    border-radius: 50px;
    color: white;
    position: relative;
    transition: all 0.2s ease;
    font-size: 14px;
    white-space: nowrap;
}

.language-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px); /* dropdown will appear just below the button */
    left: 0; /* align left edge of dropdown with button */
    background: white;
    border: 1px solid #ddd;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    z-index: 10;
    min-width: 160px;
}

.language-selector:hover .language-dropdown {
    display: block;
}

.language-dropdown .dropdown-item {
    padding: 8px 12px;
    cursor: pointer;
    transition: background 0.2s;
}

.language-dropdown .dropdown-item:hover {
    background-color: #f0f0f0;
}

.documentation-btn,
.cta-button {
    padding: 4px 12px;
    border: none;
    cursor: pointer;
    font-weight: 800;
    border: 1px solid white;
    border-radius: 50px;
    color: white;
    font-size: 14px;
    flex-shrink: 0;
    white-space: nowrap;
    position: relative;
    z-index: 8;
    background-color: transparent;
}

.documentation-btn {
    margin-right: 8px;
    order: 2;
}

.cta-button {
    order: 3;
}


/* Add this to your CSS */
@keyframes blink {
  0%, 100% { 
    background-color: transparent; 
    box-shadow: 0 0 0 rgba(255, 145, 0, 0);
    padding: 10px 15px;
    color: white;
  }
  50% { 
    background-color: #ff9100; 
    padding: 10px 15px;
  }
}

.documentation-highlight {
  animation: blink 1.5s ease-in-out 3; /* 3 blinks, 1.5s each */
  border-radius: 50px;
  padding: 2px 8px;
}

/* Mobile menu toggle - hidden by default */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown styles */
.dropdown {
    display: none;
    position: absolute;
    /* Add your dropdown styles here */
}

/* Show dropdown on hover */
.nav-links li:hover .dropdown {
    display: flex;
}

.hero h1 {
    margin-top: 120px;
    z-index: 999;
}

.dropdown {
    z-index: 1000;
}

/* Responsive adjustments */

/* Smaller desktop screens - reduce font sizes and spacing */
@media (max-width: 1400px) {
    .navbar-container {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .nav-links {
        font-size: 14px;
        gap: 3px;
    }
    
    .nav-links li {
        margin: 0 8px;
    }
    
    .language-btn,
    .documentation-btn,
    .cta-button {
        font-size: 13px;
        padding: 4px 10px;
    }
}

/* Medium desktop - further reduce spacing */
@media (max-width: 1200px) {
    .navbar-container {
        padding: 10px 15px;
        gap: 8px;
    }
    
    .logo {
        gap: 5px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .nav-links {
        font-size: 13px;
        gap: 0;
    }
    
    .nav-links li {
        margin: 0 5px;
    }
    
    .language-btn,
    .documentation-btn,
    .cta-button {
        font-size: 12px;
        padding: 4px 8px;
    }
}

/* Hide nav elements and show mobile menu */
@media (max-width: 1024px) {
    .nav-links, .language-selector, .documentation-btn, .cta-button {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
        margin-left: auto;
    }
    
    .logo {
        width: auto;
    }
    
    .navbar-container {
        margin: 5px 10px 20px;
        padding: 10px 15px;
    }
}


/* ========================================================================== */
/*                          RESPONSIVE STYLES                                 */
/* ========================================================================== */

/* Small devices (phones, 480px and below) */
@media (max-width: 480px) {
    /* General */
    body {
        font-size: 14px;
    }

    /* Navbar */
    .navbar {
        padding: 0 15px;
        height: 50px;
        flex-wrap: nowrap; /* Prevent wrapping on very small screens */
    }

    .logo {
        margin-left: 10px;
        margin-right: 15px;
    }

    .logo img {
        height: 25px;
    }

    .logo-text {
        font-size: 18px;
    }

    .nav-links {
        display: none; /* Hide by default on mobile, will be toggled by JS */
        flex-direction: column;
        position: absolute;
        top: 50px; /* Below navbar */
        left: 0;
        width: 100%;
        background-color: #1f1f1f; /* Same as navbar background */
        box-shadow: 0 5px 10px rgba(0,0,0,0.2);
        padding: 15px 0;
        z-index: 1002;
        gap: 0; /* Remove gap for stacked links */
    }

    .nav-links.active {
        display: flex; /* Show when active */
    }

    .nav-links li {
        margin: 0;
        width: 100%;
        text-align: center;
        padding: 0; /* Remove padding from li */
    }

    .nav-links a {
        padding: 12px 20px; /* Add padding to links for touch targets */
        width: 100%;
        display: block; /* Make links block-level for full width */
    }

    .nav-links a i {
        margin-left: 5px; /* Adjust icon margin */
    }

    /* Dropdown specific for mobile */
    .dropdown {
        position: static; /* Allow dropdown to flow naturally within the nav-links */
        width: 100%;
        border-radius: 0;
        box-shadow: none;
        transform: translateY(0);
        opacity: 1; /* Always visible when parent nav-link is active */
        visibility: visible;
        padding: 0; /* Remove padding from dropdown container */
        background: #2a2a2a; /* Slightly different background for distinction */
        border: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .dropdown-left,
    .dropdown-right {
        flex: none; /* Remove flex sizing */
        width: 100%;
        padding: 15px 20px;
    }

    .dropdown-left-heading {
        font-size: 22px;
    }

    .dropdown-left-desc {
        font-size: 13px;
    }

    .dropdown-cta {
        width: 100%;
        text-align: center;
        padding: 10px 0;
    }

    .dropdown-title {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .dropdown-item {
        padding: 10px 15px;
        font-size: 13px;
    }

    .dropdown-item-desc {
        font-size: 11px;
    }

    /* Language Selector */
    .language-selector {
        margin-left: auto; /* Keep it to the right */
        margin-right: 10px;
        top: 0; /* Reset top positioning */
    }

    .language-btn {
        margin-left: 0; /* Reset margin */
        padding: 5px 10px;
        font-size: 13px;
    }

    .language-dropdown {
        left: auto; /* Reset left positioning */
        right: 0; /* Align to the right */
        width: 100px;
    }

    /* CTA and Documentation Buttons */
    .cta-button,
    .documentation-btn {
        padding: 8px 15px;
        height: 30px;
        font-size: 13px;
        margin-left: 10px;
        margin-right: 5px;
        top: 0; /* Reset top positioning */
    }

    /* Hero Section */
    .hero {
        padding: 60px 20px;
    }

    .hero h1 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .hero p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero a {
        width: auto;
        min-width: 200px;
        max-width: 90%;
        font-size: 16px;
        height: 38px;
        padding: 0 25px;
        white-space: nowrap;
    }

    /* Features Section */
    .features {
        padding: 40px 15px;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .feature-card {
        width: 90%;
        max-width: 350px;
        margin: 0 auto;
        height: auto;
        min-height: 220px;
        padding: 30px 20px;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-card i {
        font-size: 1.2rem;
        width: 60px;
        height: 60px;
        margin-bottom: 10px;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .feature-card p {
        font-size: 0.9rem;
    }

    /* Web Features Section */
    .web-features {
        height: auto;
        padding: 60px 20px;
        flex-direction: column;
    }

    .extensions-container {
        flex-direction: column;
        gap: 40px;
        align-items: center;
    }

    .extensions-text {
        text-align: center;
        width: 100%;
    }

    .extensions-label {
        font-size: 12px;
        margin-bottom: 10px;
    }

    .extensions-title {
        font-size: 2rem;
        margin-bottom: 20px;
    }

    .explore-btn {
        font-size: 16px;
        height: 38px;
        padding: 10px 20px;
        margin: 0 auto;
        display: block;
    }

    .extensions-cards-wrapper {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        padding: 0 10px;
        box-sizing: border-box;
    }

    .gradient-card {
        width: 100%;
        max-width: 350px;
        height: auto;
        padding: 30px;
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .extension-card {
        padding: 20px;
    }

    .extension-icon {
        width: 50px;
        height: 50px;
        margin: 0 auto 10px auto;
    }

    .extension-card h4 {
        font-size: 15px;
    }

    .extension-card p {
        font-size: 13px;
    }

    .extensions-lottie-overlay {
        display: none !important;
    }

    /* Footer */
    .footer {
        padding: 40px 20px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 20px;
    }

    .contact-info {
        margin-bottom: 20px;
        width: 100%;
    }

    .contact-info h3 {
        font-size: 1.4rem;
        margin-bottom: 15px;
    }

    .contact-item {
        font-size: 0.95rem;
        margin: 10px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    .contact-item i {
        margin-right: 5px;
    }

    .contact-btn-container {
        justify-content: center;
        width: 100%;
    }

    .contact-btn {
        width: auto;
        min-width: 200px;
        font-size: 15px;
        padding: 12px 30px;
        margin-top: 10px;
    }

    .qr-code-container {
        margin-right: 0;
        margin: 0 auto;
    }

    /* Modals */
    .modal-content {
        width: 90%; /* Wider modal on mobile */
        max-width: 90%;
        padding: 20px;
        border-radius: 20px;
        top: 50%; /* Center vertically */
        transform: translateY(-50%);
        height: auto; /* Adjust height based on content */
    }

    .modal h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .form-group {
        width: 90%;
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 13px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .submit-btn {
        width: 80%;
        margin-left: 10%; /* Center button */
        font-size: 15px;
        padding: 10px 20px;
    }

    /* Login Modal Specific */
    #loginModal .modal-content {
        max-width: 90%;
        width: 90%;
        height: auto;
        flex-direction: column; /* Stack login content */
        padding: 0; /* Remove padding from content wrapper */
    }

    .login-right {
        max-width: 100%; /* Full width */
        width: 100%;
        padding: 30px;
        border-radius: 20px; /* Adjust border radius */
    }

    #loginModal .submit-btn {
        width: 80%;
        margin-left: 10%;
    }

    .login-logo {
        width: 50px;
        height: 50px;
    }

    /* Toast Notification */
    .toast-notification {
        bottom: 10px;
        right: 10px;
        padding: 10px 15px;
        font-size: 13px;
    }

    .toast-icon {
        font-size: 18px;
    }

    /* See Button in Features */
    .see-btn {
        height: 38px;
        font-size: 15px;
        padding: 8px 15px;
        margin-right: 0; /* Remove margin-right */
        width: 180px; /* Adjust width */
    }

    .see-text {
        width: 90%; /* Adjust width */
        font-size: 1.2em;
        text-align: center;
        margin-bottom: 20px; /* Add some space */
    }

    .features-right {
        margin-left: 0;
        margin-right: 0;
        margin-top: 30px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lottie-background {
        display: none; /* Hide complex Lottie animation on small screens */
    }
}

/* Medium devices (tablets, 481px to 768px) */
@media (min-width: 481px) and (max-width: 768px) {
    /* General */
    body {
        font-size: 15px;
    }

    /* Navbar */
    .navbar {
        padding: 0px 20px;
        height: 55px;
    }

    .logo {
        margin-left: 20px;
        margin-right: 30px;
    }

    .logo img {
        height: 28px;
    }

    .logo-text {
        font-size: 20px;
    }

    .nav-links {
        gap: 10px;
        font-size: 13px;
    }

    .nav-links li {
        margin: 0 10px;
    }

    /* Dropdown specific for tablets */
    .dropdown {
        min-width: 350px; /* Adjust min-width for tablets */
        padding: 15px;
    }

    .dropdown-left,
    .dropdown-right {
        padding: 20px 15px;
    }

    .dropdown-left-heading {
        font-size: 24px;
    }

    .dropdown-left-desc {
        font-size: 13px;
    }

    .dropdown-cta {
        padding: 10px 20px;
        font-size: 13px;
    }

    .dropdown-title {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .dropdown-item {
        padding: 6px 0;
        font-size: 13px;
    }

    .dropdown-item-desc {
        font-size: 11px;
    }

    /* Language Selector */
    .language-selector {
        margin-left: 0; /* Reset large margin */
        margin-right: 10px;
    }

    .language-btn {
        margin-left: 0; /* Reset large margin */
        padding: 6px 10px;
        font-size: 14px;
    }

    .language-dropdown {
        left: auto;
        right: 0;
        width: 120px;
    }

    /* CTA and Documentation Buttons */
    .cta-button,
    .documentation-btn {
        padding: 9px 18px;
        height: 32px;
        font-size: 14px;
        margin-left: 15px;
        margin-right: 8px;
    }

    /* Hero Section */
    .hero {
        padding: 70px 25px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.1rem;
        max-width: 600px;
    }

    .hero a {
        width: 30%;
        font-size: 17px;
        height: 38px;
    }

    /* Features Section */
    .features {
        padding: 50px 20px;
        flex-direction: column;
        align-items: center;
        height: auto;
        gap: 20px;
    }

    .feature-card {
        width: 80%;
        max-width: 400px;
        margin: 0 auto;
        height: auto;
        min-height: 220px;
        padding: 30px 25px;
    }

    .feature-card i {
        font-size: 1.4rem;
        width: 65px;
        height: 65px;
    }

    .feature-card h3 {
        font-size: 1.2rem;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    /* Web Features Section */
    .web-features {
        height: auto;
        padding: 70px 30px;
    }

    .extensions-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .extensions-text {
        text-align: center;
        width: 100%;
    }

    .extensions-title {
        font-size: 2.5rem;
    }

    .explore-btn {
        font-size: 17px;
        height: 40px;
        margin: 0 auto;
        display: block;
    }

    .extensions-cards-wrapper {
        max-width: 100%;
        width: 100%;
        height: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0 20px;
        box-sizing: border-box;
    }

    .gradient-card {
        width: 100%;
        max-width: 500px;
        height: auto;
        padding: 40px;
        margin: 0 auto;
        box-sizing: border-box;
    }

    .cards-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        width: 100%;
    }

    .extension-card {
        padding: 25px;
        margin: 0 auto;
        text-align: center;
    }

    .extension-icon {
        width: 55px;
        height: 55px;
        margin: 0 auto 10px auto;
    }

    .extension-card h4 {
        font-size: 15px;
    }

    .extension-card p {
        font-size: 13px;
    }

    .extensions-lottie-overlay {
        display: none !important;
    }

    /* Footer */
    .footer {
        padding: 45px 30px;
        flex-direction: column;
        text-align: center;
        align-items: center;
        gap: 25px;
    }

    .contact-info {
        margin-bottom: 25px;
        width: 100%;
    }

    .contact-info h3 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .contact-item {
        font-size: 1rem;
        margin: 12px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

    .contact-item i {
        margin-right: 5px;
    }

    .contact-btn-container {
        justify-content: center;
        width: 100%;
    }

    .contact-btn {
        width: auto;
        min-width: 220px;
        font-size: 16px;
        padding: 12px 35px;
        margin-top: 15px;
    }

    .qr-code-container {
        margin-right: 0;
        margin: 0 auto;
    }

    /* Modals */
    .modal-content {
        width: 70%;
        max-width: 600px;
        padding: 25px;
        border-radius: 30px;
    }

    .modal h2 {
        font-size: 1.8rem;
    }

    .form-group {
        width: 80%;
    }

    .form-group input,
    .form-group textarea {
        padding: 11px;
        font-size: 14px;
    }

    .submit-btn {
        width: 60%;
        margin-left: 20%;
        font-size: 16px;
        padding: 11px 25px;
    }

    /* Login Modal Specific */
    #loginModal .modal-content {
        max-width: 700px;
        width: 70%;
        flex-direction: row; /* Keep side-by-side if possible, adjust if needed */
        padding: 0;
    }

    .login-right {
        max-width: 250px; /* Adjust width */
        padding: 35px;
    }

    #loginModal .submit-btn {
        width: 60%;
        margin-left: 20%;
    }

    /* See Button in Features */
    .see-btn {
        height: 40px;
        font-size: 16px;
        padding: 9px 18px;
        width: 190px;
    }

    .see-text {
        width: 350px;
        font-size: 1.3em;
    }

    .features-right {
        margin-left: 15px;
        margin-right: 25px;
    }
}

/* Desktop (769px and above) - Ensure no changes */
@media (min-width: 769px) {
    /* No specific changes needed here, as the base CSS already handles desktop.
       This media query is just for clarity if you ever need to add desktop-specific overrides. */
}

/* Utility class for mobile navigation toggle */
.mobile-menu-toggle {
    display: none; /* Hidden by default on desktop */
    background: none;
    border: none;
    color: rgb(225, 225, 225);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001; /* Ensure it's above other elements */
}

@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block; /* Show hamburger icon on mobile */
        margin-left: auto; /* Push to the right */
    }

    .navbar {
        justify-content: space-between; /* Space out logo and toggle */
    }

    .nav-links {
        display: none; /* Hide nav links by default on mobile */
    }

    .nav-links.active {
        display: flex; /* Show nav links when active */
    }
}

/* ========================================================================== */
/*                      414px × 896px BREAKPOINT                              */
/* ========================================================================== */
@media only screen and (width: 414px) and (height: 896px) {
  /* Base Reset */
  html {
    font-size: 14px; /* Base scaling */
  }

  /* Background Images */
  body {
    background-size: cover;
    background-position: center top;
    background-attachment: scroll; /* Prevent parallax issues */
  }
  
  .hero-bg,
  .features-bg,
  .gradient-bg {
    background-size: 200% auto; /* Better coverage */
    background-repeat: no-repeat;
    background-position: center;
  }
  
  /* Navbar */
  .navbar {
    height: 60px;
    padding: 0 16px;
    justify-content: space-between;
  }
  
  .logo img {
    width: 32px;
    height: 32px;
  }
  
  .logo-text {
    font-size: 1.1rem;
    margin-left: 8px;
  }
  
  .mobile-menu-toggle {
    width: 40px;
    height: 40px;
    font-size: 1.5rem;
  }
  
  /* Nav Links (Mobile Menu) */
  .nav-links {
    top: 60px;
    left: 0;
    width: 100%;
    padding: 20px 16px;
  }
  
  .nav-links li {
    margin-bottom: 16px;
  }
  
  .nav-links a {
    padding: 12px 16px;
    font-size: 1rem;
  }
  
  /* Buttons */
  .language-btn,
  .documentation-btn {
    height: 36px;
    padding: 0 12px;
    font-size: 0.85rem;
    margin-left: 8px;
  }
  
  .cta-button {
    height: 40px;
    padding: 0 20px;
    font-size: 0.95rem;
  }
  
  /* Hero Section */
  .hero {
    height: calc(100vh - 60px);
    padding: 30px 24px;
  }
  
  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero p {
    font-size: 1rem;
    margin: 20px auto;
    max-width: 340px;
  }
  
  .hero a {
    width: 200px;
    height: 46px;
    font-size: 1rem;
  }
  
  /* Features Section */
  .features {
    padding: 40px 24px;
  }
  
  .feature-card {
    width: 100%;
    height: 180px;
    margin-bottom: 20px;
    padding: 24px;
  }
  
  /* Web Features */
  .web-features {
    padding: 50px 24px;
  }
  
  .gradient-card {
    padding: 30px;
    border-radius: 20px;
  }
  
  .extension-card {
    width: 100%;
    padding: 20px;
    margin-bottom: 16px;
  }
  
  /* Footer */
  .footer {
    padding: 40px 24px;
    flex-direction: column;
  }
  
  .contact-info {
    margin-bottom: 30px;
  }
  
  /* Specific Element Positioning */
  .absolute-positioned-element {
    transform: scale(0.8);
    left: 20px !important;
    top: 120px !important;
  }
  
  /* Image Adjustments */
  img.desktop-only {
    display: none;
  }
  
  img.mobile-optimized {
    max-width: 320px;
    height: auto;
    margin: 0 auto;
  }
  
  /* Form Elements */
  input, textarea, select {
    font-size: 16px !important; /* Prevent iOS zoom */
    padding: 12px 16px !important;
  }
  
  /* Safari Specific Fixes */
  @supports (-webkit-touch-callout: none) {
    .hero {
      height: -webkit-fill-available;
      min-height: calc(100vh - 60px);
    }
  }
}




/* IPHONE 12 - 844px */

@media (width: 390px) {
.navbar-container {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.documentation-btn {
    display: none;
}

.language-btn {
    display: none;
}

.logo-text {
    display: none;
}

.logo {
    left: 2px;
    top: 0px;
    margin-top: 35px;
}

.cta-button {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

.navbar {
    background-color: #141414;
    box-shadow: none;
}

.hero h1 {
    font-size: 30px;
}

.landing-text-logo {
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}

.hero a {
    height: 30px;
    font-size: 13px;
    width: 150px;
    border: 1px solid #ff9100;
}

.hero {
    background: url('../Assets/IP12-HERO.svg') no-repeat center center;
    height: 300px;

}

.features-bg-lottie {
    display: none;
}

.lottie-container {
    display: none;
}

.features {
    display: none;
}

.gradient-card {
    width: 300px;
}

.submit-btn {
    margin-left: 120px;
}

#loginModal.modal .modal-content {
    margin: 0;
    margin-bottom: 500px;
    margin-left: 16px;
    position: relative;
    top: 80px;
}


.modal .modal-content {
    margin-top: 0px;
    top: 370px;
    width: 70%;
    height: 530px;
}

#contactForm button {
    margin: 0;
    position: relative;
    left: 32px
}

.login-input{
    border-radius: 50px;
    border: 2px solid #f79000;
    width: 180px;
    position: relative;
    left: 0px;
}

.login-label {
    position: relative;
    right: -20px;
}

.submit-btn {
    position: relative;
    right: -90px
}

.logo img {
    margin-top: 50px;
}

.login-input{
    all: unset;
}

.form-group input.login-input {
    all:unset
}

}



/* IPHONE 12 - 844px */

@media (width: 390px) and (height:844px) {
.navbar-container {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.documentation-btn {
    display: none;
}

.language-btn {
    display: none;
}

.logo-text {
    display: none;
}

.logo {
    left: 2px;
    top: 0px;
    margin-top: 35px;
}

.cta-button {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

.navbar {
    background-color: #141414;
    box-shadow: none;
}

.hero h1 {
    font-size: 30px;
}

.landing-text-logo {
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}

.hero a {
    height: 30px;
    font-size: 13px;
    width: 150px;
    border: 1px solid #ff9100;
}

.hero {
    background: url('../Assets/IP12-HERO.svg') no-repeat center center;
    height: 300px;

}

.features-bg-lottie {
    display: none;
}

.lottie-container {
    display: none;
}

.features {
    display: none;
}

.gradient-card {
    width: 300px;
}

.submit-btn {
    margin-left: 120px;
}

#loginModal.modal .modal-content {
    margin: 0;
    margin-bottom: 500px;
    margin-left: 16px;
    position: relative;
    top: 80px;
}


.modal .modal-content {
    margin-top: 0px;
    top: 370px;
    width: 70%;
    height: 530px;
}

#contactForm button {
    margin: 0;
    position: relative;
    left: 32px
}

.login-input{
    border-radius: 50px;
    border: 2px solid #f79000;
    width: 180px;
    position: relative;
    left: 0px;
}

.login-label {
    position: relative;
    right: -20px;
}

.submit-btn {
    position: relative;
    right: -90px
}

.logo img {
    margin-top: 50px;
}

.login-input{
    all: unset;
}

.form-group input.login-input {
    all:unset
}

}





/* IPHONE 12 - 655px */

@media (width: 390px) and (height: 655px) {
.navbar-container {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.documentation-btn {
    display: none;
}

.language-btn {
    display: none;
}

.logo-text {
    display: none;
}

.logo {
    left: 2px;
    top: 0px;
    margin-top: 35px;
}

.cta-button {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

.navbar {
    background-color: #141414;
    box-shadow: none;
}

.hero h1 {
    font-size: 30px;
}

.landing-text-logo {
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}

.hero a {
    height: 30px;
    font-size: 13px;
    width: 150px;
    border: 1px solid #ff9100;
}

.hero {
    background: url('../Assets/IP12-HERO.svg') no-repeat center center;
    height: 300px;

}

.features-bg-lottie {
    display: none;
}

.lottie-container {
    display: none;
}

.features {
    display: none;
}

.gradient-card {
    width: 300px;
}

.submit-btn {
    margin-left: 120px;
}

#loginModal.modal .modal-content {
    margin: 0;
    margin-bottom: 500px;
    margin-left: 16px;
    position: relative;
    top: 80px;
}


.modal .modal-content {
    margin-top: 0px;
    top: 370px;
    width: 70%;
    height: 530px;
}

#contactForm button {
    margin: 0;
    position: relative;
    left: 32px
}

.login-input{
    border-radius: 50px;
    border: 2px solid #f79000;
    width: 180px;
    position: relative;
    left: 0px;
}

.login-label {
    position: relative;
    right: -20px;
}

.submit-btn {
    position: relative;
    right: -90px
}

.logo img {
    margin-top: 50px;
}

.login-input{
    all: unset;
}

.form-group input.login-input {
    all:unset
}

}





/* IPHONE 12 - 797px */

@media (width: 390px) and (height: 797px) {
.navbar-container {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

.documentation-btn {
    display: none;
}

.language-btn {
    display: none;
}

.logo-text {
    display: none;
}

.logo {
    left: 2px;
    top: 0px;
    margin-top: 35px;
}

.cta-button {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

.navbar {
    background-color: #141414;
    box-shadow: none;
}

.hero h1 {
    font-size: 30px;
}

.landing-text-logo {
    height: 30px;
    width: 30px;
    margin-bottom: 10px;
}

.hero a {
    height: 30px;
    font-size: 13px;
    width: 150px;
    border: 1px solid #ff9100;
}

.hero {
    background: url('../Assets/IP12-HERO.svg') no-repeat center center;
    height: 300px;

}

.features-bg-lottie {
    display: none;
}

.lottie-container {
    display: none;
}

.features {
    display: none;
}

.gradient-card {
    width: 300px;
}

.submit-btn {
    margin-left: 120px;
}

#loginModal.modal .modal-content {
    margin: 0;
    margin-bottom: 500px;
    margin-left: 16px;
    position: relative;
    top: 80px;
}


.modal .modal-content {
    margin-top: 0px;
    top: 370px;
    width: 70%;
    height: 530px;
}

#contactForm button {
    margin: 0;
    position: relative;
    left: 32px
}

.login-input{
    border-radius: 50px;
    border: 2px solid #f79000;
    width: 180px;
    position: relative;
    left: 0px;
}

.login-label {
    position: relative;
    right: -20px;
}

.submit-btn {
    position: relative;
    right: -90px
}

.logo img {
    margin-top: 50px;
}

.login-input{
    all: unset;
}

.form-group input.login-input {
    all:unset
}

}

