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

body {
    font-family: Arial, sans-serif;
    background: #f7f9fb;
    color: #1a2333;
}


/* ================= NAVBAR ================= */

.navbar {
    height: 80px;

    background: white;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 8%;

    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.navbar h2 {
    font-size: 23px;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;

    transition: 0.3s;
}

.nav-links a:hover,
.nav-links .active {
    color: #2bb5e0;
}

.nav-btn {
    border: none;
    background: #2bb5e0;

    color: white;

    padding: 12px 25px;

    border-radius: 30px;

    cursor: pointer;

    transition: 0.3s;
}

.nav-btn:hover {
    background: #1a9bc4;
    transform: scale(1.05);
}


/* ================= HERO ================= */

.hero {
    min-height: 550px;

    display: flex;
    align-items: center;

    max-width: 1200px;

    margin: 70px auto;

    padding: 0 30px;

    gap: 70px;
}

.hero-image {
    width: 50%;
}

.hero-image img {
    width: 100%;
    height: 450px;

    object-fit: cover;

    border-radius: 30px;

    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.hero-text {
    width: 50%;
}

.small-title,
.section-small-title {
    color: #2bb5e0;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;

    margin-bottom: 15px;
}

.hero-text h1 {
    font-size: 48px;

    line-height: 1.2;

    margin-bottom: 20px;
}

.hero-text h1 span {
    display: block;
    color: #2bb5e0;
}

.description {
    color: #777;

    line-height: 1.8;

    margin-bottom: 30px;

    max-width: 500px;
}

.main-btn {
    border: none;

    background: #2bb5e0;

    color: white;

    padding: 15px 30px;

    border-radius: 30px;

    font-size: 15px;

    cursor: pointer;

    box-shadow: 0 8px 20px rgba(43, 181, 224, 0.3);

    transition: 0.3s;
}

.main-btn:hover {
    background: #1a9bc4;

    transform: translateY(-3px);
}


/* ================= MISSION ================= */

.mission {
    text-align: center;

    max-width: 750px;

    margin: 100px auto;

    padding: 0 20px;
}

.mission h2 {
    font-size: 36px;

    margin-bottom: 20px;
}

.mission > p:last-child {
    color: #777;

    line-height: 1.8;
}


/* ================= FEATURES ================= */

.features {
    max-width: 1100px;

    margin: 0 auto 120px;

    display: grid;

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

    gap: 25px;

    padding: 0 30px;
}

.feature-card {
    background: white;

    padding: 40px 30px;

    border-radius: 25px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.icon {
    width: 60px;
    height: 60px;

    background: #e8f8fd;

    color: #2bb5e0;

    border-radius: 18px;

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

    font-size: 27px;

    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 22px;

    margin-bottom: 12px;
}

.feature-card p {
    color: #777;

    line-height: 1.7;

    font-size: 14px;
}


/* ================= WHY ================= */

.why {
    background: #eaf8fc;

    padding: 100px 8%;

    display: flex;

    justify-content: center;

    gap: 100px;
}

.why-text {
    max-width: 450px;
}

.why-text h2 {
    font-size: 38px;

    line-height: 1.3;

    margin-bottom: 20px;
}

.why-text > p:last-child {
    color: #777;

    line-height: 1.8;
}

.why-cards {
    display: grid;

    grid-template-columns: repeat(2, 230px);

    gap: 20px;
}

.why-card {
    background: white;

    padding: 20px;

    border-radius: 18px;

    display: flex;

    align-items: center;

    gap: 15px;
}

.why-card i {
    font-size: 25px;

    color: #2bb5e0;
}

.why-card h4 {
    margin-bottom: 5px;
}

.why-card p {
    color: #888;

    font-size: 12px;
}


/* ================= CTA ================= */

.cta {
    max-width: 1100px;

    margin: 100px auto;

    background: linear-gradient(135deg, #2bb5e0, #168eb7);

    border-radius: 30px;

    padding: 60px;

    color: white;

    display: flex;

    align-items: center;

    justify-content: space-between;
}

.cta h2 {
    font-size: 32px;

    margin-bottom: 12px;
}

.cta p {
    opacity: 0.9;
}

.cta-btn {
    background: white;

    color: #168eb7;

    border: none;

    padding: 16px 30px;

    border-radius: 30px;

    font-weight: bold;

    cursor: pointer;

    transition: 0.3s;
}

.cta-btn:hover {
    transform: scale(1.07);
}
/* ================= SERVICES ================= */

.services {
    padding: 100px 8%;
    background: white;
}

.services-title {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px;
}

.services-title h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.services-title > p:last-child {
    color: #777;
    line-height: 1.8;
}

.services-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    padding: 30px 25px;

    background: #f7f9fb;

    border-radius: 25px;

    text-align: center;

    transition: 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);

    background: white;

    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 65px;
    height: 65px;

    margin: 0 auto 20px;

    background: #e8f8fd;

    color: #2bb5e0;

    border-radius: 20px;

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

    font-size: 28px;
}

.service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
}

.service-card p {
    color: #777;
    font-size: 14px;
    line-height: 1.7;
}


/* ================= BLOG ================= */

.blog {
    padding: 100px 8%;
    background: #f7f9fb;
}

.blog-title {
    text-align: center;
    margin-bottom: 50px;
}

.blog-title h2 {
    font-size: 38px;
    margin-bottom: 15px;
}

.blog-title > p:last-child {
    color: #777;
}

.blog-container {
    max-width: 1100px;
    margin: auto;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.blog-card {
    background: white;

    border-radius: 25px;

    overflow: hidden;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);

    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-8px);

    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.blog-card img {
    width: 100%;
    height: 220px;

    object-fit: cover;

    display: block;
}

.blog-content {
    padding: 25px;
}

.blog-date {
    color: #2bb5e0 !important;

    font-size: 11px !important;

    font-weight: bold;

    letter-spacing: 1px;

    margin-bottom: 10px;
}

.blog-content h3 {
    font-size: 21px;

    line-height: 1.4;

    margin-bottom: 12px;
}

.blog-content > p:not(.blog-date) {
    color: #777;

    font-size: 14px;

    line-height: 1.7;

    margin-bottom: 18px;
}

.blog-content a {
    color: #2bb5e0;

    font-weight: bold;

    text-decoration: none;

    transition: 0.3s;
}

.blog-content a:hover {
    color: #1a9bc4;
}


/* ================= FOOTER ================= */

footer {
    background: #1a2333;

    color: white;

    text-align: center;

    padding: 50px 20px;
}

footer h3 {
    font-size: 23px;

    margin-bottom: 10px;
}

footer > p {
    color: #aaa;
}

.copyright {
    margin-top: 25px;

    font-size: 12px;
}

.contact-info {
    margin-top: 25px;
}

.contact-info h4 {
    color: #2bb5e0;
    font-size: 18px;
    margin-bottom: 12px;
}

.contact-info p {
    margin: 8px 0;
    color: #ddd;
    font-size: 14px;
}
html {
    scroll-behavior: smooth;
}

/* ================= MOBILE ================= */

@media (max-width: 768px) {

    .navbar {
        height: auto;

        padding: 20px;

        flex-direction: column;

        gap: 20px;
    }

    .nav-links {
        flex-wrap: wrap;

        justify-content: center;

        gap: 15px;
    }


    .hero {
        flex-direction: column;

        margin: 50px auto;

        gap: 30px;
    }

    .hero-image,
    .hero-text {
        width: 100%;
    }

    .hero-image img {
        height: 300px;
    }

    .hero-text h1 {
        font-size: 36px;
    }


    .features {
        grid-template-columns: 1fr;
    }


    .why {
        flex-direction: column;

        gap: 40px;
    }

    .why-cards {
        grid-template-columns: 1fr;
    }


    .cta {
        margin: 50px 20px;

        padding: 40px 25px;

        flex-direction: column;

        text-align: center;

        gap: 25px;
    }

    .services-container {
    grid-template-columns: repeat(2, 1fr);
}

.blog-container {
    grid-template-columns: 1fr;
}
}

@media (max-width: 480px) {

    .services-container {
        grid-template-columns: 1fr;
    }

    .services-title h2,
    .blog-title h2 {
        font-size: 30px;
    }

}