@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

body {
    background: #fff;
    color: #222;
}

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

nav {
    position: fixed;
    top: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 8%;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, .08);
    z-index: 1000;
    transition: box-shadow 0.3s ease;
}

.logo {
    font-size: 28px;
    font-weight: 700;
}

.logo span {
    color: #ff7a00;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    color: #ff7a00;
}

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 120px 8% 60px;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-content h4 {
    color: #ff7a00;
    margin-bottom: 10px;
}

.hero-content h1 {
    font-size: 55px;
}

.hero-content h1 span {
    color: #ff7a00;
}

.hero-content h2 {
    margin: 15px 0;
    color: #666;
}

.hero-content p {
    color: #555;
    line-height: 1.8;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    width: 340px;
    height: 340px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid #ff7a00;
    box-shadow: 0 15px 35px rgba(255, 122, 0, .3);
    max-width: 100%;
}

/* ================= BUTTONS ================= */

.hero-buttons {
    margin-top: 30px;
}

.btn,
.btn2 {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    margin-right: 15px;
    transition: all 0.3s ease;
}

.btn {
    background: #ff7a00;
    color: #fff;
}

.btn:hover {
    background: #e56f00;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, .3);
}

.btn2 {
    border: 2px solid #ff7a00;
    color: #ff7a00;
}

.btn2:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 122, 0, .2);
}

/* ================= BADGES ================= */

.badges {
    margin-top: 25px;
}

.badges span {
    display: inline-block;
    background: #fff3e6;
    color: #ff7a00;
    padding: 10px 18px;
    border-radius: 25px;
    margin-right: 10px;
    margin-top: 10px;
    font-weight: 600;
}

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

section {
    padding: 90px 8%;
}

.title {
    text-align: center;
    font-size: 36px;
    color: #ff7a00;
    margin-bottom: 40px;
}

.about {
    max-width: 900px;
    margin: auto;
    text-align: center;
    line-height: 1.9;
    color: #555;
}

/* ================= TOOL ICONS ================= */

.tool-icons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 35px;
    margin-top: 30px;
}

.tool-icons img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tool-icons img:hover {
    transform: scale(1.15) rotate(2deg);
}

/* ================= ICON GRID (Languages) ================= */

.icon-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    margin-top: 30px;
}

.icon-grid img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.icon-grid img:hover {
    transform: scale(1.15);
}

/* ================= CONTACT ================= */

.contact-text {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
    font-size: 18px;
}

.socials {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.socials a {
    width: 80px;
    height: 80px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #ff7a00;
    font-size: 38px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .12);
    transition: all 0.3s ease;
}

.socials a:hover {
    background: #ff7a00;
    color: #fff;
    transform: translateY(-8px) scale(1.08);
    box-shadow: 0 12px 30px rgba(255, 122, 0, .3);
}

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

footer {
    text-align: center;
    padding: 30px;
    margin-top: 60px;
    background: #fafafa;
    color: #666;
    border-top: 1px solid #ddd;
}

/* ================= ACTIVE MENU ================= */

nav ul li a.active {
    color: #ff7a00;
    font-weight: 700;
}

/* ================= SCROLL ANIMATION ================= */

.hidden {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.show {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 900px) {

    nav {
        flex-direction: column;
        padding: 20px;
    }

    nav ul {
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }

    nav ul li {
        margin: 10px;
    }

    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 150px;
    }

    .hero-image img {
        width: 260px;
        height: 260px;
    }

    .hero-content h1 {
        font-size: 42px;
    }

    .hero-buttons {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }

    .btn,
    .btn2 {
        margin-right: 0;
    }

}

@media (max-width: 600px) {

    .hero-content h1 {
        font-size: 32px;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
    }

    .title {
        font-size: 28px;
    }

    .socials a {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .tool-icons {
        gap: 20px;
    }

    .tool-icons img {
        width: 45px;
        height: 45px;
    }

    .icon-grid img {
        width: 40px;
        height: 40px;
    }

    section {
        padding: 60px 5%;
    }

    .badges span {
        font-size: 14px;
        padding: 8px 14px;
    }

}