* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #222;
    line-height: 1.7;
}

/* NAVBAR */

.navbar {
    padding: 15px 0;
    background: rgba(8, 15, 35, 0.95);
    backdrop-filter: blur(10px);
}

.navbar-brand {
    font-size: 22px;
}

.nav-link {
    margin: 0 8px;
    font-weight: 500;
}

.nav-link:hover {
    color: #0d6efd !important;
}


/* HERO */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:
        linear-gradient(120deg,
        #07142f,
        #123d78,
        #0d6efd);

    color: white;
    padding-top: 80px;
}

.hero-tag {
    color: #9fc5ff;
    font-weight: bold;
    letter-spacing: 2px;
}

.hero h1 {
    font-size: 60px;
    font-weight: 800;
    line-height: 1.15;
    margin: 20px 0;
}

.hero h1 span {
    color: #79b3ff;
}

.hero p {
    font-size: 18px;
    max-width: 550px;
}

.hero-card {
    padding: 70px 30px;
    border-radius: 30px;

    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.25);

    backdrop-filter: blur(10px);
}

.hero-card i {
    font-size: 100px;
    margin-bottom: 20px;
}


/* COMMON */

.section {
    padding: 100px 0;
}

.section-title {
    color: #0d6efd;
    font-weight: bold;
    letter-spacing: 2px;
}

.section h2 {
    font-size: 42px;
    font-weight: 700;
    margin: 10px 0 20px;
}


/* ABOUT */

.about-image {
    height: 400px;
    border-radius: 30px;

    display: flex;
    align-items: center;
    justify-content: center;

    background:
        linear-gradient(135deg,
        #0d6efd,
        #6f42c1);

    color: white;
}

.about-image i {
    font-size: 130px;
}


/* SERVICE */

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;

    height: 100%;

    box-shadow:
        0 10px 35px rgba(0,0,0,.08);

    transition: .3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}

.service-icon {
    width: 70px;
    height: 70px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 15px;

    background: #e8f1ff;
    color: #0d6efd;

    font-size: 30px;
    margin-bottom: 25px;
}

.service-card h4 {
    font-weight: 700;
}

.service-card a {
    text-decoration: none;
    color: #0d6efd;
    font-weight: bold;
}


/* FEATURES */

.feature {
    padding: 35px;
}

.feature i {
    font-size: 45px;
    color: #0d6efd;
    margin-bottom: 20px;
}


/* CTA */

.cta {
    padding: 90px 0;

    color: white;

    background:
        linear-gradient(120deg,
        #0d6efd,
        #6610f2);
}

.cta h2 {
    font-size: 45px;
    font-weight: 700;
}


/* FOOTER */

footer {
    background: #07142f;
    color: #ddd;
    padding: 70px 0 25px;
}

footer h4,
footer h5 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    text-decoration: none;
    color: #bbb;
}

.footer-links a:hover {
    color: white;
}

.social a {
    display: inline-flex;

    width: 40px;
    height: 40px;

    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #16294d;
    color: white;

    margin-right: 5px;

    text-decoration: none;
}

.social a:hover {
    background: #0d6efd;
}


/* RESPONSIVE */

@media (max-width: 991px) {

    .hero {
        padding: 130px 0 80px;
    }

    .hero h1 {
        font-size: 45px;
    }

    .hero-card {
        margin-top: 50px;
    }

}

@media (max-width: 576px) {

    .hero h1 {
        font-size: 38px;
    }

    .section {
        padding: 70px 0;
    }

    .section h2 {
        font-size: 32px;
    }

    .cta h2 {
        font-size: 32px;
    }
/* ================= BLOG HERO ================= */

.blog-hero {
    min-height: 500px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding-top: 80px;

    color: white;

    background:
        linear-gradient(
            120deg,
            #07142f,
            #123d78,
            #0d6efd
        );
}

.blog-hero h1 {
    font-size: 55px;
    font-weight: 800;
    margin: 15px 0;
}

.blog-hero p {
    font-size: 18px;
    max-width: 650px;
    margin: auto;
}


/* ================= BLOG CARD ================= */

.blog-card {
    height: 100%;

    background: white;

    border-radius: 20px;

    overflow: hidden;

    box-shadow:
        0 10px 35px rgba(0,0,0,.08);

    transition: all .3s ease;
}

.blog-card:hover {
    transform: translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.15);
}


/* ================= BLOG IMAGE ================= */

.blog-image {
    height: 230px;

    display: flex;

    align-items: center;
    justify-content: center;

    background:
        linear-gradient(
            135deg,
            #0d6efd,
            #6610f2
        );
}

.blog-image-2 {
    background:
        linear-gradient(
            135deg,
            #11998e,
            #38ef7d
        );
}

.blog-image-3 {
    background:
        linear-gradient(
            135deg,
            #ff512f,
            #dd2476
        );
}

.blog-image-4 {
    background:
        linear-gradient(
            135deg,
            #4776e6,
            #8e54e9
        );
}

.blog-image-5 {
    background:
        linear-gradient(
            135deg,
            #f7971e,
            #ffd200
        );
}

.blog-image-6 {
    background:
        linear-gradient(
            135deg,
            #232526,
            #414345
        );
}

.blog-icon {
    width: 90px;
    height: 90px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: rgba(255,255,255,.18);

    border: 1px solid rgba(255,255,255,.3);

    color: white;

    font-size: 42px;

    backdrop-filter: blur(10px);
}


/* ================= BLOG CONTENT ================= */

.blog-content {
    padding: 30px;
}

.blog-meta {
    display: flex;

    justify-content: space-between;

    gap: 10px;

    margin-bottom: 15px;

    color: #777;

    font-size: 13px;
}

.blog-meta span:last-child {
    color: #0d6efd;
    font-weight: 600;
}

.blog-content h3 {
    font-size: 22px;

    font-weight: 700;

    line-height: 1.4;

    margin-bottom: 15px;
}

.blog-content p {
    color: #666;

    margin-bottom: 20px;
}

.read-more {
    color: #0d6efd;

    font-weight: 700;

    text-decoration: none;
}

.read-more i {
    margin-left: 5px;

    transition: .3s;
}

.read-more:hover i {
    margin-left: 10px;
}


/* ================= PAGINATION ================= */

.pagination .page-link {
    border: none;

    margin: 0 4px;

    border-radius: 8px;

    color: #0d6efd;
}

.pagination .page-item.active .page-link {
    background: #0d6efd;

    color: white;
}


/* ================= MOBILE ================= */

@media(max-width: 576px) {

    .blog-hero {
        min-height: 430px;
    }

    .blog-hero h1 {
        font-size: 38px;
    }

    .blog-image {
        height: 200px;
    }

}
}