/* ===================== GLOBAL RESET ========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', sans-serif;
    line-height: 1.6;
    background: #0f172a;
    color: white;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* ======================= HEADER ========================== */
header {
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    padding: 18px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    border-bottom: #e8491d 3px solid;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Branding */
#branding {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo {
    height: 50px;
    width: auto;
    border-radius: 8px;
    transition: 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

#branding h1 {
    font-size: 24px;
    font-weight: 700;
}

#branding h1 span {
    color: #38bdf8;
}

/* Navigation */
nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: 0.3s;
}

nav a::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #38bdf8;
    bottom: -5px;
    left: 0;
    transition: 0.3s;
}

nav a:hover::after {
    width: 100%;
}

nav a:hover {
    color: #38bdf8;
}

/* Hamburger */
.hamburger {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

/* ===================== HERO SECTION (IMAGE BACKGROUND) ======================== */
.hero {
    background: linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.75)),
                url("images/showcase.jpg") center/cover no-repeat;
    padding: 160px 0;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: 18px;
    max-width: 700px;
    margin: auto;
}

.btn-primary {
    background: #38bdf8;
    padding: 14px 28px;
    color: black;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 30px;
    transition: 0.3s ease;
}

.btn-primary:hover {
    background: white;
    transform: translateY(-3px);
}

/* ====================== SECTIONS =========================== */
.section {
    padding: 90px 0;
    text-align: center;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.light-bg {
    background: #1e293b;
}

/* ======================= SERVICES GRID ============================ */
.services-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.card {
    background: #111827;
    padding: 35px;
    border-radius: 15px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.card:hover {
    transform: translateY(-12px);
    background: #1e3a8a;
}

.card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #38bdf8;
}

/*===========REQUEST QUOTE =======*/

/* SECTION BACKGROUND */
.quotation-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #eaffea, #ffffff);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* CONTAINER */
.quotation-container {
    width: 100%;
    max-width: 600px;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

/* HEADINGS */
.quotation-container h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: #222;
}

.quotation-container p {
    font-size: 14px;
    color: #666;
    margin-bottom: 30px;
}

/* FORM */
.quote-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* INPUT GROUP (FLOATING LABEL STYLE) */
.input-group {
    position: relative;
}

/* INPUT & TEXTAREA */
.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
    background: transparent;
}

/* FOCUS EFFECT */
.input-group input:focus,
.input-group textarea:focus {
    border-color: #00c853;
}

/* LABEL */
.input-group label {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    padding: 0 5px;
    font-size: 13px;
    color: #777;
    pointer-events: none;
    transition: 0.3s;
}

/* FLOAT LABEL WHEN TYPING */
.input-group input:focus + label,
.input-group input:valid + label,
.input-group textarea:focus + label,
.input-group textarea:valid + label {
    top: -8px;
    font-size: 11px;
    color: #00c853;
}

/* BUTTON */
.quote-btn {
    background: #007bff;
    color: #fff;
    padding: 14px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    cursor: pointer;
    transition: 0.3s;
}

/* BUTTON HOVER */
.quote-btn:hover {
    background: #0056b3;
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
    .quotation-container {
        padding: 25px;
    }

    .quotation-container h2 {
        font-size: 22px;
    }
}
/* ====================== CONTACT ============================== */
.contact-links {
    margin-top: 25px;
}

.contact-links a {
    font-size: 26px;
    margin: 0 15px;
    color: white;
    transition: 0.3s ease;
}

.contact-links a:hover {
    color: #38bdf8;
    transform: scale(1.2);
}

/* ====================== FOOTER =========================== */
footer {
    background: wheat;
    text-align: center;
    padding: 25px;
    font-size: 14px;
    color: #111827;
    border-top: #e8491d 3px solid;
}

/* =================== RESPONSIVE DESIGN ========================= */
@media(max-width: 768px) {

    nav {
        position: absolute;
        top: 80px;
        right: 20px;
        background: #111827;
        width: 220px;
        display: none;
        flex-direction: column;
        padding: 25px;
        border-radius: 12px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }

    nav ul {
        flex-direction: column;
        gap: 18px;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: block;
    }

    .hero {
        padding: 120px 0;
    }

    .hero h2 {
        font-size: 30px;
    }

    .newsletter input {
        width: 100%;
        margin-bottom: 15px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}


/* ==================== ABOUT PAGE HERO ============================ */
#about {
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.85)),
                url("images/about-bg.jpg") center/cover no-repeat;
    padding: 120px 0;
    text-align: center;
}

#about h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #38bdf8;
}

#about p {
    max-width: 800px;
    margin: 15px auto;
    font-size: 18px;
    line-height: 1.8;
    color: #e2e8f0;
}

/* ================= MISSION SECTION ======================== */
#mission {
    background: #1e293b;
    padding: 100px 0;
    text-align: center;
}

#mission h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #38bdf8;
}

#mission p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
}

/* ========================== VISION SECTION ========================= */
#vision {
    background: #0f172a;
    padding: 100px 0;
    text-align: center;
}

#vision h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #38bdf8;
}

#vision p {
    max-width: 750px;
    margin: auto;
    font-size: 18px;
    line-height: 1.8;
    color: #cbd5e1;
}

/* ================== SECTION DIVIDER EFFECT =========================== */
.section {
    position: relative;
}

.section::after {
    content: "";
    width: 60px;
    height: 4px;
    background: #38bdf8;
    display: block;
    margin: 30px auto 0;
    border-radius: 10px;
}

/* ================== COMING SOON CARD =========================== */
.coming-soon-card {
    position: relative;
    opacity: 0.85;
    border: 1px solid rgba(56, 189, 248, 0.3);
}

.coming-soon-card:hover {
    transform: translateY(-10px);
    background: #1e3a8a;
}

/* Coming Badge */
.coming-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #38bdf8;
    color: black;
    font-size: 12px;
    font-weight: bold;
    padding: 6px 12px;
    border-radius: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* ======================== OUR VALUES SECTION ==================== */
#values {
    padding: 100px 0;
    text-align: center;
}

#values h2 {
    font-size: 34px;
    margin-bottom: 50px;
    color: #38bdf8;
}

/* Grid Layout */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Value Cards */
.value-card {
    background: #111827;
    padding: 40px 30px;
    border-radius: 15px;
    transition: 0.4s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

.value-card i {
    font-size: 40px;
    margin-bottom: 20px;
    color: #38bdf8;
}

.value-card h3 {
    margin-bottom: 15px;
    font-size: 22px;
}

.value-card p {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.7;
}

.value-card:hover {
    transform: translateY(-12px);
    background: #1e3a8a;
}

/* Responsive */
@media(max-width: 768px) {
    #values {
        padding: 70px 0;
    }
}

