@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

ul {
    margin: 0px;
    padding: 0px;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
a {
    font-family: 'Inter' !important;
}

:root {
    --primary-color: #272e64;
    --secondary-color: #f97c38;
    --text-color: rgba(0, 0, 0, 0.8);
    --border-color: #ddd;
    --background-color: #ffffff;
}


.header {
    display: flex;
    align-items: center;
    padding: 5px 40px;
    border-bottom: 2px solid var(--border-color);
    background-color: #fff;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 82px;
    margin-right: 10px;
}

.nav-links {
    display: flex;
    gap: 30px;
    font-size: 16px;
    font-weight: 500;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-color) !important;
}

.auth-buttons {
    display: flex;
    gap: 10px;
}

.auth-buttons .btn {
    padding: 8px 18px;
    border: none;
    border-radius: 3px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
}

.login {
    background-color: var(--primary-color) !important;
    color: white !important;
}

.signup {
    background-color: var(--secondary-color) !important;
    color: white !important;
    border-radius: 30px !important;
    padding: 10px 15px !important;
}


.navbar-nav .nav-link {
    font-weight: 500;
    font-size: 16px;
    color: var(--text-color) !important;
}

.navbar-brand img {
    height: 60px;
}

/* Hover dropdown */
.hover-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: all 0.9s ease-in-out;
}

.dropdown-menu {
    display: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.9s ease-in-out;
}

.hero-section {
    background-position: center;
    background-size: cover;
    height:70vh;
}

.banner1 {
    background-image: linear-gradient(to bottom, rgba(8, 8, 8, 0.404), rgb(8 8 8 / 53%)), url(imgs/hero-1.jpg);
}

.banner2 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(imgs/hero-2.jpg);
}

.banner3 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(imgs/slider-2.jpg);
}

.banner4 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(imgs/hero-3.jpg);
}
.banner5 {
    background-image: linear-gradient(to bottom, rgb(8 8 8 / 58%), rgb(8 8 8 / 53%)), url(imgs/road-fr.png);
}

.hero-section .hero-content {
    padding: 160px 0 180px 0;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}


.hero-section .hero-content h1 {
    font-size: 45px;
    text-transform: uppercase;
}

.hero-section .hero-content p {
    width: 70%;
    margin: 0 auto;
}

.hero-text h1 {
    font-size: 36px;
    font-weight: 600;
    line-height: 1.5;
    color: #222;
}

.main-carousel .slide-item {
    width: 100%;
    height: 100%;
    background: #000;
    position: relative;
}

.main-carousel .slide-item img {
    opacity: 0.5;
    position: relative;
}

.main-carousel .slide-text {
    position: absolute;
    left: 200px;
    top: 50%;
    z-index: 1;
    max-width: 580px;
    text-align: left;
    /* margin-top: -160px; */
    transform: translateY(-100%);
}

.owl-dots {
    position: absolute;
    z-index: 2;
    bottom: 10px;
    left: 50%;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--secondary-color) !important;
}

.owl-theme .owl-dots .owl-dot span {
    background: #ffffffab !important;
}

span {
    color: var(--secondary-color);
    font-weight: bold;
}

.hero-text button {
    background-color: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 10px 25px;
    margin-top: 20px;
    font-weight: 600;
    transition: background 0.2s ease;
}

.hero-text button:hover {
    background-color: #444;
}

/* 
.hero-text {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
} */
.text-justify {
    text-align: justify;
}

.hero-image {
    position: relative;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    border-top-left-radius: 50px;
    border-bottom-left-radius: 50px;
    height: 500px;
    display: block;
    object-fit: cover;
}

.map-button {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid #fff;
    padding: 6px 15px;
    border-radius: 30px;
    font-size: 0.9rem;
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    gap: 8px;
}

.carousel-dots {
    position: absolute;
    bottom: 15px;
    right: 15px;
    display: flex;
    gap: 8px;
}

.carousel-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #000;
    opacity: 0.3;
    cursor: pointer;
}

.carousel-dots span.active {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero-section {
        flex-direction: column;
        padding: 2rem;
    }

    .hero-text {
        text-align: center;
        margin-bottom: 2rem;
    }
}

.carousel-indicators [data-bs-target] {
    border-radius: 50% !important;
    box-sizing: content-box;
    flex: 0 1 auto;
    width: 15px !important;
    height: 15px !important;
    padding: 0;
    margin-right: 9px;
    margin-left: 11px;
    text-indent: -999px;
    cursor: pointer;
    background-color: #fff;
    background-clip: padding-box;
    border: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    opacity: .5;
    transition: opacity .6s ease;
}

.icon-box {
    background-color: var(--secondary-color);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

.logistics-card {
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    border-radius: 15px !important;
}

.logistics-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 121, 107, 0.2);
}

.logistics-card:hover .icon-box {
    background-color: var(--primary-color);
}

.hero-btn {
    width: 100%;
}

.destination-section {
    padding: 100px 40px;
    background: #fff;
}

.destination-wrapper {
    display: flex;
    gap: 20px;
}

.destination-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    flex-shrink: 0;
    background-size: 134%;
    background-position: center;
    transition: background-size 0.5s ease;

}

.destination-card:hover {
    background-size: 170%;
    transition: background-size 0.5s ease;
}

.destination-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    color: #fff;
    font-family: 'Segoe UI', sans-serif;
}

.destination-info h5 {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
}

.destination-info p {
    margin: 0;
    font-size: 14px;
}

.card-lg {
    width: 100%;
    min-height: 480px;
    background-position: center;
    background-size: cover;
}

.card-md {
    width: 100%;
    height: 250px;
}

.card-sm {
    width: 280px;
    height: 180px;
}

.card-wide {
    width: 400px;
    height: 200px;
}

.inner_card_img {
    display: flex;
    gap: 26px;
}

.carousel-track-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.carousel-track {
    display: flex;
}

.card-group {
    display: flex !important;
    flex-wrap: nowrap !important;
}

.property-card {
    width: 480px;
    height: 600px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background-color: #000;
    transition: transform 0.2s ease-in-out;
}

.property-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg,
            rgba(255, 255, 255, 0.068) 0%,
            rgba(255, 255, 255, 0.26) 50%,
            rgba(255, 255, 255, 0.123) 100%);
    transform: skewX(-25deg);
}

.property-card:hover::before {
    animation: flashMove 0.6s ease-in-out;
}

@keyframes flashMove {
    0% {
        left: -75%;
    }

    100% {
        left: 125%;
    }
}



.property-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card-content {
    position: absolute;
    bottom: 0;
    color: #fff;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 15px;
    width: 100%;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.cta {
    background-image: linear-gradient(#ffffff, #ffffffdb), url(imgs/bg-cta.jpg);
    background-size: contain;

}

.footer {
    background-color: #f8f8f8;
    color: #fff;
    padding-top: 40px;
}

.footer .logo img {
    max-width: 150px;
}

.footer .description {
    margin-top: 15px;
    font-size: 15px;
    line-height: 1.7;
    color: #000;
}

.footer .social-icons a {
    display: inline-block;
    width: 36px;
    height: 36px;
    margin-right: 10px;
    background-color: #fff;
    color: #1c1c1c;
    text-align: center;
    line-height: 36px;
    border-radius: 6px;
    font-size: 16px;
    transition: 0.3s;
}

.footer .social-icons a:hover {
    background-color: var(--secondary-color);
    color: #fff;
}

.footer h5 {
    margin-bottom: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.footer a {
    color: var(--primary-color);
    text-decoration: none;
    margin-bottom: 10px;
}

.footer a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    background-color: #373737;
    color: #000 !important;
    padding: 10px 0;
    text-align: center;
    font-size: 14px;
}

.list-unstyled li {
    margin-bottom: 5px !important;
}

.footer-bottom h6 {
    color: #ffffff4d;
    font-size: 12px;
}



.contact-section {
    background: #f8f8f8;
    border-radius: 20px;
    overflow: hidden;
    padding: 15px;
}

.contact-form {
    padding: 40px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    border: 1px solid var(--secondary-color);
    border-radius: 8px;
    padding: 10px 15px;
    margin-bottom: 15px;
    width: 100%;
    background: #fafafa;
}

.contact-form input:focus,
.contact-form textarea:focus ,
.contact-form select:focus{
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(243, 124, 56, 0.25);
}

.contact-form h3 {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 20px;
}

.contact-btn {
    background-color: var(--secondary-color);
    color: #fff;
    border: none;
    padding: 12px 20px;
    font-weight: bold;
    border-radius: 8px;
    width: 100%;
}

.contact-btn i {
    margin-right: 5px;
}

.contact-image {
    background: url('your-image-path.jpg') center center/cover no-repeat;
    color: white;
    padding: 40px;
    position: relative;
}

.contact-image .overlay {
    background-image: url(imgs/hero-1.jpg);
    background-size: cover;

    padding: 20px;
    height: 100%;
    border-radius: 20px;
}

.contact-image i {
    margin-right: 10px;
}

.contact-image .social-icons a {
    color: #fff;
    margin-right: 15px;
    font-size: 18px;
}

.contact_inner {
    background-color: #0000001f;
    padding: 31px;
    backdrop-filter: blur(3px);
    border-radius: 17px;
}

.contact_inner i {
    font-size: 22px;
    color: #f87c42;
}

.contact_inner p {
    font-size: 20px;
}



/* button */
.playbtn {
    position: relative;
    display: inline-block;

    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    transition: 0.5s;
    font-weight: 600;
    padding: 14px 26px;
    overflow: hidden;
}

/* 
.playbtn:hover {
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 5px #fff, 0 0 25px #fff, 0 0 50px #fff, 0 0 200px #fff;
    -webkit-box-reflect: below 1px linear-gradient(transparent, #0005);
} */

.playbtn span {
    position: absolute;
    display: block;
}

.playbtn span:nth-child(1) {
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, transparent, #f87c42);
    animation: animate1 2s linear infinite;
}

@keyframes animate1 {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.playbtn span:nth-child(2) {
    top: -100%;
    right: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #f87c42);
    animation: animate2 2s linear infinite;
    animation-delay: 0.5s;
}

@keyframes animate2 {
    0% {
        top: -100%;
    }

    50%,
    100% {
        top: 100%;
    }
}

.playbtn span:nth-child(3) {
    bottom: 0;
    right: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(270deg, transparent, #f87c42);
    animation: animate3 2s linear infinite;
    animation-delay: 1s;
}

@keyframes animate3 {
    0% {
        right: -100%;
    }

    50%,
    100% {
        right: 100%;
    }
}

.playbtn span:nth-child(4) {
    bottom: -100%;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(360deg, transparent, #f87c42);
    animation: animate4 2s linear infinite;
    animation-delay: 1.5s;
}

@keyframes animate4 {
    0% {
        bottom: -100%;
    }

    50%,
    100% {
        bottom: 100%;
    }
}

.carousel-indicators {
    position: absolute;
    right: 0 !important;
    top: 50% !important;
    left: auto !important;
    z-index: 2;
    display: flex;
    gap: 0px;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    margin-right: 0 !important;
    margin-bottom: 1rem;
    margin-left: 0 !important;
    transform: translateY(-50%);
}

.carousel-indicators [data-bs-target] {
    background-color: #262e66 !important;
}

.about_us {
    background-image: linear-gradient(#ffffffaf, #ffffffa6), url(imgs/dot_map.webp);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.about_us img {
    mix-blend-mode: multiply;
}

.why-choose {
    margin-top: 50px;
    padding: 50px 0px;
    background-color: #f4f4f4;
}

.why-choose .why-choose-box {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px 7px rgb(0 0 0 / 3%);
}

.why-choose .why-choose-box .why-icon {
    display: flex;
    align-items: center;
}

.why-choose .why-choose-box .why-icon img {
    background-color: var(--secondary-color);
    padding: 8px;
    width: 50px;
    border-radius: 5px;
}

.why-choose .why-choose-box .why-icon h5 {
    margin-left: 20px;
}

.why-choose .why-choose-box p {
    margin-top: 15px;
    margin-bottom: 0px;
}

.breadcrumb-section {
    position: relative;
    background-image: linear-gradient(#00000080, #00000077), url(imgs/breadcrum-bg.jpg);
    background-size: cover;
    background-position: center;
    padding: 100px 0px;
    text-align: center;
    z-index: 1;
}

.custom_img,
.custom_img img {
    border-radius: 10px;
    height: 100%;
    width: 100%;
    overflow: hidden;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

.custom_img img {
    object-fit: cover;
    transition: .4s ease;
}

.custom_img:hover img {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.director_member h5 {
    color: var(--secondary-color);
    font-size: 18px;
}

.vision {
    padding: 70px 0;
}


.carousel-track {
    overflow: hidden;
    width: 100%;
}

.carousel-wrapper {
    background: #fff;
    padding: 40px 0;
    --dot-bg: white;
    --dot-color: black;
    --dot-size: 1px;
    --dot-space: 22px;
    background: linear-gradient(90deg, var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), linear-gradient(var(--dot-bg) calc(var(--dot-space) - var(--dot-size)), transparent 1%) center / var(--dot-space) var(--dot-space), var(--dot-color);
}

.partner-logo-carousel-track {
    display: flex;
    width: fit-content;
}

.partner-logo-carousel {
    display: flex;
    gap: 50px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.partner-logo-carousel img {
    max-height: 60px;
    opacity: 0.8;
    transition: 0.3s;
}

.partner-logo-carousel img:hover {
    opacity: 1;
    transform: scale(1.05);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.contact-us .card i {
    font-size: 30px;
    width: 60px;
    height: 60px;
    display: flex;
    background: var(--primary-color);
    color: #fff;
    border-radius: 30px;
    justify-content: center;
    align-items: center;
    margin-right: 18px;
}

.form-control:focus {
    color: #212529;
    border: 1px solid;
    border-color: var(--red) !important;
    box-shadow: unset !important;
}