/* RESET */
* {
    margin: 0;
    /* padding: 0; */
    box-sizing: border-box;
}

body {
    font-family: "Geist", sans-serif;
    background: #000;
}

/* NAVBAR MAIN */
.nav-bar {
    width: 100%;
    background: linear-gradient(to right, #0D0D29, #010103);
    padding: 20px 50px;
    position: fixed;
    top: 0;
    left: 0;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.nav-content {
    width: 100%;
    max-width: 1400px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 60px;
    width: auto;
}

/* DESKTOP MENU */
.desktop-menu {
    display: flex;
    gap: 45px;
}

.desktop-menu a {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.desktop-menu a:hover {
    color: #d9d9d9;
}

/* HAMBURGER ICON (MOBILE) */
.hamburger {
    display: none;
    font-size: 34px;
    cursor: pointer;
    color: white;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #0D0D29;
    padding: 20px;
    width: 100%;
    position: absolute;
    top: 90px;
    left: 0;
}

.mobile-menu a {
    padding: 15px 0;
    border-bottom: 1px solid #333;
    text-decoration: none;
    color: white;
    font-size: 18px;
}
/* MOBILE VIEW */
@media (max-width: 800px) {
    .desktop-menu {
        display: none; /* hide desktop menu */
    }

    .hamburger {
        display: block;
    }

    .mobile-menu {
        display: none;
    }
}

/* HEADER SECTION */
.header {
    width: 100%;
    height: 100vh;
    position: relative;
    margin-top: 0;
    padding-top: 0;
}

.header-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    inset: 0;
}

.overlay {
    background: rgba(0, 0, 0, 0.45);
    position: absolute;
    inset: 0;
}

.header-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 50px;
    padding-right: 50px;
}

/* MAIN TITLE */
.header-content h1 {
    color: #F2F2F2;
    font-size: 160px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: -3px;
    white-space: nowrap;
}

/* SUBTITLE */
.header-content h2 {
    color: #F2F2F2;
    font-size:38px;
    font-weight: 450;
    width: 70%;
    margin-top: 30px;
}

/* ------------------------------
   RESPONSIVE DESIGN
------------------------------- */

/* TABLET */
@media (max-width: 1280px) {
    .header-content h1 {
        font-size: 80px;
    }
    .header-content h2 {
        font-size: 26px;
        width: 90%;
    }
}

/* MOBILE */
@media (max-width: 800px) {
    .navbar {
        padding: 15px 20px;
        text-decoration: none !important;
    }
    .logo {
        height: 45px;
    }
    .header {
        height: 90vh;
        margin-top: 75px;
    }
    .header-content {
        padding: 10px;
        text-align: left;
        align-items: left;
    }
    .header-content h1 {
    font-size: 56px;
    white-space: normal;
    z-index: 1;
    line-height: 1.1;  /* <-- reduces space between lines */
}

    }
    .header-content h2 {
        font-size: 20px;
        width: 100%;
    }
    
/* Welcome Section Background */
.welcome-section {
    background: #F2F2F2;
    padding: 80px 50px;
    display: flex;
    flex-direction: column;
    align-items: left;
    padding-left: 80px;   /* <<< ADD THIS FOR LEFT SPACING */
}

/* Title */
.welcome-title {
    font-size: 32px;
    font-weight: 600;
    font-family: "Geist", sans-serif;
    color: #000;
    margin-bottom: 50px;
    text-align: left;
    padding-left:  80px;   /* <<< ADD THIS FOR LEFT SPACING */
}

/* Body Content */
.welcome-content {
    display: flex;
    gap: 48px;
    max-width: 1100px;
    width: 100%;
    justify-content: left;
    padding-left: 80px;   /* <<< ADD THIS FOR LEFT SPACING */
}

.welcome-column {
    flex: 1;
}

.welcome-column p {
    font-size: 18px;
    line-height: 1.6;
    font-family: "Geist", sans-serif;
    color: #000;
}

/* Contact Button */
.welcome-btn {
    margin-top: 40px;
    background: #302828;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 18px;
    font-family: "Geist", sans-serif;
    margin-left: 80px;   /* Adjust left spacing */


    /* Fix width + alignment */
    display: inline-block;
    width: auto;
    text-align: left;
    align-self: flex-start;   /* <<< THIS MAKES BUTTON ALIGN LEFT */
    white-space: nowrap;      /* Prevent text breaking */
}

.welcome-btn:hover {
    opacity: 0.85;
}


/* --------------------------
   RESPONSIVE
--------------------------- */

/* Tablet */
@media (max-width: 1024px) {
    .welcome-content {
        flex-direction: column;
        gap: 30px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .welcome-section {
        padding: 50px 40px;
    }

    .welcome-title {
        font-size: 26px;
    }

    .welcome-column p {
        font-size: 16px;
    }
}
/* Mobile */
@media (max-width: 600px) {

    .welcome-section,
    .welcome-title,
    .welcome-content,
    .welcome-btn {
        padding-left: 20px !important;   /* Move text closer to the left */
        margin-left: 0 !important;        /* Remove extra left margin */
    }

    .welcome-content {
        flex-direction: column;
        gap: 24px;
    }
}
/* Text hidden at start */
.fade-text {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Text visible when scrolled */
.fade-text.show {
    opacity: 1;
    transform: translateY(0);
}
/* Image wrapper */
.responsive-image {
    width: 100%;
    height: 100vh;       /* full screen height */
    position: relative;
    overflow: hidden;
    margin-top: 0 !important;
    padding-top: 0px; 
}

/* Image settings */
.responsive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;    /* makes image fill without stretching */
    object-position: center;
}


/* ---------- TABLET ---------- */
@media (max-width: 1280px) {
    .responsive-image {
        height: 70vh;     /* reduce height for tablet */
    }
}

/* ---------- MOBILE ---------- */
@media (max-width: 800px) {
    .responsive-image {
        height: 55vh;     /* perfect mobile size */
    }

    .responsive-image img {
        object-position: center top;   /* adjust framing for mobile */
    }
}
/* SECTION BACKGROUND */
.what-we-offer-section {
    background: #0D0D29;
    padding: 120px 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;   /* LEFT */
}

/* MAIN TITLE */
.what-we-offer-title {
    color: #F7F4EB;
    font-family: "Geist", sans-serif;
    font-size: 32px;
    font-weight: 500;
    letter-spacing: -1.6px;
    margin-bottom: 40px; /* space before service title */
}

/* SERVICE TITLE (Matches Figma Size) */
.service-title {
    color: #F7F4EB;
    font-family: "Geist", sans-serif;
    font-size: 76px;
    font-weight: 400;
    letter-spacing: -4.5px;
    line-height: 0.95;
    white-space: nowrap;
}
.offer-row {
    display: flex;
    align-items: flex-start; /* Align top */
    gap: 20px;               /* Space between title and list */
}

.what-we-offer-title {
    white-space: nowrap;     /* Prevents breaking into two lines */
}

.offer-items .service-title {
    margin-bottom: 5px;
}


/* Tablet */
@media (max-width: 1280px) {
    .service-title {
        font-size: 48px;
        letter-spacing: -3px;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .what-we-offer-section {
        padding: 80px 20px;
    }

    .service-title {
        font-size: 42px;
        letter-spacing: -1px;
        white-space: normal;
        line-height: 1.1;
    }
}

.service-btn {
    display: inline-block;
      margin-top: 20px;
    background: #ffffff;
    color: #000000;
    text-decoration: none;
    font-family: "Geist", sans-serif;
    font-size: 18px;
    padding: 18px 33px;
    border-radius: 500px;
    cursor: pointer;
    transition: all 0.25s ease;
    font-weight: 500;
}
/* Desktop + Tablet */
.more-text {
    font-family: 'Geist', sans-serif;
    text-transform: capitalize;
    font-size: 76px;
    font-weight: 400;
    line-height: 0.95;
    color: rgba(255, 240, 196, 0.5);
    letter-spacing: -4.56px;
    white-space: nowrap;
}

/* Mobile */
@media (max-width: 800px) {
    .more-text {
        font-size: 32px;
        letter-spacing: -0.96px;
        line-height: 0.95;
    }
}

/* Hover Effect */
.service-btn:hover {
    transform: scale(1.05);
}

/* Tablet */
@media (max-width: 1280px) {
    .service-btn {
        padding: 16px 30px;
        font-size: 17px;
    }
}

/* Mobile */
@media (max-width: 800px) {
    .service-btn {
        padding: 14px 26px;
        font-size: 16px;
    }
}
/* FIX: What We Offer section overflowing on mobile */
@media (max-width: 800px) {
    .offer-row {
        flex-direction: column;   /* STACK items vertically */
        gap: 10px;
    }

    .what-we-offer-title {
        white-space: normal;      /* allow title to wrap */
    }

    .service-title {
        white-space: normal;      /* allow service text to wrap */
        text-wrap: wrap;
    }
}
/* HOME BANNER IMAGE */
.home-banner,
.responsive-image {
    width: 100%;
    height: 100vh;              /* full screen height */
    position: relative;
    overflow: hidden;
}

.home-banner img,
.responsive-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* cover without stretching */ /* align image to top */
    display: block;
    margin: 0;
    padding: 0;
}
@media (max-width: 800px) {
    .header {
        height: 90vh;           /* adjust height for mobile */          /* remove extra top space */
    }

    .header-content {
        padding: 10px;          /* optional for text */
    }

    .home-banner img,
    .responsive-image img {
        object-position: top center;
    }
}

/* 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;
    }
}
/* ------------------------------
   GLOBAL RESPONSIVE FIXES
------------------------------ */

/* Prevent overflow on all small screens */
body,
html {
    max-width: 100%;
    overflow-x: hidden;
}

/* Fix sections having too much left padding */
@media (max-width: 1024px) {
    * {
        max-width: 100%;
    }

    .welcome-section,
    .welcome-title,
    .welcome-content,
    .welcome-btn,
    .what-we-offer-section,
    .footer-section {
        padding-left: 20px !important;
        padding-right: 20px !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}

/* ------------- TABLET (≤1280px) ------------- */
@media (max-width: 1280px) {
    .header-content h1 {
        font-size: 70px;
        line-height: 1.1;
        white-space: normal;
    }

    .service-title {
        font-size: 48px;
        letter-spacing: -2px;
    }

    .footer-section {
        padding: 40px 30px;
    }
}

/* ------------- MOBILE (≤800px) ------------- */
@media (max-width: 800px) {
    
    .header-content {
        padding: 10px;
    }

    .header-content h1 {
        font-size: 48px;
        line-height: 1.15;
        white-space: normal;
    }

    .header-content h2 {
        font-size: 18px;
        width: 100%;
    }

    /* Welcome section fix */
    .welcome-section {
        padding: 40px 20px;
    }

    .welcome-title {
        font-size: 26px;
        padding: 0;
    }

    .welcome-content {
        flex-direction: column;
        padding: 0;
        gap: 20px;
        width: 100%;
    }

    .welcome-btn {
        margin-top: 30px !important
        padding: 14px 26px;
    }

    /* "What We Offer" section */
    .what-we-offer-title {
        font-size: 26px;
        margin-bottom: 20px;
        white-space: normal;
    }

    .service-title {
        font-size: 38px;
        line-height: 1.1;
        white-space: normal;
        width: 100%;
    }

    .more-text {
        font-size: 40px;
        letter-spacing: -1px;
        line-height: 1.1;
        white-space: normal;
    }

    /* Buttons */
    .service-btn {
        font-size: 16px;
        padding: 14px 26px;
        margin-top: 20px;
    }

    /* Footer */
    .footer-section {
        padding: 30px 20px;
    }

    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .footer-columns {
        flex-direction: column;
        gap: 20px;
    }

