/* ===================================================
                     GLOBAL RESET
=================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background: #000;
    color: #fff;
}

.section-label {
    color: #d60000;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}


.section-title {
    font-size: 56px;
    font-weight: 300;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-desc {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.6;
    color: #9f9f9f;  softer grey 
    font-weight: 200;  thinner 
}

/*.section-desc {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.65;
    color: #a9a9a9;  soft gray 
    font-weight: 200;
}*/


/* ===================================================
                     DESKTOP NAVBAR
=================================================== */
.navbar {
    width: 100%;
    background: #000;
    padding: 28px 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-container {
    max-width: 1300px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    height: 52px;
}

.nav-menu {
    display: flex;
    gap: 48px;
}

    .nav-menu a {
        color: #fff;
        text-decoration: none;
        font-size: 15px;
        font-weight: 300; /* thinner */
        letter-spacing: 1px;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .nav-menu a.active,
        .nav-menu a:hover {
            color: #ff3b3b;
        }

.nav-btn {
    background: #e60000;
    color: #fff;
    padding: 12px 28px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 300; /* softer */
    cursor: pointer;
    border: none;
    transition: 0.3s ease;
}




    .nav-btn:hover {
        background: #ff3b3b;
    }


/* ===================================================
                       HERO SECTION
=================================================== */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    margin-top: 95px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.3s ease-in-out;
}

    .slide.active {
        opacity: 1;
    }

.hero-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.55);
    top: 0;
    left: 0;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

    /* UPDATED HERO TITLE — big + thin + elegant */
    .hero-content h1 {
        font-size: 95px;
        font-weight: 200;
        letter-spacing: 0.5px;
        text-transform: capitalize;
    }

/* SUBTITLE */
#heroSubtitle {
    margin-top: 18px;
    font-size: 26px;
    font-weight: 200; /* very thin */
    letter-spacing: 0.5px;
    color: #cfcfcf; /* soft light grey */
    opacity: 0;
    animation: subtitleFade 1.2s ease forwards;
}


@keyframes subtitleFade {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}


/* CONTACT BUTTON – fixed (white border, transparent background) */
.hero-btn {
    display: inline-block;
    margin-top: 32px;
    padding: 15px 32px;
    border: 2px solid #fff;
    color: #fff;
    background: transparent;
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.3s ease;
}

    .hero-btn:hover {
        background: rgba(255,255,255,0.18);
    }


/* ===================================================
                      MOBILE NAVBAR
=================================================== */
.mobile-nav {
    display: none;
    background: #000;
    padding: 18px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 2000;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.mobile-nav-container {
    max-width: 1300px;
    margin: auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mobile-logo {
    height: 48px;
}

/* Hamburger Button */
.mobile-hamburger {
    background: #e60000;
    border: none;
    padding: 12px 16px;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

    .mobile-hamburger span {
        width: 26px;
        height: 3px;
        background: #fff;
        display: block;
    }

/* Slide-in Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 350px;
    height: 100%;
    background: #fff;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0,0,0,0.4);
    transition: left 0.35s ease;
    z-index: 3000;
}

    .mobile-menu.show {
        left: 0;
    }

    /* Softer + thinner elegant text */
    .mobile-menu a {
        display: block;
        font-size: 20px;
        font-weight: 300; /* thin */
        letter-spacing: 1px;
        margin: 28px 0;
        text-decoration: none;
        color: #111; /* softer black */
        transition: 0.25s ease;
    }

        .mobile-menu a.active {
            color: #d60000;
            font-weight: 300; /* keep thin */
        }

/* Close Button */
.mobile-close {
    background: #d60000;
    color: #fff;
    border: none;
    padding: 10px 16px;
    font-size: 20px;
    font-weight: 300; /* thinner */
    border-radius: 6px;
    cursor: pointer;
    float: right;
}

/* Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.40);
    display: none;
    z-index: 2500;
}

    .mobile-menu-overlay.show {
        display: block;
    }



/* ===================================================
                     RESPONSIVE
=================================================== */
@media(max-width: 900px) {

    .navbar {
        display: none;
    }

    .mobile-nav {
        display: block;
    }

    .hero-content h1 {
        font-size: 48px;
        font-weight: 300;
    }

    #heroSubtitle {
        font-size: 20px;
    }
}



/* ===================================================
                   ABOUT SECTION
=================================================== */

/* Fix scroll target – navbar height offset */
#about {
    scroll-margin-top: 120px;
}

.about-section {
    width: 100%;
    background: #000;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.about-container {
    max-width: 1300px;
    display: flex;
    align-items: flex-start;
    gap: 70px;
    padding: 0 40px;
}

/* Image */
.about-img img {
    width: 480px;
    max-width: 100%;
    border-radius: 6px;
    display: block;
}

/* Text Area */
.about-text {
    flex: 1;
    color: #fff;
}

.about-small-title {
    color: #d60000;
    font-size: 15px;
    letter-spacing: 2px;
    font-weight: bold;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.about-title {
    font-size: 58px;
    font-weight: 300; /* thin elegant style */
    margin-bottom: 28px;
    line-height: 1.1;
}

.about-text p {
    font-size: 18px;
    line-height: 1.75;
    margin-bottom: 28px;
    color: #9f9f9f; /* softer */
    font-weight: 200; /* thinner */
}


/* ===================================================
                 RESPONSIVE DESIGN
=================================================== */
@media (max-width: 900px) {

    /* Reduced offset for smaller navbar in mobile */
    #about {
        scroll-margin-top: 90px;
    }

    .about-section {
        padding: 90px 0;
    }

    .about-container {
        flex-direction: column;
        padding: 0 25px;
        gap: 40px;
    }

    .about-img img {
        width: 100%;
    }

    .about-title {
        font-size: 40px;
    }

    .about-text p {
        font-size: 16px;

    }
}


/* ===================================================
                 STYLE / WHAT WE DO SECTION
=================================================== */
.work-section {
    text-align: center;
    padding: 110px 0;
    background: #000;
    color: #fff;
}

/* Small Red Label */
.work-small-title {
    color: #d60000;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 600;
}

/* Main Title */
.work-title {
    font-size: 56px;
    font-weight: 300; /* thin premium */
    margin-bottom: 18px;
    line-height: 1.1;
}

/* Subtitle / Description */
.work-desc {
    max-width: 780px;
    margin: 0 auto 55px;
    font-size: 18px;
    line-height: 1.65;
    color: #9f9f9f; /* softer grey */
    font-weight: 200; /* extra thin */
}


/* ===================================================
                   SWIPER SLIDER
=================================================== */
.work-slider {
    width: 90%;
    max-width: 1300px;
    margin: auto;
}

    /* Force proper Swiper layout */
    .work-slider .swiper-wrapper {
        display: flex !important;
        flex-direction: row !important;
    }

    /* DESKTOP — 3 slides per view */
    .work-slider .swiper-slide {
        flex-shrink: 0 !important;
        width: calc(33.333% - 20px) !important;
        display: flex;
        justify-content: center;
    }

    .work-slider img {
        width: 100%;
        height: auto;
        border-radius: 4px;
    }


/* ===================================================
                    CUSTOM ARROWS
=================================================== */
.swiper-button-prev,
.swiper-button-next {
    width: 45px;
    height: 45px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    box-shadow: 0 3px 6px rgba(0,0,0,0.3);
    transition: 0.25s ease;
}

    /* Fix Swiper's blue arrow color */
    .swiper-button-prev:after,
    .swiper-button-next:after {
        font-size: 18px !important;
        font-weight: bold;
        color: #000 !important; /* Black icon */
    }

    /* Hover effect */
    .swiper-button-prev:hover,
    .swiper-button-next:hover {
        background: #e6e6e6;
    }


/* ===================================================
                    RESPONSIVE DESIGN
=================================================== */
@media (max-width: 900px) {

    .work-title {
        font-size: 38px;
    }

    .work-desc {
        font-size: 16px;
        padding: 0 20px;
    }

    /* FIX MOBILE GAPS — let Swiper auto width */
    .work-slider .swiper-slide {
        width: auto !important;
    }
}

@media (max-width: 600px) {

    /* 1 slide per view */
    .work-slider .swiper-slide {
        width: 100% !important;
    }

    /* Slightly shrink arrows on very small screens */
    .swiper-button-prev,
    .swiper-button-next {
        transform: scale(0.85);
    }
}


/* ============================
      GALLERY SECTION HEADER
============================= */
.gallery-section {
    text-align: center;
    padding: 80px 0 10px; /* increased top spacing */
}

.gallery-small-title {
    color: #e00000;
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: 600;
    margin-bottom: 8px;
}

.gallery-title {
    font-size: 56px;
    font-weight: 300;
    margin-bottom: 12px;
    color: white;
}

.gallery-desc {
    font-size: 17px;
    max-width: 750px;
    margin: 0 auto 40px;
    line-height: 1.6;
    color: #9f9f9f; /* softer */
    font-weight: 200; /* thinner */
}


/* ============================
      GALLERY GRID SYSTEM
============================= */

.uniform-gallery {
    width: 100%;
    margin: 0;
    padding: 0;
}

    /* MAIN GRID */
    .uniform-gallery .gallery-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr); /* 3 columns desktop */
        gap: 6px; /* very thin spacing */
        width: 100%;
    }

    /* GALLERY ITEM */
    .uniform-gallery .gallery-item {
        width: 100%;
        height: 620px; /* tall + wide */
        overflow: hidden;
        border-radius: 6px; /* soft corners */
    }

        /* IMAGE PROPERTIES */
        .uniform-gallery .gallery-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 6px;
            transition: transform 0.35s ease;
        }

/* HOVER ZOOM (desktop only) */
@media (hover: hover) {
    .uniform-gallery .gallery-item:hover img {
        transform: scale(1.07);
    }
}

/* ============================
      MOBILE VIEW
============================= */
@media (max-width: 768px) {
    .uniform-gallery .gallery-grid {
        grid-template-columns: 1fr; /* 1 column */
        gap: 8px;
    }

    .uniform-gallery .gallery-item {
        height: 520px; /* little taller on mobile as requested */
    }
}

/* ENTRY ANIMATION (default hidden) */
.gallery-item {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.9s ease, transform 0.9s ease;
}

    /* CLASS ADDED WHEN VISIBLE */
    .gallery-item.visible {
        opacity: 1;
        transform: translateY(0);
    }



/* ============================
   VISION SECTION (After Gallery)
============================ */
.vision-section {
    width: 100%;
    height: 520px;
    display: flex;
    align-items: center;
    padding-left: 80px;
    background-image: url('../images/v1.png'); /* FIXED */
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    color: #fff;
    position: relative;
}

    /* DARK GRADIENT for readable text */
    .vision-section::before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        width: 50%;
        height: 100%;
        background: linear-gradient(to right, rgba(0,0,0,0.75), rgba(0,0,0,0));
    }

/* TEXT BOX */
.vision-text {
    position: relative;
    max-width: 600px;
    padding: 40px 0;
}

    /* TITLE — thin & elegant */
    .vision-text h2 {
        font-size: 52px;
        font-weight: 300; /* THIN TEXT */
        line-height: 1.18;
        margin: 0;
    }

/* TABLET */
@media (max-width: 1024px) {
    .vision-section {
        height: 450px;
        padding-left: 40px;
    }

    .vision-text h2 {
        font-size: 44px;
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .vision-section {
        height: 400px;
        padding: 40px 20px;
        background-position: center;
    }

    .vision-text h2 {
        font-size: 34px;
        line-height: 1.22;
    }
}


/* ============================
      CONTACT SECTION
=============================== */
.contact-section {
    width: 100%;
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.contact-small-title {
    color: #ff2e2e;
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.contact-title {
    font-size: 56px;
    font-weight: 300; /* thin */
    margin-bottom: 20px;
    line-height: 1.2;
}

    .contact-title span {
        color: #fff;
    }

.contact-desc {
    max-width: 850px;
    margin: 0 auto 50px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.6;
    color: #9f9f9f; /* softer */
    font-weight: 200; /* thinner */
}

/* FORM */
.contact-form {
    width: 90%;
    max-width: 1100px;
    margin: auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

    .form-row input {
        width: 50%;
        padding: 18px;
        font-size: 18px;
        background: transparent;
        border: 1px solid #555;
        border-radius: 6px;
        color: #fff;
    }

textarea {
    width: 100%;
    height: 180px;
    padding: 18px;
    font-size: 18px;
    background: transparent;
    border: 1px solid #555;
    border-radius: 6px;
    color: #fff;
    margin-bottom: 25px;
    resize: none;
}

/* BUTTON */
.contact-btn {
    width: 100%;
    padding: 18px 0;
    font-size: 20px;
    font-weight: 600;
    background: #ff2e2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s ease;
    font-weight: 200; /* thinner */
}

    .contact-btn:hover {
        background: #e40000;
    }

/* MOBILE */
@media (max-width: 768px) {
    .contact-title {
        font-size: 36px;
    }

    .form-row {
        flex-direction: column;
    }

        .form-row input {
            width: 100%;
        }
}

/* ============================
       SUCCESS MODAL POPUP
=============================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: none;
    z-index: 9999;
}

/* MODAL BOX – HARD-CENTER FIX */
.modal-box {
    position: absolute;
    top: 80px; /* distance from top */
    left: 50%; /* center horizontally */
    transform: translateX(-50%); /* automatic perfect centering */

    background: #111;
    padding: 35px 40px;
    border-radius: 8px;
    text-align: center;
    width: 90%;
    max-width: 400px;
    border: 1px solid #ff2e2e;
    box-shadow: 0 0 20px rgba(255,0,0,0.4);
    animation: modalFade 0.35s ease-out;
}

    /* TITLE */
    .modal-box h3 {
        font-size: 26px;
        color: #ff2e2e;
        margin-bottom: 10px;
    }

    /* MESSAGE TEXT */
    .modal-box p {
        color: #fff;
        font-size: 17px;
        line-height: 1.5;
        margin-bottom: 25px;

    }

    /* BUTTON */
    .modal-box button {
        background: #ff2e2e;
        border: none;
        padding: 12px 25px;
        border-radius: 6px;
        font-size: 16px;
        color: #fff;
        cursor: pointer;
        transition: 0.3s ease;
    }

        .modal-box button:hover {
            background: #e40000;
        }

/* ANIMATION */
@keyframes modalFade {
    from {
        transform: translateX(-50%) scale(0.8);
        opacity: 0;
    }

    to {
        transform: translateX(-50%) scale(1);
        opacity: 1;
    }
}


/* ============================
        MAIN FOOTER AREA
============================ */
.footer-section {
    background: #000;
    padding-top: 50px;
    font-family: "Poppins", sans-serif;
    color: #9f9f9f; /* softer */
    font-weight: 200; /* thinner */
}

/* ============================
        DIVIDING LINES (WHITE)
============================ */
.footer-top-line,
.footer-bottom-line {
    width: 100%;
    height: 4px; /* thick line */
    background: #fff; /* PURE WHITE */
    margin: 40px 0;
}


/* ============================
        FOOTER GRID LAYOUT
============================ */
.footer-container {
    max-width: 1300px;
    margin: auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr;
    gap: 60px;
    padding: 0 40px;
}


/* ============================
        FOOTER COLUMNS
============================ */
.footer-col h4 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 500;
}

.footer-logo {
    width: 260px;
    margin-bottom: 20px;
}

.footer-text {
    color: #ccc;
    line-height: 1.7;
    font-size: 15px;
    max-width: 450px;
}


/* ============================
        LINKS & ICONS
============================ */
.footer-col a,
.footer-col span {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 12px;
    color: #ddd;
    text-decoration: none;
    transition: 0.3s ease;
}

    .footer-col a:hover {
        color: #fff;
    }

/* ICON COLORS */
.instagram-icon {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 20px;
}

.whatsapp-icon {
    color: #25D366;
    font-size: 20px;
}

.facebook-icon {
    color: #1877f2;
    font-size: 20px;
}

.phone-icon,
.mail-icon,
.location-icon {
    color: #ff2e2e;
    font-size: 20px;
}


/* ============================
         COPYRIGHT
============================ */
.footer-copy {
    text-align: center;
    color: #ddd;
    margin: 15px 0 25px;
    font-size: 14px;
}


/* ============================
         RESPONSIVE
============================ */
@media (max-width: 900px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 45px;
    }
}

@media (max-width: 600px) {
    .footer-container {
        grid-template-columns: 1fr;
        padding: 0 25px;
        gap: 40px;
    }

    .footer-logo {
        width: 210px;
    }
}



