/* @import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap'); */

:root {
    --primary-font: "Poppins", sans-serif;
    --secondary-text-color: #E3BFA5;
    --primary-color: #2b76c3;
    --secondary-color: #4b4b4d;
    --text-color: #000;
}

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", sans-serif;
    padding-top: 0;
    opacity: 0;
    background: #fff;
    color: var(--text-color);
}

/* ================================ Global End ========================================== */
a {
    -moz-transition: all 0.3s ease-out;
    -o-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
    text-transform: uppercase;

}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 1rem;
}

.w-1200 {
    max-width: 1200px;
    margin: 30px auto;
}

.container-full {
    width: 100%;
    max-width: 100%;
}

.p-rl-50 {
    padding-left: 50px;
    padding-right: 50px;
}

.text-lg-right {
    text-align: right !important;
}

.btn {
    border-radius: 0;
    text-transform: uppercase;
    padding: 12px 35px;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    position: relative;
    border-radius: 5px;
}

.btn.hover-dark:hover {
    background-color: #000000;
    color: #fff;
}



.font-14 {
    font-size: 14px;

}

.font-16 {
    font-size: 16px;

}

.font-18 {
    font-size: 18px;
}

.w-385 {
    width: 100%;
    max-width: 385px;
}

.semibold {
    font-weight: 600;
}

.font-36 {
    font-size: 36px;
}

.weight-500 {
    font-weight: 500;
}

.p-tb-80 {
    padding: 80px 0;
}

.col-lg-6.p-0.video-info {
    position: absolute;
    right: 13px;
    max-width: 600px;
    bottom: 0;
    height: 482px;
}

.position-r {
    position: relative;
}

.column-gap-100 {
    column-gap: 100px;
}

.font-24 {
    font-size: 24px;
}

.font-20 {
    font-size: 20px;
}

.font-40 {
    font-size: 40px;
}

.p-tb-30 {
    padding-top: 30px;
    padding-bottom: 30px;
}


#backToTop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--primary-color);
    /* your theme color */
    color: #fff;
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9999;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* ================================ Global End ========================================== */

/* ================================ Navbar Start ========================================== */
.navbar-dark .navbar-toggler-icon {
    filter: invert(1);
}

.logo_main svg {
    height: auto;
    width: 242px;
}

.logo {
    max-width: 140px;
}

header {
    position: fixed;
    width: 100%;
    z-index: 10;
    top: 0;
}

.navbar-dark .navbar-nav .nav-link {
    font-family: "Poppins", sans-serif;
    font-size: 15px;
    font-weight: 500;
    padding: 5px 10px;
    margin: 0 5px;
    color: var(--primary-color);
    text-transform: uppercase;
    outline: none;
    border-radius: 20px;

}

.navbar.navbar-expand-lg.navbar-dark {
    padding-top: 24px;
    padding-bottom: 0;
}

.main-menu-top {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 10px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
    transition: all ease 0.5s;
}

.navbar {
    margin: 0 auto;
    max-width: 1300px !important;
}

.navbar-nav .nav-link.active,
.nav-link:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 20px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler {
    border: none;
}

/* ================================ Navbar End ========================================== */

/* ============================== Hero Section Start ======================================== */
.home-hero {
    position: relative;
}

.slide-caption .line {
    position: absolute;
    height: 122%;
    width: 3px;
    background: #fff;
    top: -3px;
    transform: rotate(-19deg);
    left: 8px;
}

.line {
    position: absolute;
    height: 122%;
    width: 3px;
    background: #fff;
    top: -3px;
    transform: rotate(-15deg);
    left: 6px;
}

.h1 {
    font-size: 5rem;
    text-transform: uppercase;
    font-weight: normal;
}

.home-hero p {
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.light-black-bg {
    background-color: #222;
}

.section-two {
    padding: 70px 0;
}

.w-550 {
    max-width: 550px;
    padding: 0 25px;
    text-align: center;
    margin: 0 auto 50px;
}

.light-new p {
    color: rgba(255, 255, 255, 0.6);
}

.border-radius-10 {
    border-radius: 10px;
}

.circle-box {
    width: 60px;
    height: 60px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 100%;
    margin: 0 auto 20px;
    background: rgba(0, 0, 0, 0.3);
}

.image-over::before {
    content: "";
    top: 0;
    width: 100%;
    left: 0;
    height: 150px;
    position: absolute;
    background-color: transparent;
    background-image: linear-gradient(180deg, #121212 0%, #12121200 100%);
}


.video-full,
.image-full {
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.width-500 {
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
}

.container-full {
    max-width: 100% !important;
}

.mb-4.select-logo {
    max-height: 100px;
    text-align: center;
    min-height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.select-logo img {
    max-height: 100px;
}

.image-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero-slider,
.home-slider {
    height: 100vh;
}

.slide-caption {
    position: absolute;
    z-index: 10;
    top: 60%;
    left: 0;
    transform: translateY(-40%);
    max-width: 785px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
}

.image-slide {
    height: 100%;
}

.home-slider img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.home-slider .image-slide::before {
    content: "";
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;

}

.home-slider h1 {
    font-weight: bold;
    font-size: 48px;
}

.home-slider .slick-list,
.home-slider .slick-track,
.home-slider .slick-slide {
    height: 100%;
}

.home-slider .slick-dots {
    display: flex;
    column-gap: 10px;
    margin: 0;
    padding: 0;
    justify-content: center;
    position: absolute;
    bottom: 30px;
    width: 100%;
    left: 0;
}

.home-slider .slick-dots li button {
    background: #f2f2f2;
    border: none;
    width: 30px;
    height: 3px;
    font-size: 0;
}

.home-slider .slick-dots li {
    list-style: none;
}

.home-slider .slick-dots li.slick-active button {
    background: var(--primary-color);
}

.offcanvas-backdrop {
    position: fixed;
    top: 118px;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.close_svg {
    display: none;
}

.home-slider {
    transform: scale(1.1);
    -webkit-transition: all 0.8s ease-out;
    -moz-transition: all 0.8s ease-out;
    -o-transition: all 0.8s ease-out;
    transition: all 0.8s ease-out;
}

.home-slider.zoom_in {
    transform: scale(1);
}

.home-hero-slider {
    overflow: hidden;
    color: #fff;
}

@media (min-width: 1200px) {
    .navbar-expand-lg .navbar-collapse {
        display: flex !important;
        flex-basis: auto;
    }

    .collapse:not(.show) {
        display: none;
    }

    .navbar-expand-lg .navbar-toggler {
        display: none
    }
}

@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .dropdown-menu {
        margin-top: -1px;
        border-radius: 0;
    }
}

@media (max-width:1199px) {
    .collapse:not(.show) {
        display: none;
    }

    .navbar.navbar-expand-lg.navbar-dark {
        padding: 15px 0;
    }
}

/* ============================== Hero Section End ======================================== */


/* =================================== Client Section Start ==================================== */
.section-our-clients {
    padding: 20px 0 0 0;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important;
        scroll-behavior: auto !important;
    }
}

.logo-scroller {
    overflow: hidden;
}

.logo-scroller-inner {
    display: flex;
    gap: 3rem;
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    animation: scroll 40s linear infinite;
    width: max-content;
}

.logo-scroller:hover .logo-scroller-inner {
    animation-play-state: paused;
}

.logo-scroller-inner li {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-scroller-inner img {
    height: 100px;
    max-width: 170px;
    object-fit: contain;
    /*filter: grayscale(100%); /* Professional grayscale look */
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.logo-scroller-inner li:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* The CSS animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

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

@media (prefers-reduced-motion: reduce) {
    .logo-scroller-inner {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
    }
}

/* =================================== Client Section Emd ==================================== */

/* ======================================= commitment section Start =================================== */
.commitment-section {
    padding: 80px 0;
    background: #f5f6fa;
}

.commitment-list {
    list-style: none;
    padding: 0;
}

.commitment-list li {
    margin-bottom: 25px;
}

.commitment-list h3 {
    font-size: 22px;
    font-weight: 700;
    color: #003e7e;
    margin-bottom: 8px;
}

.commitment-list p {
    color: #555;
    line-height: 1.5;
}

.certificate-wrapper {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.certificate-img {
    width: 48%;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    padding: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

@media(max-width: 556px) {
    .certificate-wrapper {
        flex-direction: column;
    }

    .certificate-img {
        width: 100%;
    }
}

/* ======================================= commitment section end =================================== */

/* ============================================ Footer Start ========================================= */
.footer {
    position: relative;
    overflow: hidden;
    z-index: 2;
    padding: 60px 0 100px 0;
    background-color: #031436;
    color: #fff;
}

.footer a {
    text-decoration: none;
}

.footer h3 {
    font-size: 20px;
    font-weight: 600;
    text-transform: capitalize;
    margin-bottom: 20px;
}

.footer .contact-info-box {
    padding: 5px 0;
}

.footer-logo {
    margin-bottom: 50px;
}

.footer-menu {
    list-style: none;
    padding-left: 0;
}

.footer-menu a {
    text-decoration: none;
}

.footer-menu li {
    padding: 5px 0;
}

.footer-social-icons a {
    text-decoration: none;
}

@media screen and (max-width:991px) {
    .footer h3 {
        margin-bottom: 10px;
    }
}

@media screen and (max-width:768px) {
    .crane-1 {
        display: none;
    }

    .footer-menu {
        margin-bottom: 0;
    }

    .footer {
        padding: 0 0 40px 0;
    }
}

.footer-logo {
    max-width: 220px;
}

footer .social {
    gap: 10px;
}

footer .social span {
    max-width: 35px;
    width: 100%;
}

.copyright-container {
    color: #fff;
    background-color: #172646;
    padding: 12px 0;
}

.copyright-container p {
    font-family: var(--primary-font);
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0;
    margin: 0;
}

.copyright-container a {
    text-decoration: none;
}

.copyright-container a:hover {
    color: #E3BFA5;
}

#legalModal .modal-content{
    max-width: 768px;
    margin: 0 auto;
}

#legalModalBody p{
    font-size: 14px;
}

#legalModalBody h3{
    font-size: 18px;
}
/* ============================================ Footer End ========================================= */













.home-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-hero.home-hero-image {
    height: 850px;
    margin-bottom: 80px;
}

.home-hero-image::before {
    content: "";
    width: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

.home-hero-content {
    max-width: 512px;
}


/* ============================== Contact Section Start ================================== */
.section-contact {
    padding: 50px 0;
    color: #fff;
}

.contact-info-container {
    background-color: var(--primary-color);
    /* clip-path: polygon(0 0, 60% 0, 100% 100%, 0 100%); */
    padding: 40px;
    gap: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.contact-info-box {
    display: flex;
    align-items: center;
    gap: 10px;
    /* max-width: 300px; */
}

.contact-info-box p {
    margin-bottom: 0;
}

.contact-form-container {
    padding: 100px 40px 100px 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    width: 100%;
}

.contact-form-container form {
    width: 100%;
}

.contact-form-container input,
.contact-form-container textarea {
    border: 1px solid #DFDFDF;
    border-radius: 5px;
    padding: 10px 20px;
    color: #818181;
    background-color: #fff;
}

.form-control:focus {
    border: 1px solid var(--primary-color);
    border-radius: 0;
    padding: 10px 20px;
    color: #818181;
    background-color: #fff;
    box-shadow: none;
}

.section-contact .contact-section-box {
    /* box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 5px; */
}

/* ============================== Contact Section Start ================================== */


.section-parallax-image {
    position: relative;
    background-image: url('../images/background-image.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    width: 100%;
    max-width: 100%;
    color: #fff;
    min-height: 320px;
}

.section-parallax-image .parallax-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 140px 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
}

.section-parallax-image .parallax-inner {
    max-width: 900px;
    margin: 0 auto;
}

.section-parallax-image .parallax-title {
    font-size: 2.6rem;
    font-weight: 800;
    text-transform: none;
    letter-spacing: 0.08em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.6);
    margin-bottom: 1.5rem;
    white-space: normal;
}

.section-parallax-image .parallax-logo img {
    max-width: 160px;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.6));
}

.btn-check:checked+.btn, .btn.active, .btn.show, .btn:first-child:active, :not(.btn-check)+.btn:active{
    background-color: var(--primary-color);
    color:#fff;
}

/* Mobile tweaks */
@media (max-width: 767.98px) {
    .section-parallax-image {
        background-attachment: scroll;
    }

    .section-parallax-image .parallax-overlay {
        padding: 100px 0;
    }

    .section-parallax-image .parallax-title {
        font-size: 1.8rem;
        letter-spacing: 0.04em;
    }

    .section-parallax-image .parallax-logo img {
        max-width: 120px;
    }
}



/* =========================================== Product Start =============================================== */
.product-glass {
    border-radius: 14px;
    overflow: hidden;
    border: none;
    background: #f5f5f5;
    transition: transform .36s cubic-bezier(.2, .9, .25, 1), box-shadow .36s ease;
    will-change: transform;
    position: relative;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 1px 2px 0px;
}

.product-glass:hover {
    transform: translateY(-12px) rotateX(1deg);
    box-shadow: 0 28px 60px rgba(10, 20, 40, 0.14);
}

.product-media {
    position: relative;
    overflow: hidden;
    height: 220px;
    background: linear-gradient(180deg, #f6f9ff, #fff);
}

.product-media .product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.06);
    transition: transform 900ms cubic-bezier(.0, .0, .18, 1);
}

.product-glass:hover .product-media .product-img {
    transform: scale(1.00) translateY(-4px);
}

.product-item {
    perspective: 1100px;
}

.product-glass:focus-within,
.product-glass:focus {
    outline: none;
    box-shadow: 0 28px 60px rgba(10, 20, 40, 0.12);
    transform: translateY(-8px);
}

.badge-position {
    position: absolute;
    left: 12px;
    top: 12px;
    z-index: 3;
}

.product-actions {
    position: absolute;
    right: 12px;
    bottom: 12px;
    z-index: 3;
    display: flex;
    gap: .5rem;
    opacity: 0;
    transform: translateY(8px);
    transition: all .28s ease;
}

.product-glass:hover .product-actions {
    opacity: 1;
    transform: translateY(0);
}

.btn-gradient {
    background: linear-gradient(90deg, var(--brand-blue), #2a63a8);
    border: none;
    color: white;
    box-shadow: 0 12px 30px rgba(21, 63, 122, 0.12);
    padding: .7rem 1.1rem;
    border-radius: 10px;
    font-weight: 700;
}

@media(max-width:767.98px) {
    .product-media {
        height: 160px;
    }

    .product-glass:hover {
        transform: none;
        box-shadow: 0 10px 30px rgba(10, 20, 40, 0.08);
    }
}

.card-title {
    color: #000;
    font-size: 14px;
    font-weight: 500;
}

.modal-content {
    background-color: #fff;
}

.modal-body {
    position: relative;
}

#modalDescription {
    color: #212529bf;
}

.modal-dialog {
    max-width: 991px;
}

.modal-close-btn {
    background-color: transparent;
    padding: 3px 5px;
    border: none;
    float: right;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 99;
}

.modal-close-btn {
    background-color: #000000;
    border-radius: 20px;
}

.modal-close-btn svg {
    fill: #fff;
    width: 20px;
    height: 20px;
}

.btn-group .tab-btn {
    padding: 5px 15px;
    border-radius: 5px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    border: none;
    background-color: var(--primary-color);
    font-family: var(--primary-font);
    position: relative;
    color: #fff;
    margin: 0 5px;
}

.btn-group .tab-btn.active {
    background-color: #539ce7;
}

.quick-view-btn {
    background-color: #f5f5f5;
    color: #000;
    display: inline-block;
    padding: 5px 10px;
    font-size: 14px;
    line-height: 1.2;
    margin-bottom: 0;
    cursor: pointer;
    border-radius: 5px;
    border: 0;
}

.modal .carousel,
.modal .carousel-inner,
.modal .carousel-item {
    height: 100%;
}

/* =========================================== Product  End ================================================== */

/* ======================================= section with image ================================================= */
.section-text-with-image {
    color: #000;
    padding: 50px 0;
}

.section-text-with-image p {
    color: #555555;
}

.text-with-image-content {
    max-width: 500px;
    margin: 0 auto;
}

.section-text-with-image img{
    border-radius: 10px;
}

@media screen and (max-width:991px) {
    .section-text-with-image .row {
        row-gap: 24px !important;
    }
}

@media screen and (max-width:768px) {
    .text-with-image-content {
        max-width: 100%;
        margin: inherit;
    }
}

/* ================ section with image ================= */



/* ======================================== Services Section Start ======================================================= */
.section-our-services {
    background-color: #f5f5f5;
    padding: 60px 0 80px 0;
}

.accordion-item {
    background-color: transparent;
    color: var(--text-color);
    border: none;
    border-bottom: 1px solid #000;
    padding: 10px 0;
}

.accordion-button {
    background-color: transparent;
    color: var(--text-color);
    border-radius: 0;
    font-weight: 600;
}

.accordion-button:focus {
    box-shadow: none;
}

.accordion-button:not(.collapsed) {
    background-color: transparent;
    color: var(--text-color);
    box-shadow: none;
}

.accordion-item:last-of-type {
    border-radius: 0;
}

/* ======================================== Services Section End ======================================================= */


/* =================================== Why Choose Us Start ================================ */
.section-why-us {
    background: #f8f9fb;
}

.section-why-us .why-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 28px;
    transition: all 0.28s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.04);
}

.section-why-us .why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 14px 28px rgba(0, 0, 0, 0.08);
}

.section-why-us .why-icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px !important;
    background: linear-gradient(135deg, var(--primary-color), #9bccff);
    box-shadow: 0px 4px 14px rgba(220, 53, 69, 0.25);
}

.section-why-us .why-icon-circle svg {
    width: 55px;
    height: 55px;
    fill: #fff;
}

.section-why-us .why-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.section-why-us .why-card p {
    font-size: 0.92rem;
    color: #6c757d;
    line-height: 1.5;
}

.section-why-us .why-stat {
    text-align: center;
}

.section-why-us .why-stat-value {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
}

.section-why-us .why-stat-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #6c757d;
}

.section-why-us .stats-row {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
    margin-top: 40px;
}

/* =================================== Why Choose Us End ================================ */





/* =========================================================================================================================== */
/* ====================================================== Responsive ========================================================= */
/* =========================================================================================================================== */

@media screen and (max-width:1199px) {
    .navbar.navbar-expand-lg.navbar-dark {
        padding: 15px 15px;
    }

    .navbar-toggler[aria-expanded="true"] .close_svg {
        display: block;
    }

    .navbar-toggler .close_svg {
        width: 24px;
        height: 23px;
        top: -7px;
        right: 16px;
        position: absolute;
    }

    .navbar-toggler {
        top: 50%;
        transform: translateY(-50%);
    }

    .navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
        display: none;
    }

    .show~.offcanvas-backdrop.fade {
        display: block;
        opacity: 1;
    }

    .col-lg-6.p-0.video-info {
        max-width: 50%;
        height: 380px;
    }

    .navbar-collapse.show {
        right: 15px;
    }

    .navbar-collapse {
        position: fixed;
        width: 300px;
        top: 90px;
        padding: 20px;
        border-radius: 20px;
        right: -40%;
        z-index: 9;
        height: auto;
        background: #000000;
        -moz-transition: all 0.3s ease-out;
        -o-transition: all 0.3s ease-out;
        transition: all 0.3s ease-out;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 5px 15px;
    }

    .navbar-expand-lg .navbar-nav .dropdown-menu {
        position: static;
    }

    .navbar-expand-lg .navbar-nav {
        flex-direction: column;
    }

    .navbar-toggler {
        position: absolute;
        right: 38px;
    }
}

/*---------End-1199--------*/

@media (max-width:1100px) {
    .p-rl-50 {
        padding-left: 15px;
        padding-right: 15px;
    }
}


@media (max-width:1024px) {
    .event-info .event-detail {
        opacity: 1;
    }
}

@media (max-width:991px) {
    .navbar-toggler {
        right: 25px;
        top: 50%;
        transform: translateY(-50%);
    }

    .col-lg-6.p-0.video-info {
        right: 25px;
    }

    .p-rl-50 {
        padding-left: 25px;
        padding-right: 25px;
    }

    .container,
    .container-md,
    .container-sm {
        max-width: 100%;
    }

    .container.position-r {
        padding: 0 25px;
    }

    .image-with-text .justify-content-end .video-info {
        left: 25px;
        right: inherit !important;
    }

}

/*---------End-991--------*/

@media (max-width:767px) {


    .p-rl-50 {
        padding-left: 15px;
        padding-right: 15px;
    }

    .detail-dealer {
        flex-direction: column;
        row-gap: 30px;
    }

    .text-center.icon-box {
        min-height: 208px;
        width: 100%;
        background: #000;
        max-width: 250px;
        margin: 0 auto;
    }

    .m-flex-direction-c {
        flex-direction: column;
        row-gap: 15px;
    }

    .col-lg-6.p-0.video-info {
        max-width: 100%;
        height: 250px;
        position: static;
    }

    .image-with-text .justify-content-end {
        justify-content: flex-start !important;
    }

    .p-tb-80,
    .p-tb-100 {
        padding: 50px 0;
    }

    .font-36 {
        font-size: 30px;
    }

    .h1 {
        font-size: 3rem;
    }

    .home-slider h1 {
        font-size: 32px;
    }

    .slide-caption {
        bottom: -100px;
    }

    .slide-wrap p {
        font-size: 14px;
    }

    .slide-wrap h2 {
        font-size: 14px;
    }

    .logo_main svg {
        width: 164px;
        height: auto;
    }

    .logo {
        max-width: 100px;
    }

    .section-heading {
        font-size: 24px;
    }

    .navbar-dark .navbar-nav .nav-link {
        padding: 10px 15px;
    }

    .navbar-nav .dropdown-menu {
        background: rgb(0, 0, 0);
        border-radius: 0;
    }

    .navbar-nav {
        max-height: 100%;
        overflow: auto;
    }

    .promo-bar .col-lg-8 {
        width: 55%;
    }

    .promo-bar .col-lg-4 {
        width: 45%;
    }

    .home-hero p {
        font-size: 16px;
        line-height: 1.4;
    }

    .navbar-collapse {
        top: 76px;
    }

    .navbar-collapse {
        right: -80%;
        width: 220px;
        padding: 15px 10px;
    }

    .p-tb-30 {
        padding-top: 30px;
        padding-bottom: 30px;
        padding-left: 25px;
        padding-right: 25px;
    }

    .btn {
        padding: 12px 30px;
    }


    .btn-group,
    .btn-group-vertical {
        flex-wrap: wrap;
    }

    .btn-group .tab-btn {
        padding: 5px 10px;
        font-size: 12px;
    }

    .certificate-container {
        gap: 10px;
    }

    .contact-info-container,
    .contact-form-container {
        padding: 30px;
    }
}

/* =========================================================================================================================== */
/* ====================================================== Responsive ========================================================= */
/* =========================================================================================================================== */