.swiper-slide.one {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../img/slider/slider-2.webp);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.swiper-slide.two {
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, .3), rgba(0, 0, 0, 0.3)), url(../img/slider/slider-1.webp);
    height: 100vh;
    width: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}
.main_wrapper {
    position: relative;
    width: 100%;
    /* height: 90vh; */
    /* Full viewport height */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.main_wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    /* 50% black overlay */
    z-index: 1;
}

.banner-video {
    z-index: 0;
}


.banner-content {
    position: relative;
    z-index: 2;
    /* Ensures text is above the video */
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 20px;
}


.main_wrapper .slider_content {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;

}

.slider_content .container {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100%;
}

.slider_content h1 {
    font-size: 50px;
    line-height: 58px;
    text-transform: capitalize;
    color: #fff;
    font-weight: 700;
    /* margin-left: 30px; */
}

.slider_content p {
    color: #fff;
    font-weight: 200;
    font-size: 20px;
    /* margin-left: 30px; */
}






/* Custom Navigation Styles */
.custom-next,
.custom-prev {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 15px 20px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.custom-next:hover,
.custom-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

.custom-next {
    right: 30px;
}

.custom-prev {
    left: 30px;
}

/* Modern Pagination Dots */
.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: white;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    width: 16px;
    height: 16px;
    background: #ffcc00;
    /* Modern highlighted color */
    opacity: 1;
}


.swiper-pagination-fraction {
    font-size: 14px;
    color: #fff;
    /* Change to your preferred color */
    padding: 5px 10px;
    border-radius: 8px;
    display: inline-block;
}



.about_company {
    background-color: #fff;
    position: relative;
    /* height: 600px; */
}


.about_company .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 50px;
}

.about_company .content {
    padding: 50px 20px;
}

.about_company .content h3 {
    text-align: start;
}

.about_company .content p {
    line-height: 2;
    font-size: 18px;
}



.section_title {
    font-size: 40px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.services{
    background: #f6f6f6;
}
.services .serviceSwiper{
    padding-bottom: 100px;
}
.services .swiper-slide{
    transition: transform 0.4s ease;
}
.services .swiper-slide:hover  img{
    transform: translateY(-8px);
  }
.services .service_img{
    height: 400px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s ease;
}
.services .swiper-slide:hover  .service_img img{
    transform: scale(1.1);
  }

.services .service_img img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.service_img::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40%;
    background: linear-gradient(0deg, rgba(0,0,0,0.7), rgba(0,0,0,0));
    z-index: 1;
}

.service_name {
    position: absolute;
    bottom: 30px;
    left: 20px;
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    z-index: 2;
}



.services .swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.services .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    background-color: var(--primary-red);
    width: 10px;
    height: 10px;
    padding: 3px;
}






.product_card_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;

}

.product_card_grid .product_card {
    border: 1px solid #0000002d;
    border-radius: 15px;
    padding: 10px 10px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease-in-out;
    
}

.product_card_grid .product_card .product_image {
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.product_card_grid .product_card .product_image img {
    width: 100%;
    transition: transform .5s ease-in-out;
}

.product_card:hover {
    cursor: pointer;
}

.product_card:hover .product_image img {
    transform: rotateY(180deg);
}

.product_card_grid .product_card .product_name {
    margin: 20px 0;
    font-size: 16px;
    font-weight: 400;
}

.product_card_grid .product_card .main-btn {
    padding: 8px 24px !important;
    border-radius: 0;
    font-size: 12px !important;
    display: none;
}



/* .industries_we_serve {
    background-color: #f5f5f5;
} */

.industries_we_serve .grid_row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.industries_we_serve .item {
    background-color: #fff;
    border-radius: 15px;
    padding: 20px;
    text-align: center;
}

.industries_we_serve .item .icon {
    background-color: var(--primary-red);
    width: fit-content;
    padding: 15px;
    margin: 0px auto 20px;
    border-radius: 50px;
}

.industries_we_serve .item .item_name {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 20px;
}

.industries_we_serve .item .item_desc {
    font-size: 14px;
    font-weight: 300;
    line-height: 26px;
}

.section_three {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, .7), rgba(0, 0, 0, 0.3)), url(../img/image.jpg);
    background-size: cover;
    background-position: center;
    height: 600px;
    position: relative;
    background-attachment: fixed;
}

.section_three .vector_image {
    position: absolute;
    top: 0;
    left: 0;
    z-index: unset;
    height: 100%;
    opacity: .8;
}

.section_three .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 600px;

}

.section_three .grid_row .product_image {
    z-index: 9;
    /* text-align: center; */
    width: 400px;
    padding-top: 20px;
}

.section_three .grid_row .product_image img {
    width: 100%;
}

.section_three .grid_row .content {
    color: #fff;
    text-align: center;
    padding-top: 120px;
}

.section_three .grid_row .content h3 {
    font-size: 32px;
}

.section_three .grid_row .content p {
    font-weight: 300;
}

.section_three .grid_row .main-btn {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 20px auto 0;
    border-radius: 0;
}

.section_three .grid_row .main-btn i {
    background-color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50px;
    color: var(--primary-red);
    display: flex;
    align-items: center;
    justify-content: center;
}


.blog_wrapper {
    /* background-color: #000; */
    padding: 400px 0 50px;
    /* height: 90vh; */
    position: relative;
    z-index: 0;
}

.title_text {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9;
    opacity: 0.1;
    position: absolute;
    text-align: center;
    font-size: 150px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    text-transform: uppercase;
    display: inline;
    background: linear-gradient(to right, #010101 0%, #fff 50%, #E20026 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 2.5s infinite;
    background-repeat: no-repeat;
    background-position: 0 0;
    background-color: rgb(159 159 159 / 80%);
    -ms-background-size: 200px 100%;
    background-size: 200px 100%;
}

@keyframes shimmer {
    0% {
        background-position: top right;
    }

    100% {
        background-position: top left;
    }
}

.blog_wrapper .bg_section_blog {
    position: absolute;
    bottom: 0;
    /* left: 0; */
    right: 0;
    background-color: #201b14;
    height: 280px;
    content: '';
    width: 97%;
    z-index: unset;
    /* margin-left: 50px; */
    border-top-left-radius: 40px;
    opacity: .7;
}

.blog_wrapper .container {
    z-index: 999 !important;
}

.blog_wrapper .section_title {
    margin-top: 100px;
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
}

.blog_wrapper .grid_row {
    /* background-color: #ffcc00; */
    padding: 0px 20px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

}

.blog_wrapper .blog_card {
    box-shadow: var(--primary-shadow);
    border-radius: 30px;
    overflow: hidden;
    background-color: #fff;
    margin-top: -150px;
    z-index: 999 !important;
    border: none;

}

.blog_wrapper .blog_card .blog_image {
    width: 100%;
    height: 250px;
}

.blog_wrapper .blog_card .blog_image img {
    height: 100%;
    object-fit: cover;
}

.blog_wrapper .blog_content {
    padding: 20px;
    border-top: none;
    background-color: #fff;
    transition: background .3s;
}

.blog_wrapper .blog_card:hover .blog_content {
    background-color: var(--primary-red);
    color: #fff;
}

.blog_wrapper .blog_card:hover .blog_name,
.blog_wrapper .blog_card:hover .blog_desc,
.blog_wrapper .blog_card:hover .read_more_btn {
    color: #fff;
}

.blog_wrapper .blog_content .blog_name {
    color: #000;
    font-size: 20px;
    font-weight: 500;
    line-height: 24px;
    transition: all .4s;
}

.blog_wrapper .blog_content .blog_desc {
    margin: 10px 0;
    font-weight: 300;
}

.blog_wrapper .blog_content .read_more_btn {
    color: #000;
}

.blog_wrapper .blog_card:hover {
    cursor: pointer;
}

/* .blog_wrapper .blog_card:hover .blog_name{
    text-decoration: underline;
} */


/* blog detail page */

.blog_detail_page .blog_image{
    margin-bottom: 10px;
}
.blog_detail_page .author_details{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.blog_detail_page .blog_name{
    font-size: 32px;
    font-weight: 600;
}

.blog_detail_page .blog_desc{
    line-height: 1.8;
}
.blog_detail_page h6{
    font-size: 18px;
    font-weight: 600;
}

.blog_detail_page ul{
    padding-left: 25px;
    list-style: disc;
    margin: 20px 0;
}

.blog_detail_page ul li{
    margin-bottom: 15px;
}


footer {
    position: relative;
    padding: 50px 0;
    /* background: #121315; */
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
        url('../img/footer.webp') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    z-index: 1;
}


footer .grid_row {
    display: grid;
    grid-template-columns: 1fr .6fr 1.3fr 1fr;
    gap: 20px;

}

footer .footer_logo {
    max-width: 180px;
}

footer .social_links {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

footer .social_links li {
    width: 40px;
    height: 40px;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    border: 1px solid #fff;
    transition: all .3s;
}

footer .social_links li a {
    font-size: 24px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s;
}

footer .social_links li:hover {
    background-color: var(--primary-red);
    border-color: var(--primary-red);
}

footer .contact_details {
    margin: 30px 0;
}

footer .contact_details li {
    display: flex;
    margin-bottom: 24px;
    align-items: self-start;
    gap: 8px;
    font-size: 16px;
    color: #fff;
}
footer .contact_details li i{
    font-size: 24px;
}
footer .contact_details li a{
    color: #fff;
}

footer .footer_title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
}

footer .footer_links {
    padding-left: 0;
}

footer .footer_links li {
    margin-bottom: 15px;
    transition: all .3s;
}

footer .footer_links li a {
    color: #fff;
    font-size: 16px;
    font-weight: 200;
    transition: all .3s;
}

footer .footer_links li:hover a {
    color: var(--primary-red);
}
footer .copyright{
    border-top: 1px solid #fff;
}
footer .copyright p{
    color: #fff;
    font-size: 14px;
    padding-top: 16px;
}


/* about page */


.our_history .row {
    text-align: center;
}

.our_history .row p {
    font-size: 18px;
    margin: 30px 0 50px;
}

.our_history .row img {
    border-radius: 20px;
}

.vision_mission {
    height: auto;
}

.vision_mission .grid_row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
}


.vision {
    background-color: #E20026;
    height: 300px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding: 0px 100px;
    color: #fff;
}

.vision_mission .vision_mision_sec {
    height: 600px;
}

.mission {
    background-color: #201b14;
    height: 300px;
    display: flex;
    /* align-items: center; */
    justify-content: center;
    flex-direction: column;
    text-align: left;
    padding: 0px 100px;
    color: #fff;
}

.vision p,
.mission p {
    font-weight: 300;
}

.vision_mission .image {
    height: 600px;
    object-fit: cover;
}

.vision_mission .image img {
    height: 100%;
    object-fit: cover;
}


.our_team .team_grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 50px;
}

.our_team .team_member {
    text-align: center;
    overflow: hidden;
    cursor: pointer;

}

.our_team .team_member:hover img {
    transform: scale(1.2);
}

.our_team .team_member .img {
    width: 100%;
    height: 350px;
    max-height: 350px;
    margin-bottom: 20px;
    overflow: hidden;

}


.our_team .team_member .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    overflow: hidden;
    transition: all .3s;
}

.our_team .team_member .member_name {
    font-size: 20px;
    font-weight: 500;
}







.product_page .grid_row{
    display: grid;
    grid-template-columns: 20% 80%;
    gap: 20px;
}
.product_page .nav-link{
    background-color: #201b14;
    width: 230px;
    height: 50px;
    margin-bottom: 0;
    border-radius: 0;
    border: none;
    /* padding: 12px 32px; */
    color: #fff;
}
.product_page .nav-link.active{
    background-color: #E20026;
}


.product_page .product_detail h3{
    font-size: 22px;
    font-weight: 600;
}
.product_page .product_detail p{
    line-height: 32px;
}

.product_page .product_detail h6{
    font-size: 20px;
    font-weight: 600;
    margin: 30px 0 20px;
}

.product_page .product_detail ul li{
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.product_page .product_detail ul li i{
    color: var(--primary-red);
}

.product_page .product_card_grid{
    margin-top: 70px;
    grid-template-columns: repeat(4,1fr);
    
}
.product_page .product_image {
    min-height: unset !important;
}

/* .nav_buttons {
    position: sticky;
    top: 170px; 
    height: fit-content;
} */



.contact_page_wrapper .grid_row{
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 50px;
    margin-top: 50px;
    align-items: center;
}

.contact_page_wrapper .left{
    background: var(--primary-red);
    color: #fff;
    max-height: 500px;
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding:30px;
    text-align: center;
}

.contact_page_wrapper .left .item{
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
}
.contact_page_wrapper .left h6{
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}
.contact_page_wrapper .left .location{
    align-items: self-start;
}
.contact_page_wrapper .left .location p{
    margin-bottom: 0;
}
.contact_page_wrapper .left a{
    color: #fff;
}










.product_detail_page .grid_row{
    display: grid;
    grid-template-columns: .5fr 1fr;
    gap: 50px;
}
.product_detail_page .product_image{
    border: 1px solid #201b1464;
    display: flex;
    align-items: center;
    justify-content: center;
}
.product_detail_page .specifications {
    border-collapse: collapse;
    width: 100%;
}
.product_detail_page .specifications th, .specifications td {
    padding: 10px;
    /* border: 1px solid #ddd; */
}
.product_detail_page .specifications th {
    text-align: left;
    font-weight: bold;
    /* background-color: #f4f4f4; */
}
.product_detail_page .specifications td {
    background-color: #fff;
}

.product_structure{
    padding-top: 0;
}

.similar_product .product_image {
    min-height: unset !important;
}
.similar_product h6{
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 600;
}


.fire_alarm{
    position: relative;
    min-height: 90vh;
    background-image: url("../img/fire-alarm.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;   /* ✅ FIXED BACKGROUND */
    display: flex;                  /* ✅ Center content */
    align-items: center;            /* Vertical center */
}

/* Black overlay */
.fire_alarm::before{
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

/* Content wrapper */
.fire_alarm .container{
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

/* Typography */
.fire_alarm .content h1{
    font-size: 60px;
    font-weight: 600;
    line-height: 68px;
    margin-bottom: 16px;
}

.fire_alarm .content h6{
    font-size: 20px;
    margin-bottom: 24px;
}
