
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            line-height: 1.6;
            color: #333333;
            overflow-x: hidden;
        }
        
        h1, h2, h3 {
          font-family: 'Clash Display', sans-serif;
        }
        
        body, p, span, label, input, button {
          font-family: 'Satoshi', sans-serif;
        }
        
        .p{
            font-size:1.4rem;
        }
        
        /* Why Choose Stockovaa section */
        .why-choose-us .why-card p {
          font-size: 1.1rem;   /* adjust as you like */
        }
        
        /* Who Should Use Stockovaa section */
        .use-cases .use-case-card p {
          font-size: 1.1rem;   /* adjust as you like */
        }
        
        .plan-features .feature-item span {
          font-size: 1.1rem;
        }
        
        #features .feature-card p {
          font-size: 1.1rem;   /* adjust to your preferred size */
        }


        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        
        
        
        
        /* Enhanced Navigation with Sticky Behavior - Conflict-Free Version */
        nav {
            position: fixed;
            top: 0;
            width: 100%;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(15px);
            z-index: 1000;
            padding: 0.6rem 0;
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        nav.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
            padding: 0.4rem 0;
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            position: relative;
            height: 60px;
            min-height: 60px;
        }
        
        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #2c7a7b;
            display: flex;
            align-items: center;
            gap: 8px;
            height: 100%;
        }
        
        .logo img {
            width: 130px;
            height: auto;
            display: block;
        }
        
        /* Main Navigation */
        .nav-links {
            display: flex;
            list-style: none;
            gap: 0.2rem;
            align-items: center;
            height: 100%;
            margin: 0;
            padding: 0;
        }
        
        .nav-links li {
            position: relative;
            height: 100%;
            display: flex;
            align-items: center;
        }
        
        .nav-links > li > a {
            text-decoration: none;
            color: #333333;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 0.8rem 1rem;
            border-radius: 8px;
            transition: all 0.3s ease;
            position: relative;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            height: 70%;
            box-sizing: border-box;
        }
        
        .nav-links a:hover {
            color: #0B4650;
            background: rgba(44, 122, 123, 0.1);
        }
        
        .nav-links a i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .nav-links li:hover > a i {
            transform: rotate(180deg);
        }
        
        /* Dropdown Styles */
        .dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            background: white;
            min-width: 220px;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 122, 123, 0.2);
            z-index: 1001;
        }
        
        .nav-links li:hover .dropdown {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-content {
            padding: 1rem 0;
        }
        
        .dropdown-item {
            display: block;
            padding: 0.7rem 1.2rem;
            color: #4a5568;
            text-decoration: none;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
            border-left: 3px solid transparent;
        }
        
        .dropdown-item:hover {
            background: rgba(44, 122, 123, 0.05);
            color: #2c7a7b;
            border-left-color: #2c7a7b;
            padding-left: 1.5rem;
        }
        
        .dropdown-item i {
            width: 16px;
            margin-right: 8px;
            color: #2c7a7b;
        }
        
        /* Mega Menu for Solutions */
        .mega-menu {
            position: absolute;
            top: 100%;
            left: -100px;
            background: white;
            width: 500px;
            border-radius: 12px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
            opacity: 0;
            visibility: hidden;
            transform: translateY(-10px);
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 122, 123, 0.2);
            z-index: 1001;
        }
        
        .nav-links li:hover .mega-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .mega-menu-content {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 1rem;
            padding: 1.5rem;
        }
        
        .mega-menu-section h4 {
            font-size: 0.85rem;
            font-weight: 700;
            color: #2c7a7b;
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }
        
        .mega-menu-item {
            display: block;
            padding: 0.5rem 0;
            color: #4a5568;
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            border-radius: 6px;
            padding-left: 0.5rem;
        }
        
        .mega-menu-item:hover {
            background: rgba(44, 122, 123, 0.05);
            color: #2c7a7b;
            padding-left: 1rem;
        }
        
        .mega-menu-item i {
            width: 16px;
            margin-right: 8px;
            color: #2c7a7b;
        }
        
        /* CTA Buttons */
        .nav-cta {
            display: flex;
            gap: 1rem;
            align-items: center;
            height: 100%;
        }
        
        .login-btn {
            background: transparent;
            color: #0B4650;
            border: 2px solid #0B4650;
            padding: 10px 20px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            box-sizing: border-box;
        }
        
        .login-btn:hover {
            background: #0B4650;
            color: white;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(11, 70, 80, 0.2);
        }
        
        .signup-btn {
            background: #2c7a7b;
            color: white;
            border: 2px solid #2c7a7b;
            padding: 10px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            box-shadow: 0 3px 12px rgba(44, 122, 123, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
            height: 40px;
            box-sizing: border-box;
        }
        
        .signup-btn:hover {
            background: #0B4650;
            border-color: #0B4650;
            transform: translateY(-1px);
            box-shadow: 0 6px 20px rgba(11, 70, 80, 0.3);
        }
        
        /* Mobile Menu Button */
        .mobile-menu-btn {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 5px;
            z-index: 1001;
            transition: all 0.3s ease;
        }
        
        .mobile-menu-btn span {
            width: 28px;
            height: 3px;
            background: #2c7a7b;
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }
                
        .mobile-menu-btn.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-menu-btn.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-menu-btn.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -5px);
        }
        
        /* Mobile Menu Overlay */
        .mobile-menu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: linear-gradient(135deg, #0B4650 0%, #1a5f69 100%);
            z-index: 999;
            transform: translateX(-100%);
            transition: all 0.4s ease;
            overflow-y: auto;
            padding: 120px 0 1rem;
        }
        
        .mobile-menu-overlay.active {
            transform: translateX(0);
        }
        
        .mobile-menu-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%;
            max-width: 520px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        
        .mobile-nav-item {
            width: 100%;
            margin: 0.2rem 0;
        }
        
        .mobile-nav-link {
            color: white;
            text-decoration: none;
            font-size: 0.72rem;
            font-weight: 500;
            padding: 0.9rem 1.3rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-radius: 10px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 255, 255, 0.12);
            opacity: 0;
            transform: translateY(20px);
            backdrop-filter: blur(10px);
        }
        
        .mobile-menu-overlay.active .mobile-nav-link {
            opacity: 1;
            transform: translateY(0);
        }
        
        .mobile-nav-link:hover {
            background: rgba(44, 122, 123, 0.25);
            border-color: rgba(44, 122, 123, 0.4);
            color: #ABEB00;
            transform: translateY(-1px);
        }
        
        .mobile-nav-link.has-dropdown {
            cursor: pointer;
        }
        
        .mobile-nav-link i {
            font-size: 0.8rem;
            transition: transform 0.3s ease;
        }
        
        .mobile-nav-link.active i {
            transform: rotate(180deg);
        }
        
        /* Mobile Dropdown */
        .mobile-dropdown {
            background: rgba(44, 122, 123, 0.15);
            border-radius: 8px;
            margin-top: 0.3rem;
            overflow: hidden;
            max-height: 0;
            transition: all 0.4s ease;
            width: 100%;
            border: 1px solid rgba(44, 122, 123, 0.25);
            backdrop-filter: blur(10px);
        }
        
        .mobile-dropdown.active {
            max-height: 300px;
            padding: 0.3rem 0;
        }
        
        .mobile-dropdown-item {
            color: rgba(255, 255, 255, 0.9);
            text-decoration: none;
            font-size: 0.64rem;
            font-weight: 400;
            padding: 0.7rem 1.3rem;
            display: block;
            transition: all 0.3s ease;
            border-left: 2px solid transparent;
        }
        
        .mobile-dropdown-item:hover {
            background: rgba(44, 122, 123, 0.4);
            color: #ABEB00;
            border-left-color: #ABEB00;
            padding-left: 1.5rem;
        }
        
        .mobile-cta-section {
            width: 100%;
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.15);
        }
        
        .mobile-cta-btn {
            color: white;
            text-decoration: none;
            font-size: 0.76rem;
            font-weight: 500;
            padding: 0.8rem 1.5rem;
            display: block;
            text-align: center;
            border-radius: 20px;
            transition: all 0.3s ease;
            margin: 0.4rem 0;
            border: 1.5px solid rgba(44, 122, 123, 0.6);
            background: rgba(44, 122, 123, 0.15);
            backdrop-filter: blur(10px);
        }
        
        .mobile-cta-btn:hover {
            background: rgba(44, 122, 123, 0.4);
            color: #ABEB00;
            transform: translateY(-1px);
            border-color: #ABEB00;
            box-shadow: 0 4px 12px rgba(44, 122, 123, 0.3);
        }
        
        .mobile-cta-btn.primary {
            background: #2c7a7b;
            border-color: #2c7a7b;
            box-shadow: 0 2px 8px rgba(44, 122, 123, 0.3);
        }
        
        .mobile-cta-btn.primary:hover {
            background: #0B4650;
            border-color: #0B4650;
            box-shadow: 0 4px 16px rgba(11, 70, 80, 0.4);
        }
        
        /* Responsive Design */
        @media (max-width: 1024px) {
            .mega-menu {
                width: 400px;
                left: -50px;
            }
        }
        
        @media (max-width: 768px) {
            .mobile-menu-btn {
                display: flex;
            }
        
            .nav-links,
            .nav-cta {
                display: none;
            }
        
            .nav-container {
                height: 50px;
            }
        
            /* Only apply padding to content areas, not body */
            .page-content,
            .main-content,
            .site-content {
                padding-top: 70px;
            }
        
            .mobile-menu-overlay {
                padding: 110px 0 1rem;
            }
        
            .mobile-menu-container {
                max-width: 460px;
                padding: 0 1.2rem;
            }
        
            .mobile-nav-link {
                font-size: 1rem;
                padding: 0.8rem 1.1rem;
            }
        
            .mobile-dropdown-item {
                font-size: 1rem;
                padding: 0.6rem 1.1rem;
            }
        
            .mobile-cta-btn {
                font-size: 1rem;
                padding: 0.75rem 1.3rem;
            }
        }
        
        @media (max-width: 480px) {
            .mobile-menu-overlay {
                padding: 105px 0 1rem;
            }
        
            .mobile-menu-container {
                max-width: 400px;
                padding: 0 1rem;
            }
        
            .mobile-nav-link {
                font-size: 0.9rem;
                padding: 0.75rem 1rem;
            }
        
            .mobile-dropdown-item {
                font-size: 0.9rem;
                padding: 0.6rem 1rem;
            }
        
            .mobile-cta-btn {
                font-size: 0.9rem;
                padding: 0.7rem 1.2rem;
            }
        
            .mobile-menu-btn span {
                width: 26px;
                height: 3px;
            }
        }



        
        
        /* Enhanced Hero Section with Larger Image */
        .hero {
            background: linear-gradient(135deg, #f7fafc 0%, #e2e8f0 100%);
            color: #333333;
            padding: 140px 0 100px;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
        }
        
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 20% 50%, rgba(44, 122, 123, 0.05) 0%, transparent 50%),
                       radial-gradient(circle at 80% 20%, rgba(171, 235, 176, 0.08) 0%, transparent 50%);
            animation: float 20s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(180deg); }
        }
        
        .hero-content {
            display: grid;
            grid-template-columns: 45fr 55fr;
            gap: 3rem;
            align-items: center;
            position: relative;
            z-index: 2;
        }
        
        .hero-text h1 {
            font-size: 3rem;
            font-weight: 900;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: slideInUp 1s ease-out;
            color: #1a202c;
        }
        
        @keyframes slideInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .hero-text p {
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            opacity: 0.8;
            animation: slideInUp 1s ease-out 0.3s both;
            font-weight: 400;
            line-height: 1.6;
            color: #4a5568;
        }
        
        .cta-button-login {
            background: transparent;
            color: #0B4650;
            border: 2px solid #0B4650;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(44, 122, 123, 0.2);
            animation: slideInUp 1s ease-out 0.6s both;
            position: relative;
            overflow: hidden;
            margin-right: 20px;
        }
        
        .cta-button-login:hover {
            background: #0B4650;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(11, 70, 80, 0.25);
        }
        
        .cta-button {
            background: #2c7a7b;
            color: white;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
            box-shadow: 0 8px 25px rgba(44, 122, 123, 0.2);
            animation: slideInUp 1s ease-out 0.6s both;
            position: relative;
            overflow: hidden;
        }
        
        .cta-button:hover {
            background: #0B4650;
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(11, 70, 80, 0.25);
            color: white;
        }
        
        .hero-image {
            position: relative;
            animation: slideInRight 1s ease-out 0.4s both;
            
        }
        
        @keyframes slideInRight {
            from { opacity: 0; transform: translateX(50px); }
            to { opacity: 1; transform: translateX(0); }
        }
        
        /* Enhanced Dashboard mockup with much larger image */
        .dashboard-mockup {
            width: 100%;
            height: 550px; /* Increased from 450px */
            background: white;
            border-radius: 25px;
            padding: 15px;
            box-shadow: 0 25px 30px rgba(0, 0, 0, 0.15); /* Enhanced shadow */
            position: relative;
            overflow: hidden;
            transform: perspective(1200px) rotateY(0deg) rotateX(0deg);
            transition: transform 0.3s ease;
            border: 2px solid rgba(171, 235, 176, 0.1);
        }
        
        .dashboard-mockup:hover {
            transform: perspective(1200px) rotateY(-5deg) rotateX(3deg);
            box-shadow: 0 35px 100px rgba(0, 0, 0, 0.2);
        }
        
        .mockup-header {
            display: flex;
            gap: 12px;
            margin-bottom: 25px;
            align-items: center;
        }
        
        .mockup-dot {
            width: 10px; /* Slightly larger dots */
            height: 10px;
            border-radius: 50%;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .dot-red { background: #ff5f57; }
        .dot-yellow { background: #ffbd2e; }
        .dot-green { background: #28ca42; }
        
        .mockup-content {
            background: #f8fafc;
            height: calc(100% - 50px); /* Adjusted for new height */
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .mockup-content img {
            width: 100%; /* Makes the image fill the container horizontally */
            height: 100%; /* Makes the image fill the container vertically */
          
        }
        
        /* Enhanced image integration with better scaling */
        .app-screenshot {
            position: absolute;
            top: 0;
            left: 0;
            width: 80%;
            height: 140%;
            /* object-fit: cover;  Changed from contain to cover for better filling */
            border-radius: 15px;
            opacity: 0;
            animation: fadeInImage 1.5s ease-out 1s forwards;
            transition: transform 0.3s ease;
            background: #f8fafc;
        }
        
        @keyframes fadeInImage {
            from { opacity: 0; transform: scale(1.05); }
            to { opacity: 1; transform: scale(1); }
        }
        
        .dashboard-mockup:hover .app-screenshot {
            transform: scale(1.03);
        }
        
        /* Overlay effects for premium look */
        .mockup-content::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, 
                rgba(44, 122, 123, 0.02) 0%, 
                transparent 30%, 
                transparent 70%, 
                rgba(171, 235, 176, 0.02) 100%);
            pointer-events: none;
            border-radius: 15px;
            z-index: 1;
        }
        
        /* Enhanced gloss effect */
        .dashboard-mockup::before {
            content: '';
            position: absolute;
            top: 25px;
            left: 25px;
            width: 70%; /* Larger gloss area */
            height: 50%;
            background: linear-gradient(135deg, 
                rgba(255, 255, 255, 0.25) 0%, 
                rgba(255, 255, 255, 0.15) 50%, 
                transparent 100%);
            border-radius: 15px;
            pointer-events: none;
            z-index: 2;
            opacity: 0.7;
        }
        
        /* Loading animation before image appears */
        .loading-placeholder {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 60px; /* Larger loading spinner */
            height: 60px;
            border: 4px solid rgba(44, 122, 123, 0.3);
            border-top: 4px solid #2c7a7b;
            border-radius: 50%;
            animation: spin 1s linear infinite, fadeOut 1.5s ease-out 1s forwards;
        }
        
        @keyframes spin {
            0% { transform: translate(-50%, -50%) rotate(0deg); }
            100% { transform: translate(-50%, -50%) rotate(360deg); }
        }
        
        @keyframes fadeOut {
            from { opacity: 1; }
            to { opacity: 0; }
        }
        
        /* Responsive design */
        @media (max-width: 1400px) {
            .dashboard-mockup {
                height: 650px;
            }
            
            .mockup-content img {
            width: 100%; /* Makes the image fill the container horizontally */
            height: 100%; /* Makes the image fill the container vertically */
          
        }
        }
        
        
        
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 50fr 50fr;
                gap: 2rem;
            }
            
            .dashboard-mockup {
                height: 600px;
            }
            
            .mockup-content img {
            width: 100%; /* Makes the image fill the container horizontally */
            height: 100%; /* Makes the image fill the container vertically */
          
        }
        }
        
        @media (max-width: 768px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 3rem;
                text-align: center;
            }
        
            .hero-text h1 {
                font-size: 2.2rem;
                text-align: left;
                margin-top: -30px;
            }
        
            .hero-text p {
                font-size: 1.2rem;
                text-align: left;
                margin-top: 30px;
            }
        
            .dashboard-mockup {
                height: 550px;
                transform: none;
            }
            
            .mockup-content img {
            width: 100%; /* Makes the image fill the container horizontally */
            height: 100%; /* Makes the image fill the container vertically */
          
        }
        }
        
        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2.2rem;
                text-align: left;
            }
        
            .hero-text p {
                font-size: 1.2rem;
                text-align: left;
            }
        
            .dashboard-mockup {
                height: 450px;
            }
            
            .mockup-content img {
            width: 100%; /* Makes the image fill the container horizontally */
            height: 100%; /* Makes the image fill the container vertically */
          
        }
   }



        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        
        

        /* Enhanced Sections */
        .section {
            padding: 60px 0;
            position: relative;
        }

        .section-title {
            text-align: center;
            font-size: 2.2rem;
            font-weight: 900;
            color: #1a202c;
            margin-bottom: 4rem;
            position: relative;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #2c7a7b 0%, #ABEB00 100%);
            border-radius: 2px;
        }

        /* Enhanced Features Section with Consistent Icons */
        .features {
            background: #f8fafc;
            position: relative;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .feature-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(44, 122, 123, 0.08);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: #2c7a7b;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(11, 70, 80, 0.12);
            border-color: rgba(171, 235, 176, 0.3);
        }

        .feature-card:hover::before {
            background: linear-gradient(90deg, #2c7a7b 0%, #ABEB00 100%);
        }

        /* Consistent Round Icons */
        .feature-icon, .use-case-icon, .why-icon {
            width: 80px;
            height: 80px;
            background: #2c7a7b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 1.5rem;
            font-size: 2rem;
            color: white;
            box-shadow: 0 8px 20px rgba(44, 122, 123, 0.2);
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-icon,
        .use-case-card:hover .use-case-icon,
        .why-card:hover .why-icon {
            background: #0B4650;
            transform: scale(1.05);
            box-shadow: 0 8px 20px rgba(171, 235, 176, 0.4);
        }

        .feature-card h3, .use-case-card h3, .why-card h3 {
            font-size: 1.2rem;
            color: #1a202c;
            margin-bottom: 1rem;
            font-weight: 700;
        }

        .feature-card p, .use-case-card p, .why-card p {
            color: #4a5568;
            line-height: 1.7;
            font-size: 0.9rem;
        }

        /* Why Choose Us Section */
        .why-choose-us {
            background: white;
            padding: 100px 0;
        }

        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .why-card {
            background: white;
            padding: 2.5rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 122, 123, 0.08);
            position: relative;
            overflow: hidden;
        }

        .why-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(11, 70, 80, 0.12);
            background: rgba(171, 235, 176, 0.02);
            border-color: rgba(171, 235, 176, 0.2);
        }

        .why-icon {
            margin: 0 auto 1.5rem;
            position: relative;
            z-index: 2;
        }
        
        /* Stats Counter Section */
        .stats {
            background: #1a202c;
            color: white;
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            position: relative;
            z-index: 2;
        }

        .stat-item {
            text-align: center;
            padding: 2rem 1rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #ABEB00;
            line-height: 1;
            margin-bottom: 0.5rem;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.9;
            font-weight: 500;
        }

        /* Trust Indicators */
        .trust-indicators {
            background: #f8fafc;
            padding: 60px 0;
            text-align: center;
        }

        .trust-grid {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 4rem;
            flex-wrap: wrap;
            opacity: 0.6;
            filter: grayscale(100%);
            transition: all 0.3s ease;
        }

        .trust-grid:hover {
            opacity: 0.8;
            filter: grayscale(50%);
        }

        .trust-item {
            font-size: 1.2rem;
            font-weight: 700;
            color: #4a5568;
            padding: 1rem 2rem;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: white;
            transition: all 0.3s ease;
        }

        .trust-item:hover {
            border-color: #ABEB00;
            color: #0B4650;
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(171, 235, 176, 0.2);
        }

        /* Enhanced Use Cases */
        .use-cases {
            background: white;
        }

        .use-cases-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2.5rem;
        }

        .use-case-card {
            background: white;
            padding: 3rem 2rem;
            border-radius: 20px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
            border: 1px solid rgba(44, 122, 123, 0.08);
            position: relative;
            overflow: hidden;
        }

        .use-case-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(11, 70, 80, 0.12);
            background: rgba(171, 235, 176, 0.02);
        }

        .use-case-icon {
            margin: 0 auto 2rem;
            font-size: 2.5rem;
            position: relative;
            z-index: 2;
        }
        
        /* Enhanced Testimonials */
        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 3rem;
        }

        .testimonial-card {
            background: white;
            padding: 3rem 2.5rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
            position: relative;
            transition: all 0.3s ease;
            border-left: 5px solid #2c7a7b;
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: -15px;
            left: 25px;
            font-size: 5rem;
            color: rgba(171, 235, 176, 0.3);
            line-height: 1;
            opacity: 0.8;
        }

        .testimonial-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 50px rgba(11, 70, 80, 0.1);
            border-left-color: #ABEB00;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 2rem;
            padding-top: 2rem;
            font-size: 1rem;
            line-height: 1.7;
            color: #4a5568;
        }

        .testimonial-author {
            font-weight: 700;
            color: #0B4650;
            font-size: 0.9rem;
        }

        /* Enhanced FAQ */
        .faq {
            background: #f8fafc;
        }

        .faq-item {
            background: white;
            margin-bottom: 1.5rem;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            box-shadow: 0 10px 30px rgba(11, 70, 80, 0.08);
        }

        .faq-question {
            background: #0B4650;
            color: white;
            padding: 1.2rem 2rem;
            cursor: pointer;
            font-weight: 600;
            position: relative;
            transition: all 0.3s ease;
            font-size: 1.1rem;
        }

        .faq-question:hover {
            background: #2c7a7b;
        }

        .faq-question::after {
            content: '+';
            position: absolute;
            right: 2.5rem;
            top: 50%;
            transform: translateY(-50%);
            font-size: 2rem;
            font-weight: 300;
            transition: transform 0.3s ease;
            color: #ABEB00;
        }

        .faq-question.active::after {
            transform: translateY(-50%) rotate(45deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
            background: white;
            font-size: 1.1rem;
            line-height: 1.7;
            color: #4a5568;
        }

        .faq-answer.active {
            padding: 2rem;
            max-height: 300px;
        }

        /* Enhanced Contact Form with Bigger Container */
        .contact-form {
            max-width: 800px;
            margin: 0 auto;
            background: white;
            padding: 2rem;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(171, 235, 176, 0.1);
        }

        .form-group {
            margin-bottom: 1.0rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 700;
            color: #1a202c;
            font-size: 1.0rem;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 0.6rem 1.0rem;
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: 'Clash Display', sans-serif;
            background: #f8fafc;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ABEB00;
            background: white;
            box-shadow: 0 0 0 3px rgba(171, 235, 176, 0.2);
        }
        
        
        
        
        .form-group select {
            width: 100%;
            padding: 0.6rem 2.5rem 0.6rem 1.0rem; /* extra right padding for arrow spacing */
            border: 2px solid #e2e8f0;
            border-radius: 12px;
            font-size: 0.9rem;
            transition: all 0.3s ease;
            font-family: 'Clash Display', sans-serif;
            background: #f8fafc url('data:image/svg+xml;utf8,<svg fill="black" height="12" width="12" xmlns="http://www.w3.org/2000/svg"><path d="M2 4l4 4 4-4z"/></svg>') no-repeat right 1rem center;
            appearance: none; /* removes default native arrow */
            -webkit-appearance: none;
            -moz-appearance: none;
        }
        
        .form-group select:focus {
            outline: none;
            border-color: #ABEB00;
            background-color: white;
            box-shadow: 0 0 0 3px rgba(171, 235, 176, 0.2);
            background-position: right 1rem center; /* keeps arrow aligned even on focus */
        }



        .form-group textarea {
            height: 100px;
            resize: vertical;
        }

        .form-button {
            width: 100%;
            background: #2c7a7b;
            color: white;
            padding: 12px 20px;
            font-size: 1rem;
            font-weight: 700;
            border: none;
            border-radius: 12px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: block;
            text-align: center;
            box-shadow: 0 3px 12px rgba(44, 122, 123, 0.2);
        }

        .form-button:hover {
            background: #0B4650;
            transform: translateY(-2px);
            box-shadow: 0 12px 35px rgba(11, 70, 80, 0.4);
        }

        /* CTA Banner */
        .cta-banner {
            background: #0B4650;
            color: white;
            padding: 80px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-banner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 20%, rgba(171, 235, 0, 0.1) 0%, transparent 50%),
                       radial-gradient(circle at 70% 80%, rgba(171, 235, 0, 0.05) 0%, transparent 50%);
        }

        .cta-banner-content {
            position: relative;
            z-index: 2;
        }

        .cta-banner h2 {
            font-size: 2.5rem;
            font-weight: 900;
            margin-bottom: 1rem;
            text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
        }

        .cta-banner p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            opacity: 0.95;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 1.5rem;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-button-secondary {
            background: #ABEB00;
            color: white;
            border: 2px solid #ABEB00;
            padding: 10px 20px;
            font-size: 1rem;
            font-weight: 700;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.4s ease;
            text-decoration: none;
            display: inline-block;
        }

        .cta-button-secondary:hover {
            background: white;
            color: #0B4650;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        /* Live Chat Button */
        .live-chat-btn {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #ABEB00;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            font-size: 1.5rem;
            box-shadow: 0 8px 25px rgba(171, 235, 0, 0.4);
            z-index: 1000;
            transition: all 0.3s ease;
            animation: bounce 2s infinite;
        }

        .live-chat-btn:hover {
            background: #0B4650;
            transform: scale(1.1);
            box-shadow: 0 12px 35px rgba(11, 70, 80, 0.5);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* Notification Bar */
        .notification-bar {
            background: #ABEB00;
            color: white;
            padding: 12px 0;
            text-align: center;
            font-weight: 600;
            position: relative;
            overflow: hidden;
            animation: slideDown 0.5s ease-out;
            display: none;
        }

        @keyframes slideDown {
            from { transform: translateY(-100%); }
            to { transform: translateY(0); }
        }

        .notification-text {
            position: relative;
            z-index: 2;
        }
        
        
        
        
        .contact-info-section {
            color: #a0aec0;
            line-height: 1.8;
        }
        
        .contact-info-section p {
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }
        
        .contact-info-section a {
            color: #a0aec0 !important;
            text-decoration: none !important;
            transition: color 0.3s ease;
        }
        
        .contact-info-section a:hover {
            color: #2c7a7b !important;
            text-decoration: none !important;
        }
        
        
        .contact-info {
            text-align: center;
            margin-top: 2.5rem;
            font-size: 1rem;
            color: #4a5568;
            font-weight: 500;
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            

            .hero {
                padding: 120px 0 80px;
                min-height: auto;
            }

            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 1rem;
                margin-top:30px;
            }

            .hero-text h1 {
                font-size: 2.8rem;
                text-align: left;
                margin-top:-30px;
            }

            .hero-text p {
                font-size: 1.2rem;
                text-align: left;
                margin-top:30px;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .pricing-card.featured {
                transform: none;
            }

            .features-grid,
            .pricing-grid,
            .use-cases-grid,
            .testimonials-grid,
            .why-grid {
                grid-template-columns: 1fr;
            }

            .dashboard-mockup {
                transform: none;
                height: 300px;
            }

            .chart-placeholder {
                width: 150px;
                height: 100px;
            }

            .container {
                padding: 0 15px;
            }

            .feature-card,
            .pricing-card,
            .use-case-card,
            .testimonial-card,
            .why-card {
                padding: 2rem 1.5rem;
            }

            .contact-form {
                padding: 1.5rem;
                max-width: 100%;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }

            .stat-number {
                font-size: 2.5rem;
            }

            .trust-grid {
                gap: 2rem;
            }

            .trust-item {
                padding: 0.8rem 1.5rem;
                font-size: 1rem;
            }

            .cta-banner h2 {
                font-size: 2rem;
            }

            .cta-banner p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .live-chat-btn {
                width: 50px;
                height: 50px;
                font-size: 1.2rem;
                bottom: 20px;
                right: 20px;
            }

            .notification-bar {
                padding: 10px 15px;
                font-size: 0.9rem;
            }

            .pricing-toggle {
                flex-direction: column;
                gap: 0.5rem;
            }
        }

        @media (max-width: 480px) {
            .hero-text h1 {
                font-size: 2.2rem;
                text-align: left;
            }

            .hero-text p {
                font-size: 1.2rem;
                text-align: left;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .price {
                font-size: 2.8rem;
            }
        }
        
        /* Animation utilities */
        /* Animation utilities */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.6s ease;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Hidden class for pricing toggle */
        .hidden {
            display: none !important;
        }

        /* Loading animation for hero */
        @keyframes heroLoad {
            0% { opacity: 0; transform: translateY(30px); }
            100% { opacity: 1; transform: translateY(0); }
        }

        .hero-loaded .hero-text h1,
        .hero-loaded .hero-text p,
        .hero-loaded .cta-button {
            animation: heroLoad 0.8s ease-out forwards;
        }

        .hero-loaded .hero-text h1 { animation-delay: 0.2s; }
        .hero-loaded .hero-text p { animation-delay: 0.4s; }
        .hero-loaded .cta-button { animation-delay: 0.6s; }



        .contact-info {
        color: #4a5568;
        line-height: 1.8;
        margin-top: 20px;
        }

        .contact-info p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-info a {
            color: #2c7a7b; /* Set the link color */
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ABEB00; /* Change to hover color */
        }

        .contact-info i {
            color: #2c7a7b; /* Icon color */
        }
        
        
        
        
        
        
        
        
        
        
        
        
        /* Contact Info --- */
        
        .contact-info {
        color: #4a5568;
        line-height: 1.8;
        margin-top: 20px;
        }

        .contact-info p {
            font-size: 1rem;
            margin-bottom: 0.5rem;
            align-items: center;
            gap: 0.5rem;
        }

        .contact-info a {
            color: #2c7a7b; /* Set the link color */
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: #ABEB00; /* Change to hover color */
        }

        .contact-info i {
            color: #2c7a7b; /* Icon color */
        }

                @media (max-width: 768px) {
            .footer-bottom p {
                white-space: normal; /* Allow the text to break to a new line */
            }
            .footer-bottom .powered-by {
                display: block; /* Make "Powered by" go to the next line on smaller screens */
                margin-top: 5px; /* Optional: Add some space between lines */
            }
        }
        
        .footer-bottom .separator {
            display: inline;
        }
        
        @media (max-width: 768px) {
            .footer-bottom .separator {
                display: none; /* Hide the separator on mobile devices */
            }
        }
        
        
        .contact-info .separator {
            display: inline;
        }
        
        .contact-info .phone-link {
            display: inline-flex;
            align-items: center;
        }
        
        .contact-info .phone-link i {
            margin-right: 5px; /* Adds space between the icon and the number */
        }
        
        @media (max-width: 768px) {
            .contact-info .separator {
                display: none; /* Hide the separator on mobile devices */
            }
        
            .contact-info .phone-link {
                display: block; /* Break the phone icon and number to the next line on mobile */
                margin-top: 5px; /* Optional: Add some space above the phone number */
            }
        } 
 
 
 
 
         /* Footer Styles */
        .footer {
            background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
            color: white;
            padding: 4rem 0 0;
            position: relative;
        }
        
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #2c7a7b 0%, #ABEB00 100%);
        }
        
        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.5fr;
            gap: 3rem;
            margin-bottom: 2rem;
            padding-bottom: 2rem;
            border-bottom: 1px solid #4a5568;
        }
        
        .footer-section h3 {
            color: #2c7a7b;
            margin-bottom: 1.5rem;
            font-size: 1.1rem;
            font-weight: 700;
            margin-top: 0;
            position: relative;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 30px;
            height: 2px;
            background: #ABEB00;
        }
        
        .footer-section p {
            line-height: 1.7;
            color: #a0aec0;
            margin-bottom: 1.5rem;
        }
        
        #logo-footer {
            margin-bottom: 1rem;
        }
        
        #logo-footer a {
            display: inline-block;
        }
        
        #logo-footer img {
            width: 180px;
            height: auto;
        }
        
        .footer-links {
            list-style: none;
            padding-left: 0;
            margin-bottom: 0;
        }
        
        .footer-links li {
            margin-bottom: 0.8rem;
        }
        
        .footer-links a {
            color: #a0aec0;
            text-decoration: none;
            transition: all 0.3s ease;
            position: relative;
            font-size: 0.9rem;
        }
        
        .footer-links a:hover {
            color: #2c7a7b;
            padding-left: 3px;
            text-decoration: none;
        }
        
        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            background: #2c7a7b;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
        }
        
        .social-icon:hover {
            background: #ABEB00;
            transform: translateY(-2px) scale(1.05);
            box-shadow: 0 8px 20px rgba(171, 235, 0, 0.3);
            color: white;
        }
        
        .contact-info-section {
            color: #a0aec0;
            line-height: 1.8;
            margin-bottom: 1rem;
        }
        
        .contact-info-section p {
            margin-bottom: 0.6rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
        }
        
        .contact-info-section i {
            color: #ABEB00;
            width: 16px;
            text-align: center;
        }
        
        .contact-info-section a {
            color: #a0aec0;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .contact-info-section a:hover {
            color: #2c7a7b;
            text-decoration: none;
        }
        
        .footer-legal-links {
            margin-bottom: 1rem;
            padding-top: 0.1rem;
            font-size: 1rem;
        }
        
        .footer-legal-links a {
            color: #a0aec0;
            text-decoration: none;
            margin: 0 5px;
            transition: color 0.3s ease;
        }
        
        .footer-legal-links a:hover {
            color: #ABEB00;
        }
        
        /* Industry Solutions Banner */
        .footer-industry-banner {
            background: transparent;
            padding: 1.5rem 0;
            margin: 2rem 0 0;
        }
        
        .industry-content h4 {
            color: #ABEB00;
            font-size: 1rem;
            margin-bottom: 1rem;
            text-align: center;
            font-weight: 600;
        }
        
        .industry-links {
            display: flex;
            justify-content: center;
            gap: 2rem;
            flex-wrap: wrap;
        }
        
        .industry-links a {
            color: #cbd5e0;
            text-decoration: none;
            font-size: 0.85rem;
            padding: 0.3rem 0.8rem;
            border: 1px solid #4a5568;
            border-radius: 15px;
            transition: all 0.3s ease;
        }
        
        .industry-links a:hover {
            color: #ABEB00;
            border-color: #ABEB00;
            background: rgba(171, 235, 0, 0.1);
        }
        
        /* Trust Badges */
        .footer-trust-badges {
            background: transparent;
            padding: 1.5rem 0;
        }
        
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
        }
        
        .trust-badge {
            background: rgba(44, 122, 123, 0.2);
            color: #ABEB00;
            padding: 0.4rem 0.8rem;
            border-radius: 12px;
            font-size: 0.8rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 0.3rem;
            border: 1px solid rgba(171, 235, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .trust-badge:hover {
            background: rgba(171, 235, 0, 0.1);
            border-color: #ABEB00;
        }
        
        .footer-bottom {
            text-align: center;
            padding: 2rem 0;
            color: #a0aec0;
            background: transparent;
        }
        
        .footer-bottom .company-name {
            font-weight: bold;
        }
        
        .footer-bottom .powered-by {
            display: inline-block;
        }
        
        .footer-bottom .separator {
            display: inline;
        }
        
        /* Footer Responsive Design */
        @media (max-width: 1024px) {
            .footer-content {
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
            }
            
            .footer-section:nth-child(1) {
                grid-column: 1 / -1;
                margin-bottom: 1rem;
            }
        }
        
        @media (max-width: 768px) {
            .footer-content {
                grid-template-columns: 1fr;
                gap: 2rem;
            }
            
            .footer-section:nth-child(1) {
                grid-column: auto;
            }
        
            .footer-bottom p {
                white-space: normal;
            }
            
            .footer-bottom .powered-by {
                display: block;
                margin-top: 5px;
            }
            
            .footer-bottom .separator {
                display: none;
            }
        
            .industry-links {
                gap: 1rem;
            }
        
            .trust-badges {
                gap: 1rem;
            }
        
            #logo-footer img {
                width: 150px;
            }
        }
        
        @media (max-width: 480px) {
            .trust-badges {
                flex-direction: column;
                align-items: center;
            }
            
            .industry-links {
                flex-direction: column;
                align-items: center;
                gap: 0.8rem;
            }
        
            .footer-container {
                padding: 0 15px;
            }
        
            #logo-footer img {
                width: 130px;
            }
        }





        
        
        
        /* Subdomain Modal Styles */
        .subdomain-modal-overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 9999;
            animation: subdomainFadeIn 0.3s ease-out;
        }

        .subdomain-modal-overlay.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .subdomain-modal {
            background: white;
            border-radius: 16px;
            width: 90%;
            max-width: 450px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
            transform: scale(0.9);
            animation: subdomainModalSlideIn 0.3s ease-out forwards;
            position: relative;
            overflow: hidden;
            border: 0px solid #e2e8f0;
        }

        @keyframes subdomainFadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes subdomainModalSlideIn {
            to {
                transform: scale(1);
            }
        }

        .subdomain-modal-header {
            background: #2c7a7b;
            padding: 30px 25px;
            text-align: center;
            color: white;
        }

        .subdomain-modal-title {
            font-size: 1.5rem;
            font-weight: 600;
            margin-bottom: 8px;
            opacity: 0.95;
        }

        .subdomain-modal-subtitle {
            font-size: 1.3rem;
            opacity: 0.8;
        }

        .subdomain-modal-content {
            padding: 30px 25px;
        }

        .subdomain-close-btn {
            position: absolute;
            top: 15px;
            right: 20px;
            background: #333333;
            border: none;
            font-size: 24px;
            color: rgba(255, 255, 255, 0.8);
            cursor: pointer;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.2s;
            z-index: 10;
        }

        .subdomain-close-btn:hover {
            background-color: rgba(255, 255, 255, 0.2);
            color: white;
        }

        .subdomain-input-group {
            margin-bottom: 24px;
        }

        .subdomain-input-label {
            display: block;
            font-weight: 600;
            color: #1e293b;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

        .subdomain-input-container {
            position: relative;
            display: flex;
            align-items: stretch;
            border: 2px solid #e2e8f0;
            border-radius: 10px;
            background: #f8fafc;
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .subdomain-input-container:focus-within {
            border-color:  #ABEB00;
            background: white;
            box-shadow: 0 0 0 3px rgba(11, 70, 80, 0.1);
        }

        .subdomain-text-input {
            flex: 1;
            min-width: 0;
            padding: 14px 18px;
            border: none;
            outline: none;
            font-size: 1rem;
            font-weight: 500;
            color: #1e293b;
            background: transparent;
        }

        .subdomain-suffix {
            flex-shrink: 0;
            padding: 14px 12px;
            background-color: #ABEB00;
            color: #1e293b;
            font-weight: 600;
            font-size: 0.9rem;
            white-space: nowrap;
            display: flex;
            align-items: center;
        }

        .subdomain-enter-btn {
            width: 100%;
            padding: 14px 24px;
            background: #2c7a7b;
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 1.1rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 15px rgba(11, 70, 80, 0.3);
            margin: 25px 0 20px;
        }

        .subdomain-enter-btn:hover {
            background: #0B4650;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(11, 70, 80, 0.4);
        }

        .subdomain-enter-btn:active {
            transform: translateY(0);
        }

        .subdomain-example-text {
            font-size: 1rem;
            color: #64748b;
            margin-top: 8px;
            padding: 8px 12px;
            background-color: #f0fdf4;
            border-radius: 6px;
            border-left: 4px solid #ABEB00;
            font-weight: 500;
        }

        /* Mobile Responsiveness */
        @media (max-width: 768px) {
            .subdomain-modal {
                width: 95%;
                margin: 20px;
            }
            
            .subdomain-modal-header {
                padding: 25px 20px;
            }
            
            .subdomain-modal-content {
                padding: 25px 20px;
            }
            
            .subdomain-modal-title {
                font-size: 1.4rem;
            }
            
            .subdomain-text-input {
                padding: 12px 14px;
                font-size: 1.2rem;
            }
            
            .subdomain-suffix {
                padding: 12px 10px;
                font-size: 0.9rem;
                font-weight: 700;
            }
            
            .subdomain-enter-btn {
                font-size: 1.2rem;
                padding: 12px 20px;
            }
            
            .subdomain-example-text {
            font-size: 1rem;
            }
        }

        @media (max-width: 480px) {
            .subdomain-modal {
                width: 98%;
                margin: 10px;
                max-width: none;
            }
            
            .subdomain-modal-header {
                padding: 20px 15px;
            }
            
            .subdomain-modal-content {
                padding: 20px 15px;
            }
            
            .subdomain-text-input {
                padding: 10px 12px;
                font-size: 0.9rem;
            }
            
            .subdomain-suffix {
                padding: 10px 8px;
                font-size: 0.75rem;
                min-width: fit-content;
            }
            
            .subdomain-input-container {
                border-radius: 8px;
            }
            
            .subdomain-enter-btn {
                font-size: 0.95rem;
                padding: 10px 16px;
                margin: 20px 0 15px;
            }
            
            .subdomain-example-text {
                font-size: 0.8rem;
                padding: 6px 10px;
            }
            
            .subdomain-example-text {
            font-size: 0.95rem;
            }
        }

        @media (max-width: 320px) {
            .subdomain-suffix {
                font-size: 0.7rem;
                padding: 10px 6px;
            }
            
            .subdomain-text-input {
                font-size: 0.85rem;
                padding: 10px;
            }
            
            .subdomain-example-text {
            font-size: 0.7rem; 
            }
        }
        
        
        /* Prevent input zoom on ALL mobile devices */
        input[type="text"],
        input[type="email"],
        input[type="password"],
        input[type="number"],
        input[type="tel"],
        input[type="url"],
        input[type="search"],
        input[type="date"],
        input[type="time"],
        input[type="datetime-local"],
        input[type="month"],
        input[type="week"],
        input[type="color"],
        textarea,
        select {
            font-size: 16px !important;
            transform-origin: left top;
            transform: scale(1);
        }
        
        /* Force minimum font size for all form elements */
        input, textarea, select, button {
            font-size: max(16px, 1rem) !important;
        }
        
        /* Target all possible form containers */
        form input,
        form textarea,
        form select,
        .modal input,
        .modal textarea,
        .modal select,
        .popup input,
        .popup textarea,
        .popup select,
        .overlay input,
        .overlay textarea,
        .overlay select,
        div[class*="modal"] input,
        div[class*="modal"] textarea,
        div[class*="modal"] select,
        div[id*="modal"] input,
        div[id*="modal"] textarea,
        div[id*="modal"] select {
            font-size: 16px !important;
            -webkit-text-size-adjust: 100%;
            text-size-adjust: 100%;
        }
        
        /* Additional mobile-specific properties */
        @media screen and (max-width: 1024px) {
            input, textarea, select {
                font-size: 16px !important;
                -webkit-appearance: none;
                -moz-appearance: none;
                appearance: none;
                -webkit-text-size-adjust: 100%;
                text-size-adjust: 100%;
                zoom: 1;
            }
        }
        
        /* Ensure consistent behavior across all mobile browsers */
        @supports (-webkit-touch-callout: none) {
            /* iOS Safari specific */
            input, textarea, select {
                font-size: 16px !important;
                -webkit-text-size-adjust: 100%;
            }
        }
        
        /* Android Chrome specific */
        @media screen and (-webkit-min-device-pixel-ratio: 0) {
            input, textarea, select {
                font-size: 16px !important;
            }
        }
        
        /* Global override for any missed inputs */
        * input,
        * textarea,
        * select {
            font-size: max(16px, 1rem) !important;
        }
        
        
        
        

                        
        
        /* Video Modal */
        #stockovaa-video-modal {
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background: rgba(0, 0, 0, 0.9);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 999999;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            padding: 20px;
        }

        #stockovaa-video-modal.stockovaa-active {
            opacity: 1;
            visibility: visible;
        }

        .stockovaa-modal-content {
            position: relative;
            width: 85%;
            max-width: 800px;
            background: #1a1a1a;
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
            transform: scale(0.8) translateY(50px);
            transition: all 0.3s ease;
        }

        #stockovaa-video-modal.stockovaa-active .stockovaa-modal-content {
            transform: scale(1) translateY(0);
        }

        .stockovaa-modal-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            background: linear-gradient(135deg, #2c7a7b, #0B4650);
            color: white;
        }

        .stockovaa-modal-title {
            font-size: 1.2rem;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 12px;
            color: white;
        }

        .stockovaa-modal-title .fa {
            color: #ff4444;
            font-size: 1.4rem;
        }

        .stockovaa-close-btn {
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: all 0.3s ease;
            width: 40px;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .stockovaa-close-btn:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: rotate(90deg);
        }

        .stockovaa-video-container {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            background: #000;
        }

        .stockovaa-video-iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: none;
        }

        .stockovaa-modal-footer {
            padding: 16px 20px;
            background: #404040;
            color: #ccc;
            text-align: center;
            font-size: 0.85rem;
        }

        .stockovaa-controls {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 12px;
        }

        .stockovaa-control-btn {
            background: #5a5a5a;
            border: none;
            color: #e0e0e0;
            padding: 10px 16px;
            border-radius: 6px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.9rem;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            min-width: 110px;
            justify-content: center;
        }

        .stockovaa-control-btn:hover {
            background: #2c7a7b;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(44, 122, 123, 0.3);
        }

        .stockovaa-control-btn .fa {
            font-size: 1rem;
        }

        .stockovaa-footer-text {
            color: #b0b0b0;
            font-size: 0.8rem;
            margin-top: 8px;
        }

        .stockovaa-loading-spinner {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
        }

        .stockovaa-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255, 255, 255, 0.1);
            border-top: 3px solid #2c7a7b;
            border-radius: 50%;
            animation: stockovaa-spin 1s linear infinite;
        }

        @keyframes stockovaa-spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .stockovaa-modal-content {
                width: 95%;
            }

            .stockovaa-modal-header {
                padding: 14px 16px;
            }

            .stockovaa-modal-title {
                font-size: 1.1rem;
            }

            .stockovaa-modal-footer {
                padding: 14px 16px;
            }

            .stockovaa-controls {
                flex-wrap: wrap;
                gap: 10px;
            }

            .demo-cta-button-secondary {
                padding: 14px 24px;
                font-size: 1rem;
            }
        }

        /* Demo page styling */
        .demo-container {
            text-align: center;
            padding: 40px 20px;
            max-width: 800px;
        }

        .demo-container h1 {
            margin-bottom: 30px;
            color: #333;
            font-size: 2.5rem;
        }

        .demo-container p {
            margin-bottom: 30px;
            color: #666;
            font-size: 1.1rem;
            line-height: 1.6;
        }

        /* Font Awesome icon support */
        .fa {
            font-family: "FontAwesome";
            font-style: normal;
            font-weight: normal;
            line-height: 1;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Notification */
        .stockovaa-notification {
            position: fixed;
            top: 20px;
            right: 20px;
            background: #2c7a7b;
            color: white;
            padding: 12px 20px;
            border-radius: 8px;
            z-index: 1000000;
            font-weight: 500;
            opacity: 0;
            transform: translateY(-20px);
            transition: all 0.3s ease;
            font-size: 0.9rem;
        }
        
        
        
        /* Alert styles for contact form */
        #landingContactAlert {
            animation: slideDown 0.3s ease-out;
        }
        
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Form button loading state */
        .form-button:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }
        
        .form-button .fa-spinner {
            animation: spin 1s linear infinite;
        }
        
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
        
        
        
        
        
        
        
        
        
        
/* ===== MOBILE INLINE CURRENCY SELECTOR (Beside Hamburger Menu) ===== */

.mobile-inline-currency-selector {
    display: none;
    position: relative;
    margin-right: 1rem;
    margin-left: auto;
}

.mobile-inline-currency-btn {
    background: rgba(44, 122, 123, 0.1);
    border: 1px solid rgba(44, 122, 123, 0.3);
    color: #0B4650;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    transition: all 0.3s ease;
    height: 38px;
    white-space: nowrap;
}

.mobile-inline-currency-btn:hover,
.mobile-inline-currency-btn.active {
    background: rgba(44, 122, 123, 0.2);
    border-color: rgba(44, 122, 123, 0.5);
    transform: translateY(-1px);
}

.mobile-inline-currency-btn .currency-flag {
    font-size: 1.2rem;
}

.mobile-inline-currency-btn .currency-code {
    font-weight: 700;
}

/* Mobile inline dropdown */
#mobileInlineCurrencyDropdown {
    position: fixed;
    top: 70px;
    right: 10px;
    left: auto;
    background: white;
    border: 1px solid rgba(44, 122, 123, 0.2);
    border-radius: 12px;
    width: calc(100vw - 20px);
    max-width: 320px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1100;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

#mobileInlineCurrencyDropdown.active {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
}

/* Currency options in mobile inline dropdown */
#mobileInlineCurrencyDropdown .currency-option {
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

#mobileInlineCurrencyDropdown .currency-option:last-child {
    border-bottom: none;
}

#mobileInlineCurrencyDropdown .currency-option:hover {
    background: rgba(44, 122, 123, 0.08);
    padding-left: 1.3rem;
}

#mobileInlineCurrencyDropdown .currency-flag {
    font-size: 1.5rem;
    flex-shrink: 0;
}

#mobileInlineCurrencyDropdown .currency-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#mobileInlineCurrencyDropdown .currency-code {
    color: #0B4650;
    font-weight: 600;
    font-size: 0.95rem;
}

#mobileInlineCurrencyDropdown .currency-name {
    color: #666;
    font-size: 0.8rem;
}

/* ===== MOBILE CURRENCY SELECTOR (Inside Menu Overlay) ===== */

.mobile-currency-selector {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
}

.mobile-currency-btn {
    width: 100%;
    background: white;
    border: 1px solid rgba(44, 122, 123, 0.3);
    color: #0B4650;
    padding: 1rem 1.3rem;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.mobile-currency-btn:hover {
    background: rgba(44, 122, 123, 0.1);
    border-color: rgba(44, 122, 123, 0.5);
    transform: translateY(-1px);
}

.mobile-currency-btn.active {
    background: rgba(44, 122, 123, 0.15);
    border-color: #2c7a7b;
}

.mobile-currency-btn .currency-flag {
    font-size: 1.3rem;
    margin-right: 0.5rem;
}

.mobile-currency-btn .currency-code {
    flex: 1;
    text-align: left;
    font-weight: 600;
}

.mobile-currency-btn i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.mobile-currency-btn.active i {
    transform: rotate(180deg);
}

.mobile-currency-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid rgba(44, 122, 123, 0.3);
    border-radius: 10px;
    margin-top: 0.5rem;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.mobile-currency-dropdown.active {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
}

.mobile-currency-dropdown .currency-option {
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-currency-dropdown .currency-option:last-child {
    border-bottom: none;
}

.mobile-currency-dropdown .currency-option:hover {
    background: rgba(44, 122, 123, 0.1);
    padding-left: 1.5rem;
}

.mobile-currency-dropdown .currency-flag {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.mobile-currency-dropdown .currency-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.mobile-currency-dropdown .currency-code {
    color: #0B4650;
    font-weight: 600;
    font-size: 0.95rem;
}

.mobile-currency-dropdown .currency-name {
    color: #666;
    font-size: 0.8rem;
}

/* ===== DESKTOP CURRENCY SELECTOR ===== */

.currency-selector {
    position: relative;
    margin-right: 1rem;
}

.currency-btn {
    background: rgba(44, 122, 123, 0.1);
    border: 1px solid rgba(44, 122, 123, 0.3);
    color: #0B4650;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    height: 40px;
}

.currency-btn:hover {
    background: rgba(44, 122, 123, 0.2);
    border-color: rgba(44, 122, 123, 0.5);
    transform: translateY(-1px);
}

.currency-btn.active {
    background: rgba(44, 122, 123, 0.25);
    border-color: #2c7a7b;
}

.currency-btn .currency-flag {
    font-size: 1.2rem;
}

.currency-btn .currency-code {
    font-weight: 600;
}

.currency-btn i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.currency-btn.active i {
    transform: rotate(180deg);
}

.currency-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border: 1px solid rgba(44, 122, 123, 0.2);
    border-radius: 12px;
    min-width: 250px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.currency-dropdown.active {
    max-height: 400px;
    opacity: 1;
    transform: translateY(0);
    overflow-y: auto;
}

.currency-dropdown .currency-option {
    padding: 0.8rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.currency-dropdown .currency-option:last-child {
    border-bottom: none;
}

.currency-dropdown .currency-option:hover {
    background: rgba(44, 122, 123, 0.08);
    padding-left: 1.3rem;
}

.currency-dropdown .currency-flag {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.currency-dropdown .currency-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.currency-dropdown .currency-code {
    color: #0B4650;
    font-weight: 600;
    font-size: 0.95rem;
}

.currency-dropdown .currency-name {
    color: #666;
    font-size: 0.8rem;
}

/* ===== SMOOTH ANIMATIONS ===== */

.price-amount,
.currency {
    transition: opacity 0.3s ease;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 768px) {
    /* Hide desktop currency selector */
    .currency-selector {
        display: none;
    }
    
    /* Show mobile inline currency selector (beside hamburger) */
    .mobile-inline-currency-selector {
        display: block;
    }
    
    /* Mobile currency selector inside menu stays visible */
    .mobile-currency-selector {
        display: block;
    }
}

@media (min-width: 769px) {
    /* Show desktop currency selector */
    .currency-selector {
        display: block;
    }
    
    /* Hide mobile inline currency selector */
    .mobile-inline-currency-selector {
        display: none;
    }
    
    /* Hide mobile currency selector inside menu */
    .mobile-currency-selector {
        display: none;
    }
}

/* ===== SCROLLBAR STYLING ===== */

.currency-dropdown::-webkit-scrollbar,
.mobile-currency-dropdown::-webkit-scrollbar,
#mobileInlineCurrencyDropdown::-webkit-scrollbar {
    width: 6px;
}

.currency-dropdown::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.currency-dropdown::-webkit-scrollbar-thumb {
    background: rgba(44, 122, 123, 0.4);
    border-radius: 10px;
}

.mobile-currency-dropdown::-webkit-scrollbar-track,
#mobileInlineCurrencyDropdown::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.mobile-currency-dropdown::-webkit-scrollbar-thumb,
#mobileInlineCurrencyDropdown::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.3);
    border-radius: 10px;
}

/* ===== PREMIUM COUNTRY RESTRICTIONS ===== */
/* Non-premium currencies will be styled as disabled by JavaScript */
.currency-option[data-premium="false"] {
    opacity: 0.4;
    cursor: not-allowed !important;
    pointer-events: none;
}

.currency-option[data-premium="true"] {
    opacity: 1;
    cursor: pointer;
}