/* ===================================
GOOGLE FONT
=================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ===================================
RESET
=================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #0f172a;
    background: #ffffff;
    overflow-x: hidden;
    line-height: 1.7;
}

/* ===================================
CONTAINER
=================================== */

.container {
    width: 90%;
    max-width: 1400px;
    margin: 0 auto;
}

/* ===================================
IMAGE
=================================== */

img {
    max-width: 100%;
    display: block;
}

/* ===================================
LINKS
=================================== */

a {
    text-decoration: none;
}

/* ===================================
LIST
=================================== */

ul {
    list-style: none;
}

/* ===================================
BUTTONS
=================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 34px;

    border: none;

    border-radius: 14px;

    font-size: 15px;
    font-weight: 600;

    transition: .35s ease;

    cursor: pointer;

}

.btn-primary {

    background:
        linear-gradient(135deg,
            #2563eb,
            #4f46e5);

    color: #fff;

    box-shadow:
        0 12px 30px rgba(37, 99, 235, .25);

}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow:
        0 18px 40px rgba(37, 99, 235, .35);

}

.btn-secondary {

    border: 2px solid rgba(255, 255, 255, .25);

    color: #fff;

}

.btn-secondary:hover {

    background: #fff;

    color: #0f172a;

}

.btn-light {

    background: #fff;

    color: #2563eb;

    box-shadow:
        0 10px 30px rgba(255, 255, 255, .15);

}

.btn-light:hover {

    transform: translateY(-4px);
    box-shadow:
        0 16px 40px rgba(255, 255, 255, .25);

}

/* ===================================
COMMON SECTIONS
=================================== */

.section-heading {
    text-align: center;
    margin-bottom: 70px;
}

.section-title {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.2;
    color: #0f172a;
}

.section-heading p {
    color: #64748b;
    font-size: 18px;
    margin-top: 15px;
}

.section-tag {
    color: #2563eb;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ===================================
SCROLLBAR
=================================== */

::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f5f9;
}

::-webkit-scrollbar-thumb {
    background: #2563eb;
    border-radius: 50px;
}

/* ===================================
TABLET
=================================== */

@media(max-width:1024px) {

    .section-title {
        font-size: 42px;
    }

}

/* ===================================
MOBILE
=================================== */

@media(max-width:768px) {

    .container {
        width: 92%;
    }

    .section-title {
        font-size: 34px;
    }

    .btn {
        width: 100%;
    }


}