/* RESET */
body {
    margin: 0;
    padding: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* -----------------------------------
   NAVIGATION BAR
----------------------------------- */
.nav-bar {
    width: 100%;
    background: linear-gradient(to right, #0D0D29, #010103);
    padding: 10px 20px;
    position: fixed;
    top: 0;
    left: 0;
    min-height: 90px; /* keeps design */
    height: auto; 
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.nav-content {
    width: 100%;
    max-width: 1400px; /* FIX: prevents navbar from becoming too wide on big screens */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

/* RIGHT SIDE MENU */
.menu {
    display: flex;
    gap: 45px;  /* Enough spacing */
}

/* FIXED COLOR + SPACING */
.nav-bar .menu a {
    color: #F2F2F2 !important;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

/* Hover */
.nav-bar .menu a:hover {
    color: #ffffff !important;
}



/* -----------------------------------
   SERVICE IMAGE SECTION
----------------------------------- */
.service-image {
    margin-top: 0px; /* space for fixed navbar */
    width: 100%;
    height: 85vh; /* FIX: better fit for laptop */
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* TEXT OVER IMAGE */
.service-text {
    position: absolute;
    top: 40%;
    left: 7%;
    transform: translateY(-50%);
    color: #F2F2F2;
}

.service-text h1 {
    font-size: 58px;
    font-weight: 700;
}

.service-text p {
    font-size: 24px;
    margin-top: 10px;
}


/* -------------------------
   RESPONSIVE
-------------------------- */

/* Tablet */
@media (max-width: 1280px) {
    .service-text h1 {
        font-size: 42px;
    }

    .nav-content {
        max-width: 1100px;
    }

    .service-image {
        height: 70vh;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .nav-bar {
        padding: 15px 20px;
        height: 75px;
    }

    .menu a {
        font-size: 16px;
    }

    /* Remove space above image */
    .service-image {
        margin: 0;
        padding: 0;
        height: 100vh;
    }

    .service-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        margin: 0;
    padding: 0;
    
    }

    .service-text h1 {
        font-size: 26px;
    }

    .service-text p {
        font-size: 14px;
    }
}
/* OUR SERVICES SECTION */
.our-services-section {
    background: #0D0D29;
    padding: 120px 20px;
    display: flex;
    justify-content: center;
}

.services-container {
    max-width: 1180px;
    width: 100%;
}

.services-heading {
    color: #F2F2F2;
    font-size: 32px;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 80px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-box {
    border-top: 1px solid rgba(255, 255, 255, 0.4);
    padding-top: 20px;
}

.service-box h3 {
    color: #F2F2F2;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}

.service-box p {
    color: #F2F2F2;
    font-size: 16px;
    line-height: 1.5;
    max-width: 700px;
}

/* Tablet */
@media (min-width: 768px) {
    .services-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 30px;
    }
}

/* Desktop */
@media (min-width: 1200px) {
    .services-heading {
        font-size: 36px;
        margin-bottom: 100px;
    }

    .services-list {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 60px;
    }
}
/* SERVICE BANNER IMAGE */
.service-banner {
    width: 100%;
    margin-top: 0px;
}

.service-banner img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 0px; /* change if you want rounded corners */
}
/* FOOTER MAIN STYLE */
.footer-section {
    background: #f7f4eb;
    padding: 60px 150px;
    width: 100%;
}

/* Container */
.footer-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* Header */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    width: 63px;
}

.footer-title {
    font-size: 24px;
    font-weight: bold;
    color: #000;
}

/* Subhead */
.footer-subhead p {
    font-size: 18px;
    margin: 2px 0;
    color: #000;
}

/* Columns layout */
.footer-columns {
    display: flex;
    gap: 50px;
}

.footer-col {
    font-size: 14px;
    color: #000;
    line-height: 1.5;
}

/* Social links */
.footer-links a {
    display: block;
    color: #000;
    text-decoration: none;   /* underline removed */
    margin-bottom: 5px;
}

/* Social links */
.footer-links a {
    display: block;
    color: #000;
    text-decoration: none;   /* underline removed */
    margin-bottom: 5px;
}


.footer-links a:hover {
    color: #555;
}


/* Copyright */
.footer-copy p {
    font-size: 14px;
    color: #000;
}

/* RESPONSIVE STYLES */
@media (max-width: 1280px) {
    .footer-section {
        padding: 50px;
    }
}

@media (max-width: 800px) {
    .footer-section {
        padding: 40px 25px;
    }

    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 25px;
    }
}
/* HIDE HAMBURGER IN DESKTOP */
.hamburger {
    display: none;
    font-size: 32px;
    color: white;
    cursor: pointer;
}

/* DESKTOP MENU SHOWS */
.desktop-menu {
    display: flex;
    gap: 45px;
}

/* MOBILE MENU (HIDDEN AT FIRST) */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0d0d29;
    padding: 20px;
    position: absolute;
    top: 90px;
    right: 0;
    width: 100%;
    z-index: 9999; 
    text-decoration: none;
}

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    color: white;
    text-decoration: none;
}

/* MOBILE VIEW */
@media (max-width: 800px) {

    /* Hide desktop menu */
    .desktop-menu {
        display: none;
        text-decoration: none;
    }

    /* Show hamburger */
    .hamburger {
        display: block;
    }

    /* Mobile menu full width */
    .mobile-menu {
        width: 100%;
    }
}
