@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&amp;family=Inter:wght@300;400;500;600;700&amp;display=swap');

body {
            box-sizing: border-box;
        }

    a{
        color: inherit;
        text-decoration: none;
    }
    a:hover{
        color: inherit;
        text-decoration: none;
    }

        /* Visually hidden class for screen reader only content */
        .visually-hidden {
            position: absolute !important;
            width: 1px !important;
            height: 1px !important;
            padding: 0 !important;
            margin: -1px !important;
            overflow: hidden !important;
            clip: rect(0, 0, 0, 0) !important;
            white-space: nowrap !important;
            border: 0 !important;
        }
        [data-item="dark"]{
            display: none;
        }
        [data-theme="dark"] [data-item="dark"] {
            display: block;
        }
        [data-theme="dark"] [data-item="light"] {
            display: none;
        }

        /* Focus indicators */
        *:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
        }

        .btn:focus,
        .btn-gradient:focus,
        .btn-outline:focus {
            outline: 2px solid #667eea;
            outline-offset: 2px;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
        }

        /* High contrast mode support */
        @media (prefers-contrast: high) {
            :root {
                --text-primary: #000000;
                --text-secondary: #000000;
                --bg-primary: #ffffff;
                --card-border: #000000;
            }
            
            [data-theme="dark"] {
                --text-primary: #ffffff;
                --text-secondary: #ffffff;
                --bg-primary: #000000;
            }
        }

        /* Reduced motion support */
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
            
            .floating-card {
                animation: none;
            }
            
            .preloader-spinner,
            .spinner-ring {
                animation: none;
            }
        }

        /* Preloader Styles */
        .preloader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--bg-primary);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: all 0.6s ease;
        }

        .preloader.fade-out {
            opacity: 0;
            visibility: hidden;
        }

        .preloader-content {
            text-align: center;
            position: relative;
        }

        .preloader-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 3rem;
            font-weight: 700;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 2rem;
            animation: logoFloat 2s ease-in-out infinite;
        }

        @keyframes logoFloat {
            0%, 100% { transform: translateY(0px); }
            50% { transform: translateY(-10px); }
        }

        .preloader-spinner {
            width: 60px;
            height: 60px;
            margin: 0 auto 1.5rem;
            position: relative;
        }

        .spinner-ring {
            width: 100%;
            height: 100%;
            border: 3px solid transparent;
            border-radius: 50%;
            position: absolute;
            animation: spin 1.5s linear infinite;
        }

        .spinner-ring:nth-child(1) {
            border-top: 3px solid #667eea;
            animation-delay: 0s;
        }

        .spinner-ring:nth-child(2) {
            border-right: 3px solid #764ba2;
            animation-delay: 0.3s;
        }

        .spinner-ring:nth-child(3) {
            border-bottom: 3px solid #4facfe;
            animation-delay: 0.6s;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        .preloader-text {
            color: var(--text-secondary);
            font-size: 1rem;
            font-weight: 500;
            animation: textPulse 2s ease-in-out infinite;
        }

        @keyframes textPulse {
            0%, 100% { opacity: 0.6; }
            50% { opacity: 1; }
        }

        .preloader-dots {
            display: inline-block;
            margin-left: 0.5rem;
        }

        .preloader-dots span {
            display: inline-block;
            width: 4px;
            height: 4px;
            border-radius: 50%;
            background: var(--text-secondary);
            margin: 0 2px;
            animation: dotBounce 1.4s ease-in-out infinite both;
        }

        .preloader-dots span:nth-child(1) { animation-delay: -0.32s; }
        .preloader-dots span:nth-child(2) { animation-delay: -0.16s; }
        .preloader-dots span:nth-child(3) { animation-delay: 0s; }

        @keyframes dotBounce {
            0%, 80%, 100% {
                transform: scale(0.8);
                opacity: 0.5;
            }
            40% {
                transform: scale(1.2);
                opacity: 1;
            }
        }

        /* Progress bar */
        .preloader-progress {
            width: 200px;
            height: 3px;
            background: rgba(102, 126, 234, 0.2);
            border-radius: 10px;
            margin: 2rem auto 0;
            overflow: hidden;
            position: relative;
        }

        .preloader-progress-bar {
            height: 100%;
            background: var(--primary-gradient);
            border-radius: 10px;
            width: 0%;
            animation: progressLoad 3s ease-out forwards;
        }

        @keyframes progressLoad {
            0% { width: 0%; }
            20% { width: 15%; }
            40% { width: 35%; }
            60% { width: 60%; }
            80% { width: 85%; }
            100% { width: 100%; }
        }

        /* Dark mode adjustments for preloader */
        [data-theme="dark"] .preloader {
            background: var(--bg-primary);
        }

        [data-theme="dark"] .preloader-progress {
            background: rgba(102, 126, 234, 0.3);
        }
        
        :root {
            --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --dark-gradient: linear-gradient(135deg, #0c0c0c 0%, #1a1a1a 100%);
            --glass-bg: rgba(255, 255, 255, 0.8);
            --glass-border: rgba(255, 255, 255, 0.3);
            --text-primary: #1f2937;
            --text-secondary: #4b5563;
            --text-light: #6b7280;
            --bg-primary: #ffffff;
            --bg-secondary: #f9fafb;
            --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 25px 60px rgba(0, 0, 0, 0.15);
            --card-bg: rgba(255, 255, 255, 0.95);
            --card-border: rgba(0, 0, 0, 0.1);
        }

        [data-theme="dark"] {
            --text-primary: #f9fafb;
            --text-secondary: #e5e7eb;
            --text-light: #d1d5db;
            --bg-primary: #0f172a;
            --bg-secondary: #1e293b;
            --glass-bg: rgba(15, 23, 42, 0.8);
            --glass-border: rgba(255, 255, 255, 0.1);
            --card-bg: rgba(30, 41, 59, 0.8);
            --card-border: rgba(255, 255, 255, 0.1);
            --shadow-light: 0 10px 40px rgba(0, 0, 0, 0.3);
            --shadow-heavy: 0 25px 60px rgba(0, 0, 0, 0.4);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background: var(--bg-primary);
            transition: all 0.3s ease;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5, h6 {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 600;
        }

        /* Glassmorphism Navbar */
        .navbar {
            background: var(--glass-bg) !important;
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--glass-border);
            transition: all 0.3s ease;
            padding: 1.5rem 0;
        }

        .navbar.scrolled {
            padding: 1rem 0;
            box-shadow: var(--shadow-light);
        }

        .navbar-brand {
            font-family: 'Space Grotesk', sans-serif;
            font-weight: 700;
            font-size: 1.8rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .navbar-nav .nav-link {
            font-weight: 500;
            color: var(--text-primary) !important; 
            position: relative;
        }

        .offcanvas-header{
            background: var(--glass-bg);
        }


        @media(max-width:991px){
            .offcanvas-body{ 
                background: var(--bg-primary);
            }

        }

        .offcanvas-title{

            background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
        }

       

        .navbar-nav .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 2px;
            bottom: -5px;
            left: 50%;
            background: var(--primary-gradient);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav .nav-link:hover::after,
        .navbar-nav .nav-link:focus::after {
            width: 100%;
        }


        
        /* Navbar toggler icon styling */
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2833, 37, 41, 0.75%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        [data-theme="dark"] .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* Offcanvas styling */
        .offcanvas {
            height: 100vh;
        }

        .theme-toggle {
            background: var(--glass-bg);
            backdrop-filter: blur(10px);
            border: 1px solid var(--glass-border);
            border-radius: 50px;
            padding: 0.7rem 1.2rem; 
            /* transition: all 0.3s ease; */
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            color: white !important;
            transform: translateY(-2px);
            display: flex;
            align-items: center;
            justify-content: center;
        } 

        /* Hero Section with Floating Elements */
        .hero-section {  
            min-height: 950px; 
            background: var(--bg-primary);
            position: relative;
            display: flex;
            align-items: center; 
            overflow: hidden;
        }
        .hero-section .container{
            padding: 150px 15px; 
            min-height: 950px; 
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: var(--primary-gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 20s ease-in-out infinite;
        }

        .hero-section::after {
            content: '';
            position: absolute;
            bottom: -30%;
            left: -10%;
            width: 60%;
            height: 100%;
            background: var(--accent-gradient);
            border-radius: 50%;
            opacity: 0.1;
            animation: float 25s ease-in-out infinite reverse;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(5deg); }
        }

        .hero-content {
            position: relative;
            z-index: 2;
        }

        .hero-content h1 {
            font-size: 4rem;
            font-weight: 700;
            line-height: 1.1;
            margin-bottom: 2rem;
            background: var(--primary-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .hero-content .subtitle {
            font-size: 1.4rem;
            color: var(--text-secondary);
            margin-bottom: 3rem;
            font-weight: 400;
        }

        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
        }

        .btn-gradient {
            background: var(--primary-gradient);
            border: none;
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: white;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-gradient:hover,
        .btn-gradient:focus {
            transform: translateY(-3px);
            box-shadow: var(--shadow-heavy);
            color: white;
        }

        .btn-outline {
            background: transparent;
            border: 2px solid var(--glass-border);
            padding: 1rem 2.5rem;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            color: var(--text-primary);
            transition: all 0.3s ease;
            text-decoration: none;
            backdrop-filter: blur(10px);
        }

        .btn-outline:hover,
        .btn-outline:focus {
            background: var(--glass-bg);
            transform: translateY(-3px);
            color: var(--text-primary);
        }

        .hero-visual {
            position: relative;
            z-index: 2;
        }

        .floating-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            border-radius: 20px;
            padding: 2rem;
            box-shadow: var(--shadow-light);
            animation: float 6s ease-in-out infinite;
        }

        .floating-card:nth-child(2) {
            animation-delay: -2s;
        }

        .floating-card:nth-child(3) {
            animation-delay: -4s;
        }

        /* Bento Grid Features */
        .features-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .bento-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .bento-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 3rem 2rem;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .bento-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .bento-card:hover::before,
        .bento-card:focus-within::before {
            transform: scaleX(1);
        }

        .bento-card:hover,
        .bento-card:focus-within {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .bento-card.large {
            grid-column: span 2;
        }

        .feature-icon {
            min-width: 40px;
            min-height: 40px;
            background: var(--primary-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .feature-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .feature-description {
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* starts Section */
        .starts-section {
            padding: 6rem 0;
            background: var(--dark-gradient);
            color: white;
            position: relative;
        }

        .starts-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 3rem;
            margin-top: 3rem;
        }

        .start-item {
            text-align: center;
        }

        .start-number {
            font-size: 3.5rem;
            font-weight: 700;
            background: var(--accent-gradient);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            display: block;
        }

        .start-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.8);
            margin-top: 0.5rem;
        }

        /* Modern Pricing */
        .pricing-section {
            padding: 8rem 0;
            background: var(--bg-primary);
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .pricing-card {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 3rem 2rem;
            text-align: center;
            transition: all 0.3s ease;
            position: relative;
        }

        .pricing-card.featured {
            background: var(--primary-gradient);
            color: white;
            transform: scale(1.05);
        }

        .pricing-card.featured .pricing-price,
        .pricing-card.featured .pricing-plan,
        .pricing-card.featured .pricing-features li,
        .pricing-card.featured .pricing-period
        {
            color: white;
        }

        .pricing-card:hover,
        .pricing-card:focus-within {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .pricing-card.featured:hover,
        .pricing-card.featured:focus-within {
            transform: scale(1.05) translateY(-10px);
        }

        .pricing-plan {
            font-size: 1.2rem;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .pricing-price {
            font-size: 3.5rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 0.5rem;
        }

        .pricing-period {
            color: var(--text-light);
            margin-bottom: 2rem;
        }

        .pricing-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
            text-align: left;
        }

        .pricing-features li {
            padding: 0.7rem 0;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 0.7rem;
        }

        .pricing-features li i {
            color: #10b981;
            font-size: 1.1rem;
        }

        /* Contact Section */
        .contact-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .contact-form {
            background: var(--card-bg);
            backdrop-filter: blur(20px);
            border: 1px solid var(--card-border);
            border-radius: 24px;
            padding: 3rem;
            margin-top: 3rem;
        }

        #contact-email-link,
        #contact-phone-link{

          color: var(--text-primary);

        }

        .form-group {
            margin-bottom: 2rem;
        }

        .form-label {
            display: block;
            margin-bottom: 0.5rem;
            font-weight: 600;
            color: var(--text-primary);
        }

        .form-control {
            background: var(--bg-primary);
            border: 2px solid var(--card-border);
            border-radius: 12px;
            padding: 1rem 1.5rem;
            color: var(--text-primary);
            font-size: 1rem;
            transition: all 0.3s ease;
            width: 100%;
        }

        .form-control:focus {
            background: var(--bg-primary);
            border-color: #667eea;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
            color: var(--text-primary);
            outline: none;
        }

        .form-control::placeholder {
            color: var(--text-light);
        }

        /* Footer */
        .footer {
            background: var(--dark-gradient);
            color: white;
            padding: 4rem 0 2rem;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 3rem;
            margin-bottom: 3rem;
        }

        .footer-section h5 {
            color: white;
            margin-bottom: 1.5rem;
            font-size: 1.2rem;
        }

        .footer-links {
            list-style: none;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 0.7rem;
        }

        .footer-links a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .footer-links a:hover,
        .footer-links a:focus {
            color: white;
        }

        .social-icons {
            display: flex;
            gap: 1rem;
            margin-top: 1rem;
        }

        .social-icons a {
            width: 40px;
            height: 40px;
            background: var(--glass-bg);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            transition: all 0.3s ease;
        }

        .social-icons a:hover,
        .social-icons a:focus {
            background: var(--primary-gradient);
            transform: translateY(-2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255, 255, 255, 0.6);
        }

        /* Section Titles */
        .section-title {
            text-align: center;
            margin-bottom: 2rem;
        }

        .section-title h2 {
            font-size: 3rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 1rem;
        }

        .section-title .subtitle {
            font-size: 1.2rem;
            color: var(--text-secondary);
            max-width: 600px;
            margin: 0 auto;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .section-title h2 {
                font-size: 2rem;
            }
            
            .bento-card.large {
                grid-column: span 1;
            }
            
            .pricing-card.featured {
                transform: none;
            }
            
            .cta-buttons {
                flex-direction: column;
            }
            
            .starts-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 2rem;
            }
        }

        @media (max-width: 576px) {
            .hero-content h1 {
                font-size: 2rem;
            }
            
            .btn-gradient,
            .btn-outline {
                padding: 0.8rem 2rem;
                font-size: 1rem;
            }
            
            .bento-card,
            .pricing-card,
            .contact-form {
                padding: 2rem 1.5rem;
            }
            
            .starts-grid {
                grid-template-columns: 1fr;
            }
        }

        /* About Section */
        .about-section {
            padding: 8rem 0;
            background: var(--bg-primary);
        }

        .about-features {
            margin: 3rem 0;
        }

        .about-feature {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
            padding: 1.5rem;
            background: var(--card-bg);
            border-radius: 16px;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

        .about-feature:hover,
        .about-feature:focus-within {
            transform: translateX(10px);
            box-shadow: var(--shadow-light);
        }

        .about-feature-icon {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            margin-right: 1.5rem;
            flex-shrink: 0;
        }

        .about-feature-content h5 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .about-feature-content p {
            color: var(--text-secondary);
            margin: 0;
        }

        .about-visual {
            position: relative;
        }

        .about-image-container {
            position: relative;
            max-width: 400px;
            margin: 0 auto;
        }

        .about-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--card-border);
            box-shadow: var(--shadow-light);
        }

        .about-card-header {
            display: flex;
            justify-content: flex-end;
            margin-bottom: 2rem;
        }

        .about-card-dots {
            display: flex;
            gap: 0.5rem;
        }

        .about-card-dots span {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary-gradient);
        }

        .about-metric {
            display: flex;
            align-items: center;
            margin-bottom: 2rem;
        }

        .metric-icon {
            width: 50px;
            height: 50px;
            background: var(--accent-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
        }

        .metric-info h4 {
            color: var(--text-primary);
            margin: 0;
            font-size: 2rem;
            font-weight: 700;
        }

        .metric-info p {
            color: var(--text-secondary);
            margin: 0;
        }

        /* Services Section */
        .services-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }
        @media(max-width:567px){
            .services-grid { 
                grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            }
        }
        .service-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--primary-gradient);
            transform: scaleX(0);
            transition: transform 0.3s ease;
        }

        .service-card:hover::before,
        .service-card:focus-within::before {
            transform: scaleX(1);
        }

        .service-card:hover,
        .service-card:focus-within {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .service-icon {
            width: 70px;
            height: 70px;
            background: var(--primary-gradient);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8rem;
            color: white;
            margin-bottom: 1.5rem;
        }

        .service-title {
            color: var(--text-primary);
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .service-description {
            color: var(--text-secondary);
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .service-features {
            list-style: none;
            padding: 0;
            margin-bottom: 2rem;
        }

        .service-features li {
            display: flex;
            align-items: center;
            margin-bottom: 0.7rem;
            color: var(--text-secondary);
        }

        .service-features li i {
            color: #10b981;
            margin-right: 0.7rem;
            font-size: 0.9rem;
        }

        .service-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .service-link:hover,
        .service-link:focus {
            color: #667eea;
            transform: translateX(5px);
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 8rem 0;
            background: var(--bg-primary);
        }

        .testimonials-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .testimonial-card {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2.5rem;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

        .testimonial-card:hover,
        .testimonial-card:focus-within {
            transform: translateY(-5px);
            box-shadow: var(--shadow-heavy);
        }

        .testimonial-stars {
            display: flex;
            gap: 0.3rem;
            margin-bottom: 1.5rem;
        }

        .testimonial-stars i {
            color: #fbbf24;
            font-size: 1.1rem;
        }

        .testimonial-text {
            color: var(--text-secondary);
            font-style: italic;
            line-height: 1.6;
            margin-bottom: 2rem;
            font-size: 1.1rem;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
        }

        .author-avatar {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
        }

        .author-info h5 {
            color: var(--text-primary);
            margin: 0;
            font-weight: 600;
        }

        .author-info p {
            color: var(--text-light);
            margin: 0;
            font-size: 0.9rem;
        }

        /* Process Section */
        .process-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .process-timeline {
            max-width: 800px;
            margin: 4rem auto 0;
            position: relative;
        }

        .process-timeline::before {
            content: '';
            position: absolute;
            left: 30px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary-gradient);
        }

        .process-step {
            display: flex;
            align-items: flex-start;
            margin-bottom: 3rem;
            position: relative;
        }

        .step-number {
            width: 60px;
            height: 60px;
            background: var(--primary-gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: 700;
            margin-right: 2rem;
            position: relative;
            z-index: 2;
        }

        .step-content {
            flex: 1;
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 16px;
            border: 1px solid var(--card-border);
            margin-top: 0.5rem;
        }

        .step-content h4 {
            color: var(--text-primary);
            margin-bottom: 1rem;
            font-weight: 600;
        }

        .step-content p {
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.6;
        }

        /* FAQ Section */
        .faq-section {
            padding: 8rem 0;
            background: var(--bg-primary);
        }

        .faq-container {
            max-width: 800px;
            margin: 4rem auto 0;
        }

        .faq-item {
            background: var(--card-bg);
            border-radius: 16px;
            margin-bottom: 1rem;
            border: 1px solid var(--card-border);
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem 2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .faq-question:hover,
        .faq-question:focus {
            background: var(--bg-secondary);
        }

        .faq-question span {
            color: var(--text-primary);
            margin: 0;
            font-weight: 600;
        }

        .faq-question i {
            color: var(--text-light);
            transition: transform 0.3s ease;
        }

        .faq-item.active .faq-question i {
            transform: rotate(180deg);
        }

        .faq-answer {
            padding: 0 2rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item.active .faq-answer {
            padding: 0 2rem 1.5rem;
            max-height: 200px;
        }

        .faq-answer p {
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* Blog Section */
        .blog-section {
            padding: 8rem 0;
            background: var(--bg-secondary);
        }

        .blog-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
            gap: 2rem;
            margin-top: 4rem;
        }

        .blog-card {
            background: var(--card-bg);
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid var(--card-border);
            transition: all 0.3s ease;
        }

        .blog-card:hover,
        .blog-card:focus-within {
            transform: translateY(-10px);
            box-shadow: var(--shadow-heavy);
        }

        .blog-image {
            height: 200px;
            background: var(--primary-gradient);
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blog-category {
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 0.5rem 1rem;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

        .blog-content {
            padding: 2rem;
        }

        .blog-meta {
            display: flex;
            gap: 1rem;
            margin-bottom: 1rem;
            font-size: 0.9rem;
            color: var(--text-light);
        }

        .blog-meta span {
            display: flex;
            align-items: center;
            gap: 0.3rem;
        }

        .blog-title {
            color: var(--text-primary);
            font-weight: 600;
            margin-bottom: 1rem;
            line-height: 1.4;
        }

        .blog-excerpt {
            color: var(--text-secondary);
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        .blog-link {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
            transition: all 0.3s ease;
        }

        .blog-link:hover,
        .blog-link:focus {
            color: #667eea;
            transform: translateX(5px);
        }

        /* Contact Info Styles */
        .contact-info {
            background: var(--card-bg);
            border-radius: 20px;
            padding: 2rem;
            border: 1px solid var(--card-border);
            height: fit-content;
        }

        .contact-info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 2rem;
        }

        .contact-info-item:last-child {
            margin-bottom: 0;
        }

        .contact-icon {
            width: 50px;
            height: 50px;
            background: var(--primary-gradient);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            margin-right: 1rem;
            flex-shrink: 0;
        }

        .contact-details h5 {
            color: var(--text-primary);
            margin-bottom: 0.5rem;
            font-weight: 600;
        }

        .contact-details p {
            color: var(--text-secondary);
            margin: 0;
            line-height: 1.5;
        }

        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: var(--card-bg);
            border: 2px solid var(--card-border);
            border-radius: 50%;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 1000;
            opacity: 0;
            visibility: hidden;
            transform: translateY(20px);
            box-shadow: var(--shadow-light);
            backdrop-filter: blur(10px);
        }

        .back-to-top.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        } 

        .back-to-top:active {
            transform: translateY(-2px);
        }

        /* Progress ring for back to top */
        .back-to-top-progress {
            position: absolute;
            top: -3px;
            left: -3px;
            width: 66px;
            height: 66px;
            border-radius: 50%;
            background: conic-gradient(from 0deg, #667eea 0%, #764ba2 var(--progress, 0%), transparent var(--progress, 0%));
            padding: 3px;
        }
        
        .back-to-top-progress::before {
            content: '';
            position: absolute;
            inset: 3px;
            border-radius: 50%;
            background: var(--bg-primary);
        }
        
        .back-to-top i {
            position: relative;
            z-index: 2;
            color: #667eea !important;  
        }

        /* Animation Classes */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease;
        }

        .fade-in-up.animate {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: all 0.8s ease;
        }

        .fade-in-left.animate {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: all 0.8s ease;
        }

        .fade-in-right.animate {
            opacity: 1;
            transform: translateX(0);
        }

        @view-transition {
            navigation: auto;
        }
        div.error{
            color: red;
        }
        .alertmsg{
            z-index: 9999;
        }