* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: #333;
    background: #f8f9fa;
    line-height: 1.6;
}


header {
    background: #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
  padding: 12px 24px;
}

/* Default: hide mobile header */
.mobile-header {
    display: none;
}

.hamburger {
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

.phone-btn {
    font-size: 1.5rem;
    text-decoration: none;
    color: #000;
}

.main-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0.6rem 0;
}

.main-nav li {
    position: relative;
}

.main-nav a {
    font-weight: normal;
    color: #000;
    font-size: 1.05rem;
    padding: 0.6rem 0.8rem;
    transition: color 0.3s;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

/* underline layer */
.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width: 100%;
    height: 2px;
    background: #6c6868;

    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

/* hover animation */
.main-nav a:hover::after,
.main-nav a.active::after {
    transform: scaleX(1);
}

.main-nav a:hover,
.main-nav a.active {
     font-weight: bold;
    text-decoration: none;
}

.main-nav .logo-item {
    padding: 0;
}

.main-nav .logo-item a {
    padding: 0;
}

/* Remove underline effect from logo */
.main-nav .logo-item a::after {
    display: none;
}

.main-nav .logo-item img {
    height: 55px;
    width: auto;
    display: block;
    transition: transform 0.25s;
}

.main-nav .logo-item img:hover {
    transform: scale(1.08);
}

/* Hero section: background image + gray tone + white rectangle box */
.hero {
    position: relative;
    min-height: 80vh;
    background: url('/img/main01.jpeg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;

    padding: 4rem 5% 6rem;
}

.hero-content-box {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 0px;
    padding: 3rem 2rem;
    max-width: 1000px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    border: 7px solid rgba(255, 255, 255, 0.9);
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: white;
}

.hero h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 400;
    color: white;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #555;
    line-height: 1.7;
}

.btn {
    display: inline-block;
    background: #fb464b;
    color: white;
    padding: 14px 32px;
    border-radius: 6px;
    border: 0px;
    font-weight: 500;
    margin: 0 12px;
    transition: 0.3s;
}

.btn:hover {
    background: #d64347;
    text-decoration: none;
}

/* Remaining sections styled the same (services, contact, footer) */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 5%;
    text-align: center;
}


.success-section {
    padding: 80px 20px;
    background: #ebebeb;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-divider {
    border: none;
    height: 3px;
    background: black;
    margin: 1.8rem 0 2.2rem;
    max-width: 50px;
    margin-left: auto;
    margin-right: auto;
    opacity: 1;
}

.content-box {
    background: #ffffff;
    padding: 4rem 3.5rem;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    max-width: 860px;
    margin: 0 auto;
}

.content-box h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.8rem;
    color: #0f172a;
}

.content-box p {
    font-size: 1rem;
    line-height: 1.85;
    margin-bottom: 3rem;
    color: #475569;
}

/* button */
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.8rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 9999px;
    transition: all 0.3s ease;
    min-width: 180px;

}

.btn.primary {
    background: #fb464b;
    color: white;
    border: 0px;
}

.btn.primary:hover {
    background: #d64347;


}


.image-split-section,
.split-wrapper {
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden;
}

.split-wrapper {
    display: flex;
    align-items: stretch;
    width: 100%;
}

.left-column,
.right-column {
    flex: 1 1 50%;
    margin: 0;
    padding: 0;
    position: relative;
}


.left-image-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
}

.left-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.left-image.stretch-no-aspect {
    object-fit: cover;
}

.overlay-text {
    position: absolute;
    inset: 0;
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.45);
    color: white;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.overlay-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.overlay-text p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    max-width: 80%;
}

.explore-button {
    margin-top: 5px;
    padding: 1rem 2.5rem;
    font-size: 1.15rem;
    font-weight: bold;
    background: #fb464b;
    color: white;
    border-radius: 50px;
    text-decoration: none;
    border: 0px;

}

.explore-button:hover {
    background: #d64347;
    color: white;
}

.explore-button,
.explore-button:hover,
.explore-button:focus {
    text-decoration: none;
}

.right-column {
    flex: 1 1 50%;
    height: 100%;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    height: 100%;
    gap: 0;
}

.grid-item {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-section {
    background: white;
    border-color: white;
}

.contact-section a {
    color: #151515;
    text-decoration: none;
    font-weight: normal;
}

.contact-section a:hover {
    text-decoration: underline;
}

.contact-form .form-control,
.contact-form .form-select {
    border-radius: 4px;
    padding: 10px 12px;
    background-color: #f7f7f7;
}

.contact-form button {
    background: #fb464b;
    border: none;
    font-weight: 600;
    float: right;
    margin: 0;
}

.contact-form button:hover {
    background: #d64347;
    color: white;
}

.contact-select {
    color: gray;
}

.contact-select option {
    color: black;
}

.logo-partners {
    padding-top: 40px;
    padding-bottom: 10px;
    background: white;
    border-top: 0px solid white;
    border-bottom: 0px solid white;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: center;
}

.logo-box {
    position: relative;
    overflow: hidden;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.logo-box img {
    width: 100%;
    height: 100%;

    max-width: 160px;
    max-height: 60px;

    object-fit: contain;
    opacity: 1;
    transition: opacity .3s;
}

/* Shine layer */
.logo-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 120%;
    height: 100%;

    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.9),
            transparent);

    transform: skewX(-25deg);
}

/* Hover animation */
.logo-box:hover::before {
    animation: shineMove 1.5s ease;
}

.logo-box:hover img {
    opacity: 1.5;
}

@keyframes shineMove {
    0% {
        left: -150%;
    }

    100% {
        left: 150%;
    }
}

.contact-select {
    color: gray;
}

.contact-select option {
    color: black;
}

footer {
    background: #f7f7f7;
    color: black;
    text-align: center;
    padding: 3rem 5% 2rem;
}

footer a {
    color: #aaa;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.95rem;
}

.mobile-header {
    display: none;
}

@media (max-width: 992px) {
    .split-wrapper {
        flex-direction: column;
    }

    .left-column,
    .right-column {
        min-width: 100%;
    }

    .left-image {
        object-fit: contain;
    }
}


@media (max-width: 768px) {
    .hero {
        min-height: 70vh;
        padding: 3rem 5% 5rem;
    }

    .hero-content-box {
        padding: 2.5rem 1.8rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero h3 {
        font-size: 1rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .success-section {
        padding: 80px 15px;
    }

    .section-divider {
        margin: 1.5rem auto 1.8rem auto;
        max-width: 50px;
    }

    .content-box {
        padding: 2.8rem 2rem;
        border-radius: 12px;
    }

    .content-box h2 {
        font-size: 2.3rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1.2rem;
    }

    .btn {
        width: 100%;
        max-width: 360px;
        margin: 0 auto;
    }

    /* Show mobile header only */
    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
    }

    .mobile-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    .mobile-logo img {
        height: 45px;
    }

    /* Hide existing nav */
     .main-nav {
    display: none;
    flex-direction: column;
    gap: 16px;
    padding: 20px 0; 
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 12px 24px rgba(0,0,0,0.25);
     }

    .main-nav.active {
        display: flex;
    }

    /* Show only when hamburger is clicked */
    .main-nav.active {
        display: flex;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        padding: 1rem 0;
        gap: 1rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    /* Remove logo from nav */
    .main-nav .logo-item {
        display: none;
    }

    @media (max-width: 445px) {
        .success-section {
        padding: 50px 15px;
        }
        .hero {
            height: 400px;
            min-height: 400px;
            padding: 50px 5% 60px;
        }

        .hero h1 {
            font-size: 28px;
            line-height: 1.3;
        }

        .content-box h2 {
            font-size: 28px;
        }

        .hero h3 {
            font-size: 17px;
        }

        .content-box p {
            font-size: 16px;
            letter-spacing: -0.05px;
            margin-bottom: 32px;
        }

        .overlay-text h2 {
            font-size: 22px;
            line-height: 1.2;
        }

        .explore-button {
            margin-top: 2px;
            height: 48px;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .btn.primary {
            font-size: 16px;
        }

        .btn {
            width: 200px;

        }

        .logo-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            align-items: center;
        }

        .logo-box {
            position: relative;
            overflow: hidden;
            height: 80px;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 20px;
        }

        .logo-box img {
            width: 100%;
            height: 100%;

            max-width: 120px;
            max-height: 45px;

            object-fit: contain;
            opacity: 1;
            transition: opacity .3s;
        }

        p {
            font-size: 15px;
            letter-spacing: -0.02px;
        }

    }

    @media (max-width: 375px) {
        .logo-box img {
            height: 60px;
            max-width: 90%;
        }
    }

}