html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

/* =========================
GLASS CARD
========================= */

.glass-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(12px);
    transition: 0.4s ease;
}

.glass-card:hover {
    transform: translateY(-10px);
    border-color: #22d3ee;
    box-shadow: 0 0 30px rgba(34,211,238,0.3);
}

/* =========================
ICON BOX
========================= */

.icon-box {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,#06b6d4,#3b82f6);
    font-size: 32px;
}

/* =========================
INPUTS
========================= */

input,
textarea,
button {
    outline: none;
}

/* =========================
IMAGE FIX
========================= */

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* =========================
CONTAINER FIX
========================= */

.container {
    width: 100%;
}

/* =========================
MOBILE RESPONSIVE
========================= */

@media (max-width: 1024px) {

    h1 {
        font-size: 50px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 42px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 30px !important;
    }

}

@media (max-width: 768px) {

    body {
        font-size: 15px;
    }

    section {
        padding-top: 80px !important;
        padding-bottom: 80px !important;
    }

    h1 {
        font-size: 38px !important;
        line-height: 1.2 !important;
    }

    h2 {
        font-size: 32px !important;
        line-height: 1.3 !important;
    }

    h3 {
        font-size: 24px !important;
        line-height: 1.4 !important;
    }

    p {
        font-size: 15px !important;
        line-height: 1.9 !important;
    }

    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .glass-card {
        border-radius: 25px !important;
        padding: 25px !important;
    }

    .icon-box {
        width: 65px;
        height: 65px;
        font-size: 26px;
    }

    button,
    .btn,
    a {
        font-size: 14px !important;
    }

    input,
    textarea {
        font-size: 14px !important;
    }

}

/* =========================
SMALL MOBILE
========================= */

@media (max-width: 480px) {

    h1 {
        font-size: 30px !important;
    }

    h2 {
        font-size: 26px !important;
    }

    h3 {
        font-size: 22px !important;
    }

    p {
        font-size: 14px !important;
        line-height: 1.8 !important;
    }

    .icon-box {
        width: 58px;
        height: 58px;
        font-size: 22px;
        border-radius: 16px;
    }

    .glass-card {
        padding: 20px !important;
    }

}