:root {
    --primary-color: #e00000;
    --secondary-color: black;
    --tertiary-color: #ffffff;
    --extra-color: #f1582c;
}

/* ========================================== */
body {
    background-color: var(--tertiary-color);
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
}

/* ========================================== */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: zoomInBg 20s ease-in-out infinite alternate;
    opacity: 0;
    animation: fadeInVideo 2s ease forwards, zoomInBg 20s ease-in-out infinite alternate;
}

@keyframes fadeInVideo {
    from {
        opacity: 0;
        transform: scale(1.05);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes zoomInBg {
    from {
        transform: scale(1);
    }

    to {
        transform: scale(1.08);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.7));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1.5s ease forwards;
    animation-delay: 0.8s;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.1rem;
    color: #f1f1f1;
    margin-bottom: 25px;
}

.btn-custom {
    background-color: #f4b400;
    color: #000;
    font-weight: 600;
    padding: 10px 28px;
    border-radius: 30px;
    transition: 0.4s;
}

.btn-custom:hover {
    background-color: #fff;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(40px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }
}

/* =========================================== */
.hero-content {
    color: #fff;
    padding: 50px 20px;
}

.hero-content h2 {
    font-family: "BBH Sans Bogle", sans-serif;
    margin-bottom: 30px;
    text-transform: uppercase;
}

/* ============================================ */

/* ============================================ */
.text-justify {
    text-align: justify;
}

/* =========================================== */
.head-title h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 10px;
    font-family: "Oswald", sans-serif;
}

/* =========================================== */
.head-title span {
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
}

/* ============================================ */
.interior {
    background-color: #fff;
}

.interior-card {
    position: relative;
    height: 350px;
    background-size: cover;
    background-position: center;
    border: 2px solid #c8a76a;
    overflow: hidden;
    transition: all 0.4s ease;
}

.interior-card:hover {
    transform: scale(1.02);
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.45);
    color: #fff;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 2;
}

.overlay.center {
    align-items: center;
    text-align: center;
}

.overlay h3,
.overlay h4 {
    color: #f8d14f;
    font-weight: 600;
}

.overlay h3 span {
    color: #fff;
}

.overlay p {
    font-size: 1rem;
    color: #ddd;
    margin-top: 10px;
}

.icon {
    width: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.interior-card:hover .icon {
    transform: scale(1.1);
    filter: brightness(0) invert(1) sepia(1) saturate(10) hue-rotate(10deg);
}

/* Responsive */
@media (max-width: 768px) {
    .interior-card {
        height: 250px;
    }
}

/* ============================================ */
.why-choose {
    background: var(--tertiary-color);
    padding: 80px 0;
}

.why-choose .head-title {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose .head-title span {
    display: block;
    font-size: 1rem;
    color: #e30613;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.why-choose .head-title h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #222;
}

.why-choose .underline {
    width: 80px;
    height: 3px;
    background: #e30613;
    margin: 15px auto 0;
    border-radius: 5px;
}

/* ==== WHY BOX ==== */
.why-box {
    background: #fff;
    border-radius: 12px;
    padding: 25px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    text-align: left;
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.why-box h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #e30613;
    margin: 0;
    line-height: 1;
    text-align: center;
    min-width: 80px;
}

.why-box h3 span {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #e30613;
    margin-top: 5px;
}


.why-box .icon {
    font-size: 40px;
    color: #e30613;
    margin-bottom: 10px;
}

/* ==== Responsive ==== */

@media (max-width: 576px) {
    .why-choose .head-title h2 {
        font-size: 2rem;
    }

    .why-box {
        padding: 20px 15px;
    }

    .why-box h3 {
        font-size: 2.2rem;
    }

    .why-box .icon {
        font-size: 35px;
    }

}

/* ====================================== */
.advantages {
    background-color: #000;
    color: #fff;
    position: relative;
}

.text-light-subtle {
    color: rgba(255, 255, 255, 0.75);
}

.adv-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 20px;
    transition: all 0.3s ease;
}

.adv-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.adv-icon img {
    width: 40px;
    filter: brightness(0) invert(4) sepia(2) hue-rotate(45deg) saturate(9);
}

/* ======================================= */
.contact-section {
    background-color: var(--secondary-color);
}

.contact-form input,
.contact-form textarea {
    border-radius: 0px;
    border: 1px solid var(--secondary-color);
    padding: 8px 10px;
    font-size: 15px;
}

.contact-form .form-label {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 5px rgba(244, 180, 0, 0.3);
}

.contact-details-card {
    position: relative;
    background: rgba(0, 0, 0, 0.85);
    background-image: url("../images/background/3.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-blend-mode: multiply;
    color: var(--tertiary-color);
    height: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.contact-details-card h3 {
    color: var(--tertiary-color);
}

.social-icons a {
    font-size: 18px;
    transition: 0.3s;
}


/* ========================================= */
.title {
    font-weight: 700;
    color: var(--primary-color);
    font-family: "Oswald", sans-serif;
}

/* ========================================= */
.about-us img {
    border-radius: 10% 10% 10% 0%/10% 20% 10% 10%;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border: 5px solid var(--tertiary-color);
}

/* ========================================== */
.process {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/background/1.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.process .card {
    background-color: rgba(255, 255, 255, 0.7);
    color: var(--tertiary-color);
    border-radius: 0px;
    height: 100%;
}

/* =========================================== */
.features {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("../images/background/2.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed
}

.features .card {
    background: #fff;
    height: 100%;
    transition: all 0.3s ease;
}


.features .col-md-6 {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .features .card .row {
        flex-direction: column !important;
    }

    .features .card img {
        height: 220px;
    }

    .features .card .col-6 {
        width: 100% !important;
    }
}

/* ====================================== */
.services {
    background: #eee;
}

.services .card {
    transition: all 0.3s ease;
    background-color: var(--tertiary-color);
    border: 0px;
}

.services .card img {
    height: 200px;
    object-fit: cover;
    transition: all 0.3s ease;
}

/* ============================================ */
.contact i {
    color: var(--secondary-color);
    font-size: 30px;
}

.contact .card h6 {
    color: var(--secondary-color);
}

.contact .card p {
    color: var(--primary-color);
}



/* ============================================ */
.btn {
    background-color: var(--primary-color);
    color: var(--tertiary-color);
    border-radius: 0px;
    padding: 8px 20px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn:hover {
    background-color: var(--secondary-color);
    color: var(--tertiary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transform: translateY(-3px);
}

/* ============================================ */
/* Video Wrappers */


.about-images video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.about-images video:hover {
    transform: scale(1.05);
}

/* ============================================ */

/* Features Section */
.features-section {
    background-color: var(--secondary-color);
}

.feature-card img {
    transition: transform 0.3s ease;
    width: 100%;
    height: 80px;
    object-fit: contain;
}

.feature-card img:hover {
    transform: scale(1.1);
}

.feature-card h5 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* ======================================= */
.services {
    background-color: #eee;
}
.services, .services-1, .services-2, .services-3 {
    padding: 80px 0;
}

.services {
    background-color: #f8f8f8;
}
.services-1, .services-3 {
    background-color: var(--tertiary-color);
}
.services-2 {
    background-color: #f5f5f5;
}

.service-card {
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.35s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.12);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-content {
    padding: 18px 15px 20px;
}

.service-content h5 {
    font-size: 17px;
    font-weight: 600;
    color: #222;
    margin-bottom: 8px;
}

.service-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    min-height: 45px;
    margin-bottom: 15px;
}

.service-icons {
    display: flex;
    justify-content: center;
    gap: 18px;
}

.service-icons img {
    width: 35px;
    height: 35px;
    object-fit: contain;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.service-icons img:hover {
    transform: scale(1.15);
}

/* Head title styling */
.head-title span {
    font-size: 14px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    display: block;
}

.head-title h2 {
    font-size: 32px;
    font-weight: 700;
    color: #222;
}
/* =============================== */
.contact-section .form-select {
    border-radius: 0px;
    border: 1px solid var(--secondary-color);
    padding: 8px 10px;
    font-size: 15px;
}