@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
}


/* -------------------------------------------- Nav ------------------------------------ */

/* -------------------- NAVBAR MAIN -------------------- */
.nav-main {
    width: 100%;
    height: 80px;
    position: fixed;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 999;
    transition: background 0.3s ease;
}


/* Navbar after scrolling */

.nav-main.scrolled {
    background: #ffffff;
    /* change background on scroll */
}


/* Optional: if you want the text color to change */

.nav-main.scrolled .nav-pages ul li {
    color: rgb(0, 0, 0);
}

.nav-main.scrolled .hamburger i {
    color: black;
}

.nav-logo {
    /* width: 200px; */
    padding-left: 40px;
}

.nav-logo img {
    width: 15rem;
}

.nav-pages {
    display: block;
    padding-right: 100px;
}

.hamburger {
    display: none;
    padding-right: 20px;
    user-select: none;
}

.hamburger i {
    font-size: 25px;
    cursor: pointer;
    transition: transform 0.3s ease, opacity 0.3s ease;
    /* animate rotation + fade */
    color: white;
}


/* Rotate when menu is active */

.hamburger i.rotate {
    transform: rotate(360deg);
    opacity: 0.7;
}

.nav-pages ul {
    display: flex;
    list-style: none;
    gap: 30px;
    font-family: "Noto Sans", sans-serif;
}

.nav-pages ul li {
    cursor: pointer;
    color: white;
}

.nav-pages a {
    text-decoration: none;
}

.mobile-menu {
    position: fixed;
    top: -200%;
    left: 0;
    width: 100%;
    height: auto;
    background: var(--primary-color);
    color: white;
    transition: top 0.3s ease-in-out;
    padding: 100px 20px;
    z-index: 998;
    font-family: "Noto Sans", sans-serif;
}

.mobile-menu.active {
    top: 0;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
}

.mobile-menu a {
    text-decoration: none;
    color: white;
}

.mobile-menu ul li {
    margin: 30px 0;
    font-size: 18px;
    cursor: pointer;
}

/* ---------- Desktop Dropdown ---------- */
.dropdown {
    position: relative;
}

.dropdown a {
    color: white;

}

.nav-main.scrolled .dropdown a {
    color: #000;
}

ul.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    color: black;
    list-style: none;
    padding: 10px 0;
    display: none;
    min-width: 200px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
    z-index: 1000;
}

.dropdown-menu a {
    color: #000;
    font-size: 14px;
}

.dropdown-menu li {
    padding: 10px 20px;
}

.dropdown-menu li:hover {
    background: #f2f2f2;
}

/* ---------- Mobile Dropdown ---------- */
.mobile-dropdown-menu {
    display: none;
    padding-left: 20px;
    margin-top: 10px;
}

.mobile-dropdown-menu.active {
    display: block;
}

.mobile-dropdown span {
    display: flex;
    justify-content: space-between;
    align-items: center;
}


/* Active state */

@media (max-width:925px) {
    .nav-pages {
        padding-right: 50px;
    }
}

@media (max-width: 900px) {
    .nav-pages {
        display: none;
        /* hide desktop nav */
    }

    .hamburger {
        display: block;
        /* show hamburger */
    }

    .nav-logo {
        padding-left: 0;
    }
}

/* ---------------------------------------------------------- Home -------------------------------------------- */


/* HOME */

.home-main {
    width: 100%;
    /* set a real height so absolutely positioned children have space */
    height: 650px;
    overflow: hidden;
    position: relative;
}

.home-bk-img {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-bk-img video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
    z-index: 0;
}

.home-bk-img img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
    z-index: 0;
    /* 👈 keep images in the back */
}

.home-bk-img img.active {
    opacity: 1;
    z-index: 0;
    /* 👈 stay behind content */
}

.home-content-main {
    width: 100%;
    height: 100%;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.608);
    top: 0;
    left: 0;
    z-index: 1;
    /* 👈 put content above images */
    display: flex;
    align-items: center;
    /* justify-content: center; */
}

.home-content {
    width: 60%;
    padding-left: 70px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-bottom: 50px;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.home-content h2 {
    font-size: 50px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    animation: fadeInUp 1s ease-in-out;
}

.home-content p {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    max-width: 500px;
    animation: fadeInUp 1.4s ease-in-out;
}


/* responsive tweak */

@media (max-width:900px) {
    .home-main {
        height: 70vh;
        max-height: none;
    }

    .home-content {
        width: 90%;
        margin-bottom: 0;
    }
}

@media (max-width:600px) {
    .home-content {
        padding-left: 50px;
    }

    .home-content h2 {
        font-size: 40px;
    }

    .home-content p {
        font-size: 18px;
    }
}

@media (max-width:400px) {
    .home-content {
        padding-left: 30px;
        /* width: 90%; */
    }

    .home-content h2 {
        font-size: 35px;
    }

    .home-content p {
        font-size: 16px;
    }
}


/* ---------------------------------------------------------- About -------------------------------------------- */

.about-main {
    width: 100%;
    padding: 50px 0;
    background: #fff;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    /* background-color: yellow; */
    display: flex;
    justify-content: center;
}

.about-container {
    width: 90%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    /* background-color: yellowgreen; */
}

.about-left {
    width: 300px;
    height: 100%;
    /* flex:.5; */
}

.about-left img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.about-right {
    flex: 1;
    position: relative;
    /* background-color: #e77707; */
}

.about-tag {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid var(--primary-color);
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 15px;
}

.about-tag-p {
    width: 55%;
}

.about-right h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
}

.about-right p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #555;
}

.about-features {
    background: #f5f5f5;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 6px;
}

.about-features h4 {
    margin-bottom: 10px;
}

.about-features ul {
    list-style: none;
    padding: 0;
}

.about-features ul li {
    margin-bottom: 8px;
    font-size: 15px;
}

.about-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
}


/* .about-btn:hover {
  background: #e78f0a;
} */

.about-small-img {
    position: absolute;
    top: 40px;
    right: 0px;
    /* Adjust position */
    width: 350px;
}

.about-small-img img {
    width: 100%;
    border-radius: 6px;
}

@media (max-width:1250px) {
    .about-small-img {
        width: 300px;
        top: 100px;
    }
}

@media (max-width:1120px) {
    .about-small-img {
        display: none;
    }

    .about-tag-p {
        width: auto;
    }
}

@media (max-width:800px) {
    .about-container {
        flex-direction: column-reverse;
        align-items: center;
    }
}


/* ---------------------------------------------------------- Service -------------------------------------------- */

.service-main {
    width: 100%;
    height: 100%;
    padding: 30px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(65, 65, 63, 0.055);
    background-image: url(../assets/hero-img/Transparent-background-with-dots.png);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}


/* .service-main img{
  width: 100%;
  height: 100%;
  position: absolute;
} */

.service-content-main {
    width: 90%;
    height: 100%;
    /* background-color: yellow; */
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-content-container {
    display: flex;
}

.service-content-left {
    width: 35%;
    height: 100%;
    /* background-color: turquoise; */
}

.service-content-left img {
    position: relative;
    width: 20rem;
    height: 15rem;
    top: 250px;
    left: -20px;
}

.service-content-right {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.view-btn {
    width: 100%;
    display: flex;
    justify-content: end;
}

.view-btn button {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
}

.view-btn button:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

@media (max-width:1250px) {
    .service-content-left img {
        display: none;
    }
}

@media (max-width:820px) {
    .service-content-container {
        flex-direction: column;
        gap: 30px;
    }

    .service-content-left {
        width: 100%;
        height: auto;
    }
}


/* ---------------------------------------------------------- Support -------------------------------------------- */

.support-main {
    width: 100%;
    min-height: 400px;
    background-image: url(../assets/hero-img/counter_bg_1.jpg);
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: scroll;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.support-content {
    color: white;
    text-align: center;
    font-size: 25px;
}

.suppor-contact-btn {
    display: inline-block;
    background: var(--primary-color);
    color: #fff;
    padding: 12px 22px;
    border-radius: 30px;
    font-size: 15px;
    text-decoration: none;
    transition: 0.3s ease;
    border: none;
    cursor: pointer;
}


/* .suppor-contact-btn:hover {
  background-color: #e78f0a;
  cursor: pointer;
} */

@media (max-width:600px) {
    .support-content {
        font-size: 20px;
    }
}


/* ---------------------------------------------------------- Footer -------------------------------------------- */

.footer-main {
    width: 100%;
    height: auto;
    padding: 50px 0 15px 0;
    /* background-image: url(../assets/hero-img/service_bg_1.png); */
    background-color: #28373c;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 20px;
}

.footer-container {
    width: 80%;
    height: auto;
    /* background-color: #967451; */
    display: flex;
    gap: 100px;
    padding: 30px 0;
    justify-content: center;
    border-bottom: 1px solid gray;
    flex-wrap: wrap;
}

.footer-logo-content {
    width: 40%;
    /* background-color: yellow; */
    color: rgb(184, 182, 182);
}

.footer-logo-content img {
    width: 14rem;
    margin-left: -30px;
}

.footer-quick-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-quick-links p {
    font-size: 18px;
    font-weight: 500;
    color: rgb(184, 182, 182);
}

.footer-quick-links a {
    text-decoration: none;
    color: white;
}

.footer-quick-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact {
    width: 300px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact p {
    font-size: 18px;
    font-weight: 500;
    color: rgb(184, 182, 182);
}

.footer-contact ul {
    list-style: none;
    color: white;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact ul li {
    display: flex;
    gap: 20px;
    align-items: center;
}

.footer-social-media {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-social-media i {
    font-size: 25px;
    cursor: pointer;
}

.footer-copy-right {
    display: flex;
    align-items: center;
    color: antiquewhite;
    font-size: 15px;
}

@media (max-width:800px) {
    .footer-logo-content {
        width: 50%;
    }
}

@media (max-width:550px) {
    .footer-copy-right {
        font-size: 13px;
        text-align: center;
    }
}

@media (max-width:480px) {
    .footer-container {
        gap: 50px;
        justify-content: start;
    }

    .footer-logo-content {
        width: 100%;
    }

    .footer-social-media {
        justify-content: center;
    }
}


/* -------------------------  */

.what-we-do-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--light-gray) 100%);
}

.what-we-do-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    padding-right: 40px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 25px;
    position: relative;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    text-align: justify;
}

.stats-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    margin-top: 50px;
    /* background-color: yellowgreen; */
}

.stat-item {
    text-align: center;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--border-color);
}

.stat-item:hover {
    /* transform: translateY(-5px); */
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.stat-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 500;
}

.content-right {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.chat-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7cb135 100%);
    color: white;
    border: none;
    padding: 18px 35px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 200px;
    justify-content: center;
}

.chat-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(141, 198, 63, 0.4);
    background: linear-gradient(135deg, #7cb135 0%, var(--primary-color) 100%);
}

.chat-button:active {
    transform: translateY(-1px);
}

.chat-icon {
    font-size: 1.4rem;
}


/* Responsive Design */

@media (max-width: 968px) {
    .what-we-do-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .content-left {
        padding-right: 0;
    }

    .content-right {
        justify-content: flex-start;
    }

    .chat-button {
        min-width: 180px;
    }
}

@media (max-width: 768px) {
    .what-we-do-section {
        padding: 60px 20px;
    }

    .section-title {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .chat-button {
        width: 100%;
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .what-we-do-section {
        padding: 40px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .description {
        font-size: 1rem;
    }

    .stat-item {
        padding: 20px 15px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }

    .chat-button {
        padding: 15px 25px;
        font-size: 1.1rem;
    }
}


/* ------------------------------------------------------------- luxury car ---------------------------------------------------- */


.car-export {
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* ✅ Background video styling */
.car-export-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.car-export::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url(../assets/hero-vid/car-cargo.mp4);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.car-export::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(30, 42, 45, 0.671) 0%, rgba(30, 42, 45, 0.7) 100%);
    z-index: 2;
}

.car-export-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    z-index: 3;
}

/* .car-export-content {
            background-color: rgba(245, 247, 246, 0.95);
            padding: 40px;
            border-radius: 8px;
            box-shadow: var(--shadow);
        } */
.car-export-content {
    background: rgba(255, 255, 255, 0.2);
    /* light transparent base */
    backdrop-filter: blur(5px);
    /* frosted glass blur */
    -webkit-backdrop-filter: blur(5px);
    /* Safari support */
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(255, 255, 255, 0.3);
    /* subtle glass border */
    color: var(--text-color);
}


.car-export-title {
    color: var(--secondary-color);
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.car-export-text {
    color: var(--text-color);
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.car-export-text strong {
    color: var(--primary-color);
}

.car-export-features {
    list-style: none;
    margin-bottom: 30px;
}

.car-export-features li {
    padding: 8px 0;
    color: var(--secondary-color);
    font-weight: 500;
}

.car-export-features li::before {
    content: "✔";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 25px;
}

.car-export-btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-color);
}

.car-export-btn:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 992px) {
    .car-export-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .car-export-content {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 576px) {
    .car-export-title {
        font-size: 2rem;
    }

    .car-export-content {
        padding: 25px;
    }
}



.map-main {
    width: 100%;
    height: 500px;
    padding-top: 50px;
    /* background-color: wheat; */
}


.luxury_car {
    position: relative;
    height: 85vh;
    width: 100%;
    background: url('../assets/sub-img/luxury_car.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    padding: 0 8%;
    overflow: hidden;
}

.luxury_car::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.luxury_car-content {
    position: relative;
    z-index: 2;
    max-width: 650px;
}

.luxury_car-content h5 {
    text-transform: uppercase;
    font-size: 16px;
    color: white;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.luxury_car-content h1 {
    font-size: 60px;
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
    color: white;
}

.luxury_car-content p {
    font-size: 18px;
    color: #f0f0f0;
    line-height: 1.6;
}

.luxury_car-side {
    position: absolute;
    right: 8%;
    bottom: 15%;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
    z-index: 2;
}

.luxury_car-side img {
    display: block;
    width: 300px;
    height: 170px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.luxury_car-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffeb00;
    color: #000;
    font-weight: 600;
    font-size: 18px;
    border: none;
    border-radius: 12px;
    padding: 12px 25px;
    cursor: pointer;
    transition: 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.luxury_car-btn:hover {
    background-color: #ffee33;
    transform: translateY(-2px);
}

.luxury_car-btn span {
    background: #000;
    color: #ffeb00;
    border-radius: 50%;
    padding: 4px 8px;
    margin-left: 10px;
    font-weight: bold;
}
@media (max-width: 1120px) {
    .luxury_car-side img {
        display: none;

    }
}
@media (max-width: 900px) {
    .luxury_car-content h1 {
        font-size: 45px;
    }

    .luxury_car-side {
        right: 5%;
        bottom: 10%;
    }

    .luxury_car {
        flex-direction: column;
    }

    .luxury_car-side img {
        display: none;

    }
}



@media (max-width: 600px) {
    .luxury_car {
        padding: 0 5%;
    }

    .luxury_car-content h1 {
        font-size: 36px;
    }

    .luxury_car-content p {
        font-size: 16px;
    }

    .luxury_car-side {
        position: static;
        margin-top: 30px;
        align-items: flex-start;
    }
}