* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Source Sans 3", sans-serif;
}
.container {
    width: 100% !important;
    max-width: 1170px !important;
}
body {
    overflow-x: hidden;
}
.top-header {
    background: #b8b9b9;
    padding: 3px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    font-size: 12px;
    position: relative;
    z-index: 10;
}
.top-header i {
    margin-right: 5px;
    color: #fe0002;
}
.top-header span {
    margin-right: 20px;
    color: white;
}
/* Add these new classes */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 50px;
    margin-top: 24px;
    z-index: 9999;
    transition: all 0.3s ease; /* Smooth transition for all changes */
}

.header.sticky {
    position: fixed;
    background-color: white;
    margin-top: 0;
    padding: 10px 50px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Logo size changes */
.logo img {
    width: 180px;
    transition: width 0.3s ease; /* Smooth logo resize */
}

.header.sticky .logo img {
    width: 120px; /* Smaller size when sticky - adjust as needed */
}

/* Navigation changes */
.nav {
    display: flex;
    gap: 20px;
}

.nav a {
    text-decoration: none;
    color: #5a5a5a !important;
    font-weight: 600 !important;
    font-size: 16px; /* Default font size */
    transition: all 0.3s ease; /* Smooth font size transition */
}

.header.sticky .nav a {
    color: #5a5a5a !important;

    font-size: 14px; /* Smaller font size when sticky - adjust as needed */
}
.nav a.active {
    color: #fe0002 !important; /* Red color for active link */
}

.header.sticky .nav a.active {
    color: #fe0002 !important; /* Red color for active link when sticky */
}
.header.sticky .btn_header {
    background-color: #fe0002;
    padding: 5px 15px; /* Slightly smaller padding */
    border: none;
    color: white;
    border-radius: 4px;
    margin-top: -5px;
    font-size: 14px; /* Match nav font size */
}
.logo img {
    width: 180px;
}
.nav {
    display: flex;
    gap: 20px;
}
.nav a {
    text-decoration: none;
    color: black;
    font-weight: bold;
}
.btn_header {
    background-color: #fe0002;
    padding: 5px 20px;
    border: none;
    color: white;
    border-radius: 4px;
    margin-top: -5px;
}

/* hero section css start */
.hero {
    position: relative;
    width: 100%;
    height: 94vh;
    overflow: hidden;
    margin: 0;
    padding: 0;
    margin-top: 86px;
}
.owl-carousel .owl-stage-outer {
    height: 100%;
    margin: 0;
    padding: 0;
}
.hero-slider {
    height: 100%;
    margin: 0;
    padding: 0;
}
.hero .owl-item {
    height: 94vh;
    margin: 0;
    padding: 0;
}
.hero .owl-item .item {
    position: relative;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: background 1s ease-in-out;
    z-index: 1;
    margin: 0;
    padding: 0;
}
.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    margin: 0;
}
.hero-content,
.video-icon-wrapper {
    height: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}
.hero-content {
    color: white;
    text-align: left;
    align-items: flex-end;
    /* padding-left: 215px !important; */
    padding-top: 80px;
}
.hero-content h1 {
    font-size: 60px;
    font-weight: bold;
    /* max-width: 500px; */
    /* word-wrap: break-word; */
    margin: 0;
}
.hero-content p {
    font-size: 16px;
    max-width: 500px;
    margin-top: 10px;
    word-wrap: break-word;
    margin: 0;
    font-weight: 300;
}
.hero-content button {
    padding: 10px 35px;
    background: #fe0002;
    border: none;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    border-radius: 5px;
    margin: 0;
    margin-top: 20px;
    color: white;
}
.video-icon {
    font-size: 50px;
    background: #fe0002;
    border-radius: 50%;
    padding: 11px 25px 7px 20px;
    cursor: pointer;
    color: white;
    transition: 0.3s;
    margin: 0;
    box-shadow: 0 0 20px #ffffff, 0 0 40px #fdfdfd;
    animation: glow-border 1.5s infinite alternate;
}
@keyframes flash {
    0% {
        box-shadow: 0 0 10px rgba(160, 32, 39, 0.7);
    }
    100% {
        box-shadow: 0 0 30px rgba(160, 32, 39, 1);
    }
}
@keyframes pulse {
    0% {
        box-shadow: 0 0 20px rgba(160, 32, 39, 0.6),
            0 0 40px rgba(160, 32, 39, 0.4);
    }
    50% {
        box-shadow: 0 0 30px rgba(160, 32, 39, 1),
            0 0 60px rgba(160, 32, 39, 0.6);
    }
    100% {
        box-shadow: 0 0 20px rgba(160, 32, 39, 0.6),
            0 0 40px rgba(160, 32, 39, 0.4);
    }
}
.hero .owl-theme .owl-dots {
    position: absolute;
    bottom: 0;
    right: 50%;
    left: 50%;
    display: flex;
    /* flex-direction: column; */
    gap: 10px;
    z-index: 10;
    margin: 0;
    padding: 0;
    padding-bottom: 30px;
    padding-right: 30px;
}
.owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid white;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin: 0;
    padding: 0;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
    background-color: #fe0002;
    border-color: #fe0002;
}
/* hero section css end */

/* about section css start */
.about_us_section {
    display: flex;
    justify-content: space-between;
    background-color: white;
}

.about_us_section .left_section {
    width: 60%;
    padding: 100px 20px 100px 60px; /* You can adjust this padding as per your need */
}

.about_us_section .left_section h2 {
    font-size: 20px;
    color: #fe0002;
    font-weight: 700;
}

.about_us_section h1 {
    font-size: 1.8em;
    color: #343434;
    font-weight: 700;
}

.about_us_section .sub_title {
    font-size: 1.2em;
    color: #666;
}

.about_us_section .left_section p {
    font-size: 1em;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.about_us_section .see_more_btn {
    background-color: #fe0002; /* Set the button background to #FE0002 */
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.about_us_section .see_more_btn:hover {
    background-color: #9c1b2c; /* Slightly darker on hover for better effect */
}

/* Right Section with Background Image */
.about_us_section .right_section {
    width: 40%;
    background-image: url("../images/about5.png"); /* Your image as background */
    /* background-image: url("images/about5.png"); */
    background-size: cover; /* Ensure it covers the area */
    background-position: center center; /* Keep image aligned to the right */
    height: 100; /* Make the image take full height */
    margin-top: 0px;
}
/* about section css end */

/* services section css start */
.service_section {
    background-color: #454545;
    padding: 50px 120px; /* Increased padding for arrow space */
    text-align: center;
    position: relative; /* Ensure arrows can be positioned relative to section */
}

.service_section h2 {
    margin-bottom: 20px;
    font-size: 2.5em;
}

.service_title {
    font-size: 34px;
    color: #fe0002;
    font-weight: 800;
}

.service_sub_title {
    font-weight: 600;
    font-size: 18px;
    color: white;
}

.service_section p {
    margin-bottom: 40px;
    font-size: 16px;
}

.outer_p {
    margin-bottom: 40px;
    font-size: 16px;
    padding: 0px 100px;
}

.service-slider-container {
    width: 100%;
    margin: 0 auto;
    position: relative;
    overflow: visible; /* Allow arrows to appear outside */
}

.service-slider .owl-stage {
    display: flex;
    gap: 15px; /* Fixed gap between cards */
}

.service-slider .owl-item .card {
    width: 350px; /* Fixed width */
    height: 285px; /* Fixed height */
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    border-radius: 10px;
    flex-shrink: 0; /* Prevents cards from shrinking */
    border: none;
    padding: 0 20px;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end; /* Align content at bottom initially */
    align-items: center; /* Center horizontally */
    color: white;
    z-index: 2; /* Ensure content is above overlay */
}

.card-content::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0; /* Start with no height */
    background: linear-gradient(
        0deg,
        rgba(254, 0, 2, 0.8) 0%,
        transparent 100%
    );
    transition: height 0.8s ease-out; /* Smooth grow from bottom */
    z-index: 1; /* Behind content, above background */
}

.card-content h3 {
    margin: 0;
    font-size: 1.5em;
    text-align: center;
    opacity: 1; /* Title always visible */
    transform: translateY(0);
    transition: transform 0.8s ease-out; /* Smooth slide */
}

.card-content p {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    text-align: center;
    opacity: 0; /* Paragraph hidden initially */
    transform: translateY(100%);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out; /* Smooth fade and slide */
    margin-top: -20px;
}

.card:hover .card-content {
    justify-content: center; /* Center content vertically on hover */
}

.card:hover .card-content::before {
    height: 100%; /* Grow to full height on hover */
}

.card:hover .card-content h3 {
    transform: translateY(0); /* Stay in position */
    z-index: 777;
}

.card:hover .card-content p {
    opacity: 1; /* Show paragraph on hover */
    transform: translateY(0); /* Move to natural position */
    z-index: 777;
    margin-top: 20px;
}

/* Navigation arrow styles */
.service_section .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: calc(100% + 240px); /* Extend beyond section padding (120px * 2) */
    left: -120px; /* Offset by section padding */
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.service_section .owl-nav .owl-prev,
.service_section .owl-nav .owl-next {
    background-color: #fe0002; /* Theme color */
    color: white;
    width: 40px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    font-size: 20px;
    transition: background-color 0.3s ease;
}

.service_section .owl-nav .owl-prev:hover,
.service_section .owl-nav .owl-next:hover {
    background-color: #9c1b2c; /* Hover color */
}

.service_section .owl-nav .owl-prev {
    margin-left: 20px; /* Small offset from edge */
}

.service_section .owl-nav .owl-next {
    margin-right: 20px; /* Small offset from edge */
}

/* Ensure nav is not disabled */
.service_section .owl-nav.disabled {
    display: flex !important;
}

/* Dot navigation styles */
.service_section .owl-theme .owl-dots {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.service_section .owl-theme .owl-dots .owl-dot span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: #bbb;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service_section .owl-theme .owl-dots .owl-dot.active span,
.service_section .owl-theme .owl-dots .owl-dot:hover span {
    background-color: #9c1b2c;
}

.button_div button {
    background-color: #fe0002;
    color: white;
    padding: 10px 40px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 20px;
}

.button_div button:hover {
    background-color: #9c1b2c;
}

.service_section .card::before {
    content: "";
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: 0.4s;
    background-image: url("../images/service_rectangle.png");
    background-repeat: no-repeat;
}
.service_section .owl-nav {
    color: white;
}
/* services section css end */

/* product section css start */
:root {
    --title: #1f1f1f; /* Assuming a dark title color, adjust as needed */
    --white: #fff; /* Assuming white background, adjust as needed */
}

.products_sec {
    margin: 70px 0px;
    display: inline-block;
    width: 100%;
}

.products_sec .web_title {
    margin-bottom: 50px;
}
.products_sec .web_title h2 {
    color: #fe0002;
    font-size: 34px;
    font-weight: 800;
}
.products_sec .container {
    max-width: 1200px;
}

.products_tab_main {
    display: flex;
    align-items: stretch; /* Ensure both sides stretch to the same height */
}

.products_tab_main .nav-pills {
    background: whitesmoke;
    padding: 80px 20px;
    /* margin-top: 20px; */
    flex-shrink: 0;
    width: 390px;
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 40px 20px;
    margin: 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-height: auto;
    overflow: hidden;
}
.products_tab_main .nav-pills .nav-link {
    border: 1px solid #dddddd;
    font-size: 14px;
    font-weight: 600;
    color: var(--title);
    padding: 10px 30px;
    width: 338px;
    text-align: left;
    margin-bottom: 0px;
    border-radius: 25px;
    margin-right: 15px;
    position: relative;
    transition: all 0.3s ease;
    flex-grow: 0; /* Prevent individual links from stretching */
}

.products_tab_main .nav-pills .nav-link.active,
.products_tab_main .nav-pills .show > .nav-link {
    background-color: #fe0002;
    /* border: 2px solid #fe0002; */
    /* border-right: transparent; */
    /* border-radius: 25px 0px 0px 25px; */
    margin-right: 0px;
    /* width: 353px; */
    z-index: 1;
    color: black;
}

/* .products_tab_main .nav-pills .nav-link.active:after {
    height: 100%;
    width: 20px;
    background-color: #fff;
    position: absolute;
    display: block;
    content: "";
    right: -10px;
    top: 0;
    z-index: 2;
} */

.tab-content {
    width: auto;
    border: 1px solid #eeeeee;
    border-radius: 20px;
    padding: 40px;
    margin-left: 55px;
    background-color: #ffffff;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tab_info_data {
    display: flex;
    /*align-items: center;*/
    gap: 30px;
    flex-grow: 1; /* Ensure content stretches to fill height */
}
.tab_info_data .products_img {
    margin-top: 25px;
}

.products_img img {
    border-radius: 25px;
    width: 200px;
    height: 200px;
    object-fit: cover;
}

.products_dis p {
    font-size: 16px;
    color: #1f1f1f;
    font-weight: 400;
    margin: 20px 0px;
}

.products_dis_sub {
    padding-left: 30px;
    flex-grow: 1; /* Ensure this stretches if needed */
}

.products_dis_sub ul {
    margin-bottom: 30px;
    list-style: none;
    padding: 0;
}

.products_dis_sub ul li {
    position: relative;
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 20px;
}

.products_dis_sub ul li::after {
    width: 8px;
    height: 8px;
    content: "";
    position: absolute;
    left: 0px;
    top: 8px;
    background-color: #fe0002;
    display: block;
    border-radius: 50px;
}

.main_btn {
    background-color: #fe0002;
    color: #fff;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
    align-self: flex-end; /* Push button to the bottom */
}
.main_btn.home_product {
    min-width: 130px !important;
    font-size: 14px !important;
    padding: 5px 10px !important;
}

.main_btn:hover {
    background-color: #1f1f1f;
}
.navv {
    gap: 20px;
}
/* product section css end */

/* latest news section css start */
:root {
    --red: #fe0002; /* Assuming red color from the design */
    --white: #fff; /* Assuming white text color */
}

.latest_news_sec {
    background-color: #454545;
    padding: 100px 0px;
}

.blog_top_one h5 {
    font-size: 24px;
    font-weight: 600;
    color: var(--red);
    text-transform: uppercase;
}

.blog_top_one h3 {
    color: var(--white);
    font-weight: 600;
    font-size: 45px;
    line-height: 55px;
}

.blog_top_one p {
    color: #fff;
    font-size: 16px;
    margin-top: 5px;
    margin-bottom: 10px;
}

.blog_top_one a {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
    width: 100%;
}

.blog_top_one a:hover {
    color: var(--red);
}

.blog_top_one_img img {
    border-radius: 25px;
    width: 100%;
    height: auto;
}

.blog_dt_full {
    margin: 20px 0;
    width: 100%;
    display: block;
    position: relative;
}

.blog_dt_full::after {
    width: 100%;
    height: 1px;
    background-color: #8a8a8a;
    content: "";
    position: absolute;
    left: 0;
    top: 12px;
}

.blog_dt_full p {
    text-align: right;
    color: var(--white);
    background-color: #454545;
    display: inline-block;
    position: relative;
    z-index: 1;
    padding-left: 20px;
}

.blog_small_blog {
    position: relative;
    margin-bottom: 30px;
    border-radius: 25px;
    overflow: hidden;
    background: #000; /* Ensure dark background for overlay effect */
}

.blog_small_img {
    position: relative;
}

/* .blog_small_img::after {
    width: 100%;
    height: 100%;
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    background-image: url("../images/hi.png");
    background-repeat: no-repeat;
    background-position: bottom left;
} */
.blog_data {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end; /* Align content to the bottom */
}

.blog_data_in {
    padding: 40px;
    color: var(--white);
    position: relative;
    width: 100%;
    /* background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent); */
    height: 100%;
}

.blog_data_in h5 {
    font-size: 24px;
    line-height: 35px;
    font-weight: 800;
    margin: 0px 0px;
}

.blog_data_in p {
    line-height: 28px;
    margin: 10px 0 5px;
}

.blog_data_in h6 {
    font-weight: 800;
    margin: 0px 0px;
}

.blog_data_in_more a {
    font-weight: 600;
    color: #fff;
    font-size: 16px;
    text-decoration: underline;
    margin-top: 10px;
    display: inline-block;
    position: absolute;
    bottom: 40px;
    left: 40px;
}

.latest_news_sec .main_btn {
    margin-top: 35px;
    background-color: #291963; /* Matching the purple from previous designs */
    color: #fff;
    padding: 10px 20px;
    border: none;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;

    border-radius: 0;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    /* text-transform: capitalize; */
    touch-action: manipulation;
    transition: all 0.3sease-in-out;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    background: var(--red);
    min-width: 170px;
    line-height: 25px;
    border-radius: 5px;
}

.latest_news_sec .main_btn:hover {
    background-color: #1f1f1f;
}
/* latest news section css end */

/* partners section css start */
:root {
    --title: #1f1f1f; /* Assuming a dark title color, adjust as needed */
}

.our_partners_sec {
    margin: 70px 0px;
    width: 100%;
    display: inline-block;
    overflow-x: hidden;
}

.our_partners_sec .web_title {
    margin-bottom: 50px;
}

.our_partners_sec .web_title h2 {
    color: #343434;
    font-size: 42px;
    font-weight: 800;
}

.our_partners_sec .web_title p {
    color: #343434; /* Assuming a neutral color for the subtitle, adjust as needed */
    font-weight: 600;
    font-size: 18px;
}

.owl-carousel .owl-stage {
    display: flex;
}

.owl-carousel.owl-drag .owl-item {
    align-self: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.our_partners_sec .partners_slider_main.owl-theme .owl-dots {
    display: flex;
    justify-content: center; /* Center the dots horizontally */
    margin-top: 20px; /* Space below the slider */
}

.our_partners_sec .partners_slider_main.owl-theme .owl-dots .owl-dot span {
    background: #f2f2f2;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    transition: background-color 0.3s;
}

.our_partners_sec
    .partners_slider_main.owl-theme
    .owl-dots
    .owl-dot.active
    span,
.our_partners_sec
    .partners_slider_main.owl-theme
    .owl-dots
    .owl-dot:hover
    span {
    background: #fe0002; /* Adjust to match your theme */
}

.partners_slider_main .item img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures images scale properly */
    padding: 10px; /* Optional: Adds spacing around images */
}
.client_slider_main .item img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures images scale properly */
    padding: 10px; /* Optional: Adds spacing around images */
}
/* panrtners section css end */

/* testomonial section css start */
.testimonial_sec {
    background: #454545;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.25);
    border-top: solid 10px #ffffff;
    padding: 100px 0 70px 0;
    overflow-x: hidden;
}

.gallery-cell {
    width: 100%;
}

.testimonial {
    text-align: center;
    max-width: 910px;
    margin: 0px auto 0px auto;
    padding: 0 20px;
}
.testimonial_sec .owl-theme .owl-dots {
    bottom: -35px !important;
}
.testimonial-avatar {
    width: 100px;
    border-radius: 50%;
}

.testimonial-quote {
    display: block;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 30px;
    color: white;
}
span.testimonial-author {
    color: #eeeeee;
}
/* Owl Carousel specific styles */
.testimonial_sec .owl-carousel .owl-stage {
    display: flex;
}

.testimonial_sec .owl-carousel.owl-drag .owl-item {
    align-self: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.testimonial_sec .owl-theme .owl-dots .owl-dot span {
    background: #f2f2f2;
}

.testimonial_sec .owl-dot.active span {
    background: #fe0002 !important;
}
/* testomonial section css end */

/* clients section css start */
:root {
    --title: #1f1f1f; /* Assuming a dark title color, adjust as needed */
}

.our_clients_sec {
    margin: 70px 0px;
    width: 100%;
    display: inline-block;
    overflow-x: hidden;
}

.our_clients_sec .web_title {
    margin-bottom: 50px;
}

.our_clients_sec .web_title h2 {
    color: #343434;
    font-size: 42px;
    font-weight: 800;
}

.our_clients_sec .web_title p {
    color: #343434; /* Assuming a neutral color for the subtitle, adjust as needed */
    font-weight: 600;
    font-size: 18px;
}

.our_clients_sec .owl-carousel .owl-stage {
    display: flex;
}

.our_clients_sec .owl-carousel.owl-drag .owl-item {
    align-self: center;
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
}

.partners_slider_main.owl-theme .owl-dots .owl-dot span {
    background: #f2f2f2;
}

.partners_slider_main .item img {
    max-width: 100%;
    height: auto;
    object-fit: contain; /* Ensures images scale properly */
    padding: 10px; /* Optional: Adds spacing around images */
}
/* clients section css end */

/* contact section css start */
:root {
    --white: #fff; /* Assuming white color for text, adjust as needed */
}

.contact_sec_main {
    background-color: #333333;
    padding: 70px 0px;
}

.contact_sec_main .web_title {
    margin-bottom: 40px;
}

.contact_sec_main .web_title h2,
.contact_sec_main .web_title p {
    color: var(--white);
}
.contact_sec_main .web_title h2 {
    font-size: 34px;
    font-weight: 800;
}
.contact_p {
    font-size: 16px;
    font-weight: 400;
}
.contact_blog {
    background-color: var(--white);
    border-radius: 25px;
    padding: 20px 40px;
}

textarea.form-control {
    min-height: auto;
    height: auto;
    line-height: normal;
}

p.submitting {
    color: #5a7184;
    margin-bottom: 30px;
    display: inline-block;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    color: #5a7184;
    font-weight: 400;
    margin-bottom: 10px;
}

.form-control {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 10px;
    font-size: 16px;
}

.main_btn {
    border: none;
    border-radius: 0;
    color: #fff;
    display: inline-block;
    font-size: 16px;
    font-weight: 400;
    margin-bottom: 0;
    text-align: center;
    /* text-transform: capitalize; */
    touch-action: manipulation;
    transition: all 0.3sease-in-out;
    vertical-align: middle;
    white-space: nowrap;
    position: relative;
    background: var(--red);
    min-width: 170px;
    line-height: 30px;
    border-radius: 5px;
}

.main_btn:hover {
    background-color: #1f1f1f;
}

.modal-body {
    padding: 40px;
}

.modal-body img {
    margin-bottom: 20px;
}
/* contact section css end */

/* footer section css start */
:root {
    --white: #fff; /* Assuming white color for text */
    --red: #fe0002; /* Assuming red color for accents */
}

.footer_sec {
    border-top: 1px solid #707070;
    background-color: #333333;
    padding-top: 50px;
}

.footer_menu ul li {
    display: inline-block;
    width: 100%;
    margin-bottom: 12px;
}

.footer_menu ul li a {
    display: inline-block;
    font-size: 16px;
    color: var(--white);
    text-decoration: none;
}

.footer_menu ul li a i {
    color: var(--red);
    padding-right: 5px;
}

.footer_menu ul li a:hover {
    color: var(--red);
}
footer ul {
    padding-left: 0rem;
    list-style: none;
}
.footer_menu,
.footer_address,
.footer_follow {
    padding-left: 50px;
    margin-top: 20px;
}

.footer_address ul li {
    position: relative;
    margin-bottom: 10px;
}

.footer_address ul li i {
    color: var(--red);
    font-size: 16px;
    position: absolute;
    top: 5px;
    left: 0px;
}

.footer_address ul li p,
.footer_address ul li a {
    color: var(--white);
    padding-left: 30px;
}

.footer_follow {
    margin-top: 20px;
}

.footer_follow h4 {
    color: var(--white);
    font-size: 18px;
    text-transform: uppercase;
}

.footer_follow ul {
    display: inline-grid;
    padding: 0px;
    grid-template-columns: repeat(2, 35px);
    width: 90%;
    grid-gap: 20px 0;
    justify-content: space-between;
    margin-top: 20px;
}

.footer_follow ul li a img {
    transition: all 0.6s ease;
    display: inline-block;
}

.footer_follow ul li a:hover img {
    transform: rotate(360deg);
}

.footer_btm {
    border-top: 1px solid #707070;
    margin-top: 60px;
    padding: 20px 0px;
}

.copyright_text {
    color: #999999;
}

.cms_page {
    text-align: right;
}

.cms_page ul li {
    display: inline-block;
}

.cms_page ul li a {
    display: inline-block;
    margin-left: 20px;
    color: #999;
}

.cms_page ul li a:hover {
    color: var(--red);
}

.slide_ctm .owl-carousel .owl-item .item {
    width: 100%;
}

.slide_ctm .owl-carousel .owl-item img {
    width: 100%;
}
footer li a {
    text-decoration: none;
}
/* footer section css end */
nav a:hover {
    color: #fe0002 !important;
}
@media (max-width: 768px) {
    .top-header {
        background: #b8b9b9;
        padding: 3px 5px;
    }
    .header.sticky .nav a {
        color: white !important;
        font-size: 14px; /* Smaller font size when sticky - adjust as needed */
    }
    .nav a {
        text-decoration: none;
        color: white !important;
    }
    /* header section css start */
    .header {
        padding: 5px 20px;
        background: white;
        margin-top: 21px;
    }
    .header .nav {
        flex-direction: column;
        align-items: center;
        background: rgb(160 32 39 / 90%);
        width: 100%;
        position: absolute;
        top: 100%;
        left: 0;
        display: none;
        padding: 20px 0 20px 0;
    }
    .nav.show {
        display: flex;
    }
    .top-header span {
        font-size: 10px;
    }
    button.navbar-toggler.d-lg-none {
        background-color: #fe0002;
        color: white;
        padding: 10px;
        border-radius: 4px;
    }
    .btn_header {
        background-color: white;
        padding: 5px 20px;
        border: none;
        color: #fe0002;
        border-radius: 4px;
        margin-top: 0px;
    }
    .top-header span {
        margin-right: 20px;
        color: black;
    }
    /* header section css end */

    /* hero section css start */
    .hero {
        height: auto;
        min-height: 94vh;
        margin: 0;
        padding: 0;
    }
    .owl-item {
        height: auto;
        min-height: 94vh;
        margin: 0;
        padding: 0;
    }
    .hero .owl-item .item {
        height: auto;
        min-height: 94vh;
        margin: 0;
        padding: 0;
    }
    .hero-content-wrapper {
        text-align: center;
        width: 100%;
        height: 100%; /* Ensure it takes full height */
        padding: 20px;
        margin: 0;
        display: flex; /* Use flexbox for vertical centering */
        align-items: center; /* Vertically center the content */
        justify-content: center; /* Horizontally center if needed */
    }
    .hero-content {
        color: white;
        text-align: center; /* Changed to center for mobile */
        align-items: center;
        padding-left: 0px;
        margin: 0;
    }
    .hero-content h1 {
        font-size: 40px;
        text-align: center;
        margin: 0;
    }
    .hero-content p {
        font-size: 16px;
        text-align: center;
        margin: 15px 0;
    }
    .hero-content button {
        font-size: 16px;
        padding: 10px 20px;
        margin: 0;
    }
    .video-icon {
        font-size: 30px;
        padding: 11px 25px 7px 30px;
        margin: 0;
    }
    .owl-theme .owl-dots {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        flex-direction: row;
        margin: 0;
        padding: 0;
    }
    .products_tab_main .d-flex {
        display: block !important;
    }
    /* hero section css end */

    /* about section css start */
    .about_us_section {
        flex-direction: column;
        align-items: center;
    }

    .about_us_section .left_section {
        width: 100%;
        padding: 50px 20px;
        text-align: center;
    }

    .about_us_section .left_section h1 {
        font-size: 1.5em;
    }

    .about_us_section .left_section p {
        font-size: 0.9em;
    }

    .about_us_section .right_section {
        width: 100%;
        height: 300px;
    }
    /* about section css end */

    /* services section css start */
    .service-slider-container {
        max-width: 350px; /* 1 card width */
    }
    .service_section {
        background-color: #454545;
        padding: 50px 10px;
        text-align: center;
        overflow-x: hidden;

    }
    /* Center the dots specifically for service_section */
    .service_section .service-slider.owl-theme .owl-dots {
        bottom: 20px; /* Adjust distance from bottom */
        left: 50%;
        transform: translateX(-50%); /* Center horizontally */
        display: flex;
        justify-content: center; /* Ensure dots are centered */
    }
    /* services section css end */

    /* product section css start */
    .products_tab_main {
        flex-direction: column;
    }

    .products_tab_main .nav-pills {
        width: 100%;
        flex-direction: row;
        overflow-x: auto;
        margin-bottom: 20px;
        min-height: auto;
    }

    .products_tab_main .nav-pills .nav-link {
        width: auto;
        margin-right: 10px;
        margin-bottom: 10px;
        padding: 10px 20px;
        white-space: nowrap;
    }

    .products_tab_main .nav-pills .nav-link.active {
        border-right: 2px solid #fe0002;
        border-radius: 25px;
        width: auto;
        margin-right: 0;
    }

    .products_tab_main .nav-pills .nav-link.active:after {
        display: none; /* Hide triangle on mobile */
    }

    .tab-content {
        margin-left: 0;
        width: 100%;
        padding: 15px;
    }

    .tab_info_data {
        flex-direction: column;
        text-align: left;
        gap: 0px;
    }

    .products_img img {
        margin-bottom: 20px;
        width: 100%;
    }
    .products_tab_main .flex-column {
        flex-direction: unset !important;
    }
    /* product section css end */

    /* latest news section css start */
    .blog_top_one h3 {
        font-size: 30px;
        line-height: 40px;
    }

    .blog_top_one_img img {
        margin-top: 20px;
    }

    .blog_data_in {
        padding: 20px;
    }

    .blog_data_in h5 {
        font-size: 20px;
    }

    .blog_small_img img {
        width: 100%;
        height: auto;
    }
    /* latest news section css end */

    /* partners section css start */
    .partners_slider_main .item img {
        max-width: 70%; /* Reduced size to fit 3 items comfortably */
    }
    .our_partners_sec .partners_slider_main.owl-theme .owl-dots {
        margin-top: 15px; /* Adjust spacing for mobile */
        justify-content: center;
        transform: unset;
    }

    /* panrtners section css end */

    /* testomonial section css start */
    .testimonial {
        margin: 50px auto 80px auto;
    }

    .testimonial-quote {
        font-size: 18px;
    }
    .testimonial_sec .owl-theme .owl-dots {
        text-align: center;
        transform: unset;
    }

    /* testomonial section css end */

    /* clients section css start */
    .partners_slider_main .item img {
        max-width: 80%; /* Adjust image size on mobile */
    }
    .our_clients_sec .owl-theme .owl-dots {
        transform: unset;
    }
    /* clients section css end */

    /* contact section css start */
    .contact_blog {
        padding: 20px;
    }

    .modal-body {
        padding: 20px;
    }
    /* contact section css end */

    /* footer section css start */
    .footer_menu,
    .footer_address {
        padding-left: 0;
        text-align: left;
    }
    .footer_follow {
        text-align: center;
        padding-left: 0px;
    }
    .footer_logo_col {
        text-align: center;
    }
    .footer_follow ul {
        grid-template-columns: repeat(4, 35px);
        justify-content: center;
        width: 100%;
    }

    .cms_page {
        text-align: center;
        margin-top: 10px;
    }

    .copyright_text {
        text-align: center;
    }
    /* footer section css end */
    
    .custom-next {
        right: 0px !important;
    }
    .custom-prev {
        left: 0px !important;
    }
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .service-slider-container {
        max-width: 715px; /* 2 cards * 350px + 15px gap = 715px */
    }
}

.custom-prev,
.custom-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: #fff;
    background: none;
    padding: 10px 15px 10px 15px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    z-index: 10;
}
.custom-prev:hover,
.custom-next:hover {
    background: rgba(204, 17, 17, 0.8);
}
.custom-prev {
    left: 20px;
}
.custom-next {
    right: 20px;
}


.company_profile_div a {
    background: #fe0002 !important;
    padding: 10px 30px !important;
    color: white !important;
    border-radius: 4px;
}
