* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #07090d;
    color: #ffffff;
    line-height: 1.6;
}


/* ================= NAVBAR ================= */

.navbar {
    height: 70px;
    padding: 0 7%;

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

    background: rgba(7, 9, 13, 0.96);

    border-bottom: 1px solid #202630;

    position: sticky;
    top: 0;
    z-index: 1000;
}


/* ================= NAVBAR LOGO ================= */

.brand {
    display: flex;
    align-items: center;
    gap: 10px;

    text-decoration: none;
}

.brand img {
    width: 44px;
    height: 44px;

    object-fit: cover;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #2f8cff;

    padding: 2px;

    box-shadow:
        0 0 0 3px rgba(47, 140, 255, 0.08),
        0 4px 15px rgba(47, 140, 255, 0.18);
}

.brand span {
    color: #ffffff;

    font-size: 21px;
    font-weight: 700;
}


/* ================= NAVIGATION ================= */

.navbar nav {
    display: flex;
    gap: 28px;
}

.navbar nav a {
    color: #c7ccd5;

    text-decoration: none;

    font-size: 15px;

    transition: 0.25s;
}

.navbar nav a:hover {
    color: #3d9bff;
}


/* ================= HERO ================= */

.hero {
    min-height: 620px;

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

    text-align: center;

    padding: 70px 20px;

    background:
        radial-gradient(
            circle at 20% 15%,
            #172b4d 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 80% 15%,
            #351721 0%,
            transparent 30%
        ),
        #07090d;
}

.hero-content {
    max-width: 800px;
}


/* ================= BADGE ================= */

.badge {
    display: inline-block;

    padding: 8px 16px;

    border-radius: 50px;

    background: #111b2c;

    border: 1px solid #244d7d;

    color: #65b2ff;

    font-size: 14px;

    margin-bottom: 22px;
}


/* ================= HERO TITLE ================= */

.hero h1 {
    font-size: clamp(42px, 7vw, 72px);

    line-height: 1.05;

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    background:
        linear-gradient(
            90deg,
            #ff334d,
            #ffffff 48%,
            #3d9bff
        );

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    background-clip: text;
}


/* ================= HERO TEXT ================= */

.hero p {
    max-width: 650px;

    margin: auto;

    color: #aab2c0;

    font-size: 18px;
}


/* ================= HERO BUTTON ================= */

.hero-btn {
    display: inline-block;

    margin-top: 32px;

    padding: 14px 26px;

    background: #ff334d;

    color: white;

    text-decoration: none;

    border-radius: 12px;

    font-weight: bold;

    transition: 0.25s;

    box-shadow:
        0 8px 25px rgba(255, 51, 77, 0.18);
}

.hero-btn:hover {
    transform: translateY(-3px);

    background: #ff465e;

    box-shadow:
        0 12px 32px rgba(255, 51, 77, 0.28);
}


/* ================= SECTIONS ================= */

.tools-section,
.features {
    padding: 90px 7%;
}


/* ================= SECTION HEADING ================= */

.section-heading {
    text-align: center;

    margin-bottom: 45px;
}

.section-heading span {
    color: #4da3ff;

    font-size: 13px;

    font-weight: bold;

    letter-spacing: 2px;
}

.section-heading h2 {
    font-size: 38px;

    margin: 8px 0;
}

.section-heading p {
    color: #969eac;
}


/* ================= TOOLS GRID ================= */

.tools-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* ================= TOOL CARD ================= */

.tool-card {
    padding: 28px;

    background: #10141b;

    border: 1px solid #242b36;

    border-radius: 18px;

    transition: 0.25s;
}

.tool-card:hover {
    transform: translateY(-6px);

    border-color: #3f7fc1;

    box-shadow:
        0 15px 35px rgba(0, 0, 0, 0.25);
}


/* ================= TOOL ICON ================= */

.tool-icon {
    width: 55px;
    height: 55px;

    display: flex;

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

    background: #151f30;

    border: 1px solid #29496d;

    border-radius: 14px;

    font-size: 27px;

    margin-bottom: 20px;
}


/* ================= TOOL TITLE ================= */

.tool-card h3 {
    font-size: 20px;

    margin-bottom: 10px;
}


/* ================= TOOL DESCRIPTION ================= */

.tool-card p {
    color: #969eac;

    font-size: 14px;

    min-height: 70px;
}


/* ================= TOOL BUTTON ================= */

.tool-card button {
    margin-top: 18px;

    width: 100%;

    padding: 11px;

    border: 0;

    border-radius: 9px;

    background: #246fe8;

    color: white;

    font-weight: bold;

    cursor: pointer;

    transition: 0.2s;
}

.tool-card button:hover {
    background: #3282ff;

    transform: translateY(-1px);
}


/* ================= FEATURES ================= */

.features {
    background: #0c1017;
}

.feature-grid {
    max-width: 1000px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 20px;
}


/* ================= FEATURE ================= */

.feature {
    text-align: center;

    padding: 25px;

    border-radius: 15px;

    transition: 0.25s;
}

.feature:hover {
    background: rgba(255, 255, 255, 0.025);
}


/* Feature Icon */

.feature > div {
    font-size: 32px;

    margin-bottom: 12px;
}


/* Feature Title */

.feature h3 {
    margin-bottom: 7px;
}


/* Feature Description */

.feature p {
    color: #9299a7;

    font-size: 14px;
}


/* ================= FOOTER ================= */

footer {
    text-align: center;

    padding: 45px 20px;

    background: #05070a;

    color: #858d9b;
}


/* ================= FOOTER LOGO ================= */

.footer-brand {
    display: inline-flex;

    align-items: center;

    gap: 9px;

    text-decoration: none;

    margin-bottom: 8px;
}

.footer-brand img {
    width: 40px;
    height: 40px;

    object-fit: cover;

    border-radius: 50%;

    background: #ffffff;

    border: 2px solid #2f8cff;

    padding: 2px;

    box-shadow:
        0 0 0 3px rgba(47, 140, 255, 0.07);
}

.footer-brand span {
    color: #ffffff;

    font-size: 20px;

    font-weight: 700;
}


/* ================= COPYRIGHT ================= */

.copyright {
    margin-top: 20px;

    font-size: 13px;
}


/* ================= TABLET ================= */

@media (max-width: 850px) {

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .navbar {
        padding: 0 20px;
    }


    /* Mobile Navbar Logo */

    .brand img {
        width: 38px;
        height: 38px;
    }

    .brand span {
        font-size: 18px;
    }


    /* Mobile Navigation */

    .navbar nav {
        gap: 14px;
    }

    .navbar nav a {
        font-size: 13px;
    }


    /* Mobile Hero */

    .hero {
        min-height: 550px;
    }

    .hero p {
        font-size: 16px;
    }


    /* Mobile Grid */

    .tools-grid,
    .feature-grid {
        grid-template-columns: 1fr;
    }


    /* Mobile Sections */

    .tools-section,
    .features {
        padding: 65px 20px;
    }


    /* Mobile Heading */

    .section-heading h2 {
        font-size: 30px;
    }

}


/* ================= VERY SMALL MOBILE ================= */

@media (max-width: 380px) {

    .navbar nav {
        gap: 9px;
    }

    .navbar nav a {
        font-size: 12px;
    }

    .brand span {
        font-size: 17px;
    }

    .hero h1 {
        font-size: 40px;
    }

}
/* ================= ABOUT PHOTO ================= */

.about-photo {
    width: 100%;
    max-width: 1200px;

    display: block;

    margin: 40px auto;

    border-radius: 22px;

    border: 1px solid #263548;

    background: #0c1119;

    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.4),
        0 0 35px rgba(47, 140, 255, 0.08);

    object-fit: cover;

    transition: 0.3s ease;
}

.about-photo:hover {
    transform: translateY(-4px);

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 45px rgba(47, 140, 255, 0.14);
}


/* ================= MOBILE ================= */

@media (max-width: 600px) {

    .about-photo {
        width: 100%;

        margin: 25px auto;

        border-radius: 14px;
    }

}
.about-section {
    padding: 90px 20px;
    max-width: 1200px;
    margin: auto;
}

.about-section .section-heading {
    text-align: center;
    margin-bottom: 35px;
}

.about-section .section-heading span {
    color: #2f8cff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
}

.about-section .section-heading h2 {
    margin: 10px 0;
    font-size: 38px;
    color: #ffffff;
}

.about-section .section-heading p {
    max-width: 650px;
    margin: auto;
    color: #8f9aaa;
    line-height: 1.7;
}

.about-photo {
    width: 100%;
    display: block;
    margin: 40px auto 0;
    border-radius: 22px;
    border: 1px solid #263548;
    box-shadow: 0 20px 50px rgba(0,0,0,.4);
}

@media (max-width: 600px) {

    .about-section {
        padding: 60px 15px;
    }

    .about-section .section-heading h2 {
        font-size: 28px;
    }

    .about-photo {
        margin-top: 25px;
        border-radius: 14px;
    }

}