* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background: #fff;
    color: #111;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    border-bottom: 1px solid #eee;
    z-index: 999;
}

.nav {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
}

.nav img {
    height: 45px;
}

nav {
    display: flex;
    gap: 25px;
}

nav a {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

nav a:hover {
    color: #0057b8;
}

/* HERO */
.hero {
    height: 100vh;
    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    position: relative;

    /* FORCE BACKGROUND IMAGE */
    background-image: url("../images/hero.jpg") !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
    
}
.hero h1 {
    font-size: 52px;
    font-weight: 700;
    color: #ffffff;
}

.hero p {
    margin-top: 15px;
    color: #ffffff;
}

/* BUTTONS */
.hero-actions {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
}

.primary {
    background: #0057b8;
    color: #ffffff;
}

.outline {
    border: 1px solid #0057b8;
    color: #0057b8;
}

/* STATS */
.stats {
    padding: 60px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stats-grid {
    width: 90%;
    max-width: 1200px;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}

.stat h2 {
    color: #0057b8;
}

/* ABOUT */
.about {
    padding: 100px 0;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
    align-items: center;
}

.tag {
    font-size: 12px;
    letter-spacing: 2px;
    color: #0057b8;
    font-weight: 600;
}

.about-text h2 {
    font-size: 42px;
    margin: 15px 0;
}

.about-text p {
    color: #555;
    margin-bottom: 15px;
    line-height: 1.6;
}

/* QUOTE */
.quote-box {
    margin-top: 25px;
    padding: 20px;
    border-left: 4px solid #0057b8;
    background: #f7f9fc;
}

.quote {
    font-style: italic;
    color: #222;
}

.author {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    color: #666;
}

/* IMAGE */
.about-image img {
    width: 100%;
    border-radius: 12px;
}

/* SECTORS */
.section {
    padding: 90px 0;
}

.alt {
    background: #f7f9fc;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.card {
    padding: 25px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
    background: #fff;
}

/* SLIDER */
.slider {
    display: flex;
    overflow-x: auto;
    gap: 20px;
}

.slide {
    min-width: 220px;
    padding: 20px;
    border: 1px solid #eee;
    border-radius: 10px;
    text-align: center;
}

/* FORM */
.form {
    max-width: 450px;
    margin: auto;
    display: flex;
    flex-direction: column;
}

.form input,
.form textarea {
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ddd;
}

.form button {
    background: #0057b8;
    color: #fff;
    padding: 12px;
    border: none;
}

/* FOOTER */
.footer {
    text-align: center;
    padding: 25px;
    border-top: 1px solid #eee;
}

/* RESPONSIVE */
@media(max-width:768px){

    .hero h1 {
        font-size: 28px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;

    /* GLASS EFFECT */
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);

    border-bottom: 1px solid rgba(0,0,0,0.08);

    transition: all 0.3s ease;
}

/* OPTIONAL: stronger effect when scrolling */
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* =========================
   GLOBAL MOBILE FIXES
========================= */
@media (max-width: 1024px) {

    .hero h1 {
        font-size: 42px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================
   MOBILE (TABLETS & SMALL DEVICES)
========================= */
@media (max-width: 768px) {

    /* HERO */
    .hero {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 28px;
        line-height: 1.3;
    }

    .hero p {
        font-size: 14px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 10px;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    /* NAV */
    nav {
        display: none;
    }

    /* ABOUT */
    .about {
        padding: 60px 0;
    }

    .about-text h2 {
        font-size: 26px;
    }

    .about-text p {
        font-size: 14px;
    }

    /* STATS */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* SECTORS */
    .grid {
        grid-template-columns: 1fr;
    }

    /* SLIDER */
    .slider {
        gap: 10px;
    }

    .slide {
        min-width: 160px;
        padding: 15px;
    }

    /* SECTION SPACING */
    .section {
        padding: 60px 0;
    }
}

/* =========================
   SMALL MOBILE (iPhone size)
========================= */
@media (max-width: 480px) {

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 13px;
    }

    .btn {
        padding: 10px 16px;
        font-size: 14px;
    }

    .section-title {
        font-size: 24px;
    }
}

/* =========================
   GLOBAL ANIMATION BASE
========================= */

.fade-slide {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-slide.show {
    opacity: 1;
    transform: translateY(0);
}