* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
}

body {
    background: #fff;
    color: #222;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: #0d1117;
    color: #fff;
}

.navbar .logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar .logo img {
    height: 60px;  
    width: auto;
}

.navbar nav a {
    margin-left: 25px;
    color: #ddd;
    text-decoration: none;
    font-weight: 300;
}

.navbar nav a:hover {
    color: #fff;
}

.hero {
    position: relative;
}

.hero-img {
    width: 100%;
    height: 90vh;
    object-fit: cover;
}

.hero-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    color: #fff;
}

.hero-text h2 {
    font-size: 38px;
    font-weight: 600;
}

.about {
    padding: 80px 60px;
    background: #f2f2f2;
}

.about h2 {
    margin-bottom: 20px;
    font-size: 26px;
}

.about-content {
    display: flex;
    gap: 40px;
    font-size: 15px;
    line-height: 1.7;
}

.mid-img img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    display: block;
}

.offer {
    text-align: center;
    padding: 80px 60px;
    background: #f2f2f2;
}

.offer h3 {
    color: #3c4a9e;
    margin-bottom: 20px;
}

.offer .big {
    font-size: 22px;
    max-width: 650px;
    margin: 0 auto 25px;
}

.btn {
    padding: 10px 26px;
    background: #1f2d8b;
    color: #fff;
    border: none;
    border-radius: 25px;
    cursor: pointer;
}

.btn:hover {
    background: #3146d4;
}

.testimonial {
    padding: 80px 60px;
    text-align: center;
}

.testimonial .sub {
    color: #777;
    margin-bottom: 30px;
}

.testimonial-box {
    background: #f2f2f2;
    padding: 40px;
    max-width: 700px;
    margin: 0 auto 25px;
    border-radius: 6px;
}

.testimonial-box span {
    display: block;
    margin-top: 15px;
    font-weight: 500;
}

.footer {
    background: #0d1117;
    color: #cfd3d6;
    padding: 60px 80px 40px;
    font-size: 14px;
}

.footer-top {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 40px;
}

.footer-brand img {
    height: 45px;
    width: auto;
}

.footer-brand span {
    font-size: 22px;
    letter-spacing: 1px;
}

.footer-tagline {
    margin-bottom: 50px;
    font-size: 15px;
    opacity: 0.9;
}

.footer-columns {
    display: flex;
    justify-content: flex-start;
    gap: 120px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.footer-columns a {
    color: #cfd3d6;
    text-decoration: none;
}

.footer-columns a:hover {
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid #24292f;
    padding-top: 25px;
    font-size: 13px;
    opacity: 0.7;
}

@media (max-width: 1024px) {

    .navbar {
        padding: 20px 40px;
    }

    .hero-img {
        height: 75vh;
    }

    .hero-text h2 {
        font-size: 30px;
    }

    .about {
        padding: 70px 40px;
    }

    .about-content {
        flex-direction: column;
        gap: 30px;
    }

    .mid-img img {
        height: 420px;
    }

    .offer {
        padding: 70px 40px;
    }

    .footer {
        padding: 50px 40px 35px;
    }

    .footer-columns {
        gap: 60px;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    display: block;
    border-radius: 3px;
    transition: 0.3s;
}

.nav-links {
    display: flex;
    gap: 25px;
}

@media (max-width: 768px) {

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: absolute;
        top: 80px;
        right: 0;
        width: 100%;
        background: #0d1117;
        flex-direction: column;
        padding: 20px 0;
        gap: 15px;
        text-align: center;

        opacity: 0;
        pointer-events: none;
        transform: translateY(-20px);
        transition: 0.3s;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }
}

.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}
