:root {
    --bg-dark: #0b0e14;
    --bg-card: #161b22;
    --teal: #008080;
    --gold: #d4af37;
    --white: #ffffff;
    --gray: #9ca3af;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

img { max-width: 100%; display: block; border-radius: 8px; }

.tagline {
    display: block;
    font-size: 0.9rem;
    color: var(--gray);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-left: 30px;
}

.tagline::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 20px;
    height: 1px;
    background: var(--gray);
}

h1 { font-size: 3.5rem; line-height: 1.2; margin-bottom: 20px; }
h2 { font-size: 2.8rem; margin-bottom: 20px; }
h3 { font-size: 2rem; margin-bottom: 20px; }

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    cursor: pointer;
    border: none;
}

.btn-teal { background: var(--teal); color: white; }
.btn-teal:hover { opacity: 0.9; }
.btn-outline { border: 1px solid white; color: white; }
.btn-outline:hover { background: white; color: black; }

/* NAVIGATION */
header {
    background: rgba(11, 14, 20, 0.95);
    border-bottom: 1px solid #333;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
}

.logo { display: flex; align-items: center; font-size: 1.5rem; font-weight: 700; }
.logo img { height: 40px; margin-right: 15px; }
.logo span { color: var(--gold); }

.nav-links { display: flex; list-style: none; }
.nav-links li { margin-left: 30px; }
.nav-links a { text-decoration: none; color: white; font-size: 0.9rem; font-weight: 600; transition: 0.3s; }
.nav-links a:hover { color: var(--teal); }

/* HERO SECTION */
.home { padding: 100px 0; background: radial-gradient(circle at top right, #1a2333, var(--bg-dark)); }
.hero-wrapper { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }
.hero-content { flex: 1.2; min-width: 320px; }
.hero-image { flex: 1; min-width: 320px; }

/* SERVICES SECTION */
.services { padding: 100px 0; border-top: 1px solid #222; }
.section-intro { text-align: center; max-width: 800px; margin: 0 auto 80px; }
.services-main { display: flex; gap: 80px; flex-wrap: wrap; }

.services-left { 
    flex: 1; 
    min-width: 350px; 
    display: flex; 
    flex-direction: column;
    gap: 20px;
}

.services-left img {
    margin-top: 10px;
    width: 100%;
    height: auto;
    object-fit: cover;
}

.services-list { flex: 1; min-width: 350px; display: flex; flex-direction: column; gap: 40px; }

.service-item { 
    display: flex; 
    gap: 25px; 
    border-bottom: 1px solid #222; 
    padding-bottom: 30px; 
    align-items: center;
}
.service-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
}
.service-item .number {
    font-size: 0.8rem;
    color: var(--teal);
    margin-bottom: 5px;
    font-weight: 700;
}
.service-item h4 { margin-bottom: 5px; font-size: 1.2rem; }
.service-item p { color: var(--gray); font-size: 0.9rem; line-height: 1.4; }

/* ABOUT SECTION */
.about { padding: 100px 0; background: #07090d; }
.about-hero { display: flex; align-items: center; gap: 60px; margin-bottom: 100px; flex-wrap: wrap; }
.about-content, .about-image { flex: 1; min-width: 350px; }

.journey-section { max-width: 900px; margin: 0 auto; }
.partnership-box { 
    background: #1a2333; 
    padding: 60px; 
    border-radius: 12px; 
    margin-top: 50px;
    border-left: 5px solid var(--teal);
}
.partnership-box h4 { margin-bottom: 20px; font-size: 1.5rem; }
.box-btns { display: flex; gap: 20px; margin-top: 30px; }

/* CONTACT SECTION */
.contact-banner { background: #1a2333; padding: 60px 0; text-align: center; font-size: 1.2rem; margin-bottom: 80px; }
.contact-wrapper { display: flex; gap: 80px; flex-wrap: wrap; margin-bottom: 100px; }
.contact-info, .contact-form { flex: 1; min-width: 350px; }

.info-list { margin-top: 40px; }
.info-item { margin-bottom: 20px; font-size: 1.1rem; display: flex; align-items: center; gap: 15px; }
.info-item i { color: var(--teal); }

.contact-form form { display: flex; flex-direction: column; gap: 25px; }
.form-group label { display: block; margin-bottom: 8px; font-size: 0.9rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--bg-card);
    border: 1px solid #333;
    color: white;
    border-radius: 4px;
}

/* FOOTER */
footer { background: #050608; padding: 100px 0 40px; text-align: center; }
.footer-logo img { height: 60px; margin: 0 auto 50px; }
.footer-nav { margin-bottom: 50px; }
.footer-nav a { color: white; text-decoration: none; margin: 0 15px; }
.footer-bottom { border-top: 1px solid #222; padding-top: 40px; color: var(--gray); font-size: 0.9rem; }
.socials { margin-top: 25px; display: flex; justify-content: center; gap: 25px; font-size: 1.5rem; }
.socials a { color: var(--gray); transition: 0.3s; }
.socials a:hover { color: var(--teal); }

/* MOBILE RESPONSIVE FIX */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hamburger { 
        display: flex; 
        flex-direction: column; 
        gap: 5px; 
        cursor: pointer; 
        position: relative;
        z-index: 3000; /* Stays above the menu */
    }

    .hamburger span { 
        width: 25px; 
        height: 3px; 
        background: white; 
        transition: 0.3s; 
    }
    
    /* Hamburger to X Animation */
    .hamburger.toggle span:nth-child(1) { transform: rotate(-45deg) translate(-5px, 6px); }
    .hamburger.toggle span:nth-child(2) { opacity: 0; }
    .hamburger.toggle span:nth-child(3) { transform: rotate(45deg) translate(-5px, -6px); }

    .nav-links {
        position: fixed; 
        top: 0; 
        right: -100%; 
        background: var(--bg-dark);
        width: 100%; 
        height: 100vh;
        flex-direction: column; 
        align-items: center; 
        justify-content: center;
        transition: 0.5s ease-in-out;
        z-index: 2000; 
    }

    .nav-links.active { right: 0; }
    .nav-links li { margin: 25px 0; }
    .partnership-box { padding: 30px; }
    .box-btns { flex-direction: column; }
    .service-item { flex-direction: column; text-align: center; }
}