/* --------------------------------------------------
   Global
-------------------------------------------------- */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
}

section {
    padding: 100px 0;
}

/* --------------------------------------------------
   Navbar
-------------------------------------------------- */

/* ===========================
   Navbar
=========================== */

.navbar {
    padding: 1.2rem 0;
    background: transparent;
    transition: all .35s ease;
    z-index: 1030;
}

.navbar-brand img {
    max-height: 42px;
}

.navbar-nav .nav-link {
    color: rgba(255,255,255,.85);
    font-weight: 500;
    margin-left: 1.2rem;
    position: relative;
    transition: color .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #0d6efd;
}

.navbar-nav .nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #0d6efd;
    transition: width .3s;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 100%;
}

/* --------------------------------------------------
   Hero Section
-------------------------------------------------- */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("../images/hero.png") center center / cover no-repeat;
    color: #fff;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.20) 0%,
        rgba(6, 18, 45, 0.60) 45%,
        rgba(4, 12, 30, 0.88) 100%
    );
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.15;
}

.hero p {
    max-width: 550px;
}

@media (max-width: 991.98px) {

    .hero {
        background-position: center;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero .row {
        justify-content: center !important;
        text-align: center;
    }

    .hero p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero .d-flex {
        justify-content: center;
    }
}

/* ==========================
   Services
========================== */

.service-card {
    border-radius: 16px;
    overflow: hidden;
    transition: all .35s ease;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(13, 110, 253, .15) !important;
}

.service-card .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(13, 110, 253, .1);
    color: #0d6efd;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    transition: all .35s ease;
}

.service-card:hover .icon-box {
    background: #0d6efd;
    color: #fff;
    transform: rotate(10deg) scale(1.1);
}

.service-card h4 {
    transition: color .3s ease;
}

.service-card:hover h4 {
    color: #0d6efd;
}

.service-card p {
    line-height: 1.7;
}

/* --------------------------------------------------
   Cards
-------------------------------------------------- */

.service-card,
.portfolio-card,
.pricing-card {
    transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover,
.portfolio-card:hover,
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0, 0, 0, 0.15);
}

/* --------------------------------------------------
   Icons
-------------------------------------------------- */

.icon-box {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;

    background: #0d6efd;
    color: #fff;

    border-radius: 50%;

    margin: 0 auto 20px;
}


.process-number {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(13,110,253,.1);

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

    transition: all .35s ease;
}

.process-card:hover .process-number {
    background: #0d6efd;
    color: #fff !important;
    transform: rotate(10deg) scale(1.1);
}

/* --------------------------------------------------
   Footer
-------------------------------------------------- */

/* ==========================
   Footer
========================== */

footer {
    background: #111827;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-box {
    padding: 35px 30px;
    border-radius: 16px;
    transition: all .35s ease;
    height: 100%;
}

.footer-box:hover {
    background: rgba(255,255,255,.05);
    transform: translateY(-6px);
}

.footer-box h4,
.footer-box h5 {
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-box ul li {
    margin-bottom: 15px;
}

.footer-box a {
    color: rgba(255,255,255,.75);
    text-decoration: none;
    transition: all .3s ease;
}

.footer-box a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-box i {
    transition: transform .3s ease;
}

.footer-box a:hover i {
    transform: scale(1.2);
}

footer hr {
    border-color: rgba(255,255,255,.1);
    margin: 50px 0 25px;
}

footer a {
    color: inherit;
    text-decoration: none;
    transition: color .3s ease;
}

footer a:hover {
    color: #0d6efd;
}

.facebook-btn {
    display: flex;
    align-items: center;
    gap: 18px;

    padding: 18px 24px;

    background: #1877f2;
    color: #fff;

    border-radius: 14px;

    text-decoration: none;

    transition: all .3s ease;
}

.facebook-btn i {
    font-size: 2.5rem;
}

.facebook-btn strong,
.facebook-btn small {
    color: #fff;
}

.facebook-btn:hover {
    color: #fff;
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(24, 119, 242, .35);
}

.facebook-btn:hover i {
    transform: scale(1.1);
}

/* --------------------------------------------------
   Team Card
-------------------------------------------------- */

.team-card {
    overflow: hidden;
    transition: all .35s ease;
}

.team-card img {
    aspect-ratio: 1/1;
    object-fit: cover;
    transition: transform .4s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 2rem rgba(0,0,0,.15);
}

.team-card:hover img {
    transform: scale(1.08);
}

.team-card .bi {
    transition: all .3s ease;
}

.team-card a:hover .bi {
    color: #0d6efd;
    transform: translateY(-3px);
}

/* --------------------------------------------------
   Responsive
-------------------------------------------------- */

@media (max-width: 991.98px) {

    section {
        padding: 80px 0;
    }

    .hero {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    .hero p {
        margin: 0 auto 2rem;
    }

    .hero img {
        margin-top: 3rem;
    }
}

@media (max-width: 575.98px) {

    .hero h1 {
        font-size: 2.2rem;
    }

    .icon-box {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }
}
