/* @import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
:root {
    --brand: #ffc107;
    --brand-dark: #e0a800;
    --dark: #1a1a1a;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
    --light-bg: #f8f9fa;
} */

@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@400;500;600;700&display=swap');
:root {
    --brand: #f08a4b;
    --dark: #234056;
    --body: #516171;
    --border: rgba(0, 0, 0, 0.08);
    --shadow: 0px 6px 30px rgba(0, 0, 0, 0.08);
}

body {
    font-family: "Barlow", sans-serif;
    color: var(--body);
    line-height: 1.7;
}

.brand-logo {
    color: var(--dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-1,
.display-2,
.display-3,
.display-4 {
    font-weight: 700;
    color: var(--dark);
}

.bg-cover {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

img {
    width: 100%;
}

a {
    color: var(--dark);
    transition: all 0.4s ease;
    font-weight: 500;
}

a:hover {
    color: var(--brand);
}

section {
    padding-top: 80px;
    padding-bottom: 80px;
}

.text-brand {
    color: var(--brand) !important;
}


/* Top Navigation */

.top-nav {
    background-color: var(--dark);
    color: #fff;
    padding-top: 8px;
    padding-bottom: 8px;
}

.top-nav p {
    display: inline-block;
    margin-bottom: 0;
    margin-right: 20px;
}

.top-nav span,
.top-nav i {
    vertical-align: middle;
}

.top-nav i {
    color: var(--brand);
    /* margin-right: 8px; */
}


/* Navbar */

.navbar {
    box-shadow: var(--shadow);
    background-color: #fff !important;
}

.social-icons a {
    width: 28px;
    height: 28px;
    display: inline-flex;
    color: #fff;
    background-color: rgba(255, 255, 255, 0.25);
    text-decoration: none;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    margin-left: 5px;
}

.social-icons a:hover {
    background-color: var(--brand);
    color: #000;
}

.conditions-section {
    margin: 20px 0;
}

.conditions-section a {
    color: rgba(255, 255, 255, 0.8);
    margin: 0 10px;
    text-decoration: none;
}

.conditions-section a:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 500;
    padding: 8px 15px;
    margin: 0 5px;
}

.navbar .navbar-nav .nav-link:hover {
    color: var(--brand);
}

.navbar .navbar-nav .nav-link.active {
    color: var(--brand);
}

.navbar-brand-text {
    color: var(--brand);
    font-weight: 700;
    margin: 0;
    font-size: 28px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn {
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 4px;
}

.btn-brand {
    border-color: var(--brand);
    background-color: var(--brand);
    color: #000;
}

.btn-brand:hover {
    background-color: var(--brand-dark);
    border-color: var(--brand-dark);
    color: #000;
}

.btn-outline-light {
    border-color: rgba(255, 255, 255, 0.8);
    color: rgba(255, 255, 255, 0.8);
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    color: #fff;
}


/* Intro Section */

.intro {
    margin-bottom: 50px;
    text-align: center;
}

.intro p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.intro h6 {
    color: var(--brand);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 10px;
}

.intro h1 {
    margin-top: 15px;
    margin-bottom: 20px;
    font-size: 2.8rem;
}


/* Info Box */

.info-box {
    align-items: flex-start;
    display: flex;
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.info-box:hover {
    transform: translateY(-5px);
}

.info-box img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    margin-right: 20px;
}

.info-box h5 {
    color: var(--dark);
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.info-box p {
    margin-bottom: 0;
    font-size: 0.95rem;
}


/* Milestone Section */

#milestone {
    background: linear-gradient(rgba(255, 193, 7, 0.9), rgba(26, 26, 26, 0.9)), url(../img/bg_banner1.jpg);
    background: linear-gradient(rgb(255 133 7 / 90%), rgba(26, 26, 26, 0.9)), url(../img/bg_banner1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 0;
}

#milestone h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 10px;
}

#milestone p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
}


/* Services/Products Section */

#products {
    background-color: var(--light-bg);
}

.service {
    padding: 30px;
    background-color: #fff;
    box-shadow: var(--shadow);
    border-radius: 8px;
    height: 100%;
    transition: all 0.3s ease;
    text-align: center;
}

.service:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.service h5 {
    margin-top: 20px;
    margin-bottom: 15px;
    color: var(--dark);
    font-size: 1.3rem;
}

.service img {
    /* width: auto;
    height: 80px; */
    object-fit: contain;
    margin: 0 auto;
}

.service p {
    font-size: 0.95rem;
    line-height: 1.6;
}


/* Projects Section */

.project {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 350px;
}

.project .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 193, 7, 0) 0%, rgba(26, 26, 26, 0.9) 100%);
    z-index: 1;
}

.project img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project:hover img {
    transform: scale(1.1);
}

.project .content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px;
    color: #fff;
    z-index: 2;
    transition: all 0.3s ease;
}

.project h2 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: #fff;
}

.project h6 {
    font-weight: 400;
    color: var(--brand);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* Team/Solutions Section */

.team-member {
    text-align: center;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.team-member .image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.team-member img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 193, 7, 0.8);
    opacity: 0;
    transition: all 0.4s ease;
}

.team-member:hover .overlay {
    opacity: 1;
}

.team-member h5 {
    margin: 20px 0 5px;
    color: var(--dark);
    font-size: 1.2rem;
}

.team-member p {
    color: var(--body);
    font-size: 0.9rem;
    padding: 0 15px 20px;
}


/* Testimonials Section */

#reviews {
    background: linear-gradient(rgba(26, 26, 26, 0.9), rgba(26, 26, 26, 0.9)), url(../img/bg_banner1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.review {
    text-align: center;
    position: relative;
    max-width: 768px;
    margin: auto;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.review .bxs-quote-alt-left {
    font-size: 120px;
    position: absolute;
    opacity: 0.1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
}

.review .person img {
    width: 80px !important;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    object-fit: cover;
    border: 3px solid var(--brand);
}

.review h5 {
    margin-top: 16px;
    margin-bottom: 4px;
    color: #fff;
    font-size: 1.2rem;
}

.review small {
    color: var(--brand);
    font-size: 0.9rem;
}

.review h3 {
    margin: 25px 0;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    line-height: 1.7;
    font-style: italic;
}

.review .stars {
    color: var(--brand);
    font-size: 1.2rem;
}


/* Footer */

footer {
    background: linear-gradient(rgba(26, 26, 26, 0.95), rgba(26, 26, 26, 0.95)), url(../img/bg_banner1.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

footer .footer-top {
    padding-top: 80px;
    padding-bottom: 40px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
}

footer p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto 20px;
}

footer .social-icons a {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin: 0 5px;
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

footer .social-icons a:hover {
    background: var(--brand);
    color: #000;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 0;
}


/* Form Styles */

.form-control {
    background-color: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.1);
    height: 50px;
    border-radius: 4px;
    padding: 10px 15px;
}

.form-control:focus {
    box-shadow: 0 0 0 3px rgba(255, 193, 7, 0.2);
    border-color: var(--brand);
    background-color: #fff;
}

textarea.form-control {
    height: auto;
    min-height: 120px;
}


/* Modal */

.modal-bg-overlay {
    background: rgba(0, 0, 0, 0.7);
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
}

.modal-bg-overlay h3 {
    color: var(--brand);
    font-size: 1.8rem;
    margin-bottom: 10px;
}


/* Video Hero Slider */

.video-hero-slider {
    width: 100%;
    height: 100vh;
    min-height: 700px;
    position: relative;
}

.video-slide {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 700px;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

.content-container {
    position: relative;
    z-index: 3;
    height: 100%;
    display: flex;
    align-items: center;
    text-align: center;
}

.content-container h1 {
    color: #fff !important;
    font-size: 3.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    margin-bottom: 20px;
}

.content-container h6 {
    color: var(--brand) !important;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 14px;
    margin-bottom: 20px;
}

.content-container p.lead {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}


/* Swiper Navigation */

.swiper-button-next,
.swiper-button-prev {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 193, 7, 0.8);
    color: #000 !important;
}


/* Swiper Pagination */

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.swiper-pagination-bullet-active {
    background: var(--brand);
}


/* Responsive Design */

@media (max-width: 768px) {
    .video-hero-slider,
    .video-slide {
        height: 70vh;
        min-height: 500px;
    }
    .content-container h1 {
        font-size: 2.2rem;
    }
    .content-container p.lead {
        font-size: 1rem;
    }
    .intro h1 {
        font-size: 2rem;
    }
    .info-box {
        flex-direction: column;
        text-align: center;
    }
    .info-box img {
        margin-right: 0;
        margin-bottom: 15px;
        display: block;
        margin: 0 auto;
    }
    #milestone h1 {
        font-size: 2.5rem;
    }
    section {
        padding-top: 60px;
        padding-bottom: 60px;
    }
    .top-nav p {
        display: block;
        margin-right: 0;
        margin-bottom: 5px;
    }
}

@media (max-width: 576px) {
    .btn {
        padding: 8px 20px;
        font-size: 0.9rem;
    }
    .content-container h1 {
        font-size: 1.8rem;
    }
    .service {
        padding: 20px;
    }
    .review {
        padding: 20px;
    }
}


/* Animations */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}


/* Owl Carousel Overrides */

.owl-theme .owl-nav [class*=owl-] {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    background: var(--brand) !important;
    color: #000 !important;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background: var(--brand) !important;
}


/* ------------------------------------------- */

.navbar-brand-img {
    height: 50px !important;
}

#detach-button-host {
    display: none !important;
}