        :root {
            --primary: #6c63ff;
            --secondary: #4d44db;
            --accent: #ff6584;
            --dark: #2d3748;
            --light: #f7fafc;
            --gray: #718096;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        body p, a, span, label, b, h1,h2,h3,h4,h5,h6, ul, li, form {
             font-family: "Quicksand", sans-serif;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1.5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
        }

        .logo img {
            height: 40px;
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }


        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            animation: fadeIn 1s ease 0.6s forwards;
            opacity: 0;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            cursor: pointer;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 101, 132, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 101, 132, 0.6);
        }

        .btn-secondary {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
            padding: 2rem 5%;
            background:linear-gradient(135deg, #f0f4ff, #ffffff);
        }

        .section-title {
            text-align: justify;
            margin-bottom: 4rem;
            font-size: 20px;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
            text-align: center;
        }

        .section-title p {
            color: var(--gray);
            /* max-width: 700px; */
            margin: 0 auto;
            text-align: center;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
        }

        /* Pricing Section */
        .pricing {
            padding: 6rem 5%;
            background-color: #f5f7fa;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .pricing-card {
            background-color: white;
            border-radius: 10px;
            padding: 2.5rem;
            box-shadow: 0px 15px 15px rgb(0 0 0 / 22%);
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        .pricing-card:hover {
            transform: translateY(-10px);
        }

        .pricing-card.popular {
            border: 2px solid var(--primary);
        }

        .popular-badge {
            position: absolute;
            top: 0;
            right: 20px;
            background-color: var(--primary);
            color: white;
            padding: 0.3rem 1.5rem;
            border-bottom-left-radius: 5px;
            border-bottom-right-radius: 5px;
            font-size: 0.8rem;
            font-weight: 600;
        }

        .pricing-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .price span {
            font-size: 1rem;
            font-weight: normal;
            color: var(--gray);
        }

        .pricing-features {
            list-style: none;
            margin-bottom: 2rem;
            min-height: 300px;
        }

        .pricing-features li {
            padding: 0.5rem 0;
            color: var(--gray);
            border-bottom: 1px solid #eee;
        }

        .pricing-features li:last-child {
            border-bottom: none;
        }

        /* Custom Solutions */
        .custom-solutions {
            padding: 6rem 5%;
            background-color: white;
        }

        .custom-content {
            display: flex;
            align-items: center;
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .custom-text {
            flex: 1;
        }

        .custom-text h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1.5rem;
        }

        .custom-text p {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .custom-image {
            flex: 1;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .custom-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        /* Contact Section */
        .contact {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #e4e8f0 100%);
        }

        .contact-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 4rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-info h3 {
            font-size: 1.8rem;
            margin-bottom: 1.5rem;
            color: var(--dark);
        }

        .contact-info p {
            color: var(--gray);
            margin-bottom: 2rem;
        }

        .contact-details {
            list-style: none;
        }

        .contact-details li {
            display: flex;
            align-items: center;
            margin-bottom: 1rem;
        }

        .contact-details i {
            font-size: 1.2rem;
            color: var(--primary);
            margin-right: 1rem;
            width: 30px;
            text-align: center;
        }

        .contact-form {
            background-color: white;
            padding: 2.5rem;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--dark);
        }

        .form-group input,
        .form-group textarea,
        .form-group select {
            width: 100%;
            padding: 0.8rem 1rem;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
            transition: border-color 0.3s;
        }

        .form-group input:focus,
        .form-group textarea:focus,
        .form-group select:focus {
            border-color: var(--primary);
            outline: none;
        }

        .form-group textarea {
            min-height: 150px;
            resize: vertical;
        }

        /* Footer */
        footer {
            background-color: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem 5%;
            text-align: center;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-logo {
            margin-bottom: 1.5rem;
        }

        .footer-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 2rem;
        }

        .footer-links li {
            margin: 0 1rem;
        }

        .footer-links a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            justify-content: center;
            list-style: none;
            margin-bottom: 2rem;
        }

        .social-links li {
            margin: 0 0.5rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 40px;
            transition: background-color 0.3s;
        }

        .social-links a:hover {
            background-color: var(--accent);
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from {
                opacity: 0;
            }

            to {
                opacity: 1;
            }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .custom-content {
                flex-direction: column;
            }

            .custom-text,
            .custom-image {
                flex: none;
                width: 100%;
            }

            .nav-links {
                display: none;
            }
        }

        .platforms {
            padding: 6rem 5%;
            background-color: #f9fafb;
        }

        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .platform-card {
            background-color: white;
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .platform-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--primary);
        }

        .platform-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .platform-card p {
            color: var(--gray);
            margin-bottom: 1.5rem;
        }

        .platform-features {
            list-style: none;
        }

        .platform-features li {
            padding: 0.5rem 0;
            color: var(--gray);
            display: flex;
            align-items: center;
        }

        .platform-features i {
            color: var(--primary);
            margin-right: 0.7rem;
            font-size: 0.9rem;
        }

        .navbar .logo {
            position: relative;
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.8rem;
            font-weight: 800;
            text-transform: uppercase;
            color: transparent;
            text-stroke: 1.5px #667eea;
            letter-spacing: 1px;
        }

        .digi {
            color: #ff6584;
            /* Orange color */
            text-shadow:
                1px 2px 0px rgba(0, 0, 0, 0.2),
                4px 0px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        .store {
            color: #667eea;
            /* Blue color */
            text-shadow:
                1px 2px 0px rgba(0, 0, 0, 0.2),
                4px 0px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 1;
        }

        /* 3D effect for the whole text */
        .navbar .logo::after {
            content: "FivaroStore";
            position: absolute;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.1),            4px 4px 1px rgba(0, 0, 0, 0.05);
            transform: translate(4px, 4px);
            z-index: 0;
            width: 100%;
        }

        .navbar .logo img {
            position: relative;
            /* Keep image in normal flow */
            z-index: 1;
            /* Ensure image stays above text effects */
            height: 50px;
            /* Maintain your original image size */
        }

        /* Add this to your existing CSS */
        .nav-links li a {
            display: flex;
            align-items: center;
            gap: 8px;
            transition: all 0.3s ease;
        }

        .nav-links li a i {
            font-size: 1rem;
            color: #667eea;
            transition: all 0.3s ease;
        }

        .nav-links li a:hover i {
            color: #ff6584;
            transform: scale(1.2);
        }

        /* If you don't already have Font Awesome in your project */
        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

        /* Add this CSS to your stylesheet */
        .price-options {
            margin: 15px 0;
        }

        .price.rental {
            color: #ff6584;
            font-size: 1.5rem;
            margin-top: 8px;
        }

        .btn-group {
            display: flex;
            gap: 10px;
            margin-top: 15px;
            justify-content: center;
        }

        .btn-secondary {
            background: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
            background-color: white;
        }

        .btn-secondary:hover {
            background: rgba(102, 126, 234, 0.1);
        }

        .pricing-features li i {
            margin-right: 10px;
            width: 20px;
            color: var(--primary);
        }

        .popular-badge i {
            margin-right: 5px;
        }

        .error {
            color: #ff6584;
            font-size: 0.85rem;
            display: block;
            margin-top: 5px;
            height: 18px;
        }

        .form-group {
            margin-bottom: 1.2rem;
        }

        input:invalid,
        textarea:invalid {
            border-color: #ff6584;
        }

        #formStatus {
            text-align: center;
            font-weight: 500;
        }

        .success {
            color: #4BB543;
        }

        .error-message {
            color: #ff6584;
        }

        .toast {
            position: fixed;
            bottom: 190px;
            right: 30px;
            background-color: #4BB543;
            color: white;
            padding: 16px 24px;
            border-radius: 8px;
            font-size: 16px;
            z-index: 9999;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .toast.show {
            display: block;
            opacity: 1;
        }

        /* Ensure Font Awesome is loaded */
        @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');

         :root {
            --primary: #6c63ff;
            --secondary: #4d44db;
            --accent: #ff6584;
            --dark: #2d3748;
            --light: #f7fafc;
            --gray: #718096;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background-color: var(--light);
            color: var(--dark);
            line-height: 1.6;
        }

        /* Header */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            z-index: 100;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.5rem;
            font-weight: 800;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .digi {
            color: #ff6584;
            text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.2);
        }

        .store {
            color: #667eea;
            text-shadow: 1px 2px 0px rgba(0, 0, 0, 0.2);
        }

        .logo img {
            height: 40px;
            border-radius: 5px;
        }

        .nav-links {
            display: flex;
            list-style: none;
            align-items: center;
        }

        .nav-links li {
            margin-left: 2rem;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .nav-links a i {
            color: var(--primary);
            transition: all 0.3s ease;
        }

        .nav-links a:hover i {
            color: var(--accent);
            transform: scale(1.2);
        }

        /* Hamburger Menu */
        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            padding: 15px;
            z-index: 101;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 3px 0;
            transition: all 0.3s ease;
            border-radius: 2px;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(45deg) translate(-5px, -6px);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 10rem 5% 6rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiPjxkZWZzPjxwYXR0ZXJuIGlkPSJwYXR0ZXJuIiB3aWR0aD0iNDAiIGhlaWdodD0iNDAiIHBhdHRlcm5Vbml0cz0idXNlclNwYWNlT25Vc2UiIHBhdHRlcm5UcmFuc2Zvcm09InJvdGF0ZSg0NSkiPjxyZWN0IHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCIgZmlsbD0icmdiYSgyNTUsMjU1LDI1NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNwYXR0ZXJuKSIvPjwvc3ZnPg==');
            opacity: 0.3;
        }

        .hero-content {
           /* max-width: 800px; */
            margin: 0 auto;
            position: relative;
            z-index: 1;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            animation: fadeInDown 1s ease;
        }

        .hero p {
            font-size: 2rem;
            margin-bottom: 2.5rem;
            opacity: 0.9;
            animation: fadeInUp 1s ease 0.3s forwards;
            opacity: 0;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            animation: fadeIn 1s ease 0.6s forwards;
            opacity: 0;
            flex-wrap: wrap;
        }

        .btn {
            display: inline-block;
            padding: 0.8rem 2rem;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1rem;
            cursor: pointer;
            border: none;
        }

        .btn-primary {
            background-color: var(--accent);
            color: white;
            box-shadow: 0 4px 15px rgba(255, 101, 132, 0.4);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(255, 101, 132, 0.6);
        }

        .btn-secondary {
            background-color: transparent;
color: #6c63ff;
    border: 2px solid #6c63ff;
        }

        .btn-secondary:hover {
            background-color: rgba(255, 255, 255, 0.1);
            transform: translateY(-3px);
        }

        /* Features Section */
        .features {
            padding: 2rem 5%;
            background-color: white;
        }

        .section-title {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            color: var(--dark);
            margin-bottom: 1rem;
        }

        .section-title p {
            color: var(--gray);
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .feature-card {
            background-color: var(--light);
            border-radius: 10px;
            padding: 2rem;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            text-align: center;
        }

        .feature-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }

        .feature-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 1.5rem;
        }

        .feature-card h3 {
            font-size: 1.5rem;
            margin-bottom: 1rem;
            color: var(--dark);
        }

        .feature-card p {
            color: var(--gray);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 3rem 5% 2rem;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-bottom: 2rem;
        }

        .footer-section h3 {
            color: var(--accent);
            margin-bottom: 1rem;
            font-size: 1.2rem;
        }

        .footer-section p,
        .footer-section li {
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 0.5rem;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-links a {
            display: inline-block;
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            text-align: center;
            line-height: 40px;
            transition: all 0.3s;
            text-decoration: none;
        }

        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
        }

        .copyright {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            .hamburger {
                display: flex;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 300px;
                height: 100vh;
                background: linear-gradient(135deg, #3a2ee3, #d78c2e);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                transition: right 0.3s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 1rem 0;
            }

            .nav-links a {
                color: white;
                font-size: 1.2rem;
                padding: 1rem;
                border-radius: 10px;
                transition: all 0.3s ease;
            }

            .nav-links a:hover {
                background-color: rgba(255, 255, 255, 0.1);
                transform: scale(1.05);
            }

            .nav-links a i {
                color: var(--accent);
            }

            .hero {
                padding: 8rem 5% 4rem;
            }

            .hero h1 {
                font-size: 2.5rem;
            }

            .hero p {
                font-size: 1.1rem;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
                gap: 1rem;
            }

            .btn {
                width: 200px;
                text-align: center;
            }

            .logo {
                font-size: 1.2rem;
            }

            .logo img {
                height: 35px;
            }

            .navbar {
                padding: 1rem 3%;
            }

            .features {
                padding: 1rem 3%;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }

            .section-title h2 {
                font-size: 2rem;
            }

            footer {
                padding: 2rem 3% 1rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 1.5rem;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }
        }

        @media (max-width: 480px) {
            .hero h1 {
                font-size: 2rem;
            }

            .hero p {
                font-size: 1rem;
            }

            .logo {
                font-size: 1rem;
            }

            .logo img {
                height: 30px;
            }

            .nav-links {
                width: 100%;
                right: -100%;
            }

            .section-title h2 {
                font-size: 1.8rem;
            }

            .feature-card {
                padding: 1.5rem;
            }

            .btn {
                padding: 0.7rem 1.5rem;
                font-size: 0.9rem;
            }
        }

        /* Overlay for mobile menu */
        .overlay {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            z-index: 99;
        }

        .overlay.active {
            display: block;
        }

        /* Smooth scrolling */
        html {
            scroll-behavior: smooth;
        }

        /* Focus styles for accessibility */
        .hamburger:focus,
        .nav-links a:focus,
        .btn:focus {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        footer {
    color: white;
    padding: 40px 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.footer-logo img {
    max-width: 180px;
    height: auto;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #f39c12;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-links a {
    color: white;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #f39c12;
}

@media (min-width: 768px) {
    .footer-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
        text-align: left;
    }

    .footer-logo,
    nav,
    .social-links {
        flex: 1;
    }

    .footer-links {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer-content > * {
        min-width: 180px;
        margin: 0 20px;
    }
}
.icon-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 2rem 0;
}

.icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 2.5rem;
  color: white;
  transition: transform 0.3s ease;
}

.icon-item span {
  font-size: 0.95rem;
  margin-top: 0.4rem;
  color: #fff;
  opacity: 0.85;
}

/* Animations */
.bounce {
  animation: bounce 2s infinite;
}
.pulse {
  animation: pulse 2s infinite;
}
.swing {
  animation: swing 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.2); }
}

@keyframes swing {
  0% { transform: rotate(0deg); }
  25% { transform: rotate(10deg); }
  50% { transform: rotate(-10deg); }
  75% { transform: rotate(5deg); }
  100% { transform: rotate(0deg); }
}

a {
    text-decoration: none;
}
/* Fade in animation */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

.why-us-section {
  padding: 3rem 1.5rem;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  border-radius: 12px;
  margin: 2rem auto;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.why-us-section:hover {
  transform: scale(1.01);
}

.why-us-section h2 {
  font-size: 2rem;
  color: #222;
  position: relative;
}

.why-us-section p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.7;
  margin-top: 1.4rem;
  position: relative;
}

.brand {
  font-weight: bold;
  font-size: 1.1rem;
  margin-top: 1.8rem;
}

/* Icon styles */
.highlight-icon {
  color: #ff3366;
  margin-right: 8px;
  animation: pulse-glow 2s infinite;
}

.paragraph-icon {
  color: #007bff;
  margin-right: 10px;
  animation: bounce-in 1s ease;
  font-size: 1.2em;
  vertical-align: middle;
}

/* Animations for icons */
@keyframes pulse-glow {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.7;
  }
}

@keyframes bounce-in {
  0% {
    transform: scale(0.6) translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

.discount-banner {
  background-color: #ffe200;
  color: #000;
  padding: 10px 20px;
  font-weight: bold;
  display: inline-block;
  border-radius: 8px;
  margin-top: 10px;
  font-size: 1.1rem;
  animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.03); }
}

.price-options {
  margin-top: 1rem;
  text-align: center;
}

.price-amount {
  font-size: 1.8rem;
  font-weight: bold;
  color: #ff6584;
}

.payment-box strong {
    font-weight: 400;
    color: #ff6584;
}

.price-type {
  font-size: 0.95rem;
  color: #777;
}

.payment-info {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.payment-info div {
  font-size: 1.05rem;
  color: #444;
}

.payment-label {
  font-weight: 600;
  color: #222;
}

.payment-value {
  font-weight: 500;
  color: #000;
}

.note-pricing {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: #666;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.payment-box {
  background-color: #f8f8f8;
  color: #222;
  padding: 10px 15px;
  border-radius: 8px;
  margin-top: 12px;
  font-size: 1.05rem;
  line-height: 1.6;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.payment-box i {
  margin-right: 6px;
  color: #0073e6;
}

.variation-info {
  margin-top: 1rem;
  padding: 10px;
  background-color: #eef6ff;
  color: #00549e;
  border-left: 4px solid #0073e6;
  font-size: 0.95rem;
  border-radius: 6px;
  line-height: 1.5;
}

.variation-info i {
  margin-right: 6px;
  color: #0073e6;
}

.package-description {
  margin-top: 20px;
  font-size: 1.1rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  padding: 12px 18px;
  border-left: 4px solid #00bf72;
  border-radius: 6px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  text-align: left;
}

.special-functionalities {
  padding: 60px 20px;
  background: linear-gradient(135deg, #f0f4ff, #ffffff);
  text-align: center;
}

.special-functionalities h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #2c3e50;
}

.special-functionalities p {
  font-size: 1.1rem;
  color: #555;
  max-width: 800px;
  margin: 0 auto 20px;
}

.ai-features-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.ai-feature {
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 30px;
  max-width: 300px;
  transition: transform 0.3s ease;
}

.ai-feature:hover {
  transform: translateY(-10px);
}

.ai-feature img {
  width: 80px;
  margin-bottom: 20px;
}

.ai-feature h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: #2c3e50;
}

.contact-link {
  color: #007BFF;
  text-decoration: none;
}
.beta-badge {
  display: inline-block;
  background-color: #ff4757;
  color: #fff;
  font-size: 0.7rem;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 6px;
  margin-left: 10px;
  vertical-align: middle;
  animation: pulse 1.5s infinite;
  letter-spacing: 1px;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.1); opacity: 0.85; }
  100% { transform: scale(1); opacity: 1; }
}


/* RED Promo Bar */
.promo-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(90deg, #ff416c, #ff4b2b);
  color: #fff;
  padding: 16px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
  z-index: 10000;
  transform: translateY(100%);
  opacity: 0;
}

.promo-bar.show {
  animation: slideUp 0.7s ease-out forwards, pulseGlow 3s infinite ease-in-out;
}

/* YELLOW Banner - above red bar */
.yellow-banner {
  position: fixed;
  left: 0;
  right: 0;
  background-color: #ffeb3b;
  color: #333;
  padding: 12px 24px;
  font-size: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
  z-index: 10001;
  animation: slideUpYellow 0.6s ease-in-out;
}

.yellow-banner.show {
  animation: slideUpYellow 0.6s ease-in-out forwards;
}

/* Text inside promo */
.promo-text {
  flex: 1;
  margin-right: 20px;
  line-height: 1.5;
}

/* Close buttons */
.close-btn,
.promo-close {
  cursor: pointer;
  font-size: 1.5rem;
  margin-left: 20px;
  font-weight: bold;
  color: inherit;
  transition: color 0.3s;
}

.close-btn:hover,
.promo-close:hover {
  color: #555;
}

/* Floating "Akcije" Button - Updated for mobile */
.action-toggle {
  position: fixed;
  bottom: 120px;
  right: 20px;
  background-color: #f39c12;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  cursor: pointer;
  font-weight: bold;
  z-index: 10002;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .action-toggle {
    bottom: 120px; /* Lower position for mobile */
    right: 10px;
    font-size: 0.9rem;
    min-width: 60px; /* Ensure visibility */
  }
  
  /* Adjust banners for mobile */
  .promo-bar, .yellow-banner {
    padding: 12px 15px;
    font-size: 0.85rem;
  }
  
  .yellow-banner {
    bottom: 60px; /* Position above red bar */
  }
  
  .close-btn, .promo-close {
    font-size: 1.2rem;
    margin-left: 10px;
  }
}

/* ANIMATIONS */
@keyframes slideUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes slideUpYellow {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}

@keyframes pulseGlow {
  0% { box-shadow: 0 0 0 rgba(255, 255, 255, 0.3); }
  50% { box-shadow: 0 0 12px rgba(255, 255, 255, 0.6); }
  100% { box-shadow: 0 0 0 rgba(255, 255, 255, 0.3); }
}
