
        :root {
            --primary: #6c63ff;
            --primary-dark: #4a44c9;
            --accent: #ff6b6b;
            --accent-light: #ff8e8e;
            --dark: #2c2c54;
            --darker: #1a1a36;
            --light: #f8f9fa;
            --gradient-start: #6c63ff;
            --gradient-end: #4a44c9;
            --gradient-accent: linear-gradient(135deg, #ff6b6b 0%, #ff8e8e 100%);
            --glass-bg: rgba(255, 255, 255, 0.08);
            --glass-border: rgba(255, 255, 255, 0.1);
            --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
            color: #333;
            line-height: 1.7;
            overflow-x: hidden;
            position: relative;
        }
        
        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 10% 20%, rgba(108, 99, 255, 0.05) 0%, transparent 20%), 
                        radial-gradient(circle at 90% 80%, rgba(255, 107, 107, 0.05) 0%, transparent 20%);
            z-index: -1;
        }
        
        /* Navigation */
        .navbar {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(12px);
            box-shadow: 0 5px 25px rgba(0,0,0,0.05);
            padding: 15px 0;
            transition: var(--transition);
        }
        
        .navbar-brand {
            font-weight: 800;
            color: var(--dark);
            display: flex;
            align-items: center;
            font-size: 1.8rem;
        }
        
        .navbar-brand img {
            height: 42px;
            margin-right: 12px;
        }
        
        .navbar-brand span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .nav-link {
            font-weight: 500;
            margin: 0 10px;
            position: relative;
            transition: var(--transition);
        }
        
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--primary);
            border-radius: 3px;
            transition: var(--transition);
        }
        
        .nav-link:hover::after  {
            width: 100%;
        }
        
        /* Hero Section */
        .hero {
            min-height: 100vh;
            padding-top: 100px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
        }


        
        .hero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .hero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .hero-title {
            font-weight: 900;
            font-size: 4rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        
        
        .hero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        .hero-buttons {
            display: flex;
            gap: 20px;
            margin-bottom: 60px;
            flex-wrap: wrap;
            justify-content: center;
        }
        
        /* New Module Switcher */
        .module-switcher-container {
            display: flex;
            max-width: 1300px;
            margin: 0 auto;
            gap: 0px;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 40px 60px rgba(108, 99, 255, 0.25);
            height: auto;
        }
        
        .module-selector {
            width: 320px;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 40px 30px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        
        .module-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            border: 2px solid transparent;
            display: flex;
            align-items: center;
            gap: 20px;
        }
        
        .module-card:hover {
            transform: translateX(10px);
            box-shadow: 0 10px 25px rgba(108, 99, 255, 0.15);
        }
        
        .module-card.active {
            border-color: var(--accent);
            background: rgba(255, 107, 107, 0.05);
            transform: translateX(10px);
        }
        
        .module-icon {
            width: 50px;
            height: 50px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            color: var(--primary);
        }
        
        .module-card.active .module-icon {
            background: var(--primary);
            color: white;
        }
        
        .module-info h4 {
            font-weight: 700;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .module-info p {
            font-size: 0.9rem;
            color: #777;
            margin: 0;
        }
        
        .module-preview {
            flex: 1;
            position: relative;
            overflow: hidden;
        }
        
        .module-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0;
            transform: scale(0.95);
            transition: var(--transition);
        }
        
        .module-image.active {
            opacity: 1;
            transform: scale(1);
        }
        
        /* Motivation Sections */
        .motivation-section {
            padding: 100px 0 20px 0;
            position: relative;
        }
        
        .motivation-card {
            background: white;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
            margin-bottom: 60px;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .motivation-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: -1;
        }
        
        .motivation-card h2 {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .motivation-card p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
        }
        
        .benefit-list {
            list-style: none;
            padding-left: 0;
        }
        
        .benefit-list li {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .benefit-list li:last-child {
            border-bottom: none;
        }
        
        .benefit-list li i {
            width: 30px;
            height: 30px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 14px;
        }
        
        .motivation-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            height: 100%;
        }
        
        /* Sections */
        .section {
            padding: 120px 0;
            position: relative;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
            color: #555;
            font-weight: 400;
        }
        
        /* Features */
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
          /* Features */
        .feature-card:hover {
            background:linear-gradient(90deg, var(--dark), var(--primary-dark));
            color: white;
            /* border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            text-align: center;
            position: relative;
            overflow: hidden;
            z-index: 1; */
        }
        
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 36px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            background: white;
            color: var(--primary);
            transform: scale(1.1) translateY(-10px);
        }
        
        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .feature-card p {
            transition: var(--transition);
        }
        
        .feature-card:hover h4,
        .feature-card:hover p {
            color: white;
        }
        
        /* Download Section */
        /* .download-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.2);
            margin: 100px auto;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }
        
        .download-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
            z-index: -1;
        } */
             .download-section {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            margin: -50px auto 0px;
            position: relative;
            z-index: 10;
            max-width: 1000px;
        }
        
        .download-title {
            font-weight: 700;
            margin-bottom: 30px;
            text-align: center;
        }
        
        /* .platform-card {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 20px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
        }
        
        .platform-icon {
            font-size: 3.5rem;
            margin-bottom: 25px;
            color: white;
        }
        
        .platform-name {
            font-weight: 700;
            margin-bottom: 15px;
            color: white;
            font-size: 1.4rem;
        } */
         .platform-card {
            background: #f8f9ff;
            border-radius: 15px;
            padding: 30px;
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
            border: 1px solid #eef2ff;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(108, 99, 255, 0.15);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .platform-icon {
            font-size: 3rem;
            margin-bottom: 20px;
            color: var(--primary);
        }
        
        .platform-name {
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        
        /* Testimonials */
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-card::before {
            /* content: """; */
            position: absolute;
            top: 20px;
            left: 30px;
            font-size: 120px;
            color: rgba(108, 99, 255, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: 0;
        }
        
        .testimonial-text {
            margin: 20px 0 40px;
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }
        
        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 120px 0;
            text-align: center;
            border-radius: 30px;
            position: relative;
            overflow: hidden;
            margin: 100px 0;
        }
        
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.2;
        }
        
        .cta-title {
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .cta-subtitle {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 400;
        }
        
        .btn-cta {
            max-width: 400px;
            background: white;
            color: var(--primary);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 10%;
            height: 100%;
            background: var(--gradient-accent);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: white;
        }
        
        .btn-cta:hover::before {
            opacity: 1;
        }
        
        /* Footer */
        footer {
            background: var(--darker);
            color: white;
            padding: 100px 0 50px;
            position: relative;
        }
        
        .footer-brand {
            font-weight: 800;
            font-size: 2rem;
            margin-bottom: 25px;
            display: block;
        }
        
        .footer-brand span {
            background: linear-gradient(90deg, var(--primary), var(--accent));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .footer-links h5 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.2rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .footer-links a {
            color: #bbb;
            text-decoration: none;
            display: block;
            margin-bottom: 15px;
            transition: var(--transition);
            position: relative;
            padding-left: 0;
        }
        
        .footer-links a::before {
            content: '→';
            position: absolute;
            left: -20px;
            opacity: 0;
            transition: var(--transition);
            color: var(--accent);
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 20px;
        }
        
        .footer-links a:hover::before {
            opacity: 1;
            left: 0;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .social-link:hover {
            background: var(--primary);
            transform: translateY(-5px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 50px;
            margin-top: 50px;
            border-top: 1px solid rgba(255,255,255,0.1);
            color: #999;
            font-size: 0.95rem;
        }
        
        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3.5rem;
            }
            
            .module-switcher-container {
                height: 500px;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .module-switcher-container {
                flex-direction: column;
                height: auto;
            }
            
            .module-selector {
                width: 100%;
                padding: 30px;
            }
            
            .module-preview {
                height: 400px;
            }
            
            .section {
                padding: 100px 0;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
            
            .cta-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 767px) {
            .hero {
                padding-top: 90px;
            }
            
            .hero-title {
                font-size: 2.5rem;
            }
            
            .hero-subtitle {
                font-size: 1.2rem;
            }
            
            .module-preview {
                height: 300px;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .download-section {
                padding: 40px;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
            
            .motivation-card {
                padding: 40px 30px;
            }
            
            .motivation-card h2 {
                font-size: 2.2rem;
            }
        }
        
        @media (max-width: 575px) {
            .hero-title {
                font-size: 2.2rem;
            }
            
            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .module-preview {
                height: 250px;
            }
        }



        /* pricinghero Section */
        .pricinghero {
            background: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 240px 0 120px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .pricinghero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .pricinghero-title {
            font-weight: 800;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            letter-spacing: -0.5px;
        }
        
        .pricinghero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 400;
        }
        
        /* Sections */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
            letter-spacing: -0.5px;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto 80px;
            text-align: center;
            color: #555;
            font-weight: 400;
        }
        
        /* Currency Switcher */
        .currency-switcher {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
            background: white;
            padding: 10px;
            border-radius: 50px;
            max-width: 300px;
            margin: 30px auto;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .currency-btn {
            padding: 8px 25px;
            border: none;
            background: transparent;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .currency-btn.active {
            background: var(--primary);
            color: white;
        }
        
        /* Pricing Tabs */
        .pricing-tabs {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
            background: white;
            padding: 10px;
            border-radius: 50px;
            max-width: 500px;
            margin: 0 auto 40px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .pricing-tab {
            padding: 12px 30px;
            border: none;
            background: transparent;
            font-weight: 600;
            border-radius: 30px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .pricing-tab.active {
            background: var(--primary);
            color: white;
        }
        
        .savings-badge {
            background: rgba(37, 211, 102, 0.15);
            color: var(--success);
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            margin-left: 8px;
        }
        
        /* Pricing Cards */
        .pricing-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            height: 100%;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.1);
            border: 2px solid #f0f2ff;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.2);
            border-color: var(--primary);
        }
        
        .pricing-card.popular {
            border: 2px solid var(--primary);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.25);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -30px;
            background: var(--primary);
            color: white;
            padding: 5px 40px;
            transform: rotate(45deg);
            font-size: 14px;
            font-weight: 600;
        }
        
        .pricing-header {
            padding-bottom: 20px;
            border-bottom: 1px solid #eee;
            margin-bottom: 20px;
        }
        
        .pricing-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .pricing-subtitle {
            font-size: 16px;
            color: var(--text);
            margin-bottom: 15px;
        }
        
        .price-display {
            margin: 20px 0;
        }
        
        .price-amount {
            font-size: 48px;
            font-weight: 800;
            color: var(--dark);
        }
        
        .price-period {
            font-size: 16px;
            color: var(--text);
        }
        
        .original-price {
            text-decoration: line-through;
            color: #999;
            font-size: 18px;
            margin-right: 10px;
        }
        
        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            margin-bottom: 15px;
            padding-left: 30px;
            position: relative;
        }
        
        .pricing-features li i {
            position: absolute;
            left: 0;
            top: 5px;
            color: var(--primary);
        }
        
        .pricing-cta .btn {
            width: 100%;
            padding: 12px;
            font-weight: 600;
            border-radius: 10px;
        }
        
        /* Calculator Section */
        .calculator-section {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
            /* margin: 60px 0; */
        }
        
        .calculator-title {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 20px;
            text-align: center;
            color: var(--dark);
        }
        
        .form-range {
            height: 8px;
        }
        
        .form-range::-webkit-slider-thumb {
            background: var(--primary);
        }
        
        .card-price {
            font-size: 36px;
            font-weight: 800;
            color: var(--primary);
        }
        
        .savings-visualization {
            background: #f0f2ff;
            height: 10px;
            border-radius: 5px;
            margin: 25px 0 15px;
            overflow: hidden;
        }
        
        .savings-fill {
            background: var(--success);
            height: 100%;
            border-radius: 5px;
            transition: width 0.5s ease;
        }
        
        /* Trust Badges */
        .trust-badges {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin: 60px 0;
        }
        
        .trust-badge {
            display: flex;
            align-items: center;
            background: white;
            padding: 20px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
            max-width: 300px;
        }
        
        .trust-badge i {
            font-size: 32px;
            color: var(--primary);
            margin-right: 15px;
        }
        
        /* Features Section */
        .feature-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .toggle-btn {
            padding: 10px 25px;
            background: white;
            border: none;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .toggle-btn:first-child {
            border-radius: 30px 0 0 30px;
        }
        
        .toggle-btn:last-child {
            border-radius: 0 30px 30px 0;
        }
        
        .toggle-btn.active {
            background: var(--primary);
            color: white;
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            padding: 25px;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .feature-card i {
            font-size: 36px;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .feature-card h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 15px;
        }
        
        /* Comparison Table */
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
        }
        
        .comparison-table th {
            background: var(--primary);
            color: white;
            padding: 15px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9faff;
        }
        
        .comparison-table .feature-name i {
            margin-right: 10px;
            color: var(--primary);
        }
        
        .check-icon {
            color: var(--success);
        }
        
        /* FAQ Section */
        .faq-section {
            margin: 80px 0;
        }
        
        .faq-item {
            background: white;
            border-radius: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(108, 99, 255, 0.1);
            overflow: hidden;
        }
        
        .faq-question {
            padding: 20px;
            font-weight: 600;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .faq-answer {
            padding: 0 20px 20px;
            display: none;
        }
        
        .faq-answer.show {
            display: block;
        }
        
        /* Money Back Section */
        .money-back {
            background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            padding: 80px 0;
            text-align: center;
            color: white;
            border-radius: 20px;
            margin: 60px 0;
        }
        
        .money-back-icon {
            font-size: 60px;
            margin-bottom: 30px;
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 30px;
            margin-top: 80px;
        }
        
        /* Animations */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 992px) {
            .pricinghero-title {
                font-size: 36px;
            }
            
            .pricinghero-subtitle {
                font-size: 18px;
            }
        }
        
        @media (max-width: 768px) {
            .pricinghero-title {
                font-size: 32px;
            }
            
            .price-amount {
                font-size: 36px;
            }
            
            .trust-badges {
                flex-direction: column;
                align-items: center;
            }
        }
        
        /* Testimonials */
        .testimonial-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            border-radius: 20px;
            padding: 80px 0;
            color: white;
            margin: 80px 0;
            position: relative;
            overflow: hidden;
        }
        
        .testimonial-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .testimonial-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            margin: 20px;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-text {
            font-style: italic;
            color: white;
            font-size: 1.2rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .testimonial-text::before {
            /* content: """; */
            position: absolute;
            top: -30px;
            left: -20px;
            font-size: 100px;
            color: rgba(255, 255, 255, 0.1);
            font-family: Georgia, serif;
            line-height: 1;
            z-index: -1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid rgba(255, 255, 255, 0.2);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: white;
            font-size: 1.2rem;
        }
        
        .author-role {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 15px;
            padding: 30px;
            text-align: center;
        }
        
        .stat-number {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 10px;
            background: linear-gradient(90deg, var(--accent), var(--accent-light));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .stat-label {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
        }
        
        /* FAQ Section */
        .faq-section {
            background: white;
            border-radius: 20px;
            padding: 80px 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
            margin: 80px 0;
        }
        
        .faq-item {
            margin-bottom: 20px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .faq-question {
            background: white;
            padding: 25px;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: var(--transition);
        }
        
        .faq-question:hover {
            background: #f9faff;
        }
        
        .faq-question i {
            transition: transform 0.3s ease;
        }
        
        .faq-answer {
            background: #f9faff;
            padding: 0 25px;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease, padding 0.5s ease;
        }
        
        .faq-answer.show {
            padding: 25px;
            max-height: 500px;
        }



        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* New Sections */
        .trust-badges {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
            margin: 10px 0;
        }
        
        .trust-badge {
            background: white;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 15px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .trust-badge i {
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .enterprise-features {
            background: white;
            border-radius: 20px;
            padding: 60px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
            margin: 80px 0;
        }
        
        .feature-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .toggle-btn {
            background: #f0f3ff;
            border: none;
            padding: 12px 25px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .toggle-btn:first-child {
            border-radius: 50px 0 0 50px;
        }
        
        .toggle-btn:last-child {
            border-radius: 0 50px 50px 0;
        }
        
        .toggle-btn.active {
            background: var(--primary);
            color: white;
        }
        
        .integration-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 40px;
            padding: 40px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin: 80px 0;
        }
        
        .integration-logo {
            height: 50px;
            filter: grayscale(100%);
            opacity: 0.6;
            transition: var(--transition);
        }
        
        .integration-logo:hover {
            filter: none;
            opacity: 1;
            transform: scale(1.1);
        }
        
        .money-back {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(74, 68, 201, 0.1) 100%);
            border-radius: 20px;
            padding: 60px;
            text-align: center;
            margin: 0px 0;
        }
        
        .money-back-icon {
            width: 100px;
            height: 100px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: white;
        }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .pricinghero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991px) {
            .pricinghero-title {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .enterprise-features {
                padding: 40px;
            }
        }
        
        @media (max-width: 767px) {
            .pricinghero {
                padding: 120px 0 70px;
            }
            
            .pricinghero-title {
                font-size: 2.2rem;
            }
            
            .pricinghero-subtitle {
                font-size: 1.1rem;
            }
            
            .pricing-tabs {
                flex-direction: column;
                gap: 5px;
            }
            
            .pricing-tab {
                width: 100%;
            }
            
            .calculator-section {
                padding: 30px;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .cta-subtitle {
                font-size: 1.2rem;
            }
            
            .trust-badges {
                gap: 20px;
            }
            
            .integration-logos {
                gap: 30px;
            }
            
            .money-back {
                padding: 40px;
            }
        }
        
        @media (max-width: 575px) {
            .pricinghero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .price-amount {
                font-size: 2.8rem;
            }
            
            .integration-logos img {
                height: 35px;
            }
        }


/* SOLUTIONS */

        /* solutionhero Section */
        .solutions-solutionhero {
            min-height: 80vh;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .solutionhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .solutionhero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .solutionhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .solutionhero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Industry Solutions */
        .industry-section {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .industry-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
            margin-bottom: 30px;
        }
        
        .industry-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .industry-header {
            padding: 30px;
            color: white;
            position: relative;
        }
        
        .industry-icon {
            font-size: 3rem;
            margin-bottom: 20px;
        }
        
        .industry-title {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 15px;
        }
        
        .industry-content {
            padding: 30px;
        }
        
        .benefit-list {
            list-style: none;
            padding-left: 0;
        }
        
        .benefit-list li {
            padding: 15px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            font-weight: 500;
        }
        
        .benefit-list li:last-child {
            border-bottom: none;
        }
        
        .benefit-list li i {
            width: 30px;
            height: 30px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 14px;
        }
        
        /* ROI Section */
        .roi-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .roi-container {
            background: white;
            border-radius: 25px;
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
            padding: 50px;
            margin-top: -100px;
        }
        
        .roi-card {
            text-align: center;
            padding: 30px;
        }
        
        .roi-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .roi-label {
            font-size: 1.2rem;
            color: #555;
        }
        
        .comparison-table {
            width: 100%;
            border-collapse: collapse;
            margin: 40px 0;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
        }
        
        .comparison-table th {
            background: var(--primary);
            color: white;
            padding: 20px;
            text-align: left;
            font-weight: 600;
        }
        
        .comparison-table td {
            padding: 15px 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .comparison-table tr:nth-child(even) {
            background: #f9f9ff;
        }
        
        .comparison-table tr:last-child td {
            border-bottom: none;
        }
        
        .check-icon {
            color: #4CAF50;
            font-size: 1.5rem;
        }
        
        .x-icon {
            color: #f44336;
            font-size: 1.5rem;
        }
        
        /* Workflow Section */
        .workflow-section {
            padding: 100px 0;
            background: white;
        }
        
        .workflow-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .workflow-card {
            width: 300px;
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .workflow-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .workflow-card:hover::before {
            height: 100%;
        }
        
        .workflow-number {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 24px;
            font-weight: 700;
            transition: var(--transition);
        }
        
        .workflow-card:hover .workflow-number {
            background: white;
            color: var(--primary);
            transform: scale(1.2);
        }
        
        .workflow-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .workflow-card p {
            transition: var(--transition);
        }
        
        .workflow-card:hover h4,
        .workflow-card:hover p {
            color: white;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .testimonial-text {
            margin: 20px 0 40px;
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }


         /* CTA Section */
        .solutions-cta {
            background: linear-gradient(135deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 120px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
            margin: 10px 0;
            border-radius: 30px;
        }
        
        .cta-title {
            font-weight: 800;
            font-size: 3rem;
            margin-bottom: 25px;
            position: relative;
        }
        
        .cta-subtitle {
            font-size: 1.4rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 400;
        }
/*         
        .btn-cta {
            background: white;
            color: var(--primary);
            border: none;
            padding: 18px 50px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 1.2rem;
            transition: var(--transition);
            box-shadow: 0 10px 30px rgba(0,0,0,0.15);
            position: relative;
            overflow: hidden;
        }
        
        .btn-cta::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--gradient-accent);
            z-index: -1;
            opacity: 0;
            transition: var(--transition);
        }
        
        .btn-cta:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(0,0,0,0.2);
            color: white;
        }
        
        .btn-cta:hover::before {
            opacity: 1;
        } */

         /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .solutionhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .solutionhero-title {
                font-size: 2.5rem;
            }
            
            .roi-container {
                padding: 30px;
            }
        }
        
        @media (max-width: 767px) {
            .solutions-solutionhero {
                padding-top: 100px;
            }
            
            .solutionhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .roi-value {
                font-size: 2.5rem;
            }
            
            .workflow-card {
                width: 100%;
            }
        }





        /* Features Hero */
        .features-hero {
            min-height: 80vh;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .hero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .hero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .hero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Feature Navigation */
        .feature-nav {
            background: white;
            padding: 20px 0;
            position: sticky;
            top: 80px;
            z-index: 100;
            box-shadow: 0 5px 20px rgba(0,0,0,0.05);
        }
        
        .feature-nav .nav-link {
            font-weight: 600;
            color: var(--dark);
            padding: 10px 20px;
            border-radius: 50px;
            transition: var(--transition);
        }
        
        .feature-nav .nav-link.active, 
        .feature-nav .nav-link:hover {
            background: var(--primary);
            color: white;
        }
        
        /* Feature Sections */
        .feature-section {
            padding: 120px 0;
            position: relative;
        }
        
        .feature-section:nth-child(even) {
            background: white;
        }
        
        .section-header {
            margin-bottom: 80px;
            text-align: center;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            font-size: 1.3rem;
            max-width: 800px;
            margin: 0 auto;
            color: #555;
            font-weight: 400;
        }
        
        /* Feature Demo */
        .feature-demo {
            background: white;
            border-radius: 25px;
            box-shadow: 0 40px 60px rgba(108, 99, 255, 0.15);
            overflow: hidden;
            height: 600px;
            position: relative;
            margin-bottom: 80px;
        }
        
        .demo-nav {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 20px;
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
        }
        
        .demo-nav-btn {
            background: white;
            border: 1px solid #e0e0ff;
            border-radius: 10px;
            padding: 12px 20px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .demo-nav-btn.active, 
        .demo-nav-btn:hover {
            background: var(--primary);
            color: white;
            border-color: var(--primary);
        }
        
        .demo-content {
            padding: 30px;
            height: calc(100% - 70px);
            overflow-y: auto;
        }
        
        .demo-view {
            display: none;
        }
        
        .demo-view.active {
            display: block;
            animation: fadeIn 0.5s ease;
        }
        
        /* Chat Demo */
        .chat-container {
            display: flex;
            height: 100%;
        }
        
        .chat-sidebar {
            width: 300px;
            border-right: 1px solid #f0f0ff;
            padding-right: 20px;
        }
        
        .chat-channels {
            list-style: none;
            padding: 0;
        }
        
        .chat-channel {
            padding: 15px;
            border-radius: 10px;
            margin-bottom: 10px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .chat-channel.active, 
        .chat-channel:hover {
            background: rgba(108, 99, 255, 0.1);
        }
        
        .chat-main {
            flex: 1;
            padding-left: 30px;
            display: flex;
            flex-direction: column;
        }
        
        .chat-header {
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0ff;
            margin-bottom: 20px;
        }
        
        .chat-messages {
            flex: 1;
            overflow-y: auto;
            margin-bottom: 20px;
        }
        
        .message {
            margin-bottom: 20px;
            max-width: 80%;
        }
        
        .message-incoming {
            align-self: flex-start;
        }
        
        .message-outgoing {
            align-self: flex-end;
            margin-left: auto;
        }
        
        .message-bubble {
            background: #f0f0ff;
            padding: 15px;
            border-radius: 20px;
            border-bottom-left-radius: 0;
        }
        
        .message-outgoing .message-bubble {
            background: var(--primary);
            color: white;
            border-bottom-left-radius: 20px;
            border-bottom-right-radius: 0;
        }
        
        .message-info {
            font-size: 0.8rem;
            color: #777;
            margin-top: 5px;
        }
        
        .message-outgoing .message-info {
            text-align: right;
        }
        
        .chat-input {
            display: flex;
            gap: 10px;
            align-items: center;
            background: #f8f9ff;
            padding: 15px;
            border-radius: 20px;
        }
        
        /* Task Board Demo */
        .board-container {
            display: flex;
            gap: 20px;
            height: 100%;
            overflow-x: auto;
        }
        
        .board-column {
            min-width: 300px;
            background: #f8f9ff;
            border-radius: 15px;
            padding: 20px;
        }
        
        .board-column-header {
            font-weight: 700;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid var(--primary);
        }
        
        .board-tasks {
            min-height: 400px;
        }
        
        .board-task {
            background: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            cursor: grab;
        }
        
        .task-title {
            font-weight: 600;
            margin-bottom: 10px;
        }
        
        .task-meta {
            display: flex;
            justify-content: space-between;
            font-size: 0.85rem;
            color: #777;
        }
        
        .task-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 0.8rem;
            margin-right: 5px;
        }
        
        /* Meeting Demo */
        .meeting-container {
            display: flex;
            height: 100%;
            gap: 20px;
        }
        
        .meeting-participants {
            width: 250px;
        }
        
        .participant {
            background: white;
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .participant-main {
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        
        .meeting-main {
            background: #f8f9ff;
            border-radius: 20px;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            margin-bottom: 20px;
        }
        
        .meeting-feed {
            width: 80%;
            height: 80%;
            background: var(--dark);
            border-radius: 15px;
            position: relative;
            overflow: hidden;
        }
        
        .meeting-controls {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .control-btn {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            transition: var(--transition);
        }
        
        .control-btn.end-call {
            background: var(--accent);
            color: white;
        }
        
        .control-btn:hover {
            transform: translateY(-5px);
        }
        
        /* Feature Cards */
        .feature-card-container {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            position: relative;
            z-index: 1;
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--primary);
            transition: var(--transition);
            z-index: -1;
        }
        
        .feature-card:hover::before {
            height: 100%;
        }
        
        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 36px;
            transition: var(--transition);
        }
        
        .feature-card:hover .feature-icon {
            background: white;
            color: var(--primary);
            transform: scale(1.1) translateY(-10px);
        }
        
        .feature-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .feature-card p {
            transition: var(--transition);
        }
        
        .feature-card:hover h4,
        .feature-card:hover p {
            color: white;
        }
        
        /* Integrations */
        .integrations-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 100px 0;
            border-radius: 30px;
        }
        
        .integration-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .integration-item {
            background: white;
            border-radius: 15px;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
        }
        
        .integration-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .integration-item img {
            max-width: 100%;
            height: 40px;
            object-fit: contain;
        }
        


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .hero-title {
                font-size: 3rem;
            }
            
            .feature-demo {
                height: 500px;
            }
        }
        
        @media (max-width: 991px) {
            .hero-title {
                font-size: 2.5rem;
            }
            
            .feature-demo {
                height: 400px;
            }
            
            .chat-container, 
            .meeting-container {
                flex-direction: column;
            }
            
            .chat-sidebar, 
            .meeting-participants {
                width: 100%;
                height: 200px;
                overflow-y: auto;
            }
        }
        
        @media (max-width: 767px) {
            .features-hero {
                padding-top: 100px;
            }
            
            .hero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .feature-demo {
                height: 500px;
            }
        }


        /* Resources */

        /* resourceshero Section */
        .resourceshero {
            background: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
            padding: 200px 0 100px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        
        .resourceshero::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .resourceshero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
        }
        
        .resourceshero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            opacity: 0.9;
            font-weight: 400;
        }
        
        .search-container {
            max-width: 700px;
            margin: 0 auto;
            position: relative;
        }
        
        .search-container input {
            width: 100%;
            padding: 20px 30px;
            border-radius: 50px;
            border: none;
            font-size: 1.1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding-right: 180px;
        }
        
        .search-container button {
            position: absolute;
            right: 10px;
            top: 10px;
            padding: 10px 30px;
            border-radius: 50px;
            background: var(--accent);
            color: white;
            border: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .search-container button:hover {
            background: var(--accent-light);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.3);
        }
        
        /* Resource Categories */
        .categories {
            padding: 100px 0;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .category-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
            text-align: center;
            padding: 40px 30px;
        }
        
        .category-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }
        
        .category-icon {
            width: 100px;
            height: 100px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 40px;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .category-card:hover .category-icon {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }
        
        .category-title {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
        .category-count {
            background: var(--accent);
            color: white;
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 20px;
        }
        
        /* Resource Cards */
        .resources-section {
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
            padding: 100px 0;
            position: relative;
        }
        
        .resources-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%236c63ff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
            z-index: 0;
        }
        
        .resource-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
        }
        
        .resource-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }
        
        .resource-image {
            height: 200px;
            background-size: cover;
            background-position: center;
        }
        
        .resource-content {
            padding: 30px;
        }
        
        .resource-tag {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            display: inline-block;
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .resource-title {
            font-weight: 700;
            font-size: 1.4rem;
            margin-bottom: 15px;
        }
        
        .resource-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .resource-meta i {
            margin-right: 5px;
        }
        
        .resource-meta span {
            margin-right: 20px;
        }
        
        .resource-excerpt {
            margin-bottom: 20px;
            color: #555;
        }
        
        .resource-link {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .resource-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .resource-link:hover i {
            transform: translateX(5px);
        }
        
        /* Learning Paths */
        .learning-paths {
            padding: 100px 0;
        }
        
        .path-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
            height: 100%;
            position: relative;
            z-index: 1;
            display: flex;
            flex-direction: column;
        }
        
        .path-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.2);
        }
        
        .path-header {
            padding: 30px;
            background: linear-gradient(120deg, var(--gradient-start) 0%, var(--gradient-end) 100%);
            color: white;
        }
        
        .path-title {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 10px;
        }
        
        .path-stats {
            display: flex;
            gap: 20px;
            margin-bottom: 15px;
        }
        
        .path-stat {
            display: flex;
            align-items: center;
            font-size: 0.9rem;
            opacity: 0.9;
        }
        
        .path-stat i {
            margin-right: 8px;
        }
        
        .path-content {
            padding: 30px;
            flex-grow: 1;
        }
        
        .path-modules {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .path-modules li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
        }
        
        .path-modules li:last-child {
            border-bottom: none;
        }
        
        .path-modules li i {
            color: var(--primary);
            margin-right: 15px;
            width: 24px;
            text-align: center;
        }
        
        .path-progress {
            height: 8px;
            background: #f0f0f0;
            border-radius: 4px;
            overflow: hidden;
            margin-bottom: 15px;
        }
        
        .path-progress-bar {
            height: 100%;
            background: var(--primary);
            border-radius: 4px;
            width: 65%;
        }
        
        .path-action {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        /* Community Section */
        .community-section {
            background: linear-gradient(135deg, var(--dark) 0%, var(--darker) 100%);
            color: white;
            padding: 100px 0;
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }
        
        .community-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
            opacity: 0.1;
        }
        
        .community-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 40px;
            height: 100%;
            position: relative;
            z-index: 1;
            transition: var(--transition);
        }
        
        .community-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
        }
        
        .community-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            margin-bottom: 30px;
            transition: var(--transition);
        }
        
        .community-card:hover .community-icon {
            background: var(--accent);
            transform: scale(1.1);
        }
        
        .community-title {
            font-weight: 700;
            font-size: 1.6rem;
            margin-bottom: 20px;
        }
        
        .community-description {
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .community-link {
            color: white;
            text-decoration: none;
            font-weight: 600;
            display: flex;
            align-items: center;
        }
        
        .community-link i {
            margin-left: 8px;
            transition: var(--transition);
        }
        
        .community-link:hover i {
            transform: translateX(5px);
        }
        
        /* Newsletter */
        .newsletter {
            padding: 100px 0;
            background: white;
            border-radius: 20px;
            margin: 100px 0;
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
        }
        
        .newsletter-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .newsletter-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .newsletter-subtitle {
            font-size: 1.2rem;
            max-width: 600px;
            margin: 0 auto 40px;
            color: #555;
        }
        
        .newsletter-form {
            display: flex;
            gap: 15px;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-form input {
            flex: 1;
            padding: 15px 25px;
            border-radius: 50px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        
        .newsletter-form button {
            padding: 15px 40px;
            border-radius: 50px;
            background: var(--primary);
            color: white;
            border: none;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .newsletter-form button:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3);
        }
        

         /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .resourceshero-title {
                font-size: 3rem;
            }
            
            .section-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 991px) {
            .resourceshero-title {
                font-size: 2.5rem;
            }
            
            .section {
                padding: 80px 0;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 767px) {
            .resourceshero {
                padding: 120px 0 70px;
            }
            
            .resourceshero-title {
                font-size: 2.2rem;
            }
            
            .resourceshero-subtitle {
                font-size: 1.1rem;
            }
            
            .search-container input {
                padding-right: 30px;
            }
            
            .search-container button {
                position: relative;
                width: 100%;
                margin-top: 15px;
                top: 0;
                right: 0;
            }
        }
        
        @media (max-width: 575px) {
            .resourceshero-title {
                font-size: 2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }



        /* Roadmap */
         
        /* Roadmap rmhero */
        .roadmap-rmhero {
            min-height: 70vh;
            padding-top: 120px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .rmhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .rmhero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .rmhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .rmhero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Recently Released */
        .released-section {
            padding: 80px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.5rem;
            text-align: center;
            margin-bottom: 60px;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .released-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .released-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.08);
            transition: var(--transition);
            border: 1px solid #f0f0ff;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .released-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 60px rgba(108, 99, 255, 0.15);
        }
        
        .released-icon {
            width: 80px;
            height: 80px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 32px;
            margin: 0 auto 25px;
        }
        
        .released-title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }
        
        .released-desc {
            color: #555;
            margin-bottom: 20px;
        }
        
        .status-badge {
            display: inline-block;
            padding: 6px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 15px;
        }
        
        .status-launched {
            background: rgba(76, 175, 80, 0.15);
            color: #2e7d32;
        }
        
        .status-in-progress {
            background: rgba(33, 150, 243, 0.15);
            color: #1565c0;
        }
        
        .status-planned {
            background: rgba(121, 85, 72, 0.15);
            /* color: #4e342e; */
        }
        
        /* Roadmap Timeline */
        .roadmap-container {
            padding: 100px 0;
            position: relative;
        }
        
        .roadmap-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 100%;
            background: var(--primary);
            z-index: 0;
        }
        
        .roadmap-phase {
            position: relative;
            margin-bottom: 100px;
            padding: 40px;
            border-radius: 25px;
            background: white;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            z-index: 1;
        }
        
        .roadmap-phase:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .phase-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 30px;
            padding-bottom: 20px;
            border-bottom: 2px solid #f0f0f0;
        }
        
        .phase-title {
            font-weight: 800;
            font-size: 2.2rem;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .phase-timeline {
            background: var(--primary);
            color: white;
            padding: 8px 20px;
            border-radius: 50px;
            font-weight: 600;
        }
        
        .phase-summary {
            font-size: 1.2rem;
            margin-bottom: 30px;
            color: #555;
            padding: 20px;
            background: #f8f9ff;
            border-radius: 15px;
            border-left: 4px solid var(--primary);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            transition: var(--transition);
            border: 1px solid #f0f0ff;
            position: relative;
            overflow: hidden;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
            border-color: rgba(108, 99, 255, 0.3);
        }
        
        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 5px;
            height: 100%;
            background: var(--primary);
            transition: var(--transition);
        }
        
        .feature-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 20px;
        }
        
        .feature-title {
            font-weight: 700;
            margin-bottom: 15px;
            font-size: 1.3rem;
        }
        
        .feature-user-story {
            font-style: italic;
            color: #777;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .benefits-list {
            list-style: none;
            padding-left: 0;
            margin-bottom: 20px;
        }
        
        .benefits-list li {
            padding: 8px 0;
            display: flex;
            align-items: flex-start;
        }
        
        .benefits-list li::before {
            content: '✓';
            color: var(--primary);
            font-weight: bold;
            margin-right: 10px;
        }
        
        .vote-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-top: 20px;
            padding-top: 15px;
            border-top: 1px solid #f0f0f0;
        }
        
        .vote-btn {
            background: transparent;
            border: 1px solid #ddd;
            border-radius: 50px;
            padding: 6px 15px;
            display: flex;
            align-items: center;
            gap: 8px;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .vote-btn:hover {
            background: rgba(108, 99, 255, 0.05);
            border-color: var(--primary);
        }
        
        .vote-count {
            font-weight: 600;
        }
        
        /* Community Section */
        /* .community-section {
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.1) 0%, rgba(255, 107, 107, 0.05) 100%);
            padding: 100px 0;
            text-align: center;
        } */
        
        /* .community-card {
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.1);
            max-width: 800px;
            margin: 0 auto;
        }
        
        .community-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 30px;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .community-desc {
            font-size: 1.2rem;
            color: #555;
            margin-bottom: 40px;
        } */
        
        .idea-form {
            display: flex;
            gap: 15px;
            margin-top: 30px;
        }
        
        .idea-input {
            flex: 1;
            padding: 15px 20px;
            border-radius: 50px;
            border: 1px solid #ddd;
            font-size: 1rem;
        }
        
        .idea-submit {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 50px;
            padding: 0 30px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
        }
        
        .idea-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
          
        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .rmhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .rmhero-title {
                font-size: 2.5rem;
            }
            
            .roadmap-container::before {
                left: 30px;
            }
            
            .roadmap-phase {
                margin-left: 60px;
            }

            .idea-form {
                flex-direction: column;
            }
        }
        
        @media (max-width: 767px) {
            .roadmap-rmhero {
                padding-top: 100px;
            }
            
            .rmhero-title {
                font-size: 2.2rem;
            }
            
            .phase-header {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .phase-timeline {
                margin-top: 15px;
            }

            .community-card {
                padding: 30px 20px;
            }
        }




        /* carhero Section - CENTERED */
        .careers-carhero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            padding: 20px;
        }
        
        .carhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            text-align: center;
            max-width: 900px;
            margin: 0 auto;
        }
        
        .carhero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .carhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .carhero-subtitle {
            font-size: 1.35rem;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .carhero-buttons {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 15px;
            margin-top: 20px;
        }
        
        /* Why Join Section */
        .why-join {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .section-subtitle {
            text-align: center;
            margin-bottom: 60px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .benefit-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .benefit-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .benefit-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        /* Team Culture */
        .team-culture {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .culture-container {
            display: flex;
            align-items: center;
            gap: 40px;
        }
        
        .culture-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(0,0,0,0.15);
            height: 500px;
            background-size: cover;
            background-position: center;
            flex: 1;
        }
        
        .culture-text {
            flex: 1;
            padding: 20px;
        }
        
        .culture-title {
            font-weight: 800;
            font-size: 2.5rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .culture-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--accent);
            border-radius: 5px;
        }
        
        .culture-point {
            margin-top: 30px;
            display: flex;
            gap: 15px;
        }
        
        .culture-point i {
            font-size: 1.5rem;
            color: var(--primary);
            margin-top: 5px;
        }
        
        /* Job Openings */
        .job-openings {
            padding: 100px 0;
            background: white;
        }
        
        .job-filters {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            margin-bottom: 50px;
        }
        
        .filter-title {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 20px;
        }
        
        .filter-buttons {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        
        .filter-btn {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .filter-btn.active, .filter-btn:hover {
            background: var(--primary);
            color: white;
        }
        
        .job-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .job-title {
            font-weight: 800;
            font-size: 1.8rem;
            margin-bottom: 10px;
        }
        
        .job-meta {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            color: #777;
            font-size: 1.1rem;
            flex-wrap: wrap;
        }
        
        .job-meta i {
            margin-right: 8px;
            color: var(--primary);
        }
        
        .job-description {
            margin-bottom: 25px;
            color: #555;
        }
        
        /* Application Process */
        .application-process {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .process-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .process-card {
            width: 250px;
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .process-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .process-card:hover::before {
            height: 100%;
        }
        
        .process-number {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            font-size: 24px;
            font-weight: 700;
            transition: var(--transition);
        }
        
        .process-card:hover .process-number {
            background: white;
            color: var(--primary);
            transform: scale(1.2);
        }
        
        .process-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .process-card p {
            transition: var(--transition);
        }
        
        .process-card:hover h4,
        .process-card:hover p {
            color: white;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 25px;
            padding: 50px 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
            height: 100%;
        }
        
        .testimonial-text {
            margin: 20px 0 40px;
            font-style: italic;
            color: #555;
            font-size: 1.2rem;
            position: relative;
            z-index: 1;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }
        

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .carhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .carhero-title {
                font-size: 2.5rem;
            }
            
            .culture-container {
                flex-direction: column;
            }
            
            .culture-image {
                width: 100%;
                height: 400px;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
        }
        
        @media (max-width: 767px) {
            .careers-carhero {
                min-height: 70vh;
            }
            
            .carhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .job-meta {
                flex-direction: column;
                gap: 8px;
            }
            
            .cta-title {
                font-size: 2.5rem;
            }
            
            .carhero-buttons {
                flex-direction: column;
                align-items: center;
            }
        } 



        /* abthero Section */
        .about-abthero {
            min-height: 80vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .abthero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .abthero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .abthero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .abthero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Mission Section */
        .mission-section {
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }
        
        .mission-content {
            background: white;
            border-radius: 25px;
            padding: 60px;
            box-shadow: 0 30px 60px rgba(0,0,0,0.08);
            position: relative;
            z-index: 2;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 30px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 5px;
            background: var(--accent);
            border-radius: 5px;
        }
        
        .mission-statement {
            font-size: 1.3rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 40px;
            position: relative;
            padding-left: 30px;
            border-left: 4px solid var(--primary);
        }
        
        /* Timeline */
        .timeline-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .timeline::before {
            content: '';
            position: absolute;
            top: 0;
            bottom: 0;
            width: 4px;
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .timeline-item {
            position: relative;
            margin-bottom: 50px;
            width: 100%;
        }
        
        .timeline-item:nth-child(odd) {
            padding-right: calc(50% + 30px);
            text-align: right;
        }
        
        .timeline-item:nth-child(even) {
            padding-left: calc(50% + 30px);
        }
        
        .timeline-dot {
            position: absolute;
            top: 0;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: var(--primary);
            left: 50%;
            transform: translateX(-50%);
        }
        
        .timeline-content {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        
        .timeline-content:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .timeline-year {
            font-size: 1.2rem;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        /* Team Section */
        .team-section {
            padding: 100px 0;
            background: white;
        }
        
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }
        
        .team-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            text-align: center;
        }
        
        .team-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .team-image {
            height: 280px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .team-content {
            padding: 30px 20px;
        }
        
        .team-name {
            font-weight: 800;
            font-size: 1.5rem;
            margin-bottom: 5px;
            color: var(--dark);
        }
        
        .team-role {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            transition: var(--transition);
        }
        
        .social-icon:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Values Section */
        .values-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .values-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .value-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
        }
        
        .value-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .value-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .value-title {
            font-weight: 700;
            margin-bottom: 20px;
            font-size: 1.5rem;
        }
        
        /* Stats Section */
        .stats-section {
            padding: 100px 0;
            background: white;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }
        
        .stat-card {
            text-align: center;
            padding: 40px 20px;
        }
        
        .stat-value {
            font-size: 3.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            line-height: 1;
        }
        
        .stat-label {
            font-size: 1.2rem;
            color: #555;
        }


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .abthero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .abthero-title {
                font-size: 2.5rem;
            }
            
            .timeline::before {
                left: 20px;
            }
            
            .timeline-item:nth-child(odd),
            .timeline-item:nth-child(even) {
                padding-left: 50px;
                padding-right: 0;
                text-align: left;
            }
            
            .timeline-dot {
                left: 11px;
            }
        }
        
        @media (max-width: 767px) {
            .about-abthero {
                padding-top: 120px;
            }
            
            .abthero-title {
                font-size: 2.2rem;
            }
            
            .mission-content {
                padding: 40px 20px;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        } 


        /* Article blogdethero */
        .article-blogdethero {
            min-height: 70vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            margin-bottom: 60px;
        }
        
        .blogdethero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            max-width: 800px;
            margin: 0 auto;
        }
        
        .article-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
        }
        
        .article-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            color: var(--dark);
        }
        
        .article-meta {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            line-height: 1.4;
            margin-right: 30px;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
            font-size: 1.2rem;
        }
        
        .author-role {
            color: #777;
            font-size: 0.95rem;
        }
        
        .article-stats {
            display: flex;
            gap: 20px;
            color: #777;
            font-size: 0.95rem;
        }
        
        .article-stats i {
            margin-right: 5px;
            color: var(--primary);
        }
        
        .featured-image {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.15);
            margin: 40px 0;
            height: 500px;
            background-size: cover;
            background-position: center;
        }
        
        /* Article Content */
        .article-content {
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }
        
        .content-section {
            margin-bottom: 60px;
        }
        
        .content-section h2 {
            font-weight: 800;
            font-size: 2rem;
            margin: 40px 0 25px;
            color: var(--dark);
            position: relative;
            padding-bottom: 15px;
        }
        
        .content-section h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .content-section h3 {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 35px 0 20px;
            color: var(--primary-dark);
        }
        
        .content-section p {
            margin-bottom: 25px;
            font-size: 1.1rem;
            color: #444;
        }
        
        .highlight-box {
            background: rgba(108, 99, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }
        
        .stat-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            text-align: center;
        }
        
        .stat-value {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 10px;
        }
        
        .stat-label {
            color: #666;
            font-size: 1.1rem;
        }
        
        .image-caption {
            text-align: center;
            font-style: italic;
            color: #777;
            margin-top: 10px;
            font-size: 0.95rem;
        }
        
        /* Sidebar */
        .article-sidebar {
            position: sticky;
            top: 120px;
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            margin-left: 40px;
        }
        
        .sidebar-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .toc-list {
            list-style: none;
            padding-left: 0;
        }
        
        .toc-list li {
            margin-bottom: 12px;
            padding-bottom: 12px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .toc-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .toc-list a {
            color: #555;
            text-decoration: none;
            transition: var(--transition);
            display: flex;
            align-items: center;
        }
        
        .toc-list a:hover {
            color: var(--primary);
        }
        
        .toc-list a i {
            margin-right: 10px;
            color: var(--primary);
            font-size: 0.8rem;
        }
        
        .share-buttons {
            display: flex;
            gap: 15px;
            margin: 30px 0;
        }
        
        .share-btn {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2rem;
            transition: var(--transition);
        }
        
        .share-btn.facebook { background: #3b5998; }
        .share-btn.twitter { background: #1da1f2; }
        .share-btn.linkedin { background: #0077b5; }
        .share-btn.link { background: var(--primary); }
        
        .share-btn:hover {
            transform: translateY(-5px);
        }
        
        .author-card {
            background: rgba(108, 99, 255, 0.05);
            border-radius: 15px;
            padding: 25px;
            text-align: center;
            margin-top: 30px;
        }
        
        .author-card img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 20px;
            display: block;
        }
        
        .author-card h4 {
            font-weight: 700;
            margin-bottom: 10px;
        }
        
        .author-card p {
            color: #666;
            margin-bottom: 20px;
        }
        
        /* Related Articles */
        .related-articles {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            text-align: center;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        /* .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
            height: 100%;
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
         */
        /* .blog-image {
            height: 220px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-category {
            display: inline-block;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .blog-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 20px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
        }
        

        .comments-section {
            max-width: 800px;
            margin: 0 auto 80px;
            padding: 0 20px;
        }
        
        .comment-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            margin-bottom: 30px;
        }
        
        .comment-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .comment-avatar {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
        }
        
        .comment-author {
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .comment-date {
            color: #777;
            font-size: 0.9rem;
        }
        
        .comment-reply {
            color: var(--primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-block;
            margin-top: 15px;
        }
        
        .comment-form {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
        }
        
        .form-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            color: var(--dark);
        }
        
        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 20px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }
        
        textarea.form-control {
            min-height: 150px;
        }
        
        .btn-submit {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 15px 30px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: var(--transition);
        }
        
        .btn-submit:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        


      
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
     
        @media (max-width: 1199px) {
            .article-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .article-title {
                font-size: 2.5rem;
            }
            
            .article-sidebar {
                margin-left: 0;
                margin-top: 60px;
            }
            
            .featured-image {
                height: 400px;
            }
        }
        
        @media (max-width: 767px) {
            .article-blogdethero {
                padding-top: 120px;
                min-height: 60vh;
            }
            
            .article-title {
                font-size: 2.2rem;
            }
            
            .article-meta {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .author-info {
                margin-bottom: 20px;
            }
            
            .featured-image {
                height: 300px;
            }
        } 
 */


        /* comphero Section - CENTERED */
        .compliance-comphero {
            min-height: 60vh;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center; /* Centered horizontally */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            padding: 100px 20px;
        }
        
        .comphero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            text-align: center; /* Centered text */
        }
        
        .comphero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .comphero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            color: #555;
            font-weight: 400;
            margin: 0 auto 40px; /* Centered with auto margins */
        }
        
        /* Badges - Centered */
        .comphero-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        /* Compliance Content */
        .compliance-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .compliance-section {
            margin-bottom: 70px;
        }
        
        .compliance-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .compliance-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .compliance-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .compliance-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .compliance-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .compliance-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .compliance-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .compliance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .compliance-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .compliance-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Standards Section */
        .standards-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .standard-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .standard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .standard-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .standard-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 20px;
        }
        
        .standard-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
        }
        
        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .compliance-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Security Measures */
        .security-section {
            padding: 100px 0;
            background: white;
        }
        
        .security-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        
        .security-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
        }
        
        .security-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Certifications */
        .certifications-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .cert-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .cert-card {
            width: 230px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .cert-card:hover::before {
            height: 100%;
        }
        
        .cert-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cert-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .cert-card p {
            transition: var(--transition);
        }
        
        .cert-card:hover h4,
        .cert-card:hover p {
            color: white;
        }
        
        /* Contact Card */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 600px;
            margin: 70px auto 0;
            border-top: 5px solid var(--primary);
        }
        
        .contact-card h3 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--dark);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }

        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .comphero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .comphero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .compliance-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .compliance-comphero {
                padding-top: 120px;
            }
            
            .comphero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .standard-header {
                flex-direction: column;
                text-align: center;
            }
            
            .standard-icon {
                margin: 0 auto 15px;
            }
        } 




        /* prhero Section - CENTERED */
        .compliance-prhero {
            min-height: 60vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center; /* Centered horizontally */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
        }
        
        .prhero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
            text-align: center; /* Centered text */
        }
        
        .prhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .prhero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            color: #555;
            font-weight: 400;
            margin: 0 auto 40px; /* Centered with auto margins */
        }
        
        /* Badges - Centered */
        .prhero-badges {
            display: flex;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            margin-top: 20px;
        }
        
        /* Compliance Content */
        .compliance-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .compliance-section {
            margin-bottom: 70px;
        }
        
        .compliance-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .compliance-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .compliance-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .compliance-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .compliance-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .compliance-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .compliance-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            height: 100%;
            transition: var(--transition);
            border-top: 4px solid var(--primary);
        }
        
        .compliance-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(108, 99, 255, 0.15);
        }
        
        .compliance-icon {
            width: 80px;
            height: 80px;
            margin: 0 auto 30px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: var(--primary);
        }
        
        .compliance-card h4 {
            font-weight: 700;
            margin-bottom: 20px;
        }
        
        /* Standards Section */
        .standards-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .standard-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .standard-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .standard-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .standard-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: var(--primary);
            margin-right: 20px;
        }
        
        .standard-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin: 0;
        }
        
        .badge-group {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 20px;
            justify-content: center;
        }
        
        .compliance-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
        }
        
        /* Security Measures */
        .security-section {
            padding: 100px 0;
            background: white;
        }
        
        .security-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            height: 100%;
            transition: var(--transition);
        }
        
        .security-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.15);
        }
        
        .security-icon {
            font-size: 3.5rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Certifications */
        .certifications-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f0f3ff 0%, #e8ebff 100%);
        }
        
        .cert-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 50px;
        }
        
        .cert-card {
            width: 230px;
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            text-align: center;
            position: relative;
            z-index: 1;
        }
        
        .cert-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: var(--accent);
            transition: var(--transition);
            z-index: -1;
        }
        
        .cert-card:hover::before {
            height: 100%;
        }
        
        .cert-icon {
            font-size: 3rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        .cert-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .cert-card p {
            transition: var(--transition);
        }
        
        .cert-card:hover h4,
        .cert-card:hover p {
            color: white;
        }
        
        /* Contact Card */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 600px;
            margin: 70px auto 0;
            border-top: 5px solid var(--primary);
        }
        
        .contact-card h3 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--dark);
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .prhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .prhero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .compliance-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .compliance-prhero {
                padding-top: 120px;
            }
            
            .prhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .standard-header {
                flex-direction: column;
                text-align: center;
            }
            
            .standard-icon {
                margin: 0 auto 15px;
            }
        } 


        /* termhero Section - FIXED CENTERING */
        .terms-termhero {
            min-height: 60vh;
            padding-top: 150px;
            display: flex;
            align-items: center;
            justify-content: center; /* Added for vertical centering */
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            text-align: center; /* Center text content */
        }
        
        .termhero-content {
            max-width: 800px; /* Added max-width for better control */
            margin: 0 auto; /* Center the content block */
        }
        
        .termhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .termhero-subtitle {
            font-size: 1.35rem;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Terms Content */
        .terms-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center; /* Center section titles */
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .terms-section {
            margin-bottom: 70px;
        }
        
        .terms-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .terms-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .terms-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .terms-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .terms-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .terms-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .highlight-box {
            background: rgba(108, 99, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        .terms-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            margin-bottom: 30px;
            transition: var(--transition);
            border-left: 4px solid var(--primary);
        }
        
        .terms-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15);
        }
        
        .terms-card h4 {
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
            display: flex;
            align-items: center;
        }
        
        .terms-card h4 i {
            margin-right: 12px;
            color: var(--primary);
        }
        
        /* Feature Terms */
        .feature-terms {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8f9ff 0%, #f0f3ff 100%);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .feature-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.07);
            transition: var(--transition);
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 50px rgba(108, 99, 255, 0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            color: var(--primary);
            margin-bottom: 25px;
        }
        
        /* Agreement Section */
        .agreement-section {
            padding: 100px 0;
            background: white;
        }
        
        .agreement-box {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            border-top: 5px solid var(--primary);
        }



        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .termhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .termhero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .terms-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .terms-termhero {
                padding-top: 120px;
                min-height: 50vh;
            }
            
            .termhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .termhero-subtitle {
                font-size: 1.1rem;
            }
        } 



         
        /* Blog bloghero Section */
        .blog-bloghero {
            min-height: 60vh;
            padding-top: 150px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            margin-bottom: 80px;
        }
        
        .bloghero-content {
            position: relative;
            z-index: 10;
            padding: 40px 0;
        }
        
        .bloghero-badge {
            background: var(--gradient-accent);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            display: inline-block;
            margin-bottom: 25px;
            font-weight: 600;
            font-size: 1.1rem;
            box-shadow: 0 10px 20px rgba(255, 107, 107, 0.2);
            animation: float 4s ease-in-out infinite;
        }
        
        .bloghero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .bloghero-subtitle {
            font-size: 1.35rem;
            max-width: 700px;
            margin: 0 auto 50px;
            color: #555;
            font-weight: 400;
        }
        
        /* Blog Content */
        .blog-container {
            padding: 0 0 100px;
        }
        
        .blog-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 50px;
        }
        
        @media (min-width: 992px) {
            .blog-grid {
                grid-template-columns: 2fr 1fr;
            }
        }
        
        /* Blog Posts */
        .blog-posts {
            display: grid;
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        @media (min-width: 768px) {
            .blog-posts {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        .blog-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            transition: var(--transition);
        }
        
        .blog-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 30px 60px rgba(108, 99, 255, 0.2);
        }
        
        .blog-image {
            height: 220px;
            width: 100%;
            background-size: cover;
            background-position: center;
        }
        
        .blog-content {
            padding: 30px;
        }
        
        .blog-category {
            display: inline-block;
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 5px 15px;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .blog-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .blog-excerpt {
            color: #666;
            margin-bottom: 20px;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            color: #777;
            font-size: 0.9rem;
        }
        
        .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 12px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 600;
        }
        
        /* Sidebar */
        .blog-sidebar {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            position: sticky;
            top: 120px;
        }
        
        .sidebar-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }
        
        .sidebar-title::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .categories-list {
            list-style: none;
            padding-left: 0;
        }
        
        .categories-list li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            justify-content: space-between;
        }
        
        .categories-list li:last-child {
            border-bottom: none;
        }
        
        .categories-list a {
            color: #555;
            text-decoration: none;
            transition: var(--transition);
        }
        
        .categories-list a:hover {
            color: var(--primary);
        }
        
        .category-count {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            border-radius: 50px;
            padding: 2px 10px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .popular-posts {
            list-style: none;
            padding-left: 0;
        }
        
        .popular-post {
            display: flex;
            margin-bottom: 20px;
            padding-bottom: 20px;
            border-bottom: 1px solid #f0f0f0;
        }
        
        .popular-post:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        
        .popular-image {
            width: 80px;
            height: 80px;
            border-radius: 10px;
            overflow: hidden;
            margin-right: 15px;
            flex-shrink: 0;
        }
        
        .popular-content h4 {
            font-size: 1rem;
            margin-bottom: 8px;
        }
        
        .popular-content h4 a {
            color: var(--dark);
            text-decoration: none;
            transition: var(--transition);
        }
        
        .popular-content h4 a:hover {
            color: var(--primary);
        }
        
        .popular-meta {
            font-size: 0.8rem;
            color: #777;
        }
        
        .newsletter-form {
            margin-top: 30px;
        }
        
        .form-control {
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            padding: 12px 15px;
            margin-bottom: 15px;
            transition: var(--transition);
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(108, 99, 255, 0.25);
        }
        
        .btn-subscribe {
            background: var(--primary);
            color: white;
            border: none;
            border-radius: 10px;
            padding: 12px 20px;
            width: 100%;
            font-weight: 600;
            transition: var(--transition);
        }
        
        .btn-subscribe:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
        }
        
        /* Pagination */
        .pagination {
            display: flex;
            justify-content: center;
            margin-top: 60px;
        }
        
        .page-item .page-link {
            color: var(--primary);
            border: none;
            border-radius: 10px;
            margin: 0 5px;
            transition: var(--transition);
        }
        
        .page-item.active .page-link {
            background: var(--primary);
            color: white;
        }
        
        .page-item:not(.active) .page-link:hover {
            background: rgba(108, 99, 255, 0.1);
        }



        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .bloghero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .bloghero-title {
                font-size: 2.5rem;
            }
        }
        
        @media (max-width: 767px) {
            .blog-bloghero {
                padding-top: 120px;
            }
            
            .bloghero-title {
                font-size: 2.2rem;
            }
        } 
        
        /* Blog specific styles */
        .featured-post {
            grid-column: 1 / -1;
        }
        
        .featured-post .blog-image {
            height: 400px;
        }
        
        .featured-post .blog-content {
            padding: 40px;
        }
        
        .featured-post .blog-title {
            font-size: 2rem;
        }
        
        .featured-post .blog-excerpt {
            font-size: 1.1rem;
        }



        /* privhero Section - OPTIMIZED FOR CENTERING */
        .privacy-privhero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, rgba(108, 99, 255, 0.08) 0%, rgba(255, 107, 107, 0.05) 100%);
            text-align: center;
            padding: 100px 0;
        }
        
        .privhero-content {
            max-width: 800px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .privhero-title {
            font-weight: 900;
            font-size: 3.5rem;
            margin-bottom: 25px;
            line-height: 1.15;
            background: linear-gradient(90deg, var(--dark), var(--primary-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        
        .privhero-subtitle {
            font-size: 1.35rem;
            color: #555;
            font-weight: 400;
            margin-bottom: 40px;
        }
        
        /* Policy Content */
        .policy-content {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            font-weight: 800;
            font-size: 2.8rem;
            margin-bottom: 60px;
            position: relative;
            text-align: center;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 5px;
            background: var(--primary);
            border-radius: 5px;
        }
        
        .policy-section {
            margin-bottom: 70px;
        }
        
        .policy-section h3 {
            font-weight: 700;
            font-size: 1.8rem;
            margin-bottom: 20px;
            color: var(--dark);
            position: relative;
            padding-left: 30px;
        }
        
        .policy-section h3::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 15px;
            height: 15px;
            background: var(--primary);
            border-radius: 50%;
        }
        
        .policy-section p {
            margin-bottom: 20px;
            color: #555;
            line-height: 1.8;
        }
        
        .policy-section ul {
            padding-left: 25px;
            margin-bottom: 25px;
        }
        
        .policy-section li {
            margin-bottom: 15px;
            position: relative;
            padding-left: 15px;
        }
        
        .policy-section li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: var(--primary);
            font-weight: bold;
        }
        
        .highlight-box {
            background: rgba(108, 99, 255, 0.05);
            border-left: 4px solid var(--primary);
            padding: 25px;
            border-radius: 0 10px 10px 0;
            margin: 30px 0;
        }
        
        /* Data Table */
        .data-table {
            width: 100%;
            border-collapse: collapse;
            margin: 30px 0;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }
        
        .data-table th {
            background: var(--primary);
            color: white;
            text-align: left;
            padding: 15px;
            font-weight: 600;
        }
        
        .data-table td {
            padding: 15px;
            border-bottom: 1px solid #eee;
        }
        
        .data-table tr:nth-child(even) {
            background: #f9f9ff;
        }
        
        .data-table tr:hover {
            background: rgba(108, 99, 255, 0.03);
        }
        
        /* Security Badges */
        .security-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            margin: 30px 0;
            justify-content: center;
        }
        
        .security-badge {
            background: rgba(108, 99, 255, 0.1);
            color: var(--primary);
            padding: 12px 20px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 10px;
            transition: var(--transition);
        }
        
        .security-badge:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-3px);
        }
        
        /* Cookie Cards */
        .cookie-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 25px;
            margin: 30px 0;
        }
        
        .cookie-card {
            background: white;
            border-radius: 15px;
            padding: 25px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            text-align: center;
            transition: var(--transition);
            border-top: 3px solid var(--primary);
        }
        
        .cookie-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.1);
        }
        
        .cookie-icon {
            font-size: 2.5rem;
            color: var(--primary);
            margin-bottom: 20px;
        }
        
        /* Contact Card */
        .contact-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.08);
            text-align: center;
            max-width: 600px;
            margin: 70px auto 0;
            border-top: 5px solid var(--primary);
        }
        
        .contact-card h3 {
            font-weight: 700;
            margin-bottom: 25px;
            font-size: 1.8rem;
            color: var(--dark);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
            gap: 15px;
            margin-bottom: 30px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            font-size: 1.1rem;
        }
        
        .contact-item i {
            color: var(--primary);
            font-size: 1.3rem;
        }
        


        /* Animations */
        @keyframes float {
            0% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
            100% { transform: translateY(0); }
        }
        
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .fade-in {
            animation: fadeIn 0.8s ease forwards;
        }
        
        .delay-1 { animation-delay: 0.1s; }
        .delay-2 { animation-delay: 0.2s; }
        .delay-3 { animation-delay: 0.3s; }
        .delay-4 { animation-delay: 0.4s; }
        
        /* Responsive adjustments */
        @media (max-width: 1199px) {
            .privhero-title {
                font-size: 3rem;
            }
        }
        
        @media (max-width: 991px) {
            .privhero-title {
                font-size: 2.5rem;
            }
            
            .section-title {
                font-size: 2.3rem;
            }
            
            .policy-section h3 {
                font-size: 1.6rem;
            }
        }
        
        @media (max-width: 767px) {
            .privacy-privhero {
                padding: 80px 0;
            }
            
            .privhero-title {
                font-size: 2.2rem;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .policy-section h3 {
                font-size: 1.5rem;
                padding-left: 25px;
            }
            
            .contact-card {
                padding: 30px;
            }
            
            .privhero-subtitle {
                font-size: 1.1rem;
            }
        } 




        /* downloadhero Section */
        .download-downloadhero {
            background: linear-gradient(135deg, #f5f7ff 0%, #e6e9ff 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
        }
        
        .download-downloadhero::before {
            content: "";
            position: absolute;
            top: -300px;
            right: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .download-downloadhero::after {
            content: "";
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .downloadhero-content {
            position: relative;
            z-index: 2;
        }
        
        .downloadhero-badge {
            display: inline-block;
            background-color: rgba(108, 99, 255, 0.15);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .downloadhero-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .downloadhero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .downloadhero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        
        .btn-lg {
            padding: 12px 30px;
            font-size: 18px;
            border-radius: 12px;
            font-weight: 600;
        }
        
        .btn-outline-dark {
            border: 2px solid var(--dark);
            color: var(--dark);
        }
        
        .btn-outline-dark:hover {
            background-color: var(--dark);
            color: white;
        }
        
        /* Platform Section */
        .platform-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .platform-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .platform-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
            padding: 40px 30px;
            text-align: center;
            width: 300px;
            transition: all 0.3s ease;
            border: 2px solid #f0f2ff;
        }
        
        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
            border-color: var(--primary);
        }
        
        .platform-icon {
            width: 100px;
            height: 100px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 40px;
            color: var(--primary);
        }
        
        .platform-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--dark);
        }
        
        .platform-desc {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .download-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            width: 100%;
            max-width: 200px;
        }
        
        .download-btn:hover {
            background: white;
            color: var(--primary);
        }
        
        /* Features Section */
        .features-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
        }
        
        .feature-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(108, 99, 255, 0.08);
            transition: all 0.3s ease;
            border: 1px solid #e9ebff;
        }
        
        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(108, 99, 255, 0.15);
        }
        
        .feature-icon {
            width: 70px;
            height: 70px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            font-size: 28px;
            color: var(--primary);
        }
        
        /* .feature-title {
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        } */
        
        .feature-desc {
            color: var(--text);
            margin-bottom: 0;
            font-size: 16px;
            line-height: 1.6;
        }
        
        /* Testimonials */
        .testimonials-section {
            padding: 100px 0;
            background: white;
        }
        
        .testimonial-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 30px;
            max-width: 1200px;
            margin: 0 auto;
        }
        
        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.08);
            border: 1px solid #e9ebff;
        }
        
        .testimonial-text {
            font-size: 18px;
            line-height: 1.8;
            margin-bottom: 30px;
            color: var(--text);
            font-style: italic;
            position: relative;
        }
        
        .testimonial-text::before {
            /* content: """; */
            font-size: 80px;
            position: absolute;
            top: -30px;
            left: -20px;
            color: rgba(108, 99, 255, 0.1);
            font-family: serif;
        }
        
        .testimonial-author {
            display: flex;
            align-items: center;
        }
        
        .author-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 15px;
            background: var(--secondary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-weight: 600;
            font-size: 24px;
        }
        
        .author-info {
            line-height: 1.4;
        }
        
        .author-name {
            font-weight: 700;
            color: var(--dark);
        }
        
        .author-role {
            color: var(--text);
            font-size: 14px;
        }
        
        /* FAQ */
        .faq-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
        }
        
        .accordion-item {
            border: 1px solid #e9ebff;
            border-radius: 15px;
            margin-bottom: 20px;
            overflow: hidden;
            background: white;
        }
        
        .accordion-button {
            padding: 25px;
            font-weight: 600;
            font-size: 18px;
            color: var(--dark);
            background: white;
            box-shadow: none;
        }
        
        .accordion-button:not(.collapsed) {
            background: white;
            color: var(--primary);
        }
        
        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236c63ff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        
        .accordion-body {
            padding: 0 25px 25px;
            color: var(--text);
            font-size: 16px;
            line-height: 1.7;
        }
        



        /* Responsive */
        @media (max-width: 992px) {
            .downloadhero-title {
                font-size: 36px;
            }
            
            .downloadhero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
            .navbar-brand {
                font-size: 24px;
            }
            
            .downloadhero-title {
                font-size: 32px;
            }
            
            .downloadhero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .platform-cards {
                flex-direction: column;
                align-items: center;
            }
        }




        /* cthero Section */
        .contact-cthero {
            background: linear-gradient(135deg, #f5f7ff 0%, #e6e9ff 100%);
            padding: 120px 0 80px;
            position: relative;
            overflow: hidden;
            text-align: center;
        }
        
        .contact-cthero::before {
            content: "";
            position: absolute;
            top: -300px;
            right: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .contact-cthero::after {
            content: "";
            position: absolute;
            bottom: -300px;
            left: -300px;
            width: 800px;
            height: 800px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.08);
            z-index: 0;
        }
        
        .cthero-content {
            position: relative;
            z-index: 2;
        }
        
        .cthero-badge {
            display: inline-block;
            background-color: rgba(108, 99, 255, 0.15);
            color: var(--primary);
            padding: 8px 20px;
            border-radius: 50px;
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cthero-title {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
            line-height: 1.2;
        }
        
        .cthero-subtitle {
            font-size: 20px;
            margin-bottom: 40px;
            color: var(--text);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .cthero-buttons {
            display: flex;
            gap: 15px;
            justify-content: center;
            margin-top: 30px;
        }
        
        /* Contact Channels Section */
        .contact-channels {
            padding: 100px 0;
            background: white;
        }
        
        .section-title {
            text-align: center;
            font-size: 40px;
            font-weight: 800;
            margin-bottom: 20px;
            color: var(--dark);
        }
        
        .section-subtitle {
            text-align: center;
            font-size: 18px;
            color: var(--text);
            max-width: 700px;
            margin: 0 auto 60px;
        }
        
        .channel-cards {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: center;
        }
        
        .channel-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            width: 300px;
            transition: all 0.3s ease;
            border: 2px solid #f0f2ff;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
        }
        
        .channel-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(108, 99, 255, 0.2);
            border-color: var(--primary);
        }
        
        .channel-icon {
            width: 80px;
            height: 80px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 36px;
            color: var(--primary);
        }
        
        .channel-name {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }
        
        .channel-desc {
            color: var(--text);
            margin-bottom: 25px;
            font-size: 16px;
        }
        
        .channel-btn {
            display: inline-block;
            background: var(--primary);
            color: white;
            padding: 12px 30px;
            border-radius: 10px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: 2px solid var(--primary);
            width: 100%;
            max-width: 200px;
        }
        
        .channel-btn:hover {
            background: white;
            color: var(--primary);
        }
        
        .whatsapp-btn {
            background: #25D366;
            border-color: #25D366;
        }
        
        .whatsapp-btn:hover {
            background: white;
            color: #25D366;
        }
        
        /* Contact Information */
        .contact-info-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f5f7ff 0%, #f0f2ff 100%);
        }
        
        .contact-container {
            max-width: 1000px;
            margin: 0 auto;
            background: white;
            border-radius: 20px;
            padding: 50px;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
        }
        
        .contact-row {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
        }
        
        .contact-method {
            display: flex;
            align-items: flex-start;
            margin-bottom: 30px;
            flex: 1;
            min-width: 300px;
        }
        
        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(108, 99, 255, 0.1);
            border-radius: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 20px;
            font-size: 24px;
            color: var(--primary);
        }
        
        .contact-details {
            flex: 1;
        }
        
        .contact-details h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--dark);
        }
        
        .contact-details p {
            font-size: 16px;
            color: var(--text);
            line-height: 1.6;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 40px;
            justify-content: center;
        }
        
        .social-link {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: rgba(108, 99, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 20px;
        }
        
        .social-link:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-5px);
        }
        
        /* Map Section */
        .map-section {
            padding: 80px 0;
            background: white;
        }
        
        .map-container {
            height: 400px;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(108, 99, 255, 0.1);
        }
        
        .map-container iframe {
            width: 100%;
            height: 100%;
            border: none;
        }



        /* Responsive */
        @media (max-width: 992px) {
            .cthero-title {
                font-size: 36px;
            }
            
            .cthero-subtitle {
                font-size: 18px;
            }
            
            .section-title {
                font-size: 32px;
            }
        }
        
        @media (max-width: 768px) {
     
            
            .cthero-title {
                font-size: 32px;
            }
            
            .cthero-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .channel-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .contact-container {
                padding: 30px;
            }
        }