@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@500;600;700&family=Open+Sans:wght@400;500;600;700;800&display=swap");

:root {
    --dark: #050505;
    --dark-soft: #0b0b0b;
    --green-dark: #071f1d;
    --green: #0d3b36;
    --gold: #d4af37;
    --gold-light: #ffc233;
    --white: #ffffff;
    --text: #111827;
    --muted: #6b7280;
    --soft-bg: #f7f7f4;
    --card-dark: #151515;
    --border: rgba(212, 175, 55, 0.28);
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.16);
}

* {
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--text);
    background-color: var(--white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    display: block;
}

a,
a:hover,
a:focus {
    text-decoration: none;
}

button,
.btn,
.btn:focus {
    outline: none !important;
    box-shadow: none;
}

h1,
h2,
.footer-logo {
    font-family: "Dancing Script", cursive;
}

section {
    width: 100%;
    overflow: hidden;
}

main {
    width: 100%;
    overflow: hidden;
}

.container {
    width: 100%;
    max-width: 1320px;
    padding-left: 24px;
    padding-right: 24px;
}

.row {
    margin-left: -12px;
    margin-right: -12px;
}

.row > [class*="col-"] {
    padding-left: 12px;
    padding-right: 12px;
}

.layout_padding {
    padding: 90px 0;
}

.layout_padding2 {
    padding: 75px 0;
}

.layout_padding2-top {
    padding-top: 75px;
}

.layout_padding2-bottom {
    padding-bottom: 75px;
}

.layout_padding-top {
    padding-top: 90px;
}

.layout_padding-bottom {
    padding-bottom: 90px;
}

.heading_container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 36px;
}

.heading_container.heading_center {
    align-items: center;
    text-align: center;
}

.heading_container h2 {
    position: relative;
    margin-bottom: 0;
    color: inherit;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.15;
}

.heading_container h2 span {
    color: var(--gold);
}

.heading_container p {
    margin-top: 12px;
    margin-bottom: 0;
    color: var(--muted);
    max-width: 720px;
}

.theme-btn,
.btn1,
.order_online,
.food_section .btn-box a,
.about_section .detail-box a,
.offer_section .box .detail-box a,
.book_section .form_container button,
.contact_section .form_container button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 30px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    color: #111111 !important;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    font-weight: 700;
    transition: all 0.25s ease;
    box-shadow: 0 14px 34px rgba(212, 175, 55, 0.22);
}

.theme-btn:hover,
.btn1:hover,
.order_online:hover,
.food_section .btn-box a:hover,
.about_section .detail-box a:hover,
.offer_section .box .detail-box a:hover,
.book_section .form_container button:hover,
.contact_section .form_container button:hover {
    background: linear-gradient(135deg, #ffd45c, var(--gold));
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(212, 175, 55, 0.35);
    color: #000000 !important;
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 30px;
    color: var(--white) !important;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
}

.btn-outline-gold:hover {
    color: var(--gold-light) !important;
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Header and hero */
.hero_area {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background: var(--dark);
}

.bg-box {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.bg-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.82),
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.2)
        ),
        linear-gradient(180deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.65));
}

.bg-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.sub_page .hero_area {
    min-height: 420px;
}

.header_section {
    position: relative;
    z-index: 20;
    padding: 18px 0;
}

.custom_nav-container {
    width: 100%;
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(7, 31, 29, 0.72);
    border: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.18);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: "Open Sans", sans-serif;
}

.navbar-brand img,
.brand-logo {
    width: 48px;
    height: 48px;
    object-fit: contain;
    border-radius: 12px;
}

.navbar-brand span,
.brand-text {
    font-weight: 800;
    font-size: 18px;
    color: var(--white);
    letter-spacing: 0.4px;
}

.custom_nav-container .navbar-nav {
    padding-left: 0 !important;
    margin-left: auto;
    margin-right: auto;
    align-items: center;
}

.custom_nav-container .navbar-nav .nav-item {
    margin: 0 4px;
}

.custom_nav-container .navbar-nav .nav-item .nav-link {
    position: relative;
    padding: 10px 14px;
    color: rgba(255, 255, 255, 0.88);
    text-align: center;
    text-transform: uppercase;
    border-radius: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.7px;
    transition: all 0.25s ease;
}

.custom_nav-container .navbar-nav .nav-item .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 2px;
    background: var(--gold);
    border-radius: 20px;
    transform: scaleX(0);
    transition: transform 0.25s ease;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link,
.custom_nav-container .navbar-nav .nav-item.active .nav-link,
.custom_nav-container .navbar-nav .nav-link.active {
    color: var(--gold-light) !important;
}

.custom_nav-container .navbar-nav .nav-item:hover .nav-link::after,
.custom_nav-container .navbar-nav .nav-item.active .nav-link::after,
.custom_nav-container .navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.user_option {
    display: flex;
    align-items: center;
}

.user_option a {
    margin: 0;
}

.user_option .order_online {
    padding: 10px 28px;
}

.custom_nav-container .navbar-toggler {
    width: 42px;
    height: 42px;
    padding: 9px;
    border: 1px solid rgba(212, 175, 55, 0.42);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 auto;
    position: relative;
    border-radius: 5px;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before,
.custom_nav-container .navbar-toggler span::after {
    content: "";
    position: absolute;
    left: 0;
    height: 2px;
    width: 22px;
    background-color: var(--gold);
    border-radius: 5px;
    transition: all 0.3s;
}

.custom_nav-container .navbar-toggler span::before {
    top: -7px;
}

.custom_nav-container .navbar-toggler span::after {
    top: 7px;
}

.slider_section {
    flex: 1;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 3;
    padding: 70px 0 120px;
}

.slider_section #customCarousel1 {
    width: 100%;
    position: unset;
}

.slider_section .row {
    align-items: center;
}

.slider_section .detail-box {
    max-width: 680px;
    color: var(--white);
    margin-bottom: 0;
}

.slider_section .detail-box .eyebrow {
    display: inline-block;
    color: var(--gold-light);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.slider_section .detail-box h1 {
    font-size: clamp(44px, 5vw, 78px);
    font-weight: 700;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 0 14px 36px rgba(0, 0, 0, 0.5);
}

.slider_section .detail-box p {
    font-size: 17px;
    line-height: 1.8;
    max-width: 620px;
    color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin-top: 20px;
}

.slider_section .carousel-indicators {
    position: absolute;
    left: 0;
    bottom: 42px;
    justify-content: flex-start;
    align-items: center;
    margin: 0 15px;
}

.slider_section .carousel-indicators li {
    background-color: rgba(255, 255, 255, 0.85);
    width: 12px;
    height: 12px;
    border-radius: 100%;
    opacity: 1;
    border: 0;
}

.slider_section .carousel-indicators li.active {
    width: 30px;
    height: 12px;
    border-radius: 999px;
    background-color: var(--gold-light);
}

/* Offer / service blocks */
.offer_section {
    position: relative;
    padding: 90px 0;
    background: var(--white);
}

.offer_section .box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
    border-radius: 22px;
    padding: 24px;
    background: linear-gradient(135deg, var(--green-dark), #101010);
    color: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.offer_section .box .img-box {
    width: 155px;
    min-width: 155px;
    height: 155px;
    margin-right: 0;
    border-radius: 20px;
    border: 3px solid var(--gold);
    overflow: hidden;
}

.offer_section .box .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.25s ease;
}

.offer_section .box:hover .img-box img {
    transform: scale(1.08);
}

.offer_section .box .detail-box h5 {
    font-family: "Open Sans", sans-serif;
    font-size: 24px;
    font-weight: 800;
    margin: 0;
}

.offer_section .box .detail-box h6 {
    font-family: "Open Sans", sans-serif;
    margin: 10px 0;
}

/* Dark card sections: services and fleet */
.food_section,
.service_section,
.fleet_section,
.our-service-section,
.our-fleet-section {
    background: var(--dark);
    color: var(--white);
    padding: 90px 0;
}

.food_section .heading_container p,
.service_section .heading_container p,
.fleet_section .heading_container p,
.our-service-section .heading_container p,
.our-fleet-section .heading_container p {
    color: rgba(255, 255, 255, 0.68);
}

.food_section .filters_menu {
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    list-style-type: none;
    margin: 40px 0 25px;
    gap: 10px;
}

.food_section .filters_menu li {
    padding: 9px 24px;
    cursor: pointer;
    border-radius: 999px;
    color: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.food_section .filters_menu li.active,
.food_section .filters_menu li:hover {
    background-color: var(--gold);
    color: #111111;
    border-color: var(--gold);
}

.food_section .box,
.service_section .box,
.fleet_section .box,
.our-service-section .box,
.our-fleet-section .box {
    position: relative;
    margin-top: 25px;
    border-radius: 18px;
    overflow: hidden;
    background: var(--card-dark);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
    transition: all 0.25s ease;
}

.food_section .box:hover,
.service_section .box:hover,
.fleet_section .box:hover,
.our-service-section .box:hover,
.our-fleet-section .box:hover {
    transform: translateY(-6px);
    border-color: var(--border);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.35);
}

.food_section .box .img-box,
.service_section .box .img-box,
.fleet_section .box .img-box,
.our-service-section .box .img-box,
.our-fleet-section .box .img-box {
    background: #111111;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 245px;
    border-radius: 0;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.food_section .box .img-box img,
.service_section .box .img-box img,
.fleet_section .box .img-box img,
.our-service-section .box .img-box img,
.our-fleet-section .box .img-box img {
    width: 100%;
    height: 100%;
    max-width: none;
    max-height: none;
    object-fit: cover;
    transition: all 0.3s ease;
}

.food_section .box:hover .img-box img,
.service_section .box:hover .img-box img,
.fleet_section .box:hover .img-box img,
.our-service-section .box:hover .img-box img,
.our-fleet-section .box:hover .img-box img {
    transform: scale(1.07);
}

.food_section .box .detail-box,
.service_section .box .detail-box,
.fleet_section .box .detail-box,
.our-service-section .box .detail-box,
.our-fleet-section .box .detail-box {
    padding: 24px;
}

.food_section .box .detail-box h5,
.service_section .box .detail-box h5,
.fleet_section .box .detail-box h5,
.our-service-section .box .detail-box h5,
.our-fleet-section .box .detail-box h5 {
    font-weight: 800;
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--white);
}

.food_section .box .detail-box p,
.service_section .box .detail-box p,
.fleet_section .box .detail-box p,
.our-service-section .box .detail-box p,
.our-fleet-section .box .detail-box p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.68);
    margin-bottom: 0;
}

.food_section .box .options {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.food_section .box .options a {
    width: 44px;
    height: 44px;
    border-radius: 100%;
    background: var(--gold);
    display: flex;
    justify-content: center;
    align-items: center;
}

.food_section .btn-box {
    display: flex;
    justify-content: center;
    margin-top: 45px;
}

/* About */
.about_section {
    background:
        radial-gradient(
            circle at 0 0,
            rgba(212, 175, 55, 0.14),
            transparent 28%
        ),
        linear-gradient(135deg, var(--green-dark), #090909);
    color: var(--white);
    padding: 100px 0;
}

.about_section .row {
    align-items: center;
}

.about_section .img-box {
    position: relative;
    display: flex;
    justify-content: center;
}

.about_section .img-box img {
    width: 100%;
    max-width: 560px;
    position: relative;
    z-index: 2;
    border-radius: 24px;
    object-fit: cover;
    box-shadow: var(--shadow);
}

.about_section .detail-box p {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.9;
}

/* Forms */
.book_section,
.contact_section {
    position: relative;
    padding: 90px 0;
    background: var(--soft-bg);
}

.book_section .heading_container,
.contact_section .heading_container {
    margin-bottom: 32px;
}

.book_section .form_container .form-control,
.contact_section .form_container input,
.contact_section .form_container textarea {
    width: 100%;
    border: 1px solid rgba(17, 24, 39, 0.12);
    min-height: 52px;
    margin-bottom: 22px;
    padding-left: 20px;
    outline: none;
    color: var(--text);
    border-radius: 12px;
    box-shadow: none;
    background: var(--white);
    transition: all 0.25s ease;
}

.book_section .form_container .form-control:focus,
.contact_section .form_container input:focus,
.contact_section .form_container textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.14);
}

.contact_section .form_container input.message-box {
    height: 130px;
    border-radius: 12px;
}

.contact_section .form_container .btn-box {
    display: flex;
    justify-content: center;
}

.book_section .map_container {
    width: 100%;
    height: 360px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.book_section .map_container #googleMap {
    height: 100%;
    min-height: 100%;
    width: 100%;
}

/* Client */
.client_section {
    padding: 90px 0;
    background: var(--green-dark);
    color: var(--white);
}

.client_section .heading_container {
    margin-bottom: 34px;
}

.client_section .box {
    display: flex;
    flex-direction: column;
    margin: 15px;
}

.client_section .box .detail-box {
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 28px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.client_section .box .detail-box h6 {
    font-weight: 800;
    font-size: 18px;
    margin: 15px 0 5px;
}

.client_section .box .detail-box p {
    margin-bottom: 10px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.72);
}

.client_section .box .img-box {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 115px;
    margin-top: 28px;
}

.client_section .box .img-box img {
    border-radius: 100%;
    border: 5px solid var(--gold);
}

.client_section .owl-carousel .owl-nav {
    display: flex;
    justify-content: center;
    margin-top: 45px;
    padding: 0 15px;
}

.client_section .owl-carousel .owl-nav .owl-prev,
.client_section .owl-carousel .owl-nav .owl-next {
    width: 45px;
    height: 45px;
    background-color: var(--gold);
    color: #111111;
    outline: none;
    font-size: 24px;
    margin: 0 5px;
    border-radius: 100%;
}

/* Team */
.team_section,
.team-section {
    padding: 90px 0;
    background: var(--white);
}

.team_section .team-card,
.team-section .team-card {
    text-align: center;
    margin-bottom: 30px;
}

.team_section img,
.team-section img {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 18px;
    border: 5px solid #f3f4f6;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
}

.team_section h5,
.team-section h5 {
    font-size: 22px;
    font-weight: 800;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.team_section p,
.team-section p {
    color: var(--muted);
    margin-bottom: 0;
}

/* White custom information sections */
.bulletproof-section,
.responsibility-section {
    background: var(--white);
    color: var(--text);
    padding: 90px 0;
}

.bulletproof-section .card,
.responsibility-section .card {
    border: 1px solid rgba(17, 24, 39, 0.08);
    border-left: 4px solid var(--gold);
    border-radius: 18px;
    box-shadow: 0 16px 44px rgba(0, 0, 0, 0.08);
}

/* Footer */
.footer_section {
    background:
        radial-gradient(
            circle at 20% 0%,
            rgba(212, 175, 55, 0.1),
            transparent 30%
        ),
        linear-gradient(135deg, var(--green-dark), #111827);
    color: var(--white);
    padding: 80px 0 24px;
    text-align: center;
}

.footer_section h4 {
    font-size: 30px;
    color: var(--white);
}

.footer_section h4,
.footer_section .footer-logo {
    font-weight: 700;
    margin-bottom: 20px;
    font-family: "Dancing Script", cursive;
}

.footer_section p {
    color: rgba(255, 255, 255, 0.76);
}

.footer_section .footer-col {
    margin-bottom: 34px;
}

.footer_section .footer_contact .contact_link_box {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer_section .footer_contact .contact_link_box a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin: 0;
    color: rgba(255, 255, 255, 0.86);
    transition: all 0.25s ease;
}

.footer_section .footer_contact .contact_link_box a i {
    color: var(--gold-light);
}

.footer_section .footer_contact .contact_link_box a:hover {
    color: var(--gold-light);
}

.footer_section .footer-logo {
    display: block;
    font-weight: 700;
    font-size: 40px;
    line-height: 1;
    color: var(--white);
}

.footer_section .footer_social {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 22px;
    margin-bottom: 10px;
}

.footer_section .footer_social a {
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    width: 42px;
    height: 42px;
    border-radius: 100%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 18px;
    transition: all 0.25s ease;
}

.footer_section .footer_social a:hover {
    background: var(--gold);
    color: #111111;
    transform: translateY(-3px);
}

.footer_section .footer-info {
    text-align: center;
    margin-top: 18px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer_section .footer-info p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
    font-size: 14px;
}

@media (max-width: 991.98px) {
    .container {
        max-width: 100%;
        padding-left: 18px;
        padding-right: 18px;
    }

    .custom_nav-container {
        border-radius: 24px;
        padding: 12px 16px;
    }

    .navbar-collapse {
        margin-top: 18px;
        padding-top: 14px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }

    .custom_nav-container .navbar-nav {
        align-items: flex-start;
    }

    .custom_nav-container .navbar-nav .nav-item {
        width: 100%;
        margin: 2px 0;
    }

    .custom_nav-container .navbar-nav .nav-item .nav-link {
        text-align: left;
        padding: 11px 0;
    }

    .custom_nav-container .navbar-nav .nav-item .nav-link::after {
        left: 0;
        right: auto;
        width: 42px;
    }

    .user_option {
        margin-top: 14px;
        width: 100%;
    }

    .user_option .order_online {
        width: 100%;
    }

    .slider_section {
        padding: 60px 0 110px;
    }

    .offer_section .box {
        flex-direction: column;
        text-align: center;
    }

    .footer_section .footer_contact .contact_link_box a {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .layout_padding,
    .food_section,
    .about_section,
    .book_section,
    .contact_section,
    .client_section,
    .team_section,
    .team-section,
    .service_section,
    .fleet_section,
    .our-service-section,
    .our-fleet-section,
    .bulletproof-section,
    .responsibility-section {
        padding: 60px 0;
    }

    .slider_section .detail-box h1 {
        font-size: 42px;
    }

    .slider_section .detail-box p {
        font-size: 15px;
    }

    .food_section .box .img-box,
    .service_section .box .img-box,
    .fleet_section .box .img-box,
    .our-service-section .box .img-box,
    .our-fleet-section .box .img-box {
        height: 220px;
    }

    .about_section .img-box {
        margin-bottom: 30px;
    }
}

@media (max-width: 575.98px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .navbar-brand span,
    .brand-text {
        font-size: 15px;
    }

    .navbar-brand img,
    .brand-logo {
        width: 42px;
        height: 42px;
    }

    .slider_section {
        padding: 48px 0 95px;
    }

    .slider_section .detail-box h1 {
        font-size: 36px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions a {
        width: 100%;
    }

    .slider_section .carousel-indicators {
        bottom: 28px;
    }

    .offer_section .box .img-box {
        width: 130px;
        min-width: 130px;
        height: 130px;
    }

    .footer_section {
        padding-top: 60px;
    }
}

/* ===============================
   Home Services Section Fix
================================ */

.home_services_section {
    background: #0d0d0d;
    padding: 90px 0;
    color: #ffffff;
}

.section_top_row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.section_subtitle {
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.section_title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
}

.section_outline_btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 13px 30px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    color: #d4af37 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.section_outline_btn:hover {
    background: #d4af37;
    color: #111111 !important;
    transform: translateY(-2px);
}

.home_service_card {
    height: 100%;
    min-height: 360px;
    background: #161616;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.home_service_card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.home_service_img {
    width: 100%;
    height: 210px;
    overflow: hidden;
    background: #111111;
    flex-shrink: 0;
}

.home_service_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.home_service_card:hover .home_service_img img {
    transform: scale(1.06);
}

.home_service_body {
    padding: 22px 22px 24px;
    flex: 1;
}

.home_service_body h5 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.home_service_body p {
    margin: 0;
    color: #a7a7a7;
    font-size: 15px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Mobile */
@media (max-width: 767.98px) {
    .home_services_section {
        padding: 65px 0;
    }

    .section_top_row {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 34px;
    }

    .section_outline_btn {
        width: 100%;
        justify-content: center;
    }

    .home_service_card {
        min-height: auto;
    }

    .home_service_img {
        height: 220px;
    }
}

/* ===============================
   Home Fleet Cards Section
================================ */

.home-fleet-section {
    background: #0d0d0d;
    padding: 90px 0 70px;
    color: #ffffff;
}

.home-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 48px;
}

.home-section-label {
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.home-section-title {
    margin: 0;
    color: #ffffff;
    font-size: clamp(36px, 4vw, 54px);
    font-weight: 700;
    line-height: 1.15;
}

.home-section-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-height: 52px;
    padding: 13px 30px;
    border: 1px solid #d4af37;
    border-radius: 8px;
    color: #d4af37 !important;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
}

.home-section-btn:hover {
    background: #d4af37;
    color: #111111 !important;
    transform: translateY(-2px);
}

.home-fleet-card {
    height: 100%;
    min-height: 370px;
    background: #161616;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.12);
    display: flex;
    flex-direction: column;
    transition: all 0.25s ease;
}

.home-fleet-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.45);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.home-fleet-image {
    width: 100%;
    height: 215px;
    overflow: hidden;
    background: #111111;
    flex-shrink: 0;
}

.home-fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

.home-fleet-card:hover .home-fleet-image img {
    transform: scale(1.06);
}

.home-fleet-content {
    padding: 22px 22px 24px;
    flex: 1;
}

.home-fleet-content h5 {
    margin-bottom: 12px;
    color: #ffffff;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.25;

    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 56px;
}

.home-fleet-content p {
    margin: 0;
    color: #a7a7a7;
    font-size: 15px;
    line-height: 1.65;

    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 767.98px) {
    .home-fleet-section {
        padding: 65px 0 45px;
    }

    .home-section-header {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 34px;
    }

    .home-section-btn {
        width: 100%;
        justify-content: center;
    }

    .home-fleet-card {
        min-height: auto;
    }

    .home-fleet-image {
        height: 220px;
    }
}

/* ===============================
   Founder / Legacy Stats Section
================================ */

.founder-legacy-section {
    position: relative;
    padding: 110px 0;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(212, 175, 55, 0.18),
            transparent 30%
        ),
        linear-gradient(135deg, #071f1d 0%, #111006 100%);
    color: #ffffff;
    overflow: hidden;
}

.founder-legacy-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
    pointer-events: none;
}

.founder-legacy-section .container {
    position: relative;
    z-index: 2;
}

.founder-visual-card {
    position: relative;
    max-width: 620px;
    margin: 0 auto;
    padding-bottom: 58px;
}

.founder-image-box {
    width: 100%;
    height: 520px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

.founder-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Stats Box */
.founder-stats-box {
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    padding: 24px 18px;
    border-radius: 22px;
    background: rgba(5, 5, 5, 0.96);
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}

.founder-stat {
    text-align: center;
}

.founder-stat h4 {
    margin: 0 0 7px;
    color: #ffffff;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
}

.founder-stat p {
    margin: 0;
    color: rgba(255, 255, 255, 0.68);
    font-size: 13px;
    line-height: 1.4;
}

/* Right Content */
.founder-content-box {
    max-width: 620px;
    padding-left: 35px;
}

.founder-small-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.founder-small-title::before {
    content: "";
    width: 48px;
    height: 2px;
    background: #d4af37;
    border-radius: 20px;
}

.founder-content-box h2 {
    margin-bottom: 24px;
    color: #ffffff;
    font-size: clamp(42px, 4.5vw, 66px);
    font-weight: 700;
    line-height: 1.08;
}

.founder-content-box p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.78);
    font-size: 16px;
    line-height: 1.9;
}

.founder-feature-list {
    display: grid;
    gap: 12px;
    margin: 28px 0 32px;
}

.founder-feature-list div {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
}

.founder-feature-list span {
    width: 26px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.16);
    color: #d4af37;
    font-weight: 900;
}

.founder-read-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ffc233, #d4af37);
    color: #111111 !important;
    font-weight: 800;
    box-shadow: 0 16px 40px rgba(212, 175, 55, 0.28);
    transition: all 0.25s ease;
}

.founder-read-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 52px rgba(212, 175, 55, 0.38);
    color: #000000 !important;
}

/* Responsive */
@media (max-width: 991.98px) {
    .founder-legacy-section {
        padding: 85px 0;
    }

    .founder-content-box {
        padding-left: 0;
        text-align: center;
        margin: 0 auto;
    }

    .founder-small-title {
        justify-content: center;
    }

    .founder-small-title::before {
        display: none;
    }

    .founder-feature-list div {
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .founder-visual-card {
        padding-bottom: 0;
    }

    .founder-image-box {
        height: 430px;
    }

    .founder-stats-box {
        position: relative;
        left: auto;
        right: auto;
        bottom: auto;
        margin-top: 18px;
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .founder-image-box {
        height: 350px;
    }

    .founder-stats-box {
        grid-template-columns: 1fr;
    }

    .founder-content-box h2 {
        font-size: 38px;
    }
}

/* ===============================
   Fleet Info Section
================================ */

.fleet-info-section {
    padding: 100px 0;
    background: #f8f8f5;
    color: #111111;
}

.fleet-info-content {
    max-width: 520px;
}

.fleet-small-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fleet-small-title::after {
    content: "";
    width: 46px;
    height: 2px;
    background: #d4af37;
    border-radius: 20px;
}

.fleet-info-content h2 {
    margin-bottom: 22px;
    color: #071f1d;
    font-size: clamp(38px, 4vw, 58px);
    font-weight: 700;
    line-height: 1.12;
}

.fleet-info-content p {
    margin: 0;
    color: #555555;
    font-size: 16px;
    line-height: 1.9;
}

.fleet-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.fleet-option-item {
    min-height: 70px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    background: #ffffff;
    color: #111111;
    font-size: 16px;
    font-weight: 700;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
    transition: all 0.25s ease;
}

.fleet-option-item:hover {
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.1);
}

.fleet-option-item span {
    width: 28px;
    height: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.16);
    color: #d4af37;
    font-weight: 900;
}

/* ===============================
   Fleet Banner Section
================================ */

.fleet-banner-section {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    background: #050505;
}

.fleet-banner-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.fleet-banner-section::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.25)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.65));
}

.fleet-banner-overlay {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 70px;
    z-index: 2;
    color: #ffffff;
}

.fleet-banner-overlay span {
    display: inline-block;
    margin-bottom: 10px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.fleet-banner-overlay h2 {
    margin: 0;
    max-width: 720px;
    color: #ffffff;
    font-size: clamp(42px, 5vw, 72px);
    font-weight: 700;
    line-height: 1.08;
}

/* ===============================
   Bulletproof Vehicle Section
================================ */

.bulletproof-section {
    padding: 100px 0 76px;
    background:
        radial-gradient(
            circle at 12% 15%,
            rgba(212, 175, 55, 0.1),
            transparent 28%
        ),
        #ffffff;
    color: #111111;
}

.bulletproof-header {
    max-width: 780px;
    margin: 0 auto 55px;
}

.bulletproof-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.bulletproof-header h2 {
    margin-bottom: 16px;
    color: #071f1d;
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.12;
}

.bulletproof-header p {
    margin: 0;
    color: #666666;
    font-size: 16px;
    line-height: 1.8;
}

.bulletproof-card {
    position: relative;
    height: 100%;
    padding: 34px 30px;
    border-radius: 22px;
    background: #f8f8f5;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.07);
    overflow: hidden;
    transition: all 0.25s ease;
}

.bulletproof-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #d4af37, #ffc233);
}

.bulletproof-card:hover {
    transform: translateY(-6px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 26px 70px rgba(0, 0, 0, 0.12);
}

.bulletproof-card-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 50%;
    background: #071f1d;
    color: #d4af37;
    font-size: 17px;
    font-weight: 900;
}

.bulletproof-card h4 {
    margin-bottom: 22px;
    color: #071f1d;
    font-size: 24px;
    font-weight: 800;
    line-height: 1.3;
}

.bulletproof-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bulletproof-card ul li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 13px;
    color: #333333;
    font-size: 15px;
    line-height: 1.55;
}

.bulletproof-card ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #d4af37;
    font-weight: 900;
}

/* Responsive */
@media (max-width: 991.98px) {
    .fleet-info-section,
    .bulletproof-section {
        padding: 75px 0;
    }

    .fleet-options-grid {
        grid-template-columns: 1fr;
    }

    .fleet-banner-section {
        height: 420px;
    }
}

@media (max-width: 767.98px) {
    .fleet-info-content {
        text-align: center;
        margin: 0 auto;
    }

    .fleet-small-title {
        justify-content: center;
    }

    .fleet-small-title::after {
        display: none;
    }

    .fleet-option-item {
        min-height: auto;
        align-items: flex-start;
    }

    .fleet-banner-section {
        height: 340px;
    }

    .fleet-banner-overlay {
        bottom: 40px;
        text-align: center;
    }

    .bulletproof-card {
        padding: 28px 24px;
    }
}

/* ===============================
   CEO / Co-Founder Sections
================================ */

.leader-section {
    position: relative;
    padding: 115px 0;
    color: #ffffff;
    overflow: hidden;
}

.leader-section-ceo {
    background:
        radial-gradient(
            circle at 12% 20%,
            rgba(212, 175, 55, 0.12),
            transparent 28%
        ),
        linear-gradient(135deg, #071f1d 0%, #0f3330 100%);
}

.leader-section-cofounder {
    background:
        radial-gradient(
            circle at 88% 20%,
            rgba(212, 175, 55, 0.12),
            transparent 28%
        ),
        linear-gradient(135deg, #0f3330 0%, #071f1d 100%);
    border-top: 1px solid rgba(212, 175, 55, 0.12);
}

.leader-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
    pointer-events: none;
}

.leader-section .container {
    position: relative;
    z-index: 2;
}

.leader-row {
    row-gap: 45px;
}

.leader-content {
    max-width: 650px;
    padding-right: 45px;
}

.leader-content-right {
    padding-right: 0;
    padding-left: 45px;
}

.leader-label {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 22px;
    color: #d4af37;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 2.5px;
    text-transform: uppercase;
}

.leader-label::after {
    content: "";
    width: 52px;
    height: 2px;
    background: #d4af37;
    border-radius: 20px;
}

.leader-content h2 {
    margin-bottom: 28px;
    color: #ffffff;
    font-size: clamp(42px, 4.5vw, 64px);
    font-weight: 700;
    line-height: 1.12;
}

.leader-message {
    max-height: 430px;
    overflow-y: auto;
    padding-right: 10px;
}

.leader-message::-webkit-scrollbar {
    width: 5px;
}

.leader-message::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
}

.leader-message::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.7);
    border-radius: 20px;
}

.leader-message p {
    margin-bottom: 22px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 16px;
    line-height: 1.95;
    white-space: pre-line;
}

.leader-message p:last-child {
    margin-bottom: 0;
}

.leader-image-box {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: 26px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.28);
    box-shadow: 0 30px 90px rgba(0, 0, 0, 0.38);
}

.leader-image-box::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.22));
    pointer-events: none;
}

.leader-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Responsive */
@media (max-width: 991.98px) {
    .leader-section {
        padding: 85px 0;
    }

    .leader-content,
    .leader-content-right {
        max-width: 100%;
        padding-left: 0;
        padding-right: 0;
        text-align: center;
    }

    .leader-label {
        justify-content: center;
    }

    .leader-label::after {
        display: none;
    }

    .leader-image-box {
        height: 460px;
    }

    .leader-message {
        max-height: none;
        overflow: visible;
        padding-right: 0;
    }
}

@media (max-width: 575.98px) {
    .leader-section {
        padding: 65px 0;
    }

    .leader-image-box {
        height: 360px;
        border-radius: 20px;
    }

    .leader-content h2 {
        font-size: 38px;
    }

    .leader-message p {
        font-size: 15px;
        line-height: 1.8;
    }
}

/* ===============================
   Social Responsibility Section
================================ */

.social-responsibility-section {
    padding: 105px 0;
    background: #ffffff;
    color: #111111;
    overflow: hidden;
}

.social-content {
    max-width: 540px;
}

.social-small-title {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.social-small-title::after {
    content: "";
    width: 46px;
    height: 2px;
    background: #d4af37;
    border-radius: 20px;
}

.social-content h2 {
    margin-bottom: 30px;
    color: #071f1d;
    font-size: clamp(38px, 4vw, 60px);
    font-weight: 700;
    line-height: 1.12;
    text-transform: uppercase;
}

.social-policy-list {
    display: grid;
    gap: 18px;
}

.social-policy-card {
    position: relative;
    padding: 24px 24px 24px 28px;
    border-radius: 18px;
    background: #f8f8f5;
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.06);
}

.policy-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    margin-bottom: 16px;
    border-radius: 50%;
    background: #071f1d;
    color: #d4af37;
    font-weight: 900;
    font-size: 14px;
}

.social-policy-card h5 {
    margin-bottom: 10px;
    color: #071f1d;
    font-size: 21px;
    font-weight: 800;
}

.social-policy-card p {
    margin: 0;
    color: #555555;
    font-size: 15px;
    line-height: 1.8;
}

.social-image-box {
    position: relative;
    padding-bottom: 70px;
    padding-left: 30px;
}

.social-main-img {
    width: 100%;
    height: 520px;
    object-fit: cover;
    border-radius: 26px;
    border: 1px solid rgba(212, 175, 55, 0.22);
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.16);
}

.social-small-img {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 320px;
    height: 235px;
    object-fit: cover;
    border-radius: 22px;
    border: 8px solid #ffffff;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.22);
}

/* ===============================
   Clients Section
================================ */

.home-clients-section {
    padding: 90px 0;
    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(212, 175, 55, 0.12),
            transparent 28%
        ),
        linear-gradient(135deg, #071f1d 0%, #0f3330 100%);
    color: #ffffff;
    overflow: hidden;
}

.clients-header {
    max-width: 760px;
    margin: 0 auto 48px;
}

.clients-header span {
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.clients-header h2 {
    margin-bottom: 14px;
    color: #ffffff;
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.12;
}

.clients-header p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.client-marquee {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.client-marquee::before,
.client-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 160px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.client-marquee::before {
    left: 0;
    background: linear-gradient(90deg, #071f1d, transparent);
}

.client-marquee::after {
    right: 0;
    background: linear-gradient(270deg, #0f3330, transparent);
}

.client-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: scrollClients 55s linear infinite;
}

.client-item {
    flex: 0 0 auto;
    width: 210px;
    height: 110px;
    margin: 0 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.client-item img {
    max-height: 72px;
    max-width: 150px;
    object-fit: contain;
    filter: brightness(1.05);
}

@keyframes scrollClients {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.client-marquee:hover .client-track {
    animation-play-state: paused;
}

/* Responsive */
@media (max-width: 991.98px) {
    .social-responsibility-section {
        padding: 75px 0;
    }

    .social-content {
        max-width: 100%;
        text-align: center;
    }

    .social-small-title {
        justify-content: center;
    }

    .social-small-title::after {
        display: none;
    }

    .social-image-box {
        padding-left: 0;
    }

    .home-clients-section {
        padding: 70px 0;
    }
}

@media (max-width: 767.98px) {
    .social-main-img {
        height: 390px;
    }

    .social-small-img {
        position: relative;
        left: auto;
        bottom: auto;
        width: 100%;
        height: 230px;
        margin-top: 18px;
        border: none;
    }

    .social-image-box {
        padding-bottom: 0;
    }

    .client-marquee::before,
    .client-marquee::after {
        width: 70px;
    }

    .client-item {
        width: 170px;
        height: 95px;
        margin: 0 10px;
        padding: 16px;
    }

    .client-item img {
        max-width: 125px;
        max-height: 58px;
    }
}



/* about us page css  */


/* ===============================
   About Values Section
================================ */

.about-values-section {
    position: relative;
    padding: 105px 0 80px;
    background:
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.10), transparent 30%),
        linear-gradient(135deg, #071f1d 0%, #101010 100%);
    color: #ffffff;
    overflow: hidden;
}

.about-values-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 44px 44px;
    opacity: 0.35;
    pointer-events: none;
}

.about-values-section .container {
    position: relative;
    z-index: 2;
}

.about-values-heading {
    max-width: 800px;
    margin: 0 auto 55px;
}

.about-values-heading span {
    display: inline-block;
    margin-bottom: 12px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.about-values-heading h2 {
    margin-bottom: 16px;
    color: #ffffff;
    font-size: clamp(40px, 4vw, 62px);
    font-weight: 700;
    line-height: 1.12;
}

.about-values-heading p {
    margin: 0 auto;
    max-width: 650px;
    color: rgba(255, 255, 255, 0.72);
    font-size: 16px;
    line-height: 1.8;
}

.about-value-card {
    position: relative;
    height: 100%;
    min-height: 430px;
    padding: 34px 28px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.055);
    border: 1px solid rgba(212, 175, 55, 0.18);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.22);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    overflow: hidden;
    transition: all 0.25s ease;
}

.about-value-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 28px;
    right: 28px;
    height: 4px;
    border-radius: 999px;
    background: linear-gradient(90deg, #d4af37, #ffc233);
}

.about-value-card:hover {
    transform: translateY(-7px);
    border-color: rgba(212, 175, 55, 0.55);
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.35);
}

.about-value-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.14);
    color: #d4af37;
    font-size: 17px;
    font-weight: 900;
    border: 1px solid rgba(212, 175, 55, 0.28);
}

.about-value-card h5 {
    margin-bottom: 16px;
    color: #d4af37;
    font-size: 22px;
    font-weight: 800;
    line-height: 1.3;
}

.about-value-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 15px;
    line-height: 1.85;
    text-align: left;

    display: -webkit-box;
    -webkit-line-clamp: 11;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Responsive */
@media (max-width: 991.98px) {
    .about-values-section {
        padding: 80px 0 55px;
    }

    .about-value-card {
        min-height: 360px;
    }
}

@media (max-width: 767.98px) {
    .about-values-heading {
        margin-bottom: 40px;
    }

    .about-value-card {
        min-height: auto;
        padding: 30px 24px;
        text-align: center;
    }

    .about-value-card p {
        text-align: center;
        display: block;
        overflow: visible;
    }
}


@media (max-width: 991px) {
    .navbar-collapse {
        display: none;
    }

    .navbar-collapse.show {
        display: block !important;
    }
}









