/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.cursor-dot {
    display: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 0, 0, 0);
    }
}

/* Base font settings */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f5f8ff;
}

/* Header fonts */
.pre-heading {
    font-family: 'Lexend', sans-serif;
}

.hero-content h1 {
    font-family: 'Lexend', sans-serif;
}

.menu a {
    font-family: 'Lexend', sans-serif;
}

/* Body text */
.hero-content p {
    font-family: 'Inter', sans-serif;
}

.primary-btn, .secondary-btn {
    font-family: 'Inter', sans-serif;
}

.consultation-title {
    position: relative;
    margin-top: 80px;
    min-height: min(68vh, 640px);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: transparent;
    color: #ffffff;
}

.consultation-title::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(105deg, rgba(10, 16, 64, 0.92) 0%, rgba(26, 41, 128, 0.72) 48%, rgba(26, 41, 128, 0.45) 100%),
        url('assets/images/consultation title.jpg') center/cover no-repeat;
    transform: scale(1.04);
    animation: aaHeroZoom 18s cubic-bezier(0.22, 1, 0.36, 1) infinite alternate;
    z-index: 0;
}

.consultation-title .title-container {
    position: relative;
    z-index: 1;
    max-width: 720px;
    width: 100%;
    margin: 0 auto;
    padding: 100px 90px 72px;
    text-align: center;
    animation: aaFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.consultation-title .aa-kicker {
    font-family: 'Lexend', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin: 0 0 18px;
    color: rgba(255, 255, 255, 0.78);
}

.title-container h1 {
    font-family: 'Lexend', sans-serif;
    font-size: clamp(36px, 5.5vw, 60px);
    font-weight: 700;
    margin: 0 0 20px;
    letter-spacing: -0.02em;
    line-height: 1.08;
}

.title-container .underline {
    display: none;
}

.consultation-intro {
    padding: 120px 90px;
    background-color: #f5f8ff;
}

.intro-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
}

.intro-content {
    flex: 1;
}

.intro-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #4665BB;
    margin-bottom: 20px;
}

.intro-content h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a2980;
    margin-bottom: 24px;
}

.intro-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    border-radius: 5px;
}

.signup-btn {
    display: inline-block;
    margin-top: 40px;
    background: rgba(77, 95, 255, 0.167);
    backdrop-filter: blur(50px);
    border-radius: 5px;
    color: #1a2980;
    border: 1px solid rgba(0, 38, 255, 0.54);
    padding: 15px 40px;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    text-align: center;
    box-sizing: border-box;
}

.signup-btn:hover {
    background: rgb(0, 38, 255);
    backdrop-filter: blur(10px);
    color: #ffffff;
    border: 1px solid rgb(255, 255, 255);
}

.process {
    padding: 120px 90px;
    background-color: #e6ecff4d;
}

.process-container {
    max-width: 1400px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-subtitle {
    font-family: 'Lexend', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #4665BB;
    margin-bottom: 20px;
}

.process-header h2 {
    font-family: 'Lexend', sans-serif;
    font-size: 48px;
    font-weight: 600;
    color: #1a2980;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.step-box {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

.step-box a {
    text-decoration: none;
    
}

.step-box:hover {
    border-color: #4665BB;
    transform: translateY(-5px);
}

.step-box .step-icon {
    font-size: 40px;
    color: #4665BB;
    margin-bottom: 20px;
}

.step-box p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 30px;
}

.step-arrow {
    color: #4665BB;
    font-size: 16px;
    transition: transform 0.3s ease;
}

.step-box .step-arrow i {
    font-size: 16px;
    color: #4665BB;
}

.step-box .step-arrow a {
    text-decoration: none;
}

.step-box:hover .step-arrow {
    transform: translateX(10px);
}

/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .consultation-title {
        padding: 140px 60px 100px;
    }

    .title-container h1 {
        font-size: 52px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .consultation-title {
        padding: 120px 20px 80px;
    }

    .title-container h1 {
        font-size: 36px;
    }

    .title-container .underline {
        width: 60px;
        height: 3px;
    }
}

/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .consultation-intro {
        padding: 80px 40px;
    }

    .intro-container {
        gap: 40px;
    }

    .intro-content h2 {
        font-size: 42px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .consultation-intro {
        padding: 60px 20px;
    }

    .intro-container {
        flex-direction: column;
        gap: 40px;
    }

    .intro-content {
        order: 2;
        text-align: center;
    }

    .intro-image {
        order: 1;
    }

    .intro-subtitle {
        text-align: center;
    }

    .intro-content h2 {
        font-size: 32px;
        text-align: center;
    }

    .intro-content p {
        text-align: center;
    }

    .signup-btn {
        width: 100%;
        max-width: 300px;
        margin: 30px auto 0;
    }
}

/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    .process {
        padding: 80px 40px;
    }

    .process-header h2 {
        font-size: 42px;
    }

    .process-steps {
        gap: 20px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    .process {
        padding: 60px 20px;
    }

    .process-header {
        text-align: center;
    }

    .process-subtitle {
        text-align: center;
    }

    .process-header h2 {
        font-size: 32px;
    }

    .process-steps {
        flex-direction: column;
        gap: 30px;
    }

    .step-box {
        max-width: 300px;
        margin: 0 auto;
        border-radius: 5px;
    }

    .step-box:not(:last-child) .step-arrow {
        transform: rotate(90deg);
    }

    .step-box:not(:last-child):hover .step-arrow {
        transform: rotate(90deg) translateX(10px);
    }

    .step-box:last-child:hover .step-arrow {
        transform: translateX(10px);
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn.active {
    color: #000000;
}


/* Tablet styles (max-width: 1024px) */
@media screen and (max-width: 1024px) {
    header {
        padding: 20px 40px;
    }

    .menu ul {
        gap: 30px;
    }
}

/* Mobile styles (max-width: 768px) */
@media screen and (max-width: 768px) {
    header {
        padding: 15px 20px;
    }

    header.sticky {
        height: 55px;
    }

    header.sticky .mobile-menu-btn {
        color: #000000;
    }

    .mobile-menu-btn {
        display: block;
    }

    .menu {
        display: block;
        position: fixed;
        top: 0;
        right: -80%;
        width: 80%;
        height: 100vh;
        background: #ffffff;
        padding: 80px 30px;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease-in-out;
        z-index: 1000;
    }

    .menu.active {
        right: 0;
    }

    .menu ul {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .menu a {
        color: #333;
        font-size: 18px;
    }

    .social-links {
        display: none;
    }
}


