/* ======================================================
   IMPORT GOOGLE FONT
====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ======================================================
   SECTION SPACING
====================================================== */

section {
    padding: 100px 0;
    position: relative;
}

/* ======================================================
   CONTAINER
====================================================== */

.container {

    width: 90%;
    max-width: var(--container-width);

    margin: auto;
}

/* ======================================================
   ROOT VARIABLES
====================================================== */

:root {
    --primary-color: #001F3D;
    --secondary-color: #11D89C;
    --accent-color: #0A84FF;
    --white-color: #ffffff;
    --dark-color: #0d1117;
    --light-color: #f4f7fa;
    --text-color: #444444;
    --border-color: #e5e7eb;
    --shadow-light: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-medium: 0 10px 30px rgba(0,0,0,0.12);
    --transition: all 0.3s ease-in-out;
    --radius: 12px;
    --container-width: 1200px;
}

/* ======================================================
   ELEMENTS
====================================================== */

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

button,
input,
textarea {
    font-family: inherit;
    outline: none;
}


/* ======================================================
   RESET
====================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-color);
    background: var(--white-color);
    overflow-x: hidden;
}

img {
    width: 100%;
    height: auto;
    display: block;
}

/* ======================================================
   SECTION TITLES
====================================================== */

.section-title {

    text-align: center;
    margin-bottom: 70px;
}

.section-title span {

    display: inline-block;

    color: var(--secondary-color);

    font-weight: 600;

    margin-bottom: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;
}

.section-title h2 {

    font-size: 46px;

    color: var(--primary-color);

    line-height: 1.2;

    margin-bottom: 18px;
}

.section-title p {

    max-width: 700px;

    margin: auto;
}

/* ======================================================
   BUTTONS
====================================================== */

.btn-primary,
.btn-secondary {

    display: inline-flex;

    align-items: center;
    justify-content: center;

    padding: 15px 34px;

    border-radius: 50px;

    font-weight: 600;

    transition: var(--transition);
}

.btn-primary {

    background: var(--secondary-color);

    color: var(--white-color);
}

.btn-primary:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);
}

.btn-secondary {

    background: var(--primary-color);

    color: var(--white-color);
}

.btn-secondary:hover {

    transform: translateY(-4px);

    box-shadow: var(--shadow-lg);
}


/* ======================================================
   GRID SYSTEM
====================================================== */

.grid-2 {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 50px;
}

.grid-3 {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
}

.grid-4 {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;
}

/* ======================================================
   CARDS
====================================================== */

.card {

    background: var(--white-color);

    border-radius: var(--radius-md);

    overflow: hidden;

    box-shadow: var(--shadow-sm);

    transition: var(--transition);
}

.card:hover {

    transform: translateY(-10px);

    box-shadow: var(--shadow-lg);
}

.card-content {
    padding: 30px;
}

