* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', sans-serif;
}

body {
    background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
    color: #fff;
}

/* ================= HEADER ================= */
header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 90px;
    padding: 0 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    z-index: 1000;
}

/* FIXED LOGO SIZE */
.logo img {
    height: 200px;   /* Was 250px — fixed */
    width: auto;
}

/* ================= NAVIGATION ================= */
nav a {
    color: #000;  /* Changed because header background is white */
    text-decoration: none;
    margin-left: 25px;
    font-size: 15px;
    transition: 0.3s;
}

nav a:hover {
    color: #00bcd4;
}

/* ================= HEADER ICONS ================= */
.header-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-icons .icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    text-decoration: none;
    transition: 0.3s ease;
}

.header-icons .phone {
    background: #0dcaf0;
}

.header-icons .whatsapp {
    background: #25D366;
}

.header-icons .icon:hover {
    transform: scale(1.1);
}

/* ================= HERO ================= */
.hero {
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 140px 20px 60px; /* Extra top for fixed header */
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ddd;
}

.btn {
    padding: 14px 30px;
    background: #00e5ff;
    color: #000;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #fff;
    transform: scale(1.05);
}

/* ================= CONTACT ================= */
.contact-section {
    padding: 80px 20px;
    text-align: center;
}

.contact-section h2 {
    font-size: 36px;
    margin-bottom: 10px;
}

.subtitle {
    color: #ccc;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: auto;
}

.contact-box {
    background: rgba(255, 255, 255, 0.08);
    padding: 35px 25px;
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: 0.4s;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-box i {
    font-size: 28px;
    margin-bottom: 15px;
    color: #00e5ff;
}

.contact-box h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-box p {
    font-size: 14px;
    color: #ddd;
}

.contact-box:hover {
    transform: translateY(-10px);
    background: linear-gradient(135deg, #00e5ff, #00bcd4);
    color: #000;
}

.contact-box:hover i,
.contact-box:hover p {
    color: #000;
}

/* ================= FOOTER ================= */
footer {
    text-align: center;
    padding: 20px;
    background: rgba(0, 0, 0, 0.6);
    font-size: 14px;
}

/* ================= MOBILE VIEW ================= */
@media (max-width: 768px) {

    header {
        height: 90px;              /* Keep fixed height */
        padding: 0 20px;
        flex-direction: row;       /* Keep same row layout */
        justify-content: space-between;
        align-items: center;
    }

    .logo img {
        height: 130px;   /* Bigger logo but still inside header */
    }

    nav {
        display: none;   /* Optional: hide menu if no space */
    }

    .header-icons {
        gap: 8px;
    }

    .header-icons .icon {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }


    .hero {
        padding: 160px 15px 60px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 26px;
        line-height: 1.3;
    }

    .hero-content p {
        font-size: 14px;
    }

    .btn {
        padding: 10px 22px;
        font-size: 14px;
    }

    .contact-section {
        padding: 50px 15px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-box {
        padding: 25px 20px;
    }

    footer {
        font-size: 12px;
        padding: 15px;
    }
}
