/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #1d1d1f;
    overflow-x: hidden;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Fix for mobile viewport */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
    color: inherit;
    cursor: pointer;
}

.nav-logo:hover {
    transform: scale(1.02);
}

.logo-image {
    height: 45px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-image {
    transform: scale(1.05);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h2 {
    color: #1d1d1f;
    font-weight: 700;
    font-size: 1.8rem;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.nav-logo span {
    font-size: 0.8rem;
    color: #86868b;
    font-weight: 400;
    line-height: 1.2;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    text-decoration: none;
    color: #1d1d1f;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover {
    color: #0071e3;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #0071e3;
    transition: width 0.3s ease;
}

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

.cta-button {
    background: #0071e3;
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 980px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
}

.cta-button:hover {
    background: #0077ed;
    transform: scale(1.05);
}

.cta-button::after {
    display: none;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: #1d1d1f;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f5f7 0%, #ffffff 100%);
    padding-top: 80px; /* Account for fixed header */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

.hero-image-1 {
    background: linear-gradient(45deg, #ff6b35, #f7931e);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.hero-image-2 {
    background: linear-gradient(45deg, #0071e3, #34c759);
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.hero-image-3 {
    background: linear-gradient(45deg, #af52de, #ff2d92);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.hero-main-title {
    display: block;
    color: #1d1d1f;
    margin-bottom: 0.5rem;
}

.hero-highlight {
    display: block;
    background: linear-gradient(135deg, #0071e3, #34c759);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 5rem;
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    display: block;
    font-size: 1.5rem;
    color: #86868b;
    font-weight: 400;
}

.hero-description {
    font-size: 1.25rem;
    color: #86868b;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-bottom: 3rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #0071e3;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #86868b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero-cta {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 980px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-cta.primary {
    background: #0071e3;
    color: white;
}

.hero-cta.primary:hover {
    background: #0077ed;
    transform: scale(1.05);
}

.hero-cta.secondary {
    background: transparent;
    color: #0071e3;
    border: 2px solid #0071e3;
}

.hero-cta.secondary:hover {
    background: #0071e3;
    color: white;
    transform: scale(1.05);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    cursor: pointer;
}

.scroll-arrow {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 113, 227, 0.1);
    border-radius: 50%;
    border: 2px solid rgba(0, 113, 227, 0.3);
    position: relative;
    transition: all 0.3s ease;
    animation: scrollBounce 2s infinite;
}

.scroll-arrow:hover {
    background: rgba(0, 113, 227, 0.2);
    border-color: rgba(0, 113, 227, 0.5);
    transform: scale(1.1);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    width: 12px;
    height: 12px;
    border-right: 3px solid #0071e3;
    border-bottom: 3px solid #0071e3;
    transform: rotate(45deg);
    animation: arrowPulse 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% { 
        transform: translateY(0);
        opacity: 1;
    }
    50% { 
        transform: translateY(10px);
        opacity: 0.7;
    }
}

@keyframes arrowPulse {
    0%, 100% { 
        opacity: 1;
        transform: rotate(45deg) scale(1);
    }
    50% { 
        opacity: 0.6;
        transform: rotate(45deg) scale(0.9);
    }
}

/* Trust Section */
.trust-section {
    padding: 6rem 0;
    background: #f5f5f7;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: center;
}

.trust-visual {
    display: flex;
    justify-content: center;
}

.trust-icon {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #0071e3, #34c759);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.trust-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #1d1d1f;
    line-height: 1.2;
}

.trust-text p {
    font-size: 1.1rem;
    color: #86868b;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.trust-highlight {
    background: rgba(0, 113, 227, 0.1);
    padding: 1.5rem;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(0, 113, 227, 0.2);
}

.trust-highlight i {
    color: #0071e3;
    font-size: 1.5rem;
}

.trust-highlight span {
    font-weight: 600;
    color: #1d1d1f;
    font-size: 1.1rem;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d1d1f;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.2rem;
    color: #86868b;
    max-width: 600px;
    margin: 0 auto;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: white;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    background: linear-gradient(135deg, #0071e3, #34c759);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.3rem;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 2;
}

.step-content {
    background: #f5f5f7;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.step-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.step-icon {
    color: #0071e3;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.step-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.step-content p {
    color: #86868b;
    line-height: 1.6;
}

/* Success Stories Section */
.success-section {
    padding: 6rem 0;
    background: #f5f5f7;
}

.success-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.success-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.success-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.success-image {
    height: 200px;
    background: linear-gradient(135deg, #0071e3, #34c759);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.success-content {
    padding: 2rem;
}

.success-rating {
    color: #ffd700;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.success-content p {
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.success-author strong {
    color: #1d1d1f;
    font-weight: 600;
    display: block;
}

.success-author span {
    color: #86868b;
    font-size: 0.9rem;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1d1d1f;
}

.contact-header p {
    font-size: 1.1rem;
    color: #86868b;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: #f5f5f7;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-method:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.method-icon {
    background: #0071e3;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.method-details h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.method-details p {
    color: #0071e3;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.method-details span {
    color: #86868b;
    font-size: 0.9rem;
}

.contact-form-container {
    background: #f5f5f7;
    padding: 3rem;
    border-radius: 20px;
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1d1d1f;
}

.form-header p {
    color: #86868b;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e7;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #0071e3;
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.submit-btn {
    width: 100%;
    background: #0071e3;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #0077ed;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 113, 227, 0.3);
}

.submit-btn:disabled {
    background: #86868b;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: #f5f5f7;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #f5f5f7;
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1d1d1f;
}

.faq-question i {
    color: #86868b;
    transition: transform 0.3s ease;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-answer.active {
    padding: 0 2rem 2rem;
    max-height: 200px;
}

.faq-answer p {
    color: #86868b;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #1d1d1f;
    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,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #f5f5f7;
    font-weight: 600;
}

.footer-section p {
    color: #86868b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #86868b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #0071e3;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    color: #86868b;
    font-size: 1.3rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #0071e3;
}

.footer-bottom {
    border-top: 1px solid #424245;
    padding-top: 2rem;
    text-align: center;
    color: #86868b;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 999;
        border-top: 1px solid rgba(0, 0, 0, 0.1);
        opacity: 0;
        pointer-events: none;
        gap: 1.5rem;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu a {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-radius: 8px;
        transition: all 0.3s ease;
    }

    .nav-menu a:hover {
        background: rgba(0, 113, 227, 0.1);
        color: #0071e3;
    }

    .nav-menu a.cta-button {
        background: #0071e3;
        color: white !important;
        margin-top: 0.5rem;
    }

    .nav-menu a.cta-button:hover {
        background: #0077ed;
        transform: scale(1.02);
    }

    .header {
        padding: 0;
    }

    .navbar {
        padding: 0.75rem 0;
    }

    .nav-logo {
        gap: 0.5rem;
    }

    .logo-image {
        height: 35px;
    }

    .nav-logo h2 {
        font-size: 1.5rem;
    }

    .nav-logo span {
        font-size: 0.7rem;
    }

    .hero {
        min-height: 100vh;
        min-height: 100dvh; /* Dynamic viewport height for mobile */
        padding-top: 70px; /* Reduced padding for mobile header */
        padding-bottom: 2rem;
    }

    .hero-container {
        padding: 0 15px;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: calc(100vh - 70px);
        min-height: calc(100dvh - 70px);
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.5rem;
        line-height: 1.2;
    }

    .hero-main-title {
        font-size: 1.8rem;
    }

    .hero-highlight {
        font-size: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
        margin-bottom: 2rem;
    }

    .stat {
        min-width: 100px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        padding: 0 10px;
    }

    .hero-cta {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }

    .trust-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .trust-text h2 {
        font-size: 1.75rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .success-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .scroll-indicator {
        display: none; /* Hide on mobile */
    }
}

@media (max-width: 480px) {
    .header {
        padding: 0;
    }

    .navbar {
        padding: 0.5rem 0;
    }

    .nav-logo {
        gap: 0.4rem;
    }

    .logo-image {
        height: 30px;
    }

    .nav-logo h2 {
        font-size: 1.3rem;
    }

    .nav-logo span {
        font-size: 0.65rem;
    }

    .hero {
        padding-top: 60px; /* Even smaller padding for very small screens */
        padding-bottom: 1.5rem;
    }

    .hero-container {
        padding: 0 10px;
        min-height: calc(100vh - 60px);
        min-height: calc(100dvh - 60px);
    }

    .hero-content {
        width: 100%;
        max-width: 100%;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-highlight {
        font-size: 2rem;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-description {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
        padding: 0;
        line-height: 1.5;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
        margin-bottom: 1.5rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .hero-actions {
        gap: 0.5rem;
        padding: 0;
    }

    .hero-cta {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .trust-text h2 {
        font-size: 1.5rem;
    }

    .trust-text p {
        font-size: 1rem;
    }

    .contact-header h2 {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
    }

    .container {
        padding: 0 15px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.process-step,
.success-card {
    animation: fadeInUp 0.8s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

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

::-webkit-scrollbar-track {
    background: #f5f5f7;
}

::-webkit-scrollbar-thumb {
    background: #0071e3;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #0077ed;
} 