        :root {
            --primary: #4361ee;
            --primary-dark: #3a0ca3;
            --primary-light: #4895ef;
            --accent: #f72585;
            --accent-dark: #d9046c;
            --light: #f8f9fa;
            --dark: #1a1b41;
            --success: #4cc9f0;
            --gradient: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
            --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            color: var(--dark);
            background-color: #fefefe;
            overflow-x: hidden;
            position: relative;
            line-height: 1.6;
        }

        h1,
        h2,
        h3,
        h4,
        h5,
        h6 {
            font-family: 'Poppins', sans-serif;
            font-weight: 700;
            line-height: 1.3;
        }

        .section {
            padding: 100px 0;
            position: relative;
        }

        /* Modern Hero Section */
        .hero-section {
            background: var(--gradient);
            color: white;
            padding: 180px 0 100px;
            position: relative;
            overflow: hidden;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0 100%);
        }

        .hero-section::before {
            content: "";
            position: absolute;
            width: 300%;
            height: 300%;
            top: -100%;
            left: -100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
            animation: rotate 15s infinite linear;
        }

        @keyframes rotate {
            0% {
                transform: rotate(0deg);
            }

            100% {
                transform: rotate(360deg);
            }
        }

        .hero-content {
            position: relative;
            z-index: 1;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 10px 25px;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 25px;
            animation: pulse-badge 2s infinite;
            backdrop-filter: blur(5px);
        }

        @keyframes pulse-badge {
            0% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
            }

            70% {
                box-shadow: 0 0 0 15px rgba(255, 255, 255, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
            }
        }

        .btn {
            border: none;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            position: relative;
            overflow: hidden;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-primary {
            background: var(--accent);
            color: white;
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .btn-primary:hover::before {
            left: 100%;
        }

        .btn-primary:hover {
            background: var(--accent-dark);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(247, 37, 133, 0.35);
        }

        .btn-outline-light {
            border: 2px solid white;
            color: white;
            background: transparent;
            padding: 12px 30px;
        }

        .btn-outline-light:hover {
            background: white;
            color: var(--primary);
            transform: translateY(-5px);
            box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
        }

        .section-title {
            position: relative;
            margin-bottom: 60px;
            display: inline-block;
            text-align: center;
            width: 100%;
        }

        .section-title::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            border-radius: 2px;
        }

        .card {
            border: none;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            margin-bottom: 30px;
            background-color: white;
            position: relative;
            z-index: 1;
            border-bottom: 4px solid var(--primary);
            height: 100%;
        }

        .card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .icon-box {
            width: 90px;
            height: 90px;
            background: rgba(67, 97, 238, 0.08);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 30px;
            transition: all 0.4s ease;
        }

        .card:hover .icon-box {
            background: var(--primary);
            transform: rotateY(180deg);
        }

        .icon-box i {
            font-size: 40px;
            color: var(--primary);
            transition: all 0.4s ease;
        }

        .card:hover .icon-box i {
            color: white;
            transform: rotateY(-180deg);
        }

        .stats-box {
            text-align: center;
            padding: 50px 30px;
            border-radius: 20px;
            background: white;
            margin: 20px 0;
            transition: all 0.4s ease;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
            border-bottom: 4px solid var(--primary);
        }

        .stats-box:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(67, 97, 238, 0.2);
        }

        .stats-box:hover .stats-number,
        .stats-box:hover .stats-title {
            color: white;
        }

        .stats-number {
            font-size: 56px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            font-family: 'Poppins', sans-serif;
            transition: all 0.3s ease;
        }

        .stats-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--dark);
            transition: all 0.3s ease;
        }

        .contact-section {
            background: linear-gradient(rgba(26, 27, 65, 0.92), rgba(26, 27, 65, 0.92)), url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
            color: white;
            clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
            padding: 150px 0 100px;
            margin-top: -80px;
        }

        .contact-form {
            background: rgba(255, 255, 255, 0.08);
            padding: 50px;
            border-radius: 25px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.15);
        }

        .form-control {
            padding: 16px 20px;
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            margin-bottom: 25px;
            background: rgba(255, 255, 255, 0.08);
            color: white;
            transition: all 0.3s ease;
            font-size: 16px;
            width: 100%;
        }

        .form-control::placeholder {
            color: rgba(255, 255, 255, 0.7);
        }

        .form-control:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.25);
            background: rgba(255, 255, 255, 0.15);
            color: white;
        }

        footer {
            background: var(--dark);
            color: white;
            padding: 100px 0 30px;
            position: relative;
        }

        footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--gradient-accent);
        }

        .footer-links a {
            color: #ddd;
            text-decoration: none;
            transition: all 0.3s ease;
            display: block;
            margin-bottom: 15px;
            position: relative;
            padding-left: 20px;
        }

        .footer-links a::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 8px;
            height: 8px;
            background: var(--accent);
            border-radius: 50%;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(8px);
        }

        .footer-links a:hover::before {
            opacity: 1;
        }

        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 48px;
            height: 48px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            color: white;
            font-size: 20px;
            margin-right: 12px;
            transition: all 0.3s ease;
        }

        .social-icon:hover {
            background: var(--accent);
            transform: translateY(-8px) scale(1.1);
            box-shadow: 0 8px 20px rgba(247, 37, 133, 0.35);
        }

        .nav-link {
            font-weight: 500;
            position: relative;
            margin: 0 12px;
            padding: 10px 0 !important;
            color: var(--dark) !important;
            transition: all 0.3s ease;
        }

        .nav-link::after {
            content: '';
            position: absolute;
            width: 0;
            height: 3px;
            background: var(--accent);
            left: 0;
            bottom: 0;
            transition: width 0.3s ease;
        }

        .nav-link:hover::after {
            width: 100%;
        }

        .nav-link:hover {
            color: var(--primary) !important;
        }

        .navbar-brand {
            font-weight: 800;
            font-size: 32px;
            color: var(--primary) !important;
            letter-spacing: -0.5px;
        }

        .navbar-brand span {
            color: var(--accent);
        }

        .navbar {
            transition: all 0.4s ease;
            padding: 20px 0;
            background-color: white !important;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
        }

        .navbar.scrolled {
            padding: 12px 0;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        /* Tutor Section */
        .tutor-section {
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            position: relative;
            overflow: hidden;
            padding: 100px 0;
        }

        .tutor-card {
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
            border-bottom: 4px solid var(--accent);
        }

        .tutor-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
        }

        .tutor-img {
            width: 100%;
            height: 240px;
            object-fit: cover;
        }

        .tutor-info {
            padding: 30px;
        }

        .tutor-name {
            font-weight: 800;
            margin-bottom: 5px;
            font-size: 22px;
        }

        .tutor-subject {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 20px;
            display: block;
            font-size: 18px;
        }

        .tutor-stats {
            display: flex;
            justify-content: space-between;
            margin-top: 25px;
            padding-top: 25px;
            border-top: 1px solid #eee;
        }

        .stat-item {
            text-align: center;
        }

        .stat-number {
            font-weight: 800;
            color: var(--primary);
            font-size: 22px;
        }

        .stat-label {
            font-size: 14px;
            color: #777;
            font-weight: 500;
        }

        .tutor-benefits {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .tutor-benefits i {
            color: var(--accent);
            font-size: 24px;
            margin-right: 15px;
            min-width: 30px;
        }

        /* Floating Elements */
        .floating {
            animation: floating 6s ease-in-out infinite;
        }

        @keyframes floating {
            0% {
                transform: translateY(0px);
            }

            50% {
                transform: translateY(-20px);
            }

            100% {
                transform: translateY(0px);
            }
        }

        /* Subjects Section */
        .subjects-section {
            background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
            padding: 100px 0;
            clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
            margin: -50px 0;
        }

        .subject-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(67, 97, 238, 0.1);
            transition: all 0.3s ease;
            height: 100%;
            border-bottom: 3px solid var(--primary);
        }

        .subject-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(67, 97, 238, 0.2);
        }

        .subject-icon {
            background: rgba(67, 97, 238, 0.1);
            width: 70px;
            height: 70px;
            border-radius: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 30px;
            color: var(--primary);
        }

        /* Pricing Section */
        .pricing-section {
            padding: 100px 0;
            background: linear-gradient(to bottom, #ffffff, #f8f9fa);
        }

        .pricing-card {
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            background: white;
            border: 2px solid #e9ecef;
            margin-bottom: 30px;
            height: 100%;
        }

        .pricing-card.featured {
            border: 2px solid var(--primary);
            transform: scale(1.05);
            position: relative;
            z-index: 2;
        }

        .pricing-card.featured .pricing-header {
            background: var(--gradient);
            color: white;
        }

        .pricing-card.featured .btn {
            background: var(--accent);
        }

        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
        }

        .pricing-header {
            background: rgba(67, 97, 238, 0.08);
            padding: 30px;
            text-align: center;
            border-bottom: 1px solid #e9ecef;
        }

        .pricing-body {
            padding: 30px;
        }

        .price {
            font-size: 48px;
            font-weight: 800;
            color: var(--primary);
            margin: 20px 0;
        }

        .price span {
            font-size: 20px;
            color: #777;
            font-weight: 500;
        }

        /* FAQ Section */
        .faq-section {
            background: linear-gradient(to bottom, #f8f9fa, #ffffff);
            padding: 100px 0;
        }

        .accordion-button:not(.collapsed) {
            background-color: rgba(67, 97, 238, 0.08);
            color: var(--primary);
            font-weight: 600;
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(67, 97, 238, 0.2);
        }

        /* Scroll to Top Button */
        .scroll-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background: var(--accent);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            cursor: pointer;
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 1000;
            box-shadow: 0 5px 15px rgba(247, 37, 133, 0.3);
        }

        .scroll-top.active {
            opacity: 1;
            visibility: visible;
        }

        .scroll-top:hover {
            background: var(--accent-dark);
            transform: translateY(-5px);
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 12px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-dark);
        }

        /* Enhanced Tutor Form */
        .tutor-form-container {
            max-width: 1400px;
            margin: 40px auto;
            background: white;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 0 25px 50px rgba(67, 97, 238, 0.15);
            display: flex;
            min-height: 700px;
        }

        .form-header {
            background: var(--gradient);
            color: white;
            padding: 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            width: 40%;
            position: relative;
            overflow: hidden;
        }

        .form-header::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
            z-index: 0;
            animation: rotate 20s infinite linear;
        }

        .form-header-content {
            position: relative;
            z-index: 1;
        }

        .form-header h1 {
            font-size: 32px;
            font-weight: 800;
            margin-bottom: 20px;
        }

        .form-header p {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 30px;
        }

        .benefits-list {
            list-style: none;
            padding: 0;
        }

        .benefits-list li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .benefits-list i {
            background: rgba(255, 255, 255, 0.2);
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            flex-shrink: 0;
        }

        .form-content {
            padding: 50px;
            width: 60%;
            display: flex;
            flex-direction: column;
        }

        .form-title {
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }

        .form-title::after {
            content: "";
            position: absolute;
            width: 80px;
            height: 4px;
            background: var(--accent);
            bottom: 0;
            left: 0;
            border-radius: 2px;
        }

        .form-group {
            margin-bottom: 25px;
            position: relative;
        }

        .form-label {
            display: block;
            margin-bottom: 8px;
            font-weight: 600;
            color: var(--dark);
            display: flex;
            align-items: center;
        }

        .form-label i {
            margin-right: 10px;
            color: var(--primary);
        }

        .form-control-enhanced {
            padding: 16px 20px;
            border-radius: 12px;
            border: 1px solid #e0e0e0;
            background: #f8f9fa;
            transition: all 0.3s ease;
            font-size: 16px;
            width: 100%;
        }

        .form-control-enhanced:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(67, 97, 238, 0.25);
            background: white;
            outline: none;
        }

        .custom-select {
            position: relative;
        }

        .custom-select select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%234361ee' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
            background-repeat: no-repeat;
            background-position: right 1rem center;
            background-size: 16px 12px;
            padding-right: 3rem;
        }

        .form-row {
            display: flex;
            gap: 20px;
            margin-bottom: 25px;
        }

        .form-row .form-group {
            flex: 1;
            margin-bottom: 0;
        }

        .file-upload {
            position: relative;
            display: flex;
            align-items: center;
        }

        .file-upload input[type="file"] {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            opacity: 0;
            cursor: pointer;
        }

        .file-upload-label {
            display: flex;
            align-items: center;
            padding: 12px 20px;
            background: #f8f9fa;
            border: 1px dashed #e0e0e0;
            border-radius: 12px;
            width: 100%;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .file-upload-label:hover {
            border-color: var(--primary);
            background: rgba(67, 97, 238, 0.05);
        }

        .file-upload-label i {
            font-size: 24px;
            color: var(--primary);
            margin-right: 15px;
        }

        .file-upload-text h5 {
            margin-bottom: 5px;
            font-size: 16px;
            color: var(--dark);
        }

        .file-upload-text p {
            font-size: 14px;
            color: #777;
        }

        .btn-submit {
            background: var(--accent);
            color: white;
            border: none;
            padding: 16px 40px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 18px;
            transition: all 0.3s ease;
            cursor: pointer;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            margin-top: 20px;
            width: 100%;
            position: relative;
            overflow: hidden;
        }

        .btn-submit::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: 0.5s;
        }

        .btn-submit:hover::before {
            left: 100%;
        }

        .btn-submit:hover {
            background: var(--accent-dark);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(247, 37, 133, 0.35);
        }

        .btn-submit i {
            margin-left: 10px;
        }

        .progress-container {
            margin: 30px 0;
            background: #f0f4ff;
            border-radius: 10px;
            padding: 20px;
        }

        .progress-title {
            display: flex;
            justify-content: space-between;
            margin-bottom: 10px;
            color: var(--dark);
        }

        .progress-bar {
            height: 12px;
            background: #e0e0e0;
            border-radius: 6px;
            overflow: hidden;
        }

        .progress {
            height: 100%;
            background: var(--gradient);
            width: 70%;
            border-radius: 6px;
            transition: width 1s ease;
        }

        .form-footer {
            margin-top: auto;
            padding-top: 20px;
            text-align: center;
            color: #777;
            font-size: 14px;
        }

        /* Responsive adjustments */
        @media (max-width: 992px) {
            .section {
                padding: 80px 0;
            }

            .hero-section {
                padding: 150px 0 80px;
            }

            .stats-number {
                font-size: 42px;
            }

            .contact-section {
                clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
            }

            .tutor-form-container {
                flex-direction: column;
            }

            .form-header, .form-content {
                width: 100%;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 70px 0;
            }

            .hero-section {
                padding: 130px 0 70px;
                clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
            }

            .stats-box {
                padding: 40px 20px;
            }

            .form-content {
                padding: 30px;
            }

            .pricing-card.featured {
                transform: scale(1);
            }

            .form-row {
                flex-direction: column;
                gap: 15px;
            }
        }

.form-control:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(247, 37, 133, 0.25);
    background: #000;
    color: white;
}



@media (max-width: 425px) {
    .navbar-brand {
    font-weight: 800;
    font-size: 22px;
    color: var(--primary) !important;
    letter-spacing: -0.5px;
}
}

  