    /* Base Styles */
        :root {
            --primary-color: #e53935;
            --secondary-color: #212121;
            --background-color: #ffffff;
            --text-color: #212121;
            --accent-color: #e53935;
            --footer-bg: #f5f5f5;
            --card-bg: #ffffff;
            --nav-bg: #ffffff;
            --shadow: 0 2px 10px rgba(0,0,0,0.1);
             --primary-color: #e53935;
            --secondary-color: #212121;
            --background-color: #ffffff;
            --text-color: #212121;
            --accent-color: #e53935;
            --footer-bg: #f5f5f5;
            --card-bg: #ffffff;
            --nav-bg: #e53935;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --bg-dark: #ffffff;
            --bg-card: #ffffff;
            --bg-form: #ffffff;
            --text-light: #212121;
            --text-muted: #666;
            --border-color: #ddd;
            --transition: all 0.3s ease;
            --error-color: #e53935;
            --success-color: #4caf50;
            --primary-dark: #c62828;
        }

        .theme-white-red {
            --primary-color: #131212;
            --secondary-color: #ffffff;
            --background-color: #f5f5f5;
            --text-color: #212121;
            --accent-color: #e53935;
            --footer-bg: #ffffff;
            --card-bg: #ffffff;
            --nav-bg: #ffffff;
             --primary-color: #e53935;
            --secondary-color: #212121;
            --background-color: #ffffff;
            --text-color: #212121;
            --accent-color: #e53935;
            --footer-bg: #f5f5f5;
            --card-bg: #ffffff;
            --nav-bg: #e53935;
            --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            --bg-dark: #ffffff;
            --bg-card: #ffffff;
            --bg-form: #ffffff;
            --text-light: #212121;
            --text-muted: #666;
            --border-color: #ddd;
            --transition: all 0.3s ease;
            --error-color: #e53935;
            --success-color: #4caf50;
            --primary-dark: #c62828;
        }



        * {
            margin: 0;
            padding: 0;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--background-color);
            color: var(--text-color);
            transition: all 0.3s ease;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }

        /* Loader Styles */
        .loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: var(--background-color);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
            transition: opacity 0.5s ease, visibility 0.5s ease;
        }

        .loader.hidden {
            opacity: 0;
            visibility: hidden;
        }

        .loader-text {
            margin-top: 20px;
            font-size: 18px;
            color: var(--text-color);
            text-align: center;
        }

        /* Header Styles */
        header {
            background-color: var(--nav-bg);
            box-shadow: var(--shadow);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
        }

        .logo {
            font-size: 24px;
            font-weight: bold;
            color: var(--accent-color);
        }

        .logo span {
            color: var(--text-color);
        }

        .search-bar {
            flex: 1;
            max-width: 500px;
            margin: 0 20px;
            position: relative;
        }

        .search-bar input {
            width: 100%;
            padding: 10px 15px;
            border-radius: 30px;
            border: 1px solid #ddd;
            outline: none;
            font-size: 14px;
        }

        .search-bar button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 35px;
            height: 35px;
            cursor: pointer;
        }

        .header-actions {
            display: flex;
            align-items: center;
        }

        .header-actions button {
            background: none;
            border: none;
            margin-left: 15px;
            cursor: pointer;
            color: var(--text-color);
            font-size: 16px;
        }
         @media (max-width: 992px) {
            .header-actions button{
                font-size: 12px;
            }
         }

        .language-selector {
            position: relative;
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            box-shadow: var(--shadow);
            border-radius: 5px;
            padding: 10px;
            display: none;
            z-index: 100;
        }

        .language-selector:hover .language-dropdown {
            display: block;
        }

        .language-option {
            padding: 5px 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
        }

        .language-option:hover {
            background: #f5f5f5;
        }

        .theme-selector {
            position: relative;
        }

        .theme-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: black;
            color: #ddd;
            box-shadow: var(--shadow);
            border-radius: 5px;
            padding: 10px;
            display: none;
            z-index: 100;
            width: 180px;
        }

        .theme-selector:hover .theme-dropdown {
            display: block;
        }

        .theme-option {
            padding: 8px 10px;
            cursor: pointer;
            display: flex;
            align-items: center;
            margin-bottom: 5px;
            border-radius: 5px;
        }

        .theme-option:hover {
            background: #f5f5f5;
        }

        .theme-color {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            margin-right: 10px;
        }

        .theme-black-red .theme-color {
            background: linear-gradient(135deg, #212121 50%, #e53935 50%);
        }

        .theme-white-red .theme-color {
            background: linear-gradient(135deg, #ffffff 50%, #e53935 50%);
        }

        .theme-blue-white .theme-color {
            background: linear-gradient(135deg, #2196F3 50%, #ffffff 50%);
        }

        .theme-black-golden .theme-color {
            background: linear-gradient(135deg, #212121 50%, #FFD700 50%);
        }

        .theme-white-golden .theme-color {
            background: linear-gradient(135deg, #ffffff 50%, #FFD700 50%);
        }

        .theme-white-purple .theme-color {
            background: linear-gradient(135deg, #ffffff 50%, #9C27B0 50%);
        }

        .theme-multicolor .theme-color {
            background: linear-gradient(135deg, #ff9a9e, #fad0c4, #a1c4fd, #c2e9fb);
        }

       .nav-menu {
    display: flex;
    justify-content: center;
    gap: 15px; /* reduce spacing between links */
    font-size: 14px; /* smaller font size */
    padding: 8px 0; /* smaller vertical padding */
}

.nav-menu a {
    color: #333;
    text-decoration: none;
    padding: 6px 10px; /* smaller padding for links */
    border-radius: 4px;
    transition: background 0.3s ease;
}

.nav-menu a:hover {
    background: rgba(0, 0, 0, 0.05);
}


      

        .cta-button {
            display: inline-block;
            padding: 12px 30px;
            background: var(--accent-color);
            color: white;
            border-radius: 30px;
            font-weight: bold;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        /* Products Section */
        .products {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            font-size: 32px;
            color: var(--text-color);
        }

        .section-subtitle {
            text-align: center;
            margin-bottom: 40px;
            font-size: 18px;
            color: #666;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
        }

        .product-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }

        .product-image {
            height: 200px;
            background: #f5f5f5;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }

        .product-image img {
            max-width: 100%;
            max-height: 100%;
            transition: transform 0.5s;
            background-size: cover;
            background-repeat: no-repeat;
            
          
        }

        .product-card:hover .product-image img {
            transform: scale(1.05);
        }

        .product-info {
            padding: 20px;
        }

        .product-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .product-description {
            font-size: 14px;
            color: #666;
            margin-bottom: 10px;
            min-height: 60px;
        }

        .product-price {
            font-size: 20px;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 15px;
        }

        .product-button {
            display: block;
            text-align: center;
            padding: 10px;
            background: var(--accent-color);
            color: white;
            border-radius: 5px;
            font-weight: 500;
            transition: background 0.3s;
        }

        .product-button:hover {
            background: var(--primary-color);
            opacity: 0.9;
        }

        /* Categories Section */
        .categories {
            padding: 60px 0;
            background: var(--footer-bg);
        }

        .categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .category-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            text-align: center;
            padding: 30px 20px;
        }

        .category-card:hover {
            transform: translateY(-5px);
        }

        .category-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: var(--accent-color);
        }

        .category-title {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--text-color);
        }

        .category-count {
            color: #666;
            font-size: 14px;
        }

        /* Features Section */
        .features {
            padding: 60px 0;
            background: var(--background-color);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
        }

        .feature-card {
            text-align: center;
            padding: 30px 20px;
            background: var(--card-bg);
            border-radius: 10px;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            font-size: 40px;
            margin-bottom: 20px;
            color: var(--accent-color);
        }

        .feature-title {
            font-size: 20px;
            margin-bottom: 15px;
            color: var(--text-color);
        }

        .feature-description {
            color: #666;
        }

        /* Technology Partners Section */
        .technology-partners {
            padding: 60px 0;
            background: var(--footer-bg);
            color: var(--secondary-color);
        }
        
        .partners-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
            color: #000;
        }

        .partner-logo {
            background: var(--card-bg);
            border-radius: 10px;
            color: #000 !important;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            font-weight: bold;
            font-size: 18px;
        }

        .partner-logo:hover {
            transform: translateY(-5px);
        }

        .tech-stack {
            margin-top: 50px;
        }

        .tech-category {
            margin-bottom: 40px;
        }

        .tech-category h3 {
            margin-bottom: 20px;
            color: var(--text-color);
            font-size: 24px;
        }

        .tech-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
            gap: 20px;
        }

        .tech-item {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            color: #000 !important;
        }

        .tech-item:hover {
            transform: translateY(-5px);
        }

        .tech-icon {
            font-size: 30px;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        /* Pricing Section */
        .pricing {
            padding: 60px 0 50px 0px;
            background: var(--footer-bg);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 10px;
        }

        .pricing-card {
            background: var(--card-bg);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: transform 0.3s;
            position: relative;
        }

        .pricing-card.featured {
            border: 2px solid var(--accent-color);
            transform: scale(1.05);
        }

        .pricing-card:hover {
            transform: translateY(-5px);
        }

        .pricing-card.featured:hover {
            transform: scale(1.05) translateY(-5px);
        }

        .pricing-header {
            padding: 30px;
            text-align: center;
            background: var(--accent-color);
            color: white;
        }

        .pricing-title {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .pricing-price {
            font-size: 48px;
            font-weight: bold;
        }

        .pricing-period {
            font-size: 16px;
            opacity: 0.8;
        }

        .pricing-features {
            padding: 30px;
            list-style: none;
        }

        .pricing-features li {
            padding: 10px 0;
            border-bottom: 1px solid #eee;
            color: #666;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        .pricing-button {
            display: block;
            margin: 0 30px 30px;
            text-align: center;
            padding: 15px;
            background: var(--accent-color);
            color: white;
            border-radius: 5px;
            font-weight: bold;
            transition: background 0.3s;
        }

        .pricing-button:hover {
            background: var(--primary-color);
            opacity: 0.9;
        }

        .featured-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--accent-color);
            color: white;
            padding: 5px 30px;
            transform: rotate(45deg);
            font-size: 14px;
        }

        /* Testimonials Section */
        .testimonials {
            padding: 60px 0;
            background: var(--background-color);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 30px;
            box-shadow: var(--shadow);
            position: relative;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            color: #666;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: #f5f5f5;
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            color: var(--accent-color);
        }

        .author-info h4 {
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .author-info p {
            color: #666;
            font-size: 14px;
        }

        .rating {
            color: #FFD700;
            margin-top: 5px;
        }

        /* Stats Section */
        .stats {
            padding: 60px 0;
            background: var(--footer-bg);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 30px;
        }

        .stat-card {
            text-align: center;
            padding: 30px 20px;
        }

        .stat-number {
            font-size: 48px;
            font-weight: bold;
            color: var(--accent-color);
            margin-bottom: 10px;
        }

        .stat-label {
            color: #666;
            font-size: 18px;
        }

        /* Rating Breakdown Section */
        .rating-breakdown {
            padding: 60px 0;
            background: var(--background-color);
        }

        .rating-container {
            display: flex;
            flex-wrap: wrap;
            gap: 50px;
            justify-content: center;
            align-items: center;
        }

        .rating-stats {
            flex: 1;
            min-width: 300px;
        }

        .rating-overall {
            text-align: center;
            margin-bottom: 30px;
        }

        .overall-rating {
            font-size: 72px;
            font-weight: bold;
            color: var(--accent-color);
            line-height: 1;
        }

        .overall-stars {
            color: #FFD700;
            font-size: 24px;
            margin: 10px 0;
        }

        .review-count {
            color: #666;
        }

        .rating-bars {
            margin-top: 30px;
        }

        .rating-bar {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .rating-label {
            width: 80px;
            font-size: 14px;
            color: #666;
        }

        .rating-bar-container {
            flex: 1;
            height: 10px;
            background: #f0f0f0;
            border-radius: 5px;
            overflow: hidden;
            margin: 0 10px;
        }

        .rating-bar-fill {
            height: 100%;
            background: var(--accent-color);
        }

        .rating-percentage {
            width: 40px;
            font-size: 14px;
            color: #666;
        }

        .rating-platforms {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            justify-content: center;
        }

        .platform {
            background: var(--card-bg);
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            box-shadow: var(--shadow);
            width: 120px;
            transition: transform 0.3s;
        }

        .platform:hover {
            transform: translateY(-5px);
        }

        .platform-icon {
            font-size: 30px;
            margin-bottom: 10px;
            color: var(--accent-color);
        }

        .platform-name {
            font-weight: bold;
            margin-bottom: 5px;
        }

        .platform-rating {
            color: #FFD700;
        }

        /* Footer */
        footer {
            background: var(--footer-bg);
            padding: 60px 0 20px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-column h3 {
            font-size: 18px;
            margin-bottom: 20px;
            color: var(--text-color);
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #666;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent-color);
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: var(--accent-color);
            color: white;
            border-radius: 50%;
            transition: transform 0.3s;
        }

        .social-links a:hover {
            transform: translateY(-3px);
        }

        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid #ddd;
            color: #666;
        }

        /* Bottom Navigation (Mobile) */
        .bottom-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: var(--nav-bg);
            box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
            z-index: 1000;
        }

        .nav-items {
            display: flex;
            justify-content: space-around;
            padding: 10px 0;
        }

        .nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 12px;
            color: #666;
        }

        .nav-item.active {
            color: var(--accent-color);
        }

        .nav-icon {
            font-size: 20px;
            margin-bottom: 5px;
        }

        /* Chatbot */
        .chatbot {
            position: fixed;
            bottom: 80px;
            right: 20px;
            width: 60px;
            height: 60px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.2);
            cursor: pointer;
            z-index: 1000;
            transition: transform 0.3s;
        }

        .chatbot:hover {
            transform: scale(1.1);
        }

        .chat-window {
            position: fixed;
            bottom: 150px;
            right: 20px;
            width: 300px;
            height: 400px;
            background: white;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.2);
            display: none;
            flex-direction: column;
            z-index: 1000;
        }

        .chat-header {
            padding: 15px;
            background: var(--accent-color);
            color: white;
            border-radius: 10px 10px 0 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .chat-close {
            background: none;
            border: none;
            color: white;
            font-size: 18px;
            cursor: pointer;
        }

        .chat-messages {
            flex: 1;
            padding: 15px;
            overflow-y: auto;
        }

        .message {
            margin-bottom: 15px;
            padding: 10px;
            border-radius: 10px;
            max-width: 80%;
        }

        .bot-message {
            background: #f0f0f0;
            align-self: flex-start;
        }

        .user-message {
            background: var(--accent-color);
            color: white;
            align-self: flex-end;
            margin-left: auto;
        }

        .chat-input {
            display: flex;
            padding: 10px;
            border-top: 1px solid #eee;
        }

        .chat-input input {
            flex: 1;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 20px;
            outline: none;
        }

        .chat-input button {
            background: var(--accent-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            margin-left: 10px;
            cursor: pointer;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
       
            
            .search-bar {
                max-width: 300px;
            }
            
            .process-steps {
                flex-direction: column;
                align-items: center;
            }
            
            .process-step {
                max-width: 100%;
            }
            
            .rating-container {
                flex-direction: column;
            }
        }

        @media (max-width: 768px) {
            .header-top {
                flex-wrap: wrap;
            }
            
            .logo {
                order: 1;
            }
            
            .search-bar {
                order: 3;
                max-width: 100%;
                margin: 15px 0 0;
            }
            
            .header-actions {
                order: 2;
            }
            
            .nav-menu {
                display: none;
            }
            
            .bottom-nav {
                display: block;
            }
            
           
            
            .section-title {
                font-size: 24px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .pricing-card.featured {
                transform: scale(1);
            }
            
            .pricing-card.featured:hover {
                transform: translateY(-5px);
            }
        }

        @media (max-width: 576px) {
            .products-grid {
                grid-template-columns: 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .categories-grid {
                grid-template-columns: 1fr;
            }
            
            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .tech-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .testimonials-grid {
                grid-template-columns: 1fr;
            }
            
            .stats-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .pricing-grid {
                grid-template-columns: 1fr;
            }
            
            .chat-window {
                width: calc(100% - 40px);
                right: 20px;
                left: 20px;
            }
        }

        /* Animation Classes */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .slide-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .slide-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .slide-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.5s, transform 0.5s;
        }

        .slide-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }
  
        /* Hero Section with Animated Background */
        .hero {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background:var(--background-color);
            
        }

        /* Animated Background Elements */
        .hero-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        /* Floating Shapes */
        .floating-shapes {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        .shape {
            position: absolute;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            animation: float 20s infinite ease-in-out;
        }

        .shape-1 {
            width: 100px;
            height: 100px;
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 150px;
            height: 150px;
            top: 70%;
            left: 85%;
            animation-delay: 3s;
        }

        .shape-3 {
            width: 80px;
            height: 80px;
            top: 80%;
            left: 15%;
            animation-delay: 6s;
        }

        .shape-4 {
            width: 120px;
            height: 120px;
            top: 15%;
            left: 75%;
            animation-delay: 9s;
        }

        /* Bouncing Icons Container */
        .bouncing-icons {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            overflow: hidden;
            z-index: 1;
        }

        /* Individual Icon Styles */
        .bounce-icon {
            position: absolute;
            width: 60px;
            height: 60px;
            opacity: 0.7;
            filter: drop-shadow(0 5px 15px rgba(0,0,0,0.2));
            animation: bounce 12s infinite ease-in-out;
        }

        /* Different sizes for variety */
        .bounce-icon.small {
            width: 40px;
            height: 40px;
            opacity: 0.5;
        }

        .bounce-icon.large {
            width: 80px;
            height: 80px;
            opacity: 0.9;
        }

        /* Individual icon animations with different timings */
        .icon-1 { animation-delay: 0s; }
        .icon-2 { animation-delay: 1s; }
        .icon-3 { animation-delay: 2s; }
        .icon-4 { animation-delay: 3s; }
        .icon-5 { animation-delay: 4s; }
        .icon-6 { animation-delay: 5s; }
        .icon-7 { animation-delay: 6s; }
        .icon-8 { animation-delay: 7s; }
        .icon-9 { animation-delay: 8s; }
        .icon-10 { animation-delay: 9s; }
        .icon-11 { animation-delay: 10s; }
        .icon-12 { animation-delay: 11s; }

        /* Particle Effect */
        .particles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

        .particle {
            position: absolute;
            width: 4px;
            height: 4px;
            background: rgba(255, 255, 255, 0.5);
            border-radius: 50%;
            animation: particleFloat 10s infinite linear;
        }

        /* Gradient Overlay */
        .gradient-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           /* / background: linear-gradient(45deg, rgba(102, 126, 234, 0.8), rgba(118, 75, 162, 0.6)); */
            z-index: 1;
        }

        /* Hero Content Layout */
        .hero-content {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            width: 100%;
        }

        .hero-text {
            max-width: 100%;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent-color);
            font-weight: 700;
            line-height: 1.2;
            text-shadow: 0 2px 10px rgba(0,0,0,0.3);
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 0.5s forwards;
        }

        .hero p {
            font-size: 1.25rem;
            margin-bottom: 2.5rem;
            color: var(--text-color);
            line-height: 1.6;
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 0.8s forwards;
        }

        .hero-features {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 2.5rem;
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 1s forwards;
        }

        .feature {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-color);
            font-size: 1rem;
        }

        .feature i {
            color: var(--accent-color);
            font-size: 1.2rem;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: var(--accent-color);
            color: white;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1.1rem;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
            opacity: 0;
            transform: translateX(-50px);
            animation: fadeInLeft 1s ease 1.2s forwards;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .cta-button:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: all 0.6s;
            z-index: -1;
        }

        .cta-button:hover {
            transform: translateY(-5px) translateX(-50px);
            box-shadow: 0 15px 40px rgba(229, 57, 53, 0.6);
        }

        .cta-button:hover:before {
            left: 100%;
        }

        /* Hero Image Section */
        .hero-image {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0;
            transform: translateX(50px);
            animation: fadeInRight 1s ease 1s forwards;
        }

        .image-container {
            position: relative;
            width: 100%;
            max-width: 500px;
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0,0,0,0.3);
            background: linear-gradient(45deg, #eeecec, #fad0c4, #a1c4fd);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 20px;
            animation: floatImage 6s ease-in-out infinite;
        }

        .floating-card {
            position: absolute;
            background: white;
            border-radius: 10px;
            padding: 15px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
            animation: floatCard 8s ease-in-out infinite;
        }

        .card-1 {
            top: 20px;
            right: -30px;
            width: 120px;
            animation-delay: 0s;
        }

        .card-2 {
            bottom: 40px;
            left: -20px;
            width: 100px;
            animation-delay: 2s;
        }

        .card-3 {
            top: 50%;
            right: -40px;
            width: 80px;
            animation-delay: 4s;
        }

        /* Animations */
        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-30px) rotate(120deg);
            }
            66% {
                transform: translateY(15px) rotate(240deg);
            }
        }

        @keyframes bounce {
            0%, 100% {
                transform: translate(0, 0) rotate(0deg) scale(1);
            }
            25% {
                transform: translate(30px, -40px) rotate(90deg) scale(1.1);
            }
            50% {
                transform: translate(-20px, 25px) rotate(180deg) scale(0.9);
            }
            75% {
                transform: translate(35px, 20px) rotate(270deg) scale(1.05);
            }
        }

        @keyframes particleFloat {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }

        @keyframes fadeInLeft {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes floatImage {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-20px);
            }
        }

        @keyframes floatCard {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            33% {
                transform: translateY(-15px) rotate(5deg);
            }
            66% {
                transform: translateY(10px) rotate(-5deg);
            }
        }

        /* Pulse Animation for CTA */
        @keyframes pulse {
            0% {
                box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
            }
            50% {
                box-shadow: 0 10px 40px rgba(229, 57, 53, 0.8);
            }
            100% {
                box-shadow: 0 10px 30px rgba(229, 57, 53, 0.4);
            }
        }

        .cta-button {
            animation: fadeInLeft 1s ease 1.2s forwards, pulse 2s ease-in-out 2.5s infinite;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero-content {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }

            .hero-text {
                order: 2;
            }

            .hero-image {
                order: 1;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            .hero {
                padding: 80px 0;
                min-height: auto;
            }

            .hero h1 {
                font-size: 2.2rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .bounce-icon {
                width: 40px;
                height: 40px;
            }
            
            .bounce-icon.large {
                width: 50px;
                height: 50px;
            }
            
            .bounce-icon.small {
                width: 30px;
                height: 30px;
            }

            .image-container {
                height: 300px;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 1.8rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .cta-button {
                padding: 12px 30px;
                font-size: 1rem;
            }
            
            .bounce-icon {
                width: 30px;
                height: 30px;
            }

            .hero-features {
                flex-direction: column;
                align-items: center;
            }

            .image-container {
                height: 250px;
            }
        }
/* ___________________________________________________ */
/* pricing page  */
/* ___________________________________________________ */
 
        /* Location Banner */
        .location-banner {
            background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
            color: white;
            padding: 15px 0;
            text-align: center;
            margin-bottom: 30px;
         
            position: relative;
            overflow: hidden;
            min-height: 100vh;
            display: flex;
            align-items: center;
            background:var(--background-color);
        }

        .location-info {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        .location-flag {
            font-size: 24px;
        }

        /* Page Header */
        .page-header {
            text-align: center;
            padding: 40px 0;
            background: white;
            margin-bottom: 40px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .page-header h1 {
            font-size: 36px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .page-header p {
            font-size: 18px;
            color: var(--text-muted);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Filters */
        .filters {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
            gap: 15px;
            background: white;
            padding: 20px;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .filter-group {
            display: flex;
            gap: 15px;
            align-items: center;
        }

        .filter-btn {
            background: white;
            border: 1px solid #ddd;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: var(--transition);
        }

        .filter-btn.active {
            background: var(--primary-color);
            color: white;
            border-color: var(--primary-color);
        }

        .search-box {
            position: relative;
        }

        .search-box input {
            padding: 10px 15px;
            border: 1px solid #ddd;
            border-radius: 20px;
            width: 250px;
            outline: none;
        }

        .search-box button {
            position: absolute;
            right: 5px;
            top: 50%;
            transform: translateY(-50%);
            background: var(--primary-color);
            color: white;
            border: none;
            border-radius: 50%;
            width: 30px;
            height: 30px;
            cursor: pointer;
        }

        /* Products Grid */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 30px;
            margin-bottom: 50px;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
            position: relative;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.15);
        }

        .product-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background: var(--primary-color);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: bold;
            z-index: 2;
        }

        .product-image {
            height: 200px;
            background: #f0f0f0;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #999;
            position: relative;
            overflow: hidden;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-content {
            padding: 20px;
        }

        .product-category {
            color: var(--primary-color);
            font-size: 12px;
            font-weight: 500;
            margin-bottom: 5px;
            text-transform: uppercase;
        }

        .product-title {
            font-size: 18px;
            margin-bottom: 10px;
            color: var(--text-dark);
        }

        .product-description {
            color: var(--text-muted);
            font-size: 14px;
            margin-bottom: 15px;
            line-height: 1.5;
        }

        .product-price {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 15px;
        }

        .price-main {
            font-size: 22px;
            font-weight: bold;
            color: var(--primary-color);
        }

        .price-currency {
            font-size: 14px;
            color: var(--text-muted);
            margin-left: 5px;
        }

        .price-original {
            font-size: 16px;
            color: var(--text-muted);
            text-decoration: line-through;
        }

        .product-features {
            list-style: none;
            margin-bottom: 20px;
        }

        .product-features li {
            padding: 5px 0;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .product-features li:before {
            content: "✓";
            color: var(--primary-color);
            font-weight: bold;
        }

        .product-actions {
            display: flex;
            gap: 10px;
        }

        .btn {
            padding: 10px 15px;
            border-radius: 8px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 5px;
            flex: 1;
        }

        .btn-primary {
            background: var(--primary-color);
            color: white;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--primary-color);
            color: var(--primary-color);
        }

        .btn-outline:hover {
            background: var(--primary-color);
            color: white;
        }

        /* Location Modal */
        .location-modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 1000;
            align-items: center;
            justify-content: center;
        }

        .location-modal.active {
            display: flex;
        }

        .modal-content {
            background: white;
            border-radius: 15px;
            padding: 30px;
            max-width: 500px;
            width: 90%;
            text-align: center;
            box-shadow: var(--shadow);
        }

        .modal-content h2 {
            margin-bottom: 15px;
            color: var(--text-dark);
        }

        .modal-content p {
            margin-bottom: 20px;
            color: var(--text-muted);
        }

        .location-options {
            display: flex;
            flex-direction: column;
            gap: 10px;
            margin-bottom: 20px;
        }

        .location-option {
            padding: 15px;
            border: 1px solid #ddd;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .location-option:hover {
            border-color: var(--primary-color);
            background: rgba(229, 57, 53, 0.05);
        }

        .location-option.active {
            border-color: var(--primary-color);
            background: rgba(229, 57, 53, 0.1);
        }

        .location-flag {
            font-size: 24px;
        }

         .main-wrapper {
            display: flex;
            flex-direction: column;
            min-height: 100vh;
        }

        /* ===== LANGUAGE SELECTOR ===== */
        .language-selector {
            position: absolute;
            top: 20px;
            right: 20px;
            z-index: 1000;
        }

        .lang-btn {
            background: rgba(229, 57, 53, 0.9);
            color: white;
            border: none;
            padding: 10px 20px;
            border-radius: 8px;
            cursor: pointer;
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .lang-btn:hover {
            background: rgba(229, 57, 53, 1);
            transform: translateY(-2px);
        }

        .language-dropdown {
            position: absolute;
            top: 100%;
            right: 0;
            background: white;
            border-radius: 8px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            display: none;
            min-width: 150px;
            z-index: 1001;
        }

        .language-selector:hover .language-dropdown {
            display: block;
        }

        .language-option {
            padding: 12px 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 10px;
            color: #333;
            transition: background 0.3s ease;
        }

        .language-option:hover {
            background: #f5f5f5;
        }

        .language-option.active {
            background: var(--primary-color);
            color: white;
        }

        /* ===== AUTH SECTION ===== */
        .auth-section {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px 20px;
            background: var(--bg-dark);
        }

        .auth-container {
            display: flex;
            background: var(--bg-card);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            max-width: 1000px;
            width: 100%;
            min-height: 600px;
        }

        .auth-image {
            flex: 1;
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1170&q=80') center/cover no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 40px;
        }

        .auth-image-content {
            text-align: center;
            z-index: 2;
        }

        .auth-image-content h2 {
            font-size: 32px;
            margin-bottom: 15px;
            color: var(--primary-color);
            font-weight: 600;
        }

        .auth-image-content p {
            font-size: 16px;
            color: #ddd;
            max-width: 400px;
            margin: 0 auto;
        }

        .auth-features {
            margin-top: 30px;
            text-align: left;
        }

        .feature {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            color: #ddd;
        }

        .feature i {
            color: var(--primary-color);
            margin-right: 10px;
            font-size: 18px;
        }

        .auth-form-container {
            flex: 1;
            background: var(--bg-form);
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .form-title {
            font-size: 28px;
            color: var(--text-light);
            text-align: center;
            margin-bottom: 8px;
            font-weight: 600;
        }

        .form-subtitle {
            font-size: 14px;
            text-align: center;
            color: var(--text-muted);
            margin-bottom: 25px;
        }

        .form-group {
            margin-bottom: 20px;
            position: relative;
        }

        .form-label {
            display: block;
            font-size: 14px;
            color: #666;
            margin-bottom: 8px;
            font-weight: 500;
        }

        .form-input {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #fff;
            color: var(--text-light);
            outline: none;
            transition: var(--transition);
            font-size: 15px;
        }

        .form-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
        }

        .password-toggle {
            position: absolute;
            right: 15px;
            top: 40px;
            background: none;
            border: none;
            color: var(--text-muted);
            cursor: pointer;
            font-size: 14px;
        }

        .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            font-size: 14px;
        }

        .remember-me {
            display: flex;
            align-items: center;
        }

        .remember-me input {
            margin-right: 8px;
        }

        .remember-me label,
        .forgot-password {
            color: var(--text-muted);
            cursor: pointer;
            transition: var(--transition);
        }

        .forgot-password:hover {
            color: var(--primary-color);
        }

        .btn {
            background: var(--primary-color);
            border: none;
            color: white;
            padding: 14px;
            border-radius: 8px;
            font-size: 16px;
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
            width: 100%;
            margin-bottom: 20px;
        }

        .btn:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(229, 57, 53, 0.3);
        }

        .btn:active {
            transform: translateY(0);
        }

        .divider {
            text-align: center;
            margin: 20px 0;
            color: var(--text-muted);
            font-size: 14px;
            position: relative;
        }

        .divider span {
            background: var(--bg-form);
            padding: 0 15px;
            position: relative;
            z-index: 1;
        }

        .divider::before {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background: var(--border-color);
            z-index: 0;
        }

        .social-login {
            display: flex;
            gap: 15px;
            margin-bottom: 25px;
        }

        .social-btn {
            flex: 1;
            background: #f5f5f5;
            border: 1px solid var(--border-color);
            color: var(--text-light);
            padding: 12px;
            border-radius: 8px;
            cursor: pointer;
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 14px;
        }

        .social-btn:hover {
            background: #e0e0e0;
            transform: translateY(-2px);
        }

        .social-btn.facebook:hover {
            background: #3b5998;
            border-color: #3b5998;
            color: white;
        }

        .social-btn.google:hover {
            background: #db4437;
            border-color: #db4437;
            color: white;
        }

        .form-footer {
            text-align: center;
            color: var(--text-muted);
            font-size: 14px;
        }

        .form-footer a {
            color: var(--primary-color);
            text-decoration: none;
            font-weight: 500;
            transition: var(--transition);
        }

        .form-footer a:hover {
            text-decoration: underline;
        }

        /* ===== FORM VALIDATION ===== */
        .form-input.error {
            border-color: var(--error-color);
        }

        .form-input.success {
            border-color: var(--success-color);
        }

        .error-message {
            color: var(--error-color);
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }

        .success-message {
            color: var(--success-color);
            font-size: 14px;
            text-align: center;
            margin-top: 15px;
            display: none;
        }

        /* ===== SERVER RESPONSE ===== */
        .server-response {
            padding: 12px;
            border-radius: 8px;
            margin-bottom: 20px;
            text-align: center;
            font-weight: 500;
        }

        .server-response.success {
            background-color: #d4edda;
            color: #155724;
            border: 1px solid #c3e6cb;
        }

        .server-response.error {
            background-color: #f8d7da;
            color: #721c24;
            border: 1px solid #f5c6cb;
        }

        /* ===== OTP FORM STYLES ===== */
        .otp-form {
            display: none;
            flex-direction: column;
            animation: fadeIn 0.5s ease forwards;
        }

        .otp-form.active {
            display: flex;
        }

        .otp-inputs {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .otp-input {
            width: 50px;
            height: 50px;
            text-align: center;
            font-size: 20px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #fff;
            transition: var(--transition);
        }

        .otp-input:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
            outline: none;
        }

        .resend-otp {
            text-align: center;
            margin-top: 15px;
            font-size: 14px;
            color: var(--text-muted);
        }

        .resend-otp a {
            color: var(--primary-color);
            text-decoration: none;
            cursor: pointer;
            font-weight: 500;
        }

        .resend-otp a:hover {
            text-decoration: underline;
        }

        .timer {
            color: var(--error-color);
            font-weight: 500;
        }

        /* ===== ANIMATIONS ===== */
        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }

        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 900px) {
            .auth-container {
                flex-direction: column;
                max-width: 500px;
            }

            .auth-image {
                height: 200px;
                padding: 20px;
            }

            .auth-image-content h2 {
                font-size: 24px;
            }

            .auth-features {
                display: none;
            }

            .auth-form-container {
                padding: 30px;
            }

            .otp-inputs {
                justify-content: space-around;
            }

            .otp-input {
                width: 40px;
                height: 40px;
                font-size: 16px;
            }
        }

        @media (max-width: 480px) {
            .auth-form-container {
                padding: 20px;
            }

            .form-title {
                font-size: 24px;
            }

            .social-login {
                flex-direction: column;
            }

            .form-options {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
            }

            .otp-inputs {
                gap: 8px;
            }

            .otp-input {
                width: 35px;
                height: 35px;
                font-size: 14px;
            }
        }

        .form-input,
        .form-select {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--border-color);
            border-radius: 8px;
            background: #fff;
            color: var(--text-light);
            outline: none;
            transition: var(--transition);
            font-size: 15px;
        }

        .form-input:focus,
        .form-select:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 2px rgba(229, 57, 53, 0.2);
        }