


        .btn-outline-navy {
            background: transparent;
            color: var(--dark-navy);
            border: 2px solid var(--dark-navy);
            padding: 0.7rem 1.8rem;
            border-radius: 25px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            font-size: 0.85rem;
            letter-spacing: 1px;
        }

        .btn-outline-navy:hover {
            background: var(--dark-navy);
            color: white;
        }

        /* Hero Section for Registration Page */
        .hero-registration {
    background: linear-gradient(rgb(112 190 255), #0d6efd);
    padding: 5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

        .hero-registration::before {
            content: '';
            position: absolute;
            top: 0;
            right: -8%;
            width: 60%;
            height: 100%;
            background-image: 
                linear-gradient( rgb(112 190 255), #0d6efd);

            background-size: cover;
            background-position: center;
            /* z-index: 1; */
            opacity: 0.8;
        }

        .registration-header {
            text-align: center;
            position: relative;
            z-index: 2;
            margin-bottom: 3rem;
        }

        .registration-tagline {
            color: #eff5ff;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .registration-title {
            font-size: 3.5rem;
            font-weight: 800;
            margin-bottom: 1rem;
            line-height: 1.1;
            color: #171a20;
        }

        .registration-subtitle {
            font-size: 1.6rem;
            font-weight: 500;
            color: var(--dark-navy);
            margin-bottom: 1.5rem;
            line-height: 1.3;
        }

        .registration-description {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto 2rem;
            line-height: 1.6;
            color: #eff6ff;
        }

        /* Plans Section */
        .plans-section {
            padding: 5rem 0;
            background: white;
            position: relative;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tagline {
            color: #0163b5;
            font-size: 1.1rem;
            font-weight: 700;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 800;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .section-subtitle {
            font-size: 1.3rem;
            font-weight: 500;
            color: var(--text-light);
            max-width: 700px;
            margin: 0 auto;
            line-height: 1.6;
        }

        .plans-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 3rem;
        }

        .plan-card {
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            padding: 2.5rem;
            width: 350px;
            position: relative;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .plan-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.15);
        }

        .plan-card.free {
            border-color: var(--light-gray);
        }

        .plan-card.premium {
            border-color: #0062b4;
        }

        .premium-label {
            position: absolute;
            top: -15px;
            right: 20px;
            background: #0062b4;
            color: white;
            padding: 0.5rem 1.5rem;
            border-radius: 20px;
            font-weight: 700;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .plan-name {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 0.5rem;
            color: var(--text-dark);
        }

        .plan-price {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 2rem;
            color: #0062b4;
        }

        .plan-price span {
            font-size: 1rem;
            font-weight: 600;
            color: var(--text-light);
        }

        .plan-duration {
            font-size: 1rem;
            color: var(--text-light);
            margin-bottom: 2rem;
            font-weight: 500;
        }

        .plan-features {
            list-style: none;
            margin-bottom: 2rem;
        }

        .plan-features li {
            padding: 0.8rem 0;
            border-bottom: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .plan-features li i {
            color: #0062b4;
            font-size: 1.2rem;
        }

        .feature-value {
            font-weight: 600;
            margin-left: auto;
        }

        .feature-included {
            color: var(--success-green);
        }

        .feature-not-included {
            color: var(--text-light);
            text-decoration: line-through;
            opacity: 0.7;
        }

        .btn-select-plan {
            width: 100%;
            padding: 1rem;
            border-radius: 10px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            font-size: 1rem;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            display: inline-block;
        }

        .btn-select-free {
            background: transparent;
            color: var(--text-dark);
            border: 2px solid var(--text-dark);
        }

        .btn-select-free:hover {
            background: var(--text-dark);
            color: white;
        }

        .btn-select-premium {
            background: #0062b4;
            color: white;
            border: none;
        }

        .btn-select-premium:hover {
            background: #09179d;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(94, 92, 233, 0.3);
        }

        /* Registration Form Section */
        .registration-form-section {
            padding: 5rem 0;
            background: var(--light-gray);
            position: relative;
        }

        .registration-form {
            background: white;
            padding: 3rem;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            border: 2px solid #0062b4;
            max-width: 1100px; /* Increased from 800px */
            margin: 0 auto;
        }

        .form-group {
            margin-bottom: 1.5rem;
        }

        .form-group label {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.6rem;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            display: block;
        }



        .form-check-input {
            margin-right: 0.5rem;
        }

        .form-check-label {
            font-weight: 500;
            font-size: 0.95rem;
        }

        .form-row {
            display: flex;
            flex-wrap: wrap;
            gap: 1.5rem;
            margin-bottom: 1.5rem;
        }

        .form-col {
            flex: 1;
            min-width: 250px;
        }

        .service-categories-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
            gap: 1rem;
            margin-top: 1rem;
        }

        .service-category {
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .btn-register {
            background: #0062b4;
            color: white;
            padding: 1.2rem 2.5rem;
            border-radius: 10px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            font-size: 1rem;
            letter-spacing: 1px;
            cursor: pointer;
            width: 100%;
            margin-top: 1rem;
        }

        .btn-register:hover {
            background: #0c1095;
            transform: translateY(-3px);
            box-shadow: 0 10px 20px rgba(42, 83, 206, 0.3);
        }

        .plan-selector {
            background: var(--light-gray);
            padding: 1.5rem;
            border-radius: 15px;
            margin-bottom: 2rem;
            border: 2px solid rgba(255, 140, 0, 0.1);
        }

        .plan-option {
            display: flex;
            align-items: center;
            padding: 1rem;
            background: white;
            border-radius: 10px;
            transition: all 0.3s ease;
            cursor: pointer;
            margin-bottom: 1rem;
            border: 2px solid transparent;
        }

        .plan-option:last-child {
            margin-bottom: 0;
        }

        .plan-option:hover {
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
        }

        .plan-option.selected {
            border-color: #0062b4;
            background: rgba(255, 140, 0, 0.05);
        }

        .plan-option-radio {
            margin-right: 1rem;
        }

        .plan-option-content {
            flex: 1;
        }

        .plan-option-name {
            font-weight: 700;
            font-size: 1.2rem;
            margin-bottom: 0.2rem;
        }

        .plan-option-price {
            color: #0062b4;
            font-weight: 700;
            font-size: 1.3rem;
            margin-left: auto;
            padding: 0 1rem;
        }

        .plan-option-features {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        /* Benefits Section */
        .benefits-section {
            padding: 5rem 0;
            background: white;
        }

        .benefits-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2.5rem;
            margin-top: 3rem;
        }

        .benefit-card {
            background: var(--light-gray);
            border-radius: 20px;
            padding: 2.5rem;
            text-align: center;
            transition: all 0.3s ease;
            border-bottom: 5px solid transparent;
        }

        .benefit-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
            border-bottom-color: #0062b4;
        }

        .benefit-icon {
            width: 80px;
            height: 80px;
            background: #0062b4;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 2rem;
            font-size: 2.5rem;
        }

        .benefit-title {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 1rem;
            color: var(--text-dark);
        }

        .benefit-description {
            color: var(--text-light);
            line-height: 1.7;
        }

        /* Testimonials */
        .testimonials-section {
            background: var(--light-gray);
            padding: 5rem 0;
            position: relative;
            overflow: hidden;
        }

        .testimonials-container {
            max-width: 1000px;
            margin: 0 auto;
        }

        .testimonial-card {
            background: white;
            border-radius: 20px;
            padding: 2.5rem;
            margin: 0 1rem;
            box-shadow: 0 10px 30px rgba(0,0,0,0.08);
            position: relative;
        }

        .testimonial-content {
            font-size: 1.1rem;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 2rem;
            font-style: italic;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 1rem;
        }

        .testimonial-avatar {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            color: #0062b4;
            border: 2px solid #0062b4;
        }

        .testimonial-info {
            flex: 1;
        }

        .testimonial-name {
            font-weight: 700;
            color: var(--text-dark);
            margin-bottom: 0.2rem;
        }

        .testimonial-position {
            color: var(--text-light);
            font-size: 0.9rem;
        }

        .testimonial-rating {
            color: #0062b4;
            font-size: 1.2rem;
            margin-top: 0.5rem;
        }

        .testimonial-quote {
            position: absolute;
            top: 2rem;
            right: 2rem;
            font-size: 4rem;
            color: rgba(255, 140, 0, 0.1);
            line-height: 1;
        }

        /* FAQ Section */
        .faq-section {
            padding: 5rem 0;
            background: white;
        }

        .faq-container {
            max-width: 900px;
            margin: 3rem auto 0;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border: 1px solid rgba(0,0,0,0.1);
            border-radius: 15px;
            overflow: hidden;
        }

        .faq-question {
            padding: 1.5rem;
            background: var(--light-gray);
            font-weight: 700;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .faq-question:hover {
            background: rgb(203 226 245);

        }

        .faq-answer {
            padding: 0 1.5rem;
            max-height: 0;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-answer-content {
            padding: 1.5rem 0;
            color: var(--text-light);
            line-height: 1.7;
        }

        .faq-item.active .faq-question {
            background: rgb(203 226 245);
        }

        .faq-item.active .faq-answer {
            max-height: 500px;
        }

  


        .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-title {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 1.5rem;
            line-height: 1.2;
        }

        .cta-description {
            font-size: 1.3rem;
            margin-bottom: 2.5rem;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
            opacity: 0.9;
        }

        .btn-cta-white {
            background: white;
            color: #0062b4;
            padding: 1.2rem 2.5rem;
            border-radius: 30px;
            font-weight: 700;
            text-decoration: none;
            border: none;
            transition: all 0.3s ease;
            display: inline-block;
            text-transform: uppercase;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }

        .btn-cta-white:hover {
            background: var(--dark-navy);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Footer */
        .footer {
            background: var(--text-dark);
            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 h3 {
            color: white;
            font-weight: 700;
            margin-bottom: 1.5rem;
            font-size: 1.3rem;
        }

        .footer-section p {
            color: rgba(255,255,255,0.8);
            line-height: 1.7;
            margin-bottom: 1.5rem;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 0.8rem;
        }

        .footer-section ul li a {
            color: rgba(255,255,255,0.8);
            text-decoration: none;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .footer-section ul li a:hover {
            color: #0062b4;
            padding-left: 0.5rem;
        }

        .social-links {
            display: flex;
            gap: 1rem;
            margin-top: 1.5rem;
        }

        .social-link {
            width: 45px;
            height: 45px;
            background: rgba(255,255,255,0.1);
            color: white;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.2rem;
        }

        .social-link:hover {
            background: #0062b4;
            transform: translateY(-3px);
            color: white;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.2);
            padding-top: 2rem;
            text-align: center;
            color: rgba(255,255,255,0.6);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .registration-title {
                font-size: 3rem;
            }

            .section-title {
                font-size: 2.5rem;
            }

            .plan-card {
                width: 100%;
                max-width: 400px;
            }
        }

        @media (max-width: 768px) {
            .registration-title {
                font-size: 2.5rem;
            }

            .section-title {
                font-size: 2rem;
            }

            .registration-form {
                padding: 2rem;
            }

            .benefit-card {
                padding: 2rem;
            }

            .benefit-icon {
                width: 70px;
                height: 70px;
                font-size: 2rem;
            }

            .cta-title {
                font-size: 2.5rem;
            }
        }

        @media (max-width: 576px) {
            .registration-title {
                font-size: 2rem;
            }

            .registration-tagline {
                font-size: 1rem;
            }

            .section-title {
                font-size: 1.8rem;
            }

            .section-tagline {
                font-size: 1rem;
            }

            .plan-option {
                flex-direction: column;
                text-align: center;
                padding: 1.5rem;
            }

            .plan-option-price {
                margin-left: 0;
                margin-top: 0.5rem;
            }

            .cta-title {
                font-size: 2rem;
            }

            .btn-cta-white {
                padding: 1rem 2rem;
                font-size: 1rem;
            }
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .fade-in {
            animation: fadeIn 0.6s ease-out forwards;
        }

        .delay-1 { animation-delay: 0.2s; }
        .delay-2 { animation-delay: 0.4s; }
        .delay-3 { animation-delay: 0.6s; }
