/* CSS Variables - Color System */
        :root {
            --primary: #fea516;
            --primary-rgb: 249, 115, 22;
            --secondary: #17a2b8;
            --secondary-rgb: 23, 162, 184;
            --navy: #0f1c2e;
            --navy-rgb: 30, 58, 95;
            --navy-light: #2d4a7b;
            --coral: #dc2626;
            --background: #ffffff;
            --foreground: #36453b;
            --muted: #f5f5f5;
            --muted-foreground: #6b7280;
            --border: #e5e7eb;
            --card: #ffffff;
            --orange: #f97316;
            --teal: #17a2b8;
        }

        /* Base Styles */
        * {
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            background-color: var(--background);
            color: var(--foreground);
            font-family: 'Plus Jakarta Sans', sans-serif;
            overflow-x: hidden;
        }

        /* Typography */
        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--foreground);
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        a:hover {
            color: var(--orange);
            text-decoration: none;
        }
        .section-title{
            font-weight: 700;
            font-size: 36px;
        }

        .call-btn{
            color: #fea516;
            font-weight: 600;
            font-size: 12px;
            border: 2px solid;
            border-color: #fea516;
            border-radius: 10px;
            padding: 7px 16px;
        }

        .call-btn:hover{
            background-color: #fea516 !important;
            color:#FFF;
        }

        .theme-btn{
            color: #fff;
            font-weight: 600;
            font-size: 12px;
            border: 2px solid;
            border-color: #fea516;
            background-color: #fea516;
            border-radius: 10px;
            padding: 7px 16px;
        }


        .theme-btn:hover {
            transform: scale(1.02);
            background-color: #fea516;
            color: #fff;
            box-shadow: 0 0 12px #fea516; /* glow effect */
        }

        .theme-btn:active {
            transform: scale(0.98);
        }

        /* Utility Classes */
        .container-custom {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1rem;
        }

        .section-padding {
            padding: 4rem 0;
        }

        @media (min-width: 768px) {
            .section-padding {
                padding: 6rem 0;
            }
        }

        .bg-navy {
            background-color: var(--navy);
            color: #fff;
        }

        .bg-muted {
            background-color: var(--muted);
        }

        .text-primary {
            color: var(--primary) !important;
        }

        .text-secondary {
            color: var(--secondary) !important;
        }

        .text-muted-custom {
            color: var(--muted-foreground);
        }

        /* Buttons */
        .btn-primary {
            background-color: var(--primary);
            border-color: var(--primary);
            color: #ffffff;
            font-weight: 600;
            transition: all 0.3s ease;
        }

        .btn-primary:hover {
            background-color: #ea6317;
            border-color: #ea6317;
            color: #ffffff;
        }

        .btn-secondary {
            background-color: var(--secondary);
            border-color: var(--secondary);
            color: #ffffff;
            font-weight: 600;
            font-size: 16px;
        }

        .btn-secondary:hover {
            background-color: #138496;
            border-color: #138496;
            color: #ffffff;
        }

        .btn-outline {
            color: var(--foreground);
            border-color: var(--border);
            background-color: transparent;
        }

        .btn-outline:hover {
            background-color: var(--primary);
            color: #ffffff;
            border-color: var(--primary);
        }

        .btn-hero {
            background: linear-gradient(135deg, var(--primary) 0%, #ea6317 100%);
            color: #ffffff;
            border: none;
            font-weight: 600;
            padding: 0.75rem 1.5rem;
        }

        .btn-hero:hover {
            transform: translateY(-2px);
            color: #ffffff;
            box-shadow: 0 10px 25px rgba(var(--primary-rgb), 0.3);
        }

        /* Header Styles */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            padding: 0.75rem 0;
        }

        .header-logo {
            height: 2.5rem;
            width: auto;
        }

        .iso-badge {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background-color: var(--muted);
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            font-size: 0.875rem;
            font-weight: 500;
        }

        .iso-badge i {
            color: var(--secondary);
        }

        @media (max-width: 767px) {
            .iso-badge {
                display: none !important;
            }
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 90vh;
            display: flex;
            align-items: center;
            padding-top: 10rem;
            padding-bottom: 5rem;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            z-index: 0;
            background-size: cover;
            background-position: center;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(to right, rgba(30, 58, 95, 0.95) 0%, rgba(30, 58, 95, 0.85) 50%, rgba(30, 58, 95, 0.7) 100%);
            z-index: 1;
        }

        .hero-content {
            position: relative;
            z-index: 2;
            max-width: 48rem;
        }

        .offer-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            background: #fea51633;
            border: 1px solid #fea5164d;
            border-radius: 9999px;
            padding: 0.5rem 1rem;
            margin-bottom: 1.5rem;
            color: #fea516;
            font-size: 0.875rem;
            font-weight: 500;
            animation: fadeIn 0.6s 
            ease-out forwards;
        }

        .offer-badge i {
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-title {
            font-size: 3.75rem;
            font-weight: 700;
            color: #f3f4f6;
            margin-bottom: 1.5rem;
            line-height: 1.1;
            animation: slideUp 0.6s ease-out forwards;
        }

        .hero-title .text-primary {
            display: inline;
        }

        .hero-subtitle {
            font-size: 1.25rem;
            color: rgba(243, 244, 246, 0.8);
            margin-bottom: 2rem;
            line-height: 1.6;
            animation: slideUp 0.6s ease-out 0.1s forwards;
            animation-fill-mode: both;
        }

        .hero-ctas {
            display: flex;
            flex-wrap: wrap;
            gap: 1rem;
            animation: slideUp 0.6s ease-out 0.2s forwards;
            animation-fill-mode: both;
        }

        @media (max-width: 768px) {
            .hero-title {
                font-size: 2.25rem;
            }

            .hero-subtitle {
                font-size: 1rem;
            }
        }

        /* Cards */
        .card-custom {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            transition: all 0.3s ease;
        }

        .card-custom:hover {
            transform: translateY(-0.25rem);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .card-image {
            height: 12rem;
            overflow: hidden;
            border-radius: 1rem 1rem 0 0;
        }

        .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .card-custom:hover .card-image img {
            transform: scale(1.1);
        }

        .card-body-custom {
            padding: 1rem;
        }

        @media (min-width: 768px) {
            .card-body-custom {
                padding: 1.5rem;
            }
        }

        /* Benefit Cards */
        .benefit-card {
            padding: 1.5rem;
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .benefit-card {
                padding: 1.5rem;
            }
        }

        .benefit-card:hover {
            border-color: rgba(23, 162, 184, 0.5);
            transform: translateY(-0.25rem);
        }

        .benefit-icon {
            width: 2.5rem;
            height: 2.5rem;
            border-radius: 0.75rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(23, 162, 184, 0.1);
            margin-bottom: 1rem;
            transition: all 0.3s ease;
        }

        @media (min-width: 768px) {
            .benefit-icon {
                width: 3.5rem;
                height: 3.5rem;
            }
        }

        .benefit-card:hover .benefit-icon {
            background-color: var(--secondary);
            color: #ffffff;
            transform: scale(1.1);
        }

        .benefit-icon i {
            color: var(--secondary);
            font-size: 1.25rem;
        }

        @media (min-width: 768px) {
            .benefit-icon i {
                font-size: 1.75rem;
            }
        }

        .benefit-card:hover .benefit-icon i {
            color: #ffffff;
        }

        /* Offer Cards */
        .offer-card {
            padding: 1.5rem;
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
        }

        .offer-card:hover {
            border-color: rgba(249, 115, 22, 0.5);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        }

        .offer-icon {
            width: 3.5rem;
            height: 3.5rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(249, 115, 22, 0.1);
            margin: 0 auto 1rem;
        }

        .offer-icon i {
            color: var(--primary);
            font-size: 1.75rem;
        }

        .offer-badge-text {
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        /* Products Section */
        .products-section {
            background-color: var(--navy);
            color: #f3f4f6;
        }

        .product-card {
            background: rgba(243, 244, 246, 0.05);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(243, 244, 246, 0.1);
            border-radius: 1rem;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .product-card:hover {
            border-color: rgba(249, 115, 22, 0.5);
        }

        .product-image {
            height: 10rem;
            overflow: hidden;
            position: relative;
        }

        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .product-card:hover .product-image img {
            transform: scale(1.1);
        }

        .product-tag {
            position: absolute;
            top: 0.75rem;
            right: 0.75rem;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 0.25rem 0.5rem;
            background-color: var(--primary);
            color: #ffffff;
            border-radius: 0.25rem;
        }

        .product-body {
            padding: 1rem;
        }

        .product-body h6 {
            color: #f3f5f7;
            font-size: 14px;
            font-weight: 700;
        }

        .product-body p {
            color: #f3f5f799;
            font-size: 12px;
        }

        /* Stats Section */
        .stats-section {
            background: linear-gradient(135deg, var(--primary) 0%, #ea6317 100%);
            color: #ffffff;
            padding: 3rem 0;
        }

        .stat-item {
            text-align: center;
            animation: scaleIn 0.5s ease-out forwards;
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.95);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .stat-icon {
            width: 4rem;
            height: 4rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.2);
            margin: 0 auto 1rem;
        }

        .stat-icon i {
            color: #ffffff;
            font-size: 2rem;
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 0.25rem;
        }

        @media (min-width: 768px) {
            .stat-number {
                font-size: 2.25rem;
            }
        }

        .stat-label {
            font-size: 0.875rem;
            opacity: 0.9;
        }

        /* Use Cases Section */
        .usecase-item {
            padding: 1.5rem;
            background-color: var(--muted);
            border-radius: 1rem;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .usecase-item:hover {
            background-color: var(--secondary);
            color: #ffffff;
        }

        .usecase-item i {
            font-size: 2.5rem;
            margin-bottom: 0.75rem;
            color: var(--secondary);
            transition: color 0.3s ease;
        }

        .usecase-item svg {
            color: var(--secondary);
        }

        .usecase-item:hover i {
            color: #ffffff;
        }

        .usecase-item:hover svg {
            color: #ffffff !important;
        }

        .usecase-item h6 {
            font-weight: 600;
            font-size: 0.875rem;
            color: var(--foreground);
            transition: color 0.3s ease;
        }

        .usecase-item:hover h6 {
            color: #ffffff;
        }

        /* Industries Section */
        .industries-section {
            background-color: var(--navy);
            color: #f3f4f6;
        }

        .industry-badge {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            padding: 1rem 1.5rem;
            background: rgba(243, 244, 246, 0.05);
            border: 1px solid rgba(243, 244, 246, 0.1);
            border-radius: 9999px;
            transition: all 0.3s ease;
            animation: fadeIn 0.6s ease-out forwards;
        }

        .industry-badge:hover {
            border-color: rgba(249, 115, 22, 0.5);
            background: rgba(249, 115, 22, 0.1);
        }

        .industry-badge i {
            color: var(--primary);
        }

        .industry-badge span {
            font-weight: 500;
            font-size: 0.875rem;
        }

        /* Testimonials */
        .testimonial-card {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            padding: 1.5rem;
            position: relative;
            transition: all 0.3s ease;
            animation: slideUp 0.6s ease-out forwards;
        }

        .testimonial-card:hover {
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .quote-icon {
            position: absolute;
            top: 1rem;
            right: 1rem;
            font-size: 2rem;
            color: rgba(249, 115, 22, 0.2);
        }

        .stars {
            display: flex;
            gap: 0.25rem;
            margin-bottom: 1rem;
        }

        .stars i {
            color: var(--primary);
            font-size: 1.25rem;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 1.5rem;
            color: var(--foreground);
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .author-avatar {
            width: 3rem;
            height: 3rem;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
            color: #ffffff;
            font-weight: 700;
        }

        .author-info h6 {
            font-weight: 600;
            margin: 0;
        }

        .author-info p {
            font-size: 0.875rem;
            color: var(--muted-foreground);
            margin: 0;
        }

        /* Enquiry Form */
        .enquiry-form {
            background-color: var(--muted);
        }

        .form-card {
            background-color: var(--card);
            border: 1px solid var(--border);
            border-radius: 1rem;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
            padding: 2rem;
        }

        .form-label {
            font-weight: 500;
            color: var(--foreground);
            margin-bottom: 0.5rem;
            font-size: 0.875rem;
        }

        .form-control {
            height: 3rem;
            border-color: var(--border);
            border-radius: 0.5rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.2rem rgba(249, 115, 22, 0.1);
        }

        .form-helper {
            font-size: 0.75rem;
            color: var(--muted-foreground);
            margin-top: 0.25rem;
        }

        .trust-elements {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            font-size: 0.875rem;
            color: var(--muted-foreground);
            padding-top: 1.5rem;
            border-top: 1px solid var(--border);
            margin-top: 1.5rem;
        }

        .trust-element {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .trust-element i {
            color: var(--secondary);
        }

        /* CTA Section */
        .cta-section {
            background: linear-gradient(135deg, var(--secondary) 0%, #0bb4c7 100%);
            color: #ffffff;
            padding: 4rem 0;
        }

        .cta-title {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 1rem;
            max-width: 48rem;
            margin-left: auto;
            margin-right: auto;
            color:#fff;
        }

        @media (min-width: 992px) {
            .cta-title {
                font-size: 2.25rem;
            }
        }

        .cta-subtitle {
            font-size: 1rem;
            opacity: 0.9;
            max-width: 28rem;
            margin: 0 auto 2rem;
            color: #ffffffcc;
        }

        .cta-buttons {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }

        .cta-buttons button{
            background-color: #fea516;
            color: #fff;
            font-weight: 700;
            font-size: 16px;
        }

        .cta-buttons button:hover {
            transform: scale(1.02);
            background-color: #fea516;
            box-shadow: 0 0 12px rgba(0, 255, 255, 0.5); /* glow effect */
        }

        .cta-buttons button:active {
            transform: scale(0.98);
        }

        /* Footer */
        .footer {
            background-color: var(--navy);
            color: #f3f4f6;
        }

        .footer-logo {
            height: 2.5rem;
            margin-bottom: 1rem;
        }

        .footer-text {
            color: rgba(243, 244, 246, 0.7);
            font-size: 0.875rem;
            line-height: 1.6;
            margin-bottom: 1rem;
        }

        .social-links {
            display: flex;
            gap: 0.75rem;
        }

        .social-link {
            width: 2.25rem;
            height: 2.25rem;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(243, 244, 246, 0.1);
            border-radius: 50%;
            color: #ffffff;
            transition: all 0.3s ease;
        }

        .social-link:hover {
            background-color: var(--primary);
            color: #ffffff;
        }

        .footer-section h5 {
            font-weight: 700;
            margin-bottom: 1rem;
            color: #ffffff;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 0.5rem;
        }

        .footer-links a {
            color: rgba(243, 244, 246, 0.7);
            font-size: 0.875rem;
            transition: color 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 0.75rem;
            margin-bottom: 0.75rem;
            font-size: 0.875rem;
            color: rgba(243, 244, 246, 0.7);
        }

        .footer-contact i {
            color: var(--primary);
            margin-top: 0.125rem;
        }

        .iso-footer {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: rgba(243, 244, 246, 0.05);
            border: 1px solid rgba(243, 244, 246, 0.1);
            border-radius: 0.5rem;
            margin-top: 1.5rem;
        }

        .iso-footer i {
            font-size: 2rem;
            color: var(--secondary);
        }

        .iso-footer-text p {
            margin: 0;
            font-size: 0.75rem;
        }

        .iso-footer-text .iso-title {
            font-weight: 600;
            color: #ffffff;
        }

        .iso-footer-text .iso-subtitle {
            color: rgba(243, 244, 246, 0.6);
        }

        .footer-bottom {
            border-top: 1px solid rgba(243, 244, 246, 0.1);
            padding: 1.5rem 0;
            margin-top: 3rem;
            text-align: center;
        }

        .footer-bottom-text {
            font-size: 0.875rem;
            color: rgba(243, 244, 246, 0.6);
            margin: 0;
        }

        .footer-bottom-links {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            margin-top: 1rem;
        }

        .footer-bottom-links a {
            font-size: 0.875rem;
            color: rgba(243, 244, 246, 0.6);
            transition: color 0.3s ease;
        }

        .footer-bottom-links a:hover {
            color: var(--primary);
        }

        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            bottom: 24px;
            right: 24px;
            width: 56px;
            height: 56px;
            background: #25D366;
            color: #ffffff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 6px 20px rgba(0,0,0,0.2);
            z-index: 9999;
            transition: transform 0.3s ease;
            animation: float 3s ease-in-out infinite;
        }

        /* Hover effect */
        .whatsapp-float:hover {
            color: #ffffff;
            transform: scale(1.1);
        }

        /* Floating animation */
        @keyframes float {
            0%   { transform: translateY(0); }
            50%  { transform: translateY(-6px); }
            100% { transform: translateY(0); }
        }

        .whatsapp-float svg {
            width: 28px;
            height: 28px;
            fill: currentColor;
        }

        /* Modal Styles */
        .modal-header-custom {
            background: linear-gradient(to right, hsl(215 50% 12%) , hsl(215 50% 12%) , hsl(37 99% 54% / .2));
            color: #fff;
            position: relative;
            text-align: center;
        }

        .modal-header-custom .btn-close {
            position: absolute !important;
			top: 10px;
			border: 1px solid #ffffff30;
			background-color: #ffffff33;
			padding: 10px 10px;
			border-radius: 20px;
        }

        .modal-header-custom .bg-pattern {
            position: absolute;
            inset: 0;
            opacity: 0.2;
        }

        .modal-header-custom h2 {
            position: relative;
            z-index: 5;
            font-size: 26px;
            font-weight: 700;
			color:#fff;
        }

        .quote-badge {
            border: 1px solid #fef5e7;
            background-color: #fef5e7;
            border-radius: 30px;
            width: fit-content;
            margin: 0 auto;
        }

        .quote-btn {
            border: 1px solid #fea516;
            background-color: #fea516;
			color:#fff;
			font-weight: 600;
            border-radius: 30px;
            font-size: 16px;
            border-radius: 12px;
			padding-left: 32px;
			padding-right: 32px;
        }

        .quote-btn:hover {
            border: 1px solid #fea516;
            background-color: #fea516;
			color:#fff;
			font-weight: 600;
            border-radius: 30px;
            font-size: 16px;
            border-radius: 12px;
			padding-left: 32px;
			padding-right: 32px;
        }

        .quote-badge span {
            color:#fea516;
        }

        .form-control:focus {
            border-color: #6f5ef0;
            box-shadow: 0 0 0 0.15rem rgba(111, 94, 240, .3);
        }

        .btn-primary {
            background-color: #6f5ef0;
            border-color: #6f5ef0;
            font-weight: 600;
        }
        .btn-primary:hover {
            background-color: #5c4ada;
        }

        .info-icon {
            width: 16px;
            height: 16px;
            color: #6f5ef0;
        }

        .special-offer-badge-modal {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            padding: 0.5rem 1rem;
            background: rgba(249, 115, 22, 0.1);
            border: 1px solid rgba(249, 115, 22, 0.2);
            border-radius: 9999px;
            width: fit-content;
            margin: 0 auto 1.5rem;
            color: var(--primary);
            font-size: 0.875rem;
            font-weight: 500;
        }

        .special-offer-badge-modal i {
            animation: pulse 2s infinite;
        }

        /* Animations */
        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0px);
            }
            50% {
                transform: translateY(-10px);
            }
        }

        .animate-slide-in {
            animation: slideUp 0.6s ease-out forwards;
        }

        .animate-float {
            animation: float 3s ease-in-out infinite;
        }

        /* Responsive */
        @media (max-width: 576px) {
            .form-card {
                padding: 1.5rem;
            }

            .cta-title {
                font-size: 1.5rem;
            }

            .hero-title {
                font-size: 2rem;
            }
        }


        /* Gradient circle */
        .step-circle {
            width: 95px;
            height: 95px;
            border-radius: 50%;
            padding: 4px;
            margin: 0 auto 25px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));;
            position: relative;
        }

        .step-inner {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            background: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Step number */
        .step-number {
            position: absolute;
            bottom: -10px;
            right: -10px;
            width: 36px;
            height: 36px;
            background: #0ab4c7;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
        }

        /* Animation */
        .animate-slide-up {
            opacity: 0;
            transform: translateY(40px);
            animation: slideUp 0.7s ease-out forwards;
        }

        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Line between steps */
        .step-line {
            position: absolute;
            top: 22%;
            left: 60%;
            width: 80%;
            height: 3px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));;
        }

        @media (max-width: 992px) {
            .step-line {
                display: none;
            }
        }