body {
    font-family: 'Segoe UI', sans-serif;
    background: #f5f8fc;
    overflow-x: hidden;
}

.navbar {
    background: #081b33 !important;
    padding: 18px 0;
}

.navbar-brand {
    font-size: 26px;
    font-weight: 800;
    color: #fff !important;
}

.nav-link {
    color: #fff !important;
    font-weight: 600;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;

    background:
        linear-gradient(rgba(8, 27, 51, .75),
            rgba(8, 27, 51, .75)),
        url('https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1920');

    background-size: cover;
    background-position: center;

    padding-top: 140px;
    padding-bottom: 80px;
}

.hero-content {
    margin-bottom: 40px;
}

.hero h1 {
    font-size: 4.5rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 15px;
}

.hero p {
    font-size: 20px;
    color: #fff;
    max-width: 800px;
    margin: auto;
}

.search-card {
    background: #fff;
    padding: 30px;
    border-radius: 25px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, .2);
    width: 100%;
    max-width: 1000px;
    margin: auto;
}

@media(max-width:991px) {

    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .hero p {
        font-size: 16px;
    }

    .search-card {
        padding: 20px;
    }

}

@media(max-width:576px) {

    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 14px;
    }

    .search-card {
        padding: 15px;
        border-radius: 15px;
    }

}

.search-card iframe,
.search-card div {
    width: 100% !important;
    max-width: 100% !important;
}

/* ===============================
SEARCH CARD
================================ */

.about-image {
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .15);
}

.about-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

@media(max-width:991px) {

    .about-image img {
        height: 350px;
    }

}

.search-card {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 30px;
    box-shadow:
        0 20px 80px rgba(0, 0, 0, .12),
        0 5px 20px rgba(42, 132, 255, .08);
    border: 1px solid rgba(255, 255, 255, .5);
    position: relative;
    overflow: hidden;
}

.search-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg,
            #2a84ff,
            #00c6ff);
}

/* ===============================
SERVICE CARD
================================ */

.glass-card {
    background: #fff;
    padding: 40px;
    border-radius: 25px;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid #edf2f7;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .06);

    transition: all .4s ease;
}

.glass-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .12);

    border-color: #2a84ff;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            #2a84ff,
            #00c6ff);

    transform: scaleX(0);
    transition: .4s;
}

.glass-card:hover::before {
    transform: scaleX(1);
}

/* ===============================
COUNTER BOX
================================ */

.counter-box {

    background:
        linear-gradient(135deg,
            #081b33,
            #113a68);

    padding: 45px 30px;

    border-radius: 25px;

    color: #fff;

    text-align: center;

    position: relative;

    overflow: hidden;

    box-shadow:
        0 20px 60px rgba(8, 27, 51, .25);

    transition: .4s;
}

.counter-box:hover {
    transform: translateY(-10px);
}

.counter-box::after {
    content: '';
    position: absolute;
    right: -30px;
    top: -30px;
    width: 120px;
    height: 120px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
}

.counter {
    font-size: 65px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 10px;
    color: #4db8ff;
}

/* ===============================
PORTFOLIO CARD
================================ */

.portfolio-card {

    background: #fff;

    border-radius: 25px;

    overflow: hidden;

    box-shadow:
        0 15px 50px rgba(0, 0, 0, .08);

    transition: .4s;

    height: 100%;
}

.portfolio-card:hover {

    transform: translateY(-12px);

    box-shadow:
        0 30px 70px rgba(0, 0, 0, .15);
}

.portfolio-card img {

    width: 100%;
    height: 280px;
    object-fit: cover;

    transition: .6s;
}

.portfolio-card:hover img {
    transform: scale(1.08);
}

.portfolio-content {
    padding: 30px;
}

.portfolio-content h4 {
    font-weight: 700;
    margin-bottom: 15px;
    color: #081b33;
}

.portfolio-content p {
    color: #6b7280;
}

/* ===============================
CONTACT BOX
================================ */

.contact-box {

    background:
        linear-gradient(135deg,
            #081b33,
            #113a68);

    padding: 50px;

    border-radius: 30px;

    color: #fff;

    height: 100%;

    box-shadow:
        0 25px 70px rgba(8, 27, 51, .25);

    position: relative;

    overflow: hidden;
}

.contact-box::before {
    content: '';
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
}

.contact-box h4 {
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 25px;
}

/* ===============================
FOOTER
================================ */

.footer {

    background:
        linear-gradient(135deg,
            #061321,
            #081b33);

    color: #fff;

    padding: 90px 0 30px;

    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, .08);
}

.footer h4,
.footer h5 {

    font-weight: 700;
    margin-bottom: 25px;
}

.footer a {

    color: #cbd5e1;

    text-decoration: none;

    transition: .3s;
}

.footer a:hover {

    color: #4db8ff;

    padding-left: 8px;
}

.footer p {
    color: #94a3b8;
}

.footer hr {
    border-color: rgba(255, 255, 255, .08);
    margin: 40px 0;
}

.icon-box {

    width: 90px;
    height: 90px;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 38px;

    background:
        linear-gradient(135deg,
            #2a84ff,
            #0066ff);

    color: #fff;

    box-shadow:
        0 15px 40px rgba(42, 132, 255, .35);

    margin-bottom: 25px;
}

@media(max-width:768px) {

    .hero {
        text-align: center;
        padding: 150px 0 80px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .search-card {
        padding: 20px;
    }

    .navbar-brand {
        font-size: 18px;
        max-width: 200px;
    }

}