  :root {
            --primary: #0b7dda;
            --secondary: #1a2a6c;
            --accent: #00f7ff;
            --dark: #101820;
            --light: #f8f9ff;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
            --card-gradient: linear-gradient(145deg, #1e3c72, #2a5298);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }

        body {
            background: linear-gradient(135deg, #022b01, #017177);
            color: white;
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* Header & Navigation */
        header {
            background: linear-gradient(135deg, rgba(0, 0, 0, 0.8), rgba(11, 30, 66, 0.9));
            color: white;
            position: fixed;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.4s ease;
            backdrop-filter: blur(10px);
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 1rem 5%;
            max-width: 1400px;
            margin: 0 auto;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
        }

        .logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(to right, #00deff, #17ff00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        nav ul {
            display: flex;
            list-style: none;
            gap: 2rem;
        }

        nav a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s;
            position: relative;
            padding: 5px 0;
        }

        nav a:hover {
            color: var(--accent);
        }

        nav a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: 0;
            left: 0;
            background-color: var(--accent);
            transition: width 0.3s;
        }

        nav a:hover::after {
            width: 100%;
        }

        .cta-button {
    background: var(--gradient);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;     /* ↓ Reduced padding */
    font-size: 1rem;            /* ↓ Reduced font size */
    border-radius: 30px;        /* ↓ Slightly smaller radius */
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(11, 125, 218, 0.3);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-decoration: none;
}


        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(11, 125, 218, 0.6);
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, #1a2a6c, #0b7dda);
            z-index: -1;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .cta-button:hover::before {
            opacity: 1;
        }

        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            cursor: pointer;
            font-size: 24px;
            margin-left: 15px;
        }

        /* Hero Section */
        .hero {
            position: relative;
            overflow: hidden;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
        }

        .background-video {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            z-index: 1;
        }

        .video-overlay-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    display: block;
}

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 5%;
            width: 100%;
            transform: translateZ(50px);
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .hero h1 {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            animation: fadeInUp 1s ease-out;
        }

        .hero h1 span {
            background: linear-gradient(to right, #00deff, #17ff00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            display: block;
        }

        .hero p {
            font-size: 1.2rem;
            margin-bottom: 2rem;
            max-width: 600px;
            opacity: 0.9;
            animation: fadeInUp 1s ease-out 0.2s forwards;
            opacity: 0;
        }

        .hero-buttons {
            display: flex;
            justify-content: center;
            gap: 5rem;
            margin-top: 2rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s forwards;
            opacity: 0;
        }

        .ticker-tape {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(0, 0, 0, 0.7);
            padding: 15px 0;
            overflow: hidden;
            z-index: 2;
            backdrop-filter: blur(5px);
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .ticker-content {
            display: flex;
            gap: 40px;
            white-space: nowrap;
            animation: ticker 30s linear infinite;
        }

        .ticker-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 1.1rem;
        }

        .ticker-item i {
            color: var(--accent);
        }

        /* Features Section */
        .features {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .section-title {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-title h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
            background: linear-gradient(to right, #00deff, #17ff00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .section-title p {
            color: #c3c3c3;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }

        .feature-card {
            background: var(--card-gradient);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-align: center;
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transform: translateZ(0);
        }

        .feature-card:hover {
            transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            z-index: 1;
        }

        .feature-icon {
            font-size: 3.5rem;
            margin-bottom: 1.5rem;
            color: var(--accent);
            position: relative;
            z-index: 2;
            text-shadow: 0 0 20px rgba(0, 247, 255, 0.5);
        }

        .feature-card h3 {
            margin-bottom: 1rem;
            color: white;
            font-size: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.8);
            position: relative;
            z-index: 2;
        }

        /* SIP Calculator */
        .sip-calculator {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .sip-container {
            display: flex;
            gap: 40px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .calculator-intro {
            flex: 1;
            min-width: 300px;
            background: var(--card-gradient);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
            transform-style: preserve-3d;
            transform: rotateY(-5deg);
            transition: transform 0.5s ease;
        }

        .calculator-intro:hover {
            transform: rotateY(0);
        }

        .calculator-intro::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
        }

        .calculator-intro h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            position: relative;
            z-index: 2;
            color: white;
        }

        .calculator-intro p {
            font-size: 1.1rem;
            line-height: 1.8;
            margin-bottom: 30px;
            position: relative;
            z-index: 2;
            color: rgba(255, 255, 255, 0.9);
        }

        .features-list {
            position: relative;
            z-index: 2;
            margin-top: 30px;
        }

        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            font-size: 1.1rem;
            color: white;
        }

        .features-list i {
            margin-right: 12px;
            font-size: 1.4rem;
            color: #4cd137;
        }

        .calculator-form {
            flex: 1;
            min-width: 300px;
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
            transform-style: preserve-3d;
            transform: rotateY(5deg);
            transition: transform 0.5s ease;
        }

        .calculator-form:hover {
            transform: rotateY(0);
        }

        .input-group {
            margin-bottom: 30px;
        }

        .slider-container {
            display: flex;
            flex-direction: column;
            margin-bottom: 25px;
        }

        .slider-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
        }

        .slider-header label {
            font-weight: 600;
            color: var(--secondary);
            font-size: 1.1rem;
        }

        .slider-value {
            font-weight: bold;
            color: var(--primary);
            font-size: 1.2rem;
        }

        .slider {
            -webkit-appearance: none;
            width: 100%;
            height: 12px;
            border-radius: 10px;
            background: var(--gradient);
            outline: none;
            box-shadow: 0 3px 10px rgba(11, 125, 218, 0.2);
            transition: all 0.3s ease;
        }

        .slider:hover {
            box-shadow: 0 5px 15px rgba(11, 125, 218, 0.4);
        }

        .slider::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: white;
            border: 3px solid var(--primary);
            cursor: pointer;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }

        .slider::-webkit-slider-thumb:hover {
            transform: scale(1.2);
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
        }

        .calculate-btn {
            display: block;
            width: 100%;
            padding: 18px;
            margin-top: 30px;
            background: var(--gradient);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 1.2rem;
            font-weight: 600;
            cursor: pointer;
            box-shadow: 0 8px 20px rgba(11, 125, 218, 0.4);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .calculate-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(11, 125, 218, 0.6);
        }

        .calculate-btn::after {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: rgba(255, 255, 255, 0.2);
            transform: rotate(30deg) translate(-20px, 100px);
            transition: transform 0.6s ease;
        }

        .calculate-btn:hover::after {
            transform: rotate(30deg) translate(0, -100px);
        }

        .sip-results {
            background: linear-gradient(to bottom right, #f8f9ff, #e6f0ff);
            border-radius: 15px;
            padding: 30px;
            margin-top: 40px;
            box-shadow: 0 8px 20px rgba(11, 125, 218, 0.15);
            transform: perspective(800px) rotateY(0);
            transition: transform 0.4s ease;
            border: 1px solid rgba(11, 125, 218, 0.1);
        }

        .sip-results:hover {
            transform: perspective(800px) rotateY(5deg);
        }

        .result-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 0;
            border-bottom: 1px dashed rgba(11, 125, 218, 0.3);
        }

        .result-item:last-child {
            border-bottom: none;
        }

        .result-label {
            font-size: 1.1rem;
            color: #555;
        }

        .result-value {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--secondary);
        }

        .investment-graph {
            height: 150px;
            margin-top: 30px;
            background: white;
            border-radius: 10px;
            display: flex;
            align-items: flex-end;
            padding: 10px;
            gap: 5px;
            box-shadow: inset 0 0 10px rgba(0,0,0,0.1);
        }

        .graph-bar {
            flex: 1;
            background: var(--gradient);
            border-radius: 5px 5px 0 0;
            position: relative;
            transition: height 0.8s ease-out;
        }

        .graph-bar::after {
            content: attr(data-label);
            position: absolute;
            bottom: -25px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 0.8rem;
            color: #555;
            white-space: nowrap;
        }

        .graph-labels {
            display: flex;
            justify-content: space-between;
            padding: 0 5px;
            margin-top: 30px;
            color: #555;
        }

        .chart-title {
            text-align: center;
            margin-top: 10px;
            font-weight: 600;
            color: var(--secondary);
        }

        /* Stats Section */
        .stats {
            background: linear-gradient(135deg, var(--dark), #0a1929);
            color: white;
            padding: 5rem 5%;
            text-align: center;
            perspective: 1000px;
            position: relative;
            overflow: hidden;
        }

        .stats::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 247, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .stats-container {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            margin-top: 3rem;
        }

        .stat-item {
            padding: 2rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            transform-style: preserve-3d;
            transform: translateZ(20px);
            transition: all 0.4s ease;
        }

        .stat-item:hover {
            transform: translateZ(30px);
            background: rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            background: linear-gradient(to right, var(--accent), #17ff00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .stat-label {
            font-size: 1.1rem;
            opacity: 0.8;
        }

        /* Review Section - Fixed */
        .review-section {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            perspective: 1000px;
            position: relative;
            overflow: hidden;
        }

        .review-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 247, 255, 0.05) 0%, transparent 70%);
            pointer-events: none;
        }

        .review-container {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: center;
            align-items: stretch;
        }

        .form-container {
            flex: 1;
            min-width: 350px;
            max-width: 550px;
            perspective: 1200px;
        }

        .form-card {
            background: rgba(30, 40, 60, 0.7);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(74, 107, 152, 0.3);
            transform-style: preserve-3d;
            transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            height: 100%;
        }

        .form-card::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(52, 152, 219, 0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            z-index: -1;
        }

        .form-title {
            font-size: 32px;
            margin-bottom: 30px;
            text-align: center;
            background: linear-gradient(45deg, #4facfe, #00f2fe);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .form-group {
            margin-bottom: 25px;
        }

        .form-label {
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
            color: #bdc3c7;
        }

        .form-input, .form-textarea {
            width: 100%;
            padding: 15px 20px;
            border: 1px solid rgba(74, 107, 152, 0.5);
            background: rgba(20, 30, 48, 0.5);
            border-radius: 12px;
            color: white;
            font-size: 16px;
            transition: all 0.3s;
        }

        .form-input:focus, .form-textarea:focus {
            outline: none;
            border-color: #3498db;
            box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.2);
        }

        .form-textarea {
            min-height: 150px;
            resize: vertical;
        }

        .rating-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin: 30px 0;
        }

        .rating-star {
            font-size: 36px;
            color: #34495e;
            cursor: pointer;
            transition: all 0.2s;
        }

        .rating-star:hover, .rating-star.selected {
            color: #f1c40f;
            transform: scale(1.2);
        }

        .submit-btn {
            background: linear-gradient(45deg, #3498db, #2ecc71);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-size: 18px;
            font-weight: 600;
            cursor: pointer;
            display: block;
            margin: 40px auto 0;
            width: 80%;
            max-width: 300px;
            transition: all 0.3s;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            position: relative;
            overflow: hidden;
        }

        .submit-btn::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: 0.5s;
        }

        .submit-btn:hover::before {
            left: 100%;
        }

        .submit-btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
        }

        .submit-btn:active {
            transform: translateY(0);
        }

        .confirmation {
            background: rgba(46, 204, 113, 0.15);
            border: 1px solid rgba(46, 204, 113, 0.5);
            padding: 20px;
            border-radius: 12px;
            text-align: center;
            margin-top: 30px;
            display: none;
        }

        .confirmation.show {
            display: block;
            animation: fadeIn 0.5s;
        }

        .confirmation i {
            font-size: 48px;
            color: #2ecc71;
            margin-bottom: 15px;
            display: block;
        }

        .confirmation h3 {
            font-size: 24px;
            margin-bottom: 10px;
        }

        .confirmation p {
            color: #b0eacd;
            font-size: 16px;
            line-height: 1.6;
        }

        .illustration {
            flex: 1;
            min-width: 350px;
            max-width: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
            perspective: 1000px;
        }

        .cube {
            position: relative;
            width: 200px;
            height: 200px;
            transform-style: preserve-3d;
            animation: rotate 20s infinite linear;
        }

        .face {
            position: absolute;
            width: 200px;
            height: 200px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(74, 107, 152, 0.3);
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 24px;
            color: #3498db;
            backdrop-filter: blur(5px);
            box-shadow: inset 0 0 20px rgba(52, 152, 219, 0.2);
        }

        .face-front { transform: translateZ(100px); }
        .face-back { transform: rotateY(180deg) translateZ(100px); }
        .face-right { transform: rotateY(90deg) translateZ(100px); }
        .face-left { transform: rotateY(-90deg) translateZ(100px); }
        .face-top { transform: rotateX(90deg) translateZ(100px); }
        .face-bottom { transform: rotateX(-90deg) translateZ(100px); }

        /* Testimonials */
        .testimonials {
            padding: 5rem 5%;
            max-width: 1400px;
            margin: 0 auto;
            perspective: 1000px;
        }

        .swiper {
            width: 100%;
            padding-top: 50px;
            padding-bottom: 50px;
        }

        .swiper-slide {
            background-position: center;
            background-size: cover;
            width: 300px;
            transform-style: preserve-3d;
        }

        .testimonial-card {
            background: var(--card-gradient);
            border-radius: 15px;
            padding: 2.5rem 2rem;
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            text-align: center;
            transform: translateZ(30px);
            transition: all 0.4s ease;
            height: 100%;
        }

        .swiper-slide-active .testimonial-card {
            transform: translateZ(50px);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            margin-bottom: 1.5rem;
        }

        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            margin-right: 1rem;
            border: 3px solid var(--accent);
            box-shadow: 0 0 15px rgba(0, 247, 255, 0.3);
        }

        .testimonial-name {
            font-weight: 600;
            color: white;
            font-size: 1.3rem;
        }

        .testimonial-role {
            color: rgba(255, 255, 255, 0.7);
            font-size: 0.9rem;
        }

        .testimonial-quote {
            color: rgba(255, 255, 255, 0.9);
            line-height: 1.6;
            font-style: italic;
            margin-bottom: 1.5rem;
        }

        .testimonial-rating {
            color: #ffd700;
            font-size: 1.2rem;
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), 
                        url('https://images.unsplash.com/photo-1604594849809-dfeddd911531?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80') no-repeat center center/cover;
            padding: 5rem 5%;
            text-align: center;
            color: white;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(0, 247, 255, 0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .cta-container {
            max-width: 800px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
            transform: translateZ(50px);
        }

        .cta-section h2 {
            font-size: 2.5rem;
            margin-bottom: 1.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        }

        .cta-section p {
            margin-bottom: 2rem;
            opacity: 0.9;
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 2rem;
        }

        .cta-form {
            display: flex;
            max-width: 500px;
            margin: 0 auto;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50px;
            padding: 5px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            overflow: hidden;
        }

        .cta-form input {
            flex: 1;
            padding: 1rem 1.5rem;
            border: none;
            background: transparent;
            color: white;
            font-size: 1rem;
        }

        .cta-form input::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .cta-form button {
            background: var(--gradient);
            color: white;
            border: none;
            padding: 0 2rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            white-space: nowrap;
        }

        .cta-form button:hover {
            background: linear-gradient(45deg, #1a2a6c, #0b7dda);
        }

        /* Footer */
        footer {
            background: var(--dark);
            color: white;
            padding: 3rem 5% 0;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -100px;
            left: 0;
            width: 100%;
            height: 100px;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23101820" fill-opacity="1" d="M0,224L48,218.7C96,213,192,203,288,181.3C384,160,480,128,576,138.7C672,149,768,203,864,208C960,213,1056,171,1152,149.3C1248,128,1344,128,1392,128L1440,128L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>');
            background-size: cover;
            z-index: 1;
        }

        .footer-container {
            max-width: 1400px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            position: relative;
            z-index: 2;
        }

        .footer-about {
            position: relative;
            z-index: 2;
        }

        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
        }

        .footer-logo img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            object-fit: cover;
            border: 2px solid var(--accent);
        }

        .footer-logo-text {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(to right, var(--accent), #17ff00);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .footer-about p {
            opacity: 0.7;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .social-links {
            display: flex;
            gap: 1rem;
        }

        .social-links a {
            color: white;
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s;
        }

        .social-links a:hover {
            background: var(--primary);
            transform: translateY(-3px);
        }

        .footer-links h3 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 0.8rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: all 0.3s;
            display: block;
            padding: 5px 0;
        }

        .footer-links a:hover {
            color: var(--accent);
            padding-left: 5px;
        }

        .footer-contact p {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 1rem;
            opacity: 0.7;
        }

        .footer-contact i {
            color: var(--accent);
            min-width: 20px;
        }

        .copyright {
            text-align: center;
            padding: 1.5rem;
            background: rgba(0, 0, 0, 0.2);
            margin-top: 2rem;
            opacity: 0.7;
            font-size: 0.9rem;
            position: relative;
            z-index: 2;
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes ticker {
            0% { transform: translateX(100%); }
            100% { transform: translateX(-100%); }
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        @keyframes rotate {
            0% { transform: rotateX(0) rotateY(0) rotateZ(0); }
            100% { transform: rotateX(360deg) rotateY(360deg) rotateZ(360deg); }
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .floating {
            animation: float 6s ease-in-out infinite;
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .hero h1 {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .header-container {
                padding: 0.8rem 5%;
                flex-wrap: nowrap;
            }
            
            .mobile-menu-btn {
                display: block;
                order: 1;
                margin-left: auto;
                font-size: 22px;
            }
            
            .logo {
                order: 0;
                flex: 1;
                min-width: 0;
            }
            
            .logo-text {
                font-size: 1.2rem;
            }
            
            .logo img {
                width: 40px;
                height: 40px;
            }
            
            .cta-button {
                padding: 0.8rem 1.8rem;
                font-size: 1rem;
            }
            
            nav ul {
                position: fixed;
                top: 70px;
                left: -100%;
                width: 100%;
                height: calc(100vh - 70px);
                background: var(--secondary);
                flex-direction: column;
                align-items: center;
                justify-content: flex-start;
                padding-top: 2rem;
                gap: 2rem;
                transition: all 0.5s ease;
                z-index: 1000;
            }
            
            nav ul.active {
                left: 0;
            }
            
            .hero h1 {
                font-size: 2.2rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            .sip-container {
                flex-direction: column;
            }
            
            .calculator-intro, .calculator-form {
                transform: none !important;
            }
            
            .cta-form {
                flex-direction: column;
                gap: 1rem;
                background: transparent;
                padding: 0;
                border: none;
            }
            
            .cta-form input,
            .cta-form button {
                border-radius: 30px;
                width: 100%;
                padding: 1rem;
            }
            
            .review-container {
                flex-direction: column;
                align-items: center;
            }
            
            .form-container, .illustration {
                width: 100%;
                max-width: 100%;
            }
            
            .cube {
                width: 150px;
                height: 150px;
            }
            
            .face {
                width: 150px;
                height: 150px;
            }
            
            .face-front { transform: translateZ(75px); }
            .face-back { transform: rotateY(180deg) translateZ(75px); }
            .face-right { transform: rotateY(90deg) translateZ(75px); }
            .face-left { transform: rotateY(-90deg) translateZ(75px); }
            .face-top { transform: rotateX(90deg) translateZ(75px); }
            .face-bottom { transform: rotateX(-90deg) translateZ(75px); }
        }

        @media (max-width: 576px) {
            .hero h1 {
                font-size: 1.8rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .stats-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-button {
                padding: 0.6rem 1.2rem;
                font-size: 0.9rem;
            }
            
            .mobile-menu-btn {
                font-size: 20px;
            }
        }