/* Custom CSS */
        :root {
            --primary: #1a73e8;
            --secondary: #0d47a1;
            --accent: #ff6b00;
            --light: #f8f9fa;
            --dark: #212529;
            --gradient: linear-gradient(135deg, var(--primary), var(--secondary));
        }
        
        /* Header styling */
        .header-container {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: all 0.4s ease;
        }
        
        .header-pop {
            background: rgba(255, 255, 255, 0.92);
            backdrop-filter: blur(10px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
            padding: 15px 0;
            margin: 20px 20px 0;
            border-radius: 20px;
            transition: all 0.4s ease;
        }
        
        .header-sticky {
            position: fixed;
            top: 0;
            width: 100%;
            margin: 0;
            border-radius: 0;
            padding: 12px 0;
            background: rgba(255, 255, 255, 0.96) !important;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15) !important;
            backdrop-filter: blur(8px);
        }
        
        .navbar-brand {
            font-weight: 800;
            font-size: 1.9rem;
            color: var(--secondary) !important;
            display: flex;
            align-items: center;
        }
        
        .navbar-brand span {
            color: var(--accent);
            margin-left: 4px;
        }
        
        .navbar-brand i {
            margin-right: 8px;
            color: var(--accent);
            font-size: 1.4rem;
        }
        
        .btn-get-started {
            background: var(--gradient);
            color: white;
            padding: 8px 16px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(26, 115, 232, 0.3);
            display: flex;
            align-items: center;
            white-space: nowrap; /* Prevent text wrapping */
        }
        
        .btn-get-started:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(26, 115, 232, 0.4);
            color: white;
        }
        
        .btn-get-started i {
            margin-right: 6px;
            font-size: 1.1rem;
        }
        
        /* Centered navigation */
        .navbar-nav {
            justify-content: center;
            width: 100%;
        }
        
        .navbar-nav .nav-item {
            margin: 0 10px;
            font-size: 20px;
            font-weight: bold;
        }
        
        /* Hero section */
        .hero-section {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('img/backgrounds/hero-bg.png');
            background-size: cover;
            background-position: center;
            height: 100vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            position: relative;
        }
        
        .hero-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(13, 71, 161, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
            z-index: -1;
        }
        
        .hero-content {
            max-width: 800px;
            padding: 0 20px;
            margin: 0 auto; /* Center the content */
            text-align: center; /* Ensure text is centered */
        }
        
        .hero-content h1 {
            font-size: 3.8rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }
        
        .hero-content p {
            font-size: 1.35rem;
            margin-bottom: 2.5rem;
            opacity: 0.95;
            font-weight: 300;
        }
        
        .btn-primary-custom {
            background: var(--accent);
            border: none;
            padding: 14px 36px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 50px;
            transition: all 0.4s ease;
            box-shadow: 0 6px 20px rgba(255, 107, 0, 0.4);
            display: inline-flex;
            align-items: center;
        }
        
        .btn-primary-custom:hover {
            background: #e55a00;
            transform: translateY(-4px);
            box-shadow: 0 8px 25px rgba(255, 107, 0, 0.5);
        }
        
        .btn-primary-custom i {
            margin-left: 10px;
            font-size: 1.3rem;
        }
        
        /* Features section */
        .features-section {
            padding: 100px 0;
            background-color: var(--light);
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-title h2 {
            font-size: 2.5rem;
            font-weight: 800;
            color: var(--secondary);
            margin-bottom: 15px;
        }
        
        .section-title p {
            color: #6c757d;
            font-size: 1.2rem;
            max-width: 700px;
            margin: 0 auto;
        }
        
        .feature-card {
            background: white;
            border-radius: 20px;
            padding: 40px 30px;
            text-align: center;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            height: 100%;
            border: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .feature-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
            border-color: rgba(26, 115, 232, 0.2);
        }
        
        .feature-icon {
            width: 90px;
            height: 90px;
            background: var(--gradient);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            color: white;
            font-size: 2.2rem;
            box-shadow: 0 8px 20px rgba(13, 71, 161, 0.3);
        }
        
        .feature-card h3 {
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: var(--secondary);
            font-weight: 700;
        }
        
        .feature-card p {
            color: #555;
            font-size: 1.05rem;
            line-height: 1.7;
        }
        
        /* Pricing section */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #f0f4f8, #e2e8f0);
            position: relative;
            overflow: hidden;
        }
        
        .pricing-section::before {
            content: "";
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(26, 115, 232, 0.08);
            z-index: 0;
        }
        
        .pricing-section::after {
            content: "";
            position: absolute;
            bottom: -150px;
            left: -100px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            background: rgba(255, 107, 0, 0.06);
            z-index: 0;
        }
        
        .pricing-card {
            background: white;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
            position: relative;
            margin-bottom: 40px;
            transition: all 0.4s ease;
            z-index: 1;
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
        }
        
        .popular-badge {
            position: absolute;
            top: 20px;
            right: -45px;
            background: var(--accent);
            color: white;
            padding: 8px 40px;
            transform: rotate(45deg);
            font-weight: 800;
            font-size: 12px;
            z-index: 2;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
        }
        
        .pricing-header {
            padding: 40px 25px;
            text-align: center;
            background: var(--gradient);
            color: white;
            position: relative;
        }
        
        .pricing-header::after {
            content: "";
            position: absolute;
            bottom: -20px;
            left: 50%;
            transform: translateX(-50%);
            width: 40px;
            height: 20px;
            background: white;
            clip-path: polygon(0% 0%, 100% 0%, 50% 100%);
        }
        
        .pricing-header h3 {
            font-size: 2rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .price {
            font-size: 3rem;
            font-weight: 800;
            margin: 20px 0;
        }
        
        .price span {
            font-size: 1.1rem;
            font-weight: 400;
            opacity: 0.9;
        }
        
        .pricing-features {
            padding: 35px 25px 25px;
        }
        
        .pricing-features ul {
            list-style: none;
            padding: 0;
            margin-bottom: 30px;
        }
        
        .pricing-features li {
            padding: 12px 0;
            border-bottom: 1px solid #f0f0f0;
            display: flex;
            align-items: center;
            font-size: 1.05rem;
        }
        
        .pricing-features li:last-child {
            border-bottom: none;
        }
        
        .pricing-features li i {
            color: var(--accent);
            margin-right: 15px;
            font-size: 1.2rem;
            min-width: 24px;
        }
        
        .pricing-cta {
            width: 100%;
            padding: 16px;
            background: var(--gradient);
            color: white;
            border: none;
            font-weight: 700;
            font-size: 1.2rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
        }
        
        .pricing-cta:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
        }
        
        /* FAQ section */
        .faq-section {
            padding: 100px 0;
            background-color: white;
        }
        
        .faq-container {
            max-width: 80%;
            margin: 0 auto;
        }
        
        .faq-item {
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            border: 1px solid #f0f0f0;
        }
        
        .faq-question {
            padding: 24px 30px;
            background: #f8f9ff;
            font-weight: 700;
            font-size: 1.2rem;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: all 0.3s ease;
        }
        
        .faq-question:hover {
            background: #edf2ff;
        }
        
        .faq-answer {
            padding: 0 30px;
            max-height: 0;
            overflow: hidden;
            transition: all 0.4s ease;
            background: white;
        }
        
        .faq-item.active .faq-answer {
            padding: 25px 30px;
            max-height: 500px;
        }
        
        .faq-answer p {
            color: #555;
            line-height: 1.7;
            margin: 0;
        }
        
        /* Contact section */
        .contact-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #e2e8f0, #f0f4f8);
        }
        
        .contact-container {
            max-width: 80%;
            margin: 0 auto;
        }
        
        .contact-form {
            background: white;
            padding: 50px;
            border-radius: 24px;
            box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
            border: 1px solid rgba(0, 0, 0, 0.08);
        }
        
        .form-control {
            padding: 14px 18px;
            border-radius: 12px;
            border: 1px solid #e0e6ef;
            margin-bottom: 22px;
            font-size: 1.05rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 0.25rem rgba(26, 115, 232, 0.15);
        }
        
        textarea.form-control {
            min-height: 180px;
            resize: vertical;
        }
        
        .btn-submit {
            background: var(--gradient);
            color: white;
            padding: 14px;
            border: none;
            font-weight: 700;
            font-size: 1.15rem;
            border-radius: 12px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(13, 71, 161, 0.3);
        }
        
        .btn-submit:hover {
            background: var(--secondary);
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(13, 71, 161, 0.4);
        }
        
        /* Footer */
        .footer {
            background: var(--dark);
            color: white;
            padding: 80px 0 40px;
        }
        
        .footer-logo {
            font-size: 2.2rem;
            font-weight: 800;
            margin-bottom: 20px;
            color: white;
            display: flex;
            align-items: center;
        }
        
        .footer-logo i {
            color: var(--accent);
            margin-right: 12px;
            font-size: 1.8rem;
        }
        
        .footer-logo span {
            color: var(--accent);
        }
        
        .footer-description {
            color: #adb5bd;
            line-height: 1.8;
            margin-bottom: 30px;
        }
        
        .footer-links h5 {
            color: white;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 12px;
            font-size: 1.4rem;
            font-weight: 700;
        }
        
        .footer-links h5::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }
        
        .footer-links ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-links li {
            margin-bottom: 14px;
        }
        
        .footer-links a {
            color: #adb5bd;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.05rem;
            display: flex;
            align-items: center;
        }
        
        .footer-links a i {
            margin-right: 10px;
            color: var(--accent);
            font-size: 0.9rem;
            opacity: 0;
            transition: all 0.3s ease;
        }
        
        .footer-links a:hover {
            color: white;
            padding-left: 0;
        }
        
        .footer-links a:hover i {
            opacity: 1;
            margin-right: 15px;
        }
        
        .copyright {
            margin-top: 50px;
            padding-top: 25px;
            border-top: 1px solid #444;
            text-align: center;
            color: #adb5bd;
            font-size: 1rem;
        }
        
        /* Responsive adjustments */
        @media (max-width: 992px) {
            .hero-content h1 {
                font-size: 3rem;
            }
            
            .hero-content p {
                font-size: 1.2rem;
            }
            
            /* Adjust navigation for medium screens */
            .navbar-nav {
                justify-content: flex-start;
                width: auto;
            }
            
            .navbar-nav .nav-item {
                margin: 0 8px;
            }
        }
        
        @media (max-width: 768px) {
            .header-pop {
                margin: 12px;
                padding: 12px 0;
            }
            
            .navbar-brand {
                font-size: 1.7rem;
            }
            
            .btn-get-started {
                padding: 7px 14px; /* Reduced padding to prevent wrapping */
                font-size: 0.85rem; /* Slightly smaller font */
            }
            
            .hero-content h1 {
                font-size: 2.5rem;
            }
            
            .hero-content p {
                font-size: 1.1rem;
                margin-bottom: 2rem;
            }
            
            .btn-primary-custom {
                padding: 12px 28px;
                font-size: 1.1rem;
            }
            
            .contact-form {
                padding: 35px;
            }
            
            .faq-container,
            .contact-container {
                max-width: 90%;
            }
            
            /* Mobile navigation */
            .navbar-nav {
                justify-content: center;
                width: 100%;
                margin-top: 15px;
            }
            
            .navbar-nav .nav-item {
                margin: 0 5px;
            }
        }
        
        @media (max-width: 576px) {
            .header-pop {
                margin: 8px;
                padding: 10px 0;
            }
            
            .navbar-brand {
                font-size: 1.5rem;
            }
            
            .btn-get-started {
                padding: 6px 12px; /* Further reduced padding */
                font-size: 0.8rem; /* Smaller font size */
                min-width: 90px; /* Ensure minimum width */
            }
            
            .hero-content h1 {
                font-size: 2.1rem;
            }
            
            .hero-content p {
                font-size: 1rem;
            }
            
            .btn-primary-custom {
                padding: 10px 24px;
                font-size: 1rem;
            }
            
            .feature-card {
                padding: 30px 20px;
            }
            
            .feature-icon {
                width: 70px;
                height: 70px;
                font-size: 1.8rem;
            }
            
            .feature-card h3 {
                font-size: 1.4rem;
            }
            
            .contact-form {
                padding: 25px;
            }
            
            .pricing-card {
                margin-bottom: 30px;
            }
            
            .footer .col-12 {
                margin-bottom: 30px;
            }
            
            /* Mobile navigation */
            .navbar-nav {
                margin-top: 10px;
            }
            
            .navbar-nav .nav-item {
                margin: 0 3px;
            }
        }