   html{
            scroll-behavior: smooth;
        }
        body {
            font-family: 'Poppins', sans-serif;
        }
        .hover-scale {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-scale:hover {
            transform: scale(1.05);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .hover-lift {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .hover-lift:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        }
        .hover-step {
            transition: transform 0.3s ease, background-color 0.3s ease;
        }
        .hover-step:hover {
            transform: scale(1.02);
            background-color: rgba(79, 70, 229, 0.1);
        }
        .header-bg {
            background: linear-gradient(to bottom, #ffffff, #f3e8ff);
            position: relative;
        }
        .hero-bg {
            background-image: url('5905718.jpeg');
            background-size: cover;
            background-position: center;
            background-blend-mode: overlay;
            position: relative;
        }
        .section-divider {
            width: 100px;
            height: 4px;
            background: linear-gradient(to right, #4f46e5, #a855f7);
            margin: 0 auto;
        }
        .card-bg {
            background-image: url('light-paper-fibers.png');
            background-size: cover;
        }
        .contact-bg::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('5905718.jpeg');
            background-size: cover;
            opacity: 0.1;
            z-index: 0;
        }
        .contact-bg {
            position: relative;
        }
        input, textarea{
            padding: 5px 5px 5px 35px !important;
            border-bottom: 1px solid #000 !important;
            border-radius: 0px !important;
        }
        textarea{
            padding: 16px 5px 5px 35px !important;
        }
        .w-para{
            font-size: 36px;
            line-height: 55px;
            color: #2B5270!important;
            font-weight: 300;
        }
        .what-study-sec{
            background-color: #E2EEF9;
            border-radius: 10px;
            padding: 10px;
        }
        .error {
            color: #e53e3e;
            font-size: 0.875rem;
            margin-top: 0.25rem;
        }
        .input-error {
            border-color: #e53e3e !important;
        }