/* =========================
   GOOGLE FONT
========================= */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');


/* =========================
   RESET
========================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #f8fafc;
    color: #0f172a;
    line-height: 1.6;
}


/* =========================
   NAVBAR
========================= */

nav {
    width: 100%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 18px 8%;

    background: #0f172a;

    position: sticky;
    top: 0;

    z-index: 1000;

    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}


/* LOGO */

.logo {
    width: 50px;
    height: 50px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #2563eb;

    color: #ffffff;

    border-radius: 10px;

    font-size: 20px;
    font-weight: 800;

    box-shadow: 0 5px 15px rgba(37, 99, 235, 0.30);
}


/* NAVIGATION */

nav ul {
    display: flex;

    align-items: center;

    list-style: none;

    gap: 30px;
}

nav ul li a {
    text-decoration: none;

    color: #ffffff;

    font-weight: 500;

    font-size: 14px;

    transition: 0.3s;
}

nav ul li a:hover {
    color: #60a5fa;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 88vh;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 100px 8%;

    color: #ffffff;

    background:
        linear-gradient(
            rgba(15, 23, 42, 0.90),
            rgba(30, 64, 175, 0.88)
        ),
        url("https://user23301.na.imgto.link/public/20260816/chatgpt-image-aug-16-2026-01-58-09-pm.avif");

    background-size: cover;

    background-position: center;

    background-repeat: no-repeat;
}


.hero-content {
    max-width: 950px;

    animation: heroAnimation 1s ease;
}


/* HERO TITLE */

.hero-content h1,
.hero h1 {
    font-size: clamp(42px, 6vw, 70px);

    font-weight: 800;

    line-height: 1.15;

    margin-bottom: 20px;
}


/* HERO SUBTITLE */

.hero-content h2,
.hero h2 {
    font-size: clamp(18px, 2.5vw, 27px);

    color: #60a5fa;

    font-weight: 700;

    margin-bottom: 18px;

    letter-spacing: 1px;
}


/* HERO PARAGRAPH */

.hero-content p,
.hero p {
    max-width: 700px;

    margin: 0 auto 30px;

    color: #e2e8f0;

    font-size: 17px;
}


/* =========================
   HERO BUTTONS
========================= */

.hero-buttons {
    display: flex;

    justify-content: center;

    align-items: center;

    gap: 15px;

    flex-wrap: wrap;
}


.btn,
.btn-outline {
    display: inline-block;

    padding: 13px 27px;

    border-radius: 8px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    transition: 0.3s ease;
}


/* PRIMARY BUTTON */

.btn {
    background: #2563eb;

    color: #ffffff;

    border: 2px solid #2563eb;

    box-shadow:
        0 8px 20px rgba(37, 99, 235, 0.25);
}

.btn:hover {
    background: #1d4ed8;

    border-color: #1d4ed8;

    transform: translateY(-3px);
}


/* OUTLINE BUTTON */

.btn-outline {
    background: transparent;

    color: #ffffff;

    border: 2px solid #ffffff;
}

.btn-outline:hover {
    background: #ffffff;

    color: #1d4ed8;

    transform: translateY(-3px);
}


/* =========================
   COMMON SECTION
========================= */

section {
    padding: 100px 8%;
}


/* SECTION TITLE */

.section-title {
    text-align: center;

    margin-bottom: 60px;
}

.section-title h2 {
    display: inline-block;

    font-size: 42px;

    color: #0f172a;

    font-weight: 700;

    position: relative;
}


/* TITLE BLUE LINE */

.section-title h2::after {
    content: "";

    position: absolute;

    left: 50%;

    bottom: -12px;

    transform: translateX(-50%);

    width: 60px;

    height: 4px;

    background: #2563eb;

    border-radius: 10px;
}


/* =========================
   ABOUT / BUSINESS PROFILE
========================= */

.about {
    background: #ffffff;
}


.about-content {
    max-width: 1200px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 50px;

    align-items: center;
}


/* ABOUT HEADING */

.about-content h3 {
    font-size: 32px;

    color: #0f172a;

    margin-bottom: 15px;
}


/* CEO */

.about-content h3 span {
    display: block;

    font-size: 14px;

    color: #2563eb;

    font-weight: 600;

    margin-top: 5px;

    text-transform: uppercase;
}


/* ABOUT TEXT */

.about-content p {
    color: #475569;

    font-size: 15px;

    margin-bottom: 20px;
}


/* VISION / MISSION */

.about-content h4 {
    color: #2563eb;

    font-size: 18px;

    margin-top: 25px;

    margin-bottom: 7px;

    font-weight: 700;
}


/* ABOUT IMAGE */

.about-image {
    overflow: hidden;

    border-radius: 15px;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.15);
}


.about-image img,
.about-content img {
    width: 100%;

    height: 500px;

    object-fit: cover;

    display: block;

    transition: 0.4s ease;
}


.about-image:hover img {
    transform: scale(1.04);
}


/* =========================
   PORTFOLIO
========================= */

.portfolio {
    background: #f1f5f9;
}


.portfolio-grid {
    display: grid;

    grid-template-columns:
        repeat(auto-fit, minmax(280px, 1fr));

    gap: 25px;
}


.portfolio-grid img {
    width: 100%;

    height: 260px;

    object-fit: cover;

    border-radius: 15px;

    transition: 0.4s ease;

    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.12);
}


.portfolio-grid img:hover {
    transform: scale(1.04);

    box-shadow:
        0 15px 30px rgba(37, 99, 235, 0.20);
}


/* =========================
   FOOTER
========================= */

footer {
    background: #0f172a;

    color: #ffffff;

    text-align: center;

    padding: 50px 20px;
}


footer h3 {
    color: #2563eb;

    margin-bottom: 10px;

    font-size: 20px;
}


/* =========================
   WHATSAPP BUTTON
========================= */

.whatsapp-float {
    position: fixed;

    right: 20px;

    bottom: 20px;

    z-index: 99999;

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 13px 18px;

    background: #25D366;

    color: #ffffff;

    border-radius: 50px;

    text-decoration: none;

    font-size: 14px;

    font-weight: 600;

    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.20);

    transition: 0.3s ease;

    animation: whatsappPulse 2s infinite;
}


.whatsapp-float i {
    font-size: 23px;
}


.whatsapp-float:hover {
    background: #111827;

    color: #ffffff;

    transform: translateY(-4px);

    animation: none;
}


/* =========================
   WHATSAPP ANIMATION
========================= */

@keyframes whatsappPulse {

    0% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0.50);
    }

    70% {
        box-shadow:
            0 0 0 12px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(37, 211, 102, 0);
    }
}


/* =========================
   HERO ANIMATION
========================= */

@keyframes heroAnimation {

    from {
        opacity: 0;

        transform: translateY(25px);
    }

    to {
        opacity: 1;

        transform: translateY(0);
    }
}


/* =========================
   TABLET
========================= */

@media (max-width: 900px) {

    nav {
        padding: 18px 5%;
    }

    nav ul {
        gap: 18px;
    }

    section {
        padding: 80px 5%;
    }

    .about-content {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .about-image {
        max-width: 650px;

        margin: auto;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 768px) {

    nav {
        flex-direction: column;

        gap: 15px;

        padding: 15px 20px;
    }


    .logo {
        width: 46px;

        height: 46px;

        font-size: 18px;
    }


    nav ul {
        width: 100%;

        flex-wrap: wrap;

        justify-content: center;

        gap: 14px;
    }


    nav ul li a {
        font-size: 12px;
    }


    /* HERO */

    .hero {
        min-height: 80vh;

        padding: 70px 20px;
    }


    .hero-content h1,
    .hero h1 {
        font-size: 40px;
    }


    .hero-content h2,
    .hero h2 {
        font-size: 17px;

        line-height: 1.5;
    }


    .hero-content p,
    .hero p {
        font-size: 15px;
    }


    /* BUTTONS */

    .hero-buttons {
        flex-direction: column;

        width: 100%;
    }


    .btn,
    .btn-outline {
        width: 100%;

        max-width: 280px;

        text-align: center;
    }


    /* SECTIONS */

    section {
        padding: 65px 20px;
    }


    .section-title {
        margin-bottom: 45px;
    }


    .section-title h2 {
        font-size: 32px;
    }


    /* ABOUT */

    .about-content {
        grid-template-columns: 1fr;
    }


    .about-content h3 {
        font-size: 27px;
    }


    .about-content p {
        font-size: 14px;
    }


    .about-content img,
    .about-image img {
        height: 400px;
    }


    /* PORTFOLIO */

    .portfolio-grid {
        grid-template-columns: 1fr;
    }


    .portfolio-grid img {
        height: 280px;
    }


    /* WHATSAPP */

    .whatsapp-float {
        right: 15px;

        bottom: 15px;

        width: 56px;

        height: 56px;

        padding: 0;

        justify-content: center;

        border-radius: 50%;
    }


    .whatsapp-float i {
        font-size: 27px;
    }


    .whatsapp-float span {
        display: none;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 400px) {

    .hero-content h1,
    .hero h1 {
        font-size: 34px;
    }


    .hero-content h2,
    .hero h2 {
        font-size: 14px;
    }


    .section-title h2 {
        font-size: 28px;
    }


    .about-content img,
    .about-image img {
        height: 330px;
    }
}