*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
 }
/* ********************************************* Header page ********************************************************* */
body {
    overflow-x: hidden; /* Prevents unwanted horizontal scrolling glitches */
}
 
/* ==========================================================================
   Top Header Bar
   ========================================================================== */
.width {
    background-color: #040433;
    color: white;
    padding: 12px 0;
}
 
.width_sections {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
 
.width p {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 0;
}
 
.social {
    margin-left: auto;
    display: flex;
    gap: 10px;
}
 
.social a {
    color: white;
    text-decoration: none;
}
 
.social i {
    font-size: 14px;
    border: 1px solid white;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* border-radius: 50%; */
    border: 1px solid white;
    transition: all 0.3s ease;
}
 
.social i:hover {
    background-color: #E58622;
    border-color: #E58622;
}
 
/* ==========================================================================
   Logo & Branding Area
   ========================================================================== */
.logo {
    padding: 20px 0;
    background-color: #ffffff;
}
 
.logo_section {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
 
.logo_img img {
    width: 240px;
    max-width: 100%;
    height: auto;
}
 
.location {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
 
.contact_box {
    display: flex;
    align-items: center;
    gap: 12px;
}
 
.contact_box i {
    font-size: 24px;
    color: rgb(229, 132, 37);
}
 
.location_data p {
    font-family: 'Cardo', serif;
    font-weight: 600;
    font-size: 17px;
    margin: 0;
    color: rgb(4, 4, 51);
}
 
.location_data span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: rgb(122, 122, 122);
}
 
.vertical_line {
    width: 1px;
    height: 40px;
    background-color: #e0e0e0;
}
 
/* ==========================================================================
   Navigation Bar (Responsive Fixes Integrated)
   ========================================================================== */
.navbar_section {
    position: relative;
    z-index: 99;
    background-color: transparent;
}
 
.custom_navbar {
    background-color: #E58622;
    padding: 15px 30px !important;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}
 
.navbar-nav {
    gap: 15px;
}
 
.navbar-nav .nav-link {
    color: white !important;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 15px !important;
    transition: all 0.2s ease-in-out;
}
 
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #040433 !important;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 4px;
}
 
/* Sidebar Toggle Trigger Graphic link */
.nav_icon {
    border: 1px solid white;
    padding: 8px 16px;
    border-radius: 4px;
    color: white;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s ease;
}
 
.nav_icon:hover {
    background-color: white;
    color: #E58622;
}
 
/* Navbar Bootstrap Overrides */
.dropdown-menu {
    border-radius: 4px;
    border: none;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding: 8px 0;
}
 
.dropdown-item {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    padding: 8px 20px;
}
 
.dropdown-item:hover {
    background-color: #f4dac0;
    color: rgb(229, 132, 37);
}
 
/* ==========================================================================
   Off-Canvas Information Sidebar Panel
   ========================================================================== */
.side_popup {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100vh;
    background-color: #040433;
    color: white;
    z-index: 1050;
    padding: 40px 30px;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -5px 0 25px rgba(0,0,0,0.3);
    overflow-y: auto;
}
 
.side_popup.active {
    right: 0;
}
 
.close_btn {
    text-align: left;
    margin-bottom: 30px;
}
 
.close_btn i {
    font-size: 28px;
    color: #E58622;
    cursor: pointer;
}
 
.popup_content h2 {
    color: #E58622;
    font-family: 'Cardo', serif;
    font-size: 28px;
    margin-bottom: 20px;
}
 
.popup_content p {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #d1d1e0;
    margin-bottom: 20px;
}
 
.icon_box {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}
 
.icon_box a {
    color: white;
    font-size: 20px;
    transition: color 0.2s;
}
 
.icon_box a:hover {
    color: #E58622;
}
 
.popup_content h3 {
    font-family: 'Cardo', serif;
    font-size: 20px;
    margin-bottom: 10px;
}
 
.underline {
    width: 50px;
    height: 2px;
    background-color: #E58622;
    margin-bottom: 20px;
}
 
/* ==========================================================================
   Media Breakpoints (The Core Responsiveness Engines)
   ========================================================================== */
 
/* Tablet Layouts & Smaller Viewports */
@media (max-width: 991px) {
    .logo_section {
        justify-content: center;
        flex-direction: column;
        text-align: center;
    }
   
    .location {
        /* justify-content: center;
        margin-left: 0; */
        display: none;
    }

    .width{
        display: none;
    }
 
    .custom_navbar {
        background-color: #E58622;
        padding: 10px 20px !important;
    }
 
    .navbar-toggler {
        border: 1px solid rgba(255,255,255,0.3);
        padding: 6px 12px;
    }
 
    .navbar-collapse {
        background-color: #E58622;
        padding: 20px 0 10px 0;
    }
 
    .navbar-nav {
        align-items: stretch !important;
        text-align: center;
        width: 100%;
    }
 
    .navbar-nav .nav-link:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
   
    .nav_icon_wrapper {
        text-align: center;
        margin-top: 15px;
    }
}
 
/* Medium/Large Devices - Clean Diagonal Trim Accent on Nav */
@media (min-width: 992px) {
    .custom_navbar {
        clip-path: polygon(3% 0, 100% 0, 100% 100%, 0% 100%);
    }
}
 
/* Mobile Configurations */
@media (max-width: 767px) {
    .location {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
 
    .vertical_line {
        display: none; /* Strip out visual clutter on vertical stacked grid elements */
    }
 
    .contact_box {
        width: 100%;
        justify-content: center;
        background: #fdfdfd;
        padding: 8px;
        border-radius: 6px;
        border: 1px solid #f0f0f0;
    }
   
    .side_popup {
        width: 100%;
        right: -100%;
    }
}
 
/* Small Micro-Displays Utility Trim */
@media (max-width: 480px) {
    .width_sections {
        justify-content: center;
        text-align: center;
    }
   
    .social {
        margin: 5px auto 0 auto;
    }
}
 
/* ********************************************************** Index Page ************************************************** */
/* Banner section */
.banner{
    position: relative;
    min-height: 650px;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: -30px;
}

#bannerCarousel{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#bannerCarousel .carousel-inner,
#bannerCarousel .carousel-item{
    height: 100%;
}

#bannerCarousel img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner_overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.75);
    top: 0;
    left: 0;
    z-index: 1;
}

.banner .container{
    position: relative;
    z-index: 2;
}
.banner_content h1 {
    font-family: 'Cardo', serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    max-width: 650px;
    margin-bottom: 30px;
    color: white;
}

.banner_content p {
    font-family: 'inter', serif;
    max-width: 400px;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 35px;
    color: white;
}

.banner_btns {
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.btn_orange {
    background: #f5820d;
    color: white;
    padding: 10px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
}

.btn_white {
    color: white;
    text-decoration: none;
    font-weight: 600;
}    

/* Bottom Cards section */
.info_boxes {
    margin-top: -90px;
    position: relative;
    z-index: 99;
}

.info_box{
    display: flex;
    align-items: flex-start;
    gap: 20px;

    background: #fff;
    padding: 25px;
    border-radius: 15px;

    box-shadow: 0 5px 20px rgba(0,0,0,0.08);

    height: 100%;
}

.orange_box {
    background: #f5820d;
    color: white;
}

.info_box i {
    font-size: 45px;
    color: #f5820d;
    margin-bottom: 20px;
}

.orange_box i {
    color: white;
}

.info_box h3 {
    font-family: 'Cardo', serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 20px;
}

.info_box p {
    font-family: 'Inter', serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
} 

.info_content h3{
    font-family: 'Cardo', serif;
    font-weight: 600;
    font-size: 20px !important;
    line-height: 24px;
    text-align: start;
}

.info_content p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px !important;
    line-height: 23px !important;
    text-align: start;
}

.info_icon a, .info_content a{
    text-decoration: none;
    color: white;
}

@media(max-width: 450px){
.banner {
    min-height: 700px;
    padding: 20px 0;
}
.banner_content h1{
    font-size: 30px;
    padding-top: 0px;
    margin-top: 0px;
}
}

/* About our Company section */
.about_company{
    margin: 50px 0;
}

.about_company h5{
    font-family: 'cardo', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    color: rgb(229, 132, 37);
}

.about_company h2{
    font-family: 'cardo', serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
    padding: 20px 0;
}

.about_company p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    padding-bottom: 20px;
}

.btn_blue {
    background: #040433;
    color: white;
    padding: 20px 35px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
}

/* Main wrapper */
.about_img_main{
    position: relative;
    width: 70%;
    margin-left: 90px;
}

/* Main image */
.about_company .main_img{
    width: 100%;
    height: auto;
    border-radius: 10px;
    display: block;
}

/* Small bottom image */
.about_company .small_img{
    position: absolute;
    bottom: -50px;
    right: -20px;
    width: 250px;
    height: auto;
    /* background: transparent; */
    padding: 0;
}

/* Text box */
.experience_tag{
    position: absolute;
    top: -20px;
    left: -20px;
    background: white;
    color: #040433;
    padding: 12px 20px;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

/* Responsive */
@media(max-width: 991px){

    .about_img_main{
        width: 100%;
        margin-left: 0;
        margin-bottom: 70px;
    }

    .about_company .small_img{
        width: 150px;
        right: 10px;
        bottom: -25px;
    }

    .experience_tag{
        font-size: 15px;
        padding: 10px 14px;
        top: -5px;
        left: -5px;
    }
}

@media(max-width: 450px){
.about_company img{
    width: 100%;
    margin: 0px;
    padding-bottom: 20px;
}

.about_company h5{
    font-size: 18px !important;
}

.about_company h2{
    font-size: 30px;
}

.about_company p{
    font-size: 15px;
}

.btn_blue {
    font-size: 12px;
}
}

/* Services Provide section*/
.index_services{
    background:
    linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75)),
    url('images/index-services.jpg');

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    padding: 90px 0 320px;  /* IMPORTANT */

    position: relative;
}

/* CONTAINER */
.index_services .container{
    position: relative;
    z-index: 2;
}

/* HEADING */
.index_services h5{
    font-family: 'Cardo', sans-serif;
    color: #e58b23;
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.index_services h2{
    font-family: 'Cardo', sans-serif;
    color: #fff;
    font-size: 42px;
    line-height: 42px;
    max-width: 750px;
    margin-bottom: 70px;
    font-weight: 700;
    padding-bottom: 40px;
}

 /* WRAPPER */
.services_carousel_wrapper{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -180px;

    width: 100%;
    padding: 0 40px;

    display: flex;
    align-items: center;
    gap: 15px;

    z-index: 10;
}

/* CAROUSEL */
.services_carousel{
    flex: 1;
    overflow: hidden;
}

/* TRACK */
.service_track{
    display: flex;
    gap: 16px;
    transition: transform 0.5s ease;
}
/* CARD */
/* .service_card{
    width: calc(25% - 12px);
    min-width: calc(25% - 12px);

    background: #e58b23;
    border-radius: 18px;
    overflow: hidden;

    flex-shrink: 0;
} */

.service_card{
    flex: 0 0 calc((100% - 48px) / 4);

    background: #e58b23;
    border-radius: 18px;
    overflow: hidden;

    width: 100%;
}

/* IMAGE */
.service_card img{
    width: 100%;
    height: 260px;
    object-fit: cover;
    display: block;
}

/* CONTENT */
.card_content{
    padding: 25px;
}

.card_content h3{
    font-family: 'Cardo', sans-serif;
    color: #fff;
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.card_content p{
    font-family: 'Inter', sans-serif !important;
    color: #fff;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 20px;
}

/* READ MORE */
.read_more_btn{
    display: inline-block;

    background: #f39a2f;
    color: #fff;

    padding: 8px 22px;

    border-radius: 10px;
    text-decoration: none;

    font-size: 17px;
    transition: 0.3s;
}

.read_more_btn:hover{
    background: #fff;
    color: #e58b23;
}

/* ARROWS */
.carousel_btn{
    width: 60px;
    height: 60px;

    border-radius: 50%;
    border: 4px solid #fff;

    background: #e58b23;
    color: #fff;

    font-size: 28px;
    cursor: pointer;

    flex-shrink: 0;
}

/* TABLET */
@media(max-width:991px){

    .service_card{
        /* min-width: calc((100% - 25px) / 2); */
                flex: 0 0 calc((100% - 16px) / 2);

    }

    .index_services h2{
        font-size: 42px;
        line-height: 54px;
    }

    .service_card img{
        height: 220px;
    }
}

/* MOBILE */
@media(max-width:576px){

    .index_services{
        padding: 60px 0;
    }

    /* REMOVE OVERLAP */
    .services_carousel_wrapper{
        position: relative;
        left: 0;
        bottom: 0;
        transform: none;

        padding: 0;
        margin-top: 40px;

        gap: 10px;
    }

    .services_carousel{
        width: 100%;
    }

    .service_card{
       flex: 0 0 100%;
    }

    .index_services h2{
        font-size: 30px;
        line-height: 40px;
        margin-bottom: 25px;
    }

    .service_card img{
        height: 220px;
    }

    .card_content{
        padding: 18px;
    }

    .card_content h3{
        font-size: 20px;
        line-height: 28px;
    }

    .card_content p{
        font-size: 14px;
        line-height: 24px;
    }

    .carousel_btn{
        width: 42px;
        height: 42px;
        font-size: 18px;

        position: absolute;
        top: 45%;
        z-index: 5;
    }

    .carousel_btn.prev{
        left: 5px;
    }

    .carousel_btn.next{
        right: 5px;
    }
}

/* Know More section */
.index_knowmore{
    margin-top: 200px;
    background: url('images/know-more.jpg');
    background-position: 600px 0px;
    background-repeat: no-repeat;
    background-size: contain;
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
    padding: 50px 0px 50px 0px;
    background-attachment: fixed;
}

.knowmore_column{
    background-color: white;
    padding: 0 40px !important;

    width: 100% !important;
    max-width: 1000px !important;

    overflow: hidden !important;
}

.index_knowmore h5{
    color: rgb(229, 132, 37);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    font-family: 'Cardo', sans-serif;
}

.index_knowmore h2{
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    font-family: 'Cardo', sans-serif;
    padding: 20px 0;
}

.choose_tabs{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.choose_tab{
    font-family: 'Inter', sans-serif;
    background: #ececf8;
    border: none;

    padding: 20px;

    font-size: 17px;
    font-weight: 600;
    line-height: 26px;

    color: #11154b;
    cursor: pointer;

    transition: 0.3s;
}

.choose_tab.active{
    color: #e78922;
    border-top: 4px solid #e78922;
}

.choose_content_box{
    border: 1px solid #d9d9f5;
    border-radius: 8px;
    padding: 25px;
}

.choose_grid{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.choose_card{
    background: #f3f3fb;
    border-radius: 16px;

    padding: 15px;

    display: flex;
    align-items: flex-start;
    gap: 18px;

    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.choose_card i{
    font-size: 34px;
    color: #e78922;
    margin-top: 5px;
}

.choose_card p{
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
    color: black;
    margin-bottom: 0;
}

.tab_content li{
    display: flex;
    align-items: center;
    gap: 15px;

    margin-bottom: 18px;
    list-style: none;
}

.tab_content li i{
    width: 35px;
    height: 35px;

    background: #040433;
    color: #fff;

    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 14px;

    flex-shrink: 0;
}

.tab_content li p{
    margin: 0;

    font-size: 16px;
    font-weight: 500;
    color: #222;
}

.tab_content{
    display: none;
}

.tab_content.active{
    display: block;
}

.knowmore_image{
    height: 600px;
}

@media(max-width:991px){

    .choose_tabs{
        grid-template-columns: repeat(2, 1fr);
    }

    .choose_grid{
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px){
       .index_knowmore{

        background-position: center !important;
        background-size: cover !important;

        background-attachment: scroll !important;

        padding: 60px 0 !important;

        margin: 20px 0 !important;
    }

    .choose_tabs{
        grid-template-columns: 1fr;
    }

    .choose_tab{
        font-size: 18px;
        padding: 16px;
    }

    .choose_content_box{
        padding: 15px;
    }

    .choose_card{
        padding: 20px;
        gap: 15px;
    }

    .choose_card i{
        font-size: 28px;
    }

    .choose_card p{
        font-size: 16px;
        line-height: 28px;
    }
}

/* Our Products sections */
.index_products h5{
    color: rgb(229, 132, 37);
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    text-align: center;
}

.index_products h2{
    font-family: 'Cardo', sans-serif;
    color: rgb(4, 4, 51);
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
    text-align: center;
    padding: 15px 0 40px;
}

.index_products{
    position: relative;
    padding: 60px 0;
    background-image: url('images/index-products.jpg');
    background-position: center center;
    background-size: cover;
    overflow: hidden;
    margin-top: 50px;
}

.index_products::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.85);
    z-index: 1;
}

.index_products .container{
    position: relative;
    z-index: 2;
}

.index_products .row{
    row-gap: 20px !important;
    margin-bottom: 30px;
}

.index_products img{
    height: 100%;
    width: 100%;
    object-fit: cover;
    max-width: 100%;
}

.our-project{
  background-color: black;
  text-align: center;
  padding: 20px 20px 80px;
}

.our-project h1{
  color: white;
  font-weight: 700;
  font-size: 29px;
  margin-bottom: 40px;
  margin-top: 20px;
}

.project-container{
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.project-card{
  width: 350px;
  height: 320px;
  border-radius: 10px;
  overflow: hidden;

  position: relative;
  cursor: pointer;
}

.project-card img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.4s ease;
}

.hover {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgb(17, 17, 17);
  color: white;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  opacity: 0;
  transition: 0.5s;
  text-align: center;
  padding: 20px;
}

.hover p {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
        margin-bottom: 0;

  }

/* HOVER EFFECT */
.project-card:hover img {
  transform: scale(1.08);
}

.project-card:hover .hover {
  opacity: 0.5;
}

@media(max-width: 768px){
  .our-project h1{
    font-size: 26px;
  }

  .project-card{
    width: 90%;
  }

  .project-card img{
    width: 100%;
    height: 220px;
  }

  .hover p {
    font-size: 14px;
  }
}
@media(max-width: 450px){

    .index_products{
        padding: 30px 0;
    }

    .project-card img{
    width: 100%;
    height: 220px;
    padding: 10px;
  }

    .index_products h5{
        font-size: 16px;
        line-height: 22px;
    }

    .index_products h2{
        font-size: 24px;
        line-height: 34px;
        padding: 10px 0 25px;
    }

    .index_products .row{
        row-gap: 20px;
    }

    .project-card{
        height: 200px;
        border-radius: 10px;
    }

    .hover{
        padding: 15px;
    }

    .hover p{
        font-size: 15px;
        line-height: 22px;
    }
}

/* Want to know about Section */
.want_to{
    background: linear-gradient(rgba(0, 0, 0, 0.6)), url('images/want-to-know-bg.jpg');
    background-position: center center;
    background-size: cover;
    width: 100%;
    padding: 80px 0;
    margin-bottom: 40px;
}

.want_to .row{
    align-items: center;
    justify-content: space-between;
    padding: 0 80px;
}

.want_to h2{
    font-family: 'Cardo', sans-serif;
    font-weight: 600;
    font-size: 42px;
    line-height: 20px;
    color: white;
    margin: 0;
}
.want_to h2 span{
    color: rgb(229, 132, 37);
    display: block;
    margin-top: 20px;
}

.want_to .col-lg-6:last-child{
    display: flex;
    justify-content: flex-end;
}

.btn_read{
    color: rgb(229, 132, 37);
    border: 1px solid rgb(229, 132, 37);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    line-height: 15px;
    padding: 16px 32px;
    text-decoration: none;
    transition: 0.4s ease;
    display: inline-block;
}
.btn_read:hover{
    color: white;
    background-color: rgb(229, 132, 37);
}
@media(max-width: 991px){

    .want_to{
        padding: 60px 0;
        text-align: center;
    }

    .want_to h2{
        font-size: 34px;
        line-height: 48px;
        margin-bottom: 25px;
    }

    .want_to .col-lg-6:last-child{
        justify-content: center;
    }
}

@media(max-width: 576px){

    .want_to{
        padding: 45px 0;
    }

    .want_to h2{
        font-size: 26px;
        line-height: 38px;
    }

    .btn_read{
        font-size: 14px;
        padding: 14px 24px;
    }
}   

/* Map index */
.btn_map{
    border: 1px solid black !important;
    color: black !important;
    background-color: #e58425 !important;
}

.btn_map:hover{
    background-color: white !important;
}

.index_map{
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.map_index{
    align-items: center;
    margin: 0;
    position: relative;
}

.map_index iframe{
    width: 100%;
    height: 700px;
    display: block;
}

.map_index .col-lg-6:last-child{
    position: relative;
    margin-left: -80px;
    z-index: 2;
}

.map_index form{
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
}

.map_index h4{
    font-family: 'Cardo', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 20px;
    margin-bottom: 25px;
    color: rgb(229, 132, 37);
}

.map_index input,
.map_index textarea{
    width: 100%;
    border: 1px solid black;
    padding: 12px 18px;
    margin-bottom: 18px;
    outline: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 400;
}

.map_index textarea{
    height: 140px;
    resize: none;
}

@media(max-width: 991px){

    .index_map{
        padding: 60px 15px;
    }

    .map_index iframe{
        height: 400px;
    }

    .map_index .col-lg-6:last-child{
        margin-left: 0;
        margin-top: -50px;
    }

    .map_index form{
        padding: 30px;
    }

    .map_index h4{
        font-size: 28px;
    }
}

@media(max-width: 576px){

    .index_map{
        padding: 40px 10px;
    }

    .map_index iframe{
        height: 300px;
        border-radius: 8px;
    }

    .map_index .col-lg-6:last-child{
        margin-top: -30px;
    }

    .map_index form{
        padding: 22px;
        border-radius: 8px;
    }

    .map_index h4{
        font-size: 24px;
        margin-bottom: 20px;
    }

    .map_index input,
    .map_index textarea{
        padding: 12px 15px;
        font-size: 14px;
    }

    .btn_map{
        width: 100%;
        text-align: center;
    }
}

/* Footer */
.footer{
    background-color: #040433;
    color: white;
    padding: 100px 0 0 0;
    position: relative;
    overflow: visible;
}

.footer img{
    max-width: 100%;
    width: 100%;
    height: auto;
    margin-top: -140px;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.footer h4{
    font-family: 'Cardo', sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 20px;
    padding-bottom: 20px;
}

.footer p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
}

.footer li a, .footer a{
    color: white;
    text-decoration: none;
}

.footer li{
    list-style: none;
}

.footer li a:hover{
    color: #e58425;
}

.footer_underline{
    width: 100px;
    height: 3px;
    background-color: #e58425;
    margin: 10px 0 20px 0;
}

.footer_phone{
    color: rgb(229, 132, 37) !important;
    font-family: 'Cardo', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 25px;
}

/* Footer width section */
.footer_width{
    background-color: black;
    padding: 30px 10px;
    margin-top: 40px;
    margin-bottom: -50px;
}

.footer_width p{
    text-align: center !important;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
}

.footer_width a{
    text-align: center !important;
    align-items: center !important;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 42px;
    line-height: 42px;
}

.footer_width .social{
    font-size: 30px !important;
    justify-content: center;
}

.footer_width p a{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 23px;
}

@media(max-width: 991px){

    .footer{
        padding-top: 70px;
        text-align: center;
    }

    .footer img{
        margin-top: -90px;
        margin-bottom: 30px;
    }

    .footer_underline{
        margin: 10px auto 20px;
    }

    .footer_width{
        padding: 25px 10px;
    }

    .footer_width a{
        display: block;
        margin: 20px 0;
        font-size: 30px;
        line-height: 35px;
    }

    .footer_width .social{
        margin-top: 20px;
        justify-content: center;
    }
}

/* ********************************************************** About Us Page ************************************************ */
/* Image Section */
.about{
    background: linear-gradient(rgba(0, 0, 0, 0.7)), url('images/about-us/about-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.about h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

/* Welcome to Section */
.welcome{
    margin-top: 50px;
}

.welcome h5{
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    padding: 20px 0;
}

.welcome h2{
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 40px;
    padding-bottom: 10px;
}

.welcome p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 0;
}

.welcome_images{
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: auto;
    padding-bottom: 120px;
}

.big_img{
    width: 420px;
    height: 420px;
    border-radius: 50%;
    overflow: hidden;
}

.big_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.small_img{
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
    border: 10px solid #fff;

    position: absolute;
    bottom: 0;
    right: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.small_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media(max-width:991px){

    .welcome_images{
        margin-bottom: 50px;
        padding-bottom: 80px;
    }

    .big_img{
        width: 350px;
        height: 350px;
        margin: auto;
    }

    .small_img{
        width: 200px;
        height: 200px;
        right: 30px;
    }
}

@media(max-width:576px){

    .big_img{
        width: 280px;
        height: 280px;
    }

    .small_img{
        width: 160px;
        height: 160px;
        right: 10px;
        border: 6px solid #fff;
    }
}

/* Who We Are */
.who{
    padding: 100px 0;
    overflow: hidden;
}

.who_wrapper{
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.who_left{
    width: 80%;
    background: #040433;
    color: white;
    padding: 60px;
    position: relative;
    z-index: 2;
}

.who_right{
    width: 70%;
    margin-left: -100px; 
}

.who_right img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: 25px;
    display: block;
}

.who h2{
    font-family: 'Cardo', sans-serif;
    font-size: 42px;
    font-weight: 700;
    line-height: 42px;
    margin-bottom: 20px;
}

.who p{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-bottom: 15px;
}

@media(max-width:991px){

    .about{
        padding: 120px 30px;
    }

    .about h1{
        font-size: 42px;
        line-height: 48px;
    }

}

@media(max-width:576px){

    .about{
        padding: 90px 20px;
        margin-top: 0;
    }

    .about h1{
        font-size: 32px;
        line-height: 40px;
    }
      .welcome{
        padding: 50px 0;
    }

    .welcome h5{
        font-size: 18px;
        line-height: 24px;
        padding: 10px 0;
    }

    .welcome h2{
        font-size: 28px;
        line-height: 36px;
    }

    .welcome p{
        font-size: 14px;
        line-height: 24px;
    }
     .why_choose{
        padding: 50px 0;
    }

       .who{
        padding: 50px 0;
        overflow: hidden;
        margin: 0px;
    }

    .who_wrapper{
        display: flex;
        flex-direction: column;
        position: relative;
    }

    /* IMAGE FIRST */
    .who_right{
        order: 1;

        width: 100%;
        margin-left: 0;
    }

    .who_right img{
        width: 100%;
        height: 300px;

        object-fit: cover;
    }

    /* CONTENT OVER IMAGE */
    .who_left{
        order: 2;

        width: calc(100% - 30px);

        margin: -70px auto 0;

        position: relative;
        z-index: 2;

        padding: 25px 18px;

        border-radius: 20px;
    }

    .who h2{
        font-size: 28px;
        line-height: 36px;
        margin-bottom: 15px;
    }

    .who p{
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 12px;
    }   

    .choose_tabs{
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .choose_tab{
        padding: 14px;
        font-size: 15px;
        line-height: 22px;
    }

    .choose_content_box{
        padding: 15px;
    }

    .choose_grid{
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .choose_card{
        padding: 15px;
        gap: 12px;
    }

    .choose_card i{
        font-size: 24px;
    }

    .choose_card p{
        font-size: 14px;
        line-height: 22px;
    }

    .tab_content li{
        gap: 12px;
    }

    .tab_content li i{
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .tab_content li p{
        font-size: 14px;
    }


}
/* Why Choose Us Section */
.why_choose{
    padding: 50px 0;
}

/* ********************************************** Our Services Page ******************************************************** */
/* Image section */
.services{
    background: linear-gradient(rgba(0, 0, 0, 0.7)), url('images/services/services-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.services h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

.services_cards{
    padding: 50px;
    background-color: #E3E3E8;
}

.btn-orangee{
    color: #E58425 !important;
    border: 1px solid #E58425 !important;
}

.btn-orangee:hover{
    color: white !important;
    border: 1px solid #E58425 !important;
    background-color: #E58425 !important;
}

.services_cards img:hover{
    background-color: rgb(61, 60, 60);
}

.card-title{
    padding: 20px 0;
}

.custom_card{
    border: none;
    border-radius: 20px;
    overflow: visible;

    position: relative;
}

.image_box img{
    width: 100%;
    height: 250px;
    object-fit: cover;

    display: block;
    transition: 0.4s;
}

.image_box{
    position: relative;
}

.card_icon{
    width: 60px;
    height: 60px;

    background: #f5820d;
    border-radius: 50%;

    position: absolute;

    left: 20px;
    bottom: -30px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 4px solid #fff;

    z-index: 99;
}

.card_icon i{
    color: #fff;
    font-size: 24px;
}

.card-body{
    padding-top: 40px;
}

.image_box::before{
    content: "";

    position: absolute;
    inset: 0;

    background: rgba(0,0,0,0);

    transition: 0.4s;

    z-index: 1;
}

.image_box:hover::before{
    background: rgba(0,0,0,0.45);
}

@media(max-width:576px){

    .services{
        padding: 90px 20px;
        margin-top: 0;
    }

    .services h1{
        font-size: 32px;
        line-height: 40px;
    }

    .custom_card{
        margin-bottom: 20px;
    }
}

/* *************************************************** Products Page ********************************************************** */
/* Image section */
.products{
    background: linear-gradient(rgba(0, 0, 0, 0.7)), url('images/services/services-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.products h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

.services_tabs{
    padding: 80px 0;
    background: #f3f3f3;
}

.services_wrapper{
    display: flex;
    gap: 40px;
}

/* LEFT SIDE */
.services_left{
    width: 32%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service_tab{
    background: #ededf7;
    border: 1px solid #d9d9ef;
    padding: 22px 25px;

    text-align: left;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #02024d;

    cursor: pointer;
    transition: 0.4s ease;

    display: flex;
    align-items: center;
    gap: 15px;
}

.service_tab i{
    font-size: 16px;
}

.service_tab.active{
    background: #02024d;
    color: #f7931e;
}

/* RIGHT SIDE */
.services_right{
    width: 68%;
    background: #ececec;

    min-height: 650px;

    display: flex;
    align-items: center;
    justify-content: center;

    position: relative;
}

.tab_content{
    display: none;
}

.tab_content.active{
    display: block;
}

.tab_content h2{
    font-size: 100px;
    font-weight: 700;
    color: #cfcfd5;
    text-align: center;
}

/* RESPONSIVE */
@media(max-width:991px){

    .services_wrapper{
        flex-direction: column;
    }

    .services_left,
    .services_right{
        width: 100%;
    }

    .services_right{
        min-height: 350px;
    }

    .tab_content h2{
        font-size: 60px;
    }
}

@media(max-width:576px){

       .products{
        padding: 90px 20px;
        margin-top: 0;
    }

    .products h1{
        font-size: 32px;
        line-height: 40px;
    }

    .service_tab{
        font-size: 16px;
        padding: 18px;
    }

    .tab_content h2{
        font-size: 42px;
    }
}

/* *************************************************** Gallery Page ******************************************************* */
/* Image section */
.gallery{
    background: linear-gradient(rgba(0, 0, 0, 0.7)), url('images/services/services-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.gallery h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

.gallery_tabs{
    padding: 80px 0;
    background: #f3f3f3;
}

/* BUTTONS */
.gallery_buttons{
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 50px;
}

.gallery_btn{
    border: none;
    background: #e8e8f5;
    color: #02024d;

    padding: 12px 25px;

    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 27px;

    cursor: pointer;
    transition: 0.3s;
}

.gallery_btn.active{
    background: #02024d;
    color: white;
}

/* GRID */
.gallery_grid{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 25px;
}

.gallery_item{
    overflow: hidden;
    border-radius: 15px;
}

.gallery_item img{
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: 0.4s ease;
}

.gallery_item:hover img{
    transform: scale(1.05);
}

/* HIDE ITEMS */
.gallery_item.hide{
    display: none;
}

/* RESPONSIVE */
@media(max-width:991px){

    .gallery_grid{
        grid-template-columns: repeat(2,1fr);
    }
}

@media(max-width:576px){

    .gallery{
        padding: 90px 20px;
        margin-top: 0;
    }

    .gallery h1{
        font-size: 32px;
        line-height: 40px;
    }

    .gallery_grid{
        grid-template-columns: 1fr;
    }

    .gallery_btn{
        width: 100%;
        font-size: 16px;
        padding: 15px;
    }
}

/* *************************************************** Contact Us Page *********************************************** */
/* Image section */
.contact{
    background: linear-gradient(rgba(0, 0, 0, 0.7)), url('images/contact/contact-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.contact h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

/* Contact Map Section */
.map_section{
    position: relative;
    margin-bottom: 50px;
}

.map_info{
    width: 85%;
    background: white;

    position: absolute;
    left: 50%;
    bottom: -70px;
    transform: translateX(-50%);

    padding: 30px;

    border-radius: 20px;

    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.1);

    margin-bottom: 120px;
}

.map_section iframe{
    filter: brightness(70%);
}

.info_box{
    text-align: center;
}

.info_box i{
    font-size: 35px;
    color: #E58425;
    margin-bottom: 15px;
}

.info_box h3{
    font-size: 24px;
    margin-bottom: 10px;
}

.info_box p{
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 0;
}

/* RESPONSIVE */
@media(max-width:991px){
.contact{
        padding: 90px 20px;
        margin-top: 0;
    }

    .contact h1{
        font-size: 32px;
        line-height: 40px;
    }
    .map_info{
        grid-template-columns: 1fr;
        position: static;
        transform: none;
        width: 100%;
        margin-top: 30px;
    }
}

/* Contact Form Section */
.contact_messageus{
    width: 100%;
    height: 700px;
    display: block;
    background-color: #E58425 !important;
}

.contact_messageus h5{
    color: black;
    font-family: 'Cardo', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
    margin-left: 20%;
    padding-top: 50px;
}

.contact_messageus h2{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 600;
    font-size: 36px;
    line-height: 36px;
    margin-left: 20%;
    padding: 10px 0;
}

.contact_messageus p{
    color: white;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 25px;
    margin-left: 20%;
    padding: 10px 0;
}

.phone_box{
    width: 55%;

    margin-left: 20%;
    margin-top: 30px;
    margin-bottom: 30px;

    border-radius: 18px;

    padding: 35px 30px;

    display: flex;
    align-items: center;
    gap: 25px;

    border: 1px solid rgba(255,255,255,0.15);

    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.phone_box i{

    border: 3px solid #fff;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 30px;
    padding: 10px;

    color: #fff;

    margin-left: 0;
}

.phone_box_data p:first-child{
    color: #000;

    font-size: 20px;
    font-weight: 600;

    margin: 0 0 12px;
    padding: 0;
}

.phone_box_data p:last-child{
    color: #fff;

    font-size: 26px;
    font-weight: 700;

    margin: 0;
    padding: 0;
}

@media(max-width: 450px){
    .phone_box_data p:last-child{
    font-size: 18px;
    font-weight: 600;
    }
    .phone_box{
    width: 65%;
    }
}

/* *************************************************** Jigs & Fixtures Page *********************************************** */
/* Image section */
.jigs{
    background: linear-gradient(rgba(0, 0, 0, 0.2)), url('images/subservices/jigs-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.jigs h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

.underline{
    width: 70px;
    height: 4px;

    background: #E58425;

    border-radius: 10px;

    margin-top: 10px;

    margin: 20px 0;
}

.test_jig{
    margin: 50px;
}

.test_jig h2{
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 36px;
}

.test_jig p, .test_jig li{
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 23px;
}

.test_jig h4{
    font-family: 'Cardo', sans-serif;
    font-weight: 600;
    font-size: 22px;
    line-height: 22px;
}

.test_jig img{
    max-width: 100%;
    width: 350px;
    border: 2px solid black;
}

.test_jig li{
    padding: 20px 0
}

.jig_last p{
    padding: 20px 0;
}

.usedfor{
    padding: 20px 0;
}

@media(max-width:991px){
    .jigs{
        padding: 90px 20px;
        margin-top: 0;
    }

    .jigs h1{
        font-size: 32px;
        line-height: 40px;
    }

    .test_jig{
        margin: 10px;
    }

    .test_jig h2{
        padding: 10px 0;
    }

    .test_jig img{
        margin: 10px 0;
    }

    .test_jig h4{
        padding: 10px 0;
    }
}

/* *************************************************** Industry4 Page *********************************************** */
/* Image section */
.industry4{
    background: linear-gradient(rgba(0, 0, 0, 0.6)), url('images/industry4/industry4-bg.jpg');
    background-position: center center;
    background-size: cover;
    padding: 200px;
    margin-top: -30px;
}

.industry4 h1{
    color: white;
    font-family: 'Cardo', sans-serif;
    font-weight: 700;
    font-size: 52px;
    line-height: 52px;
    text-align: center;
}

@media(max-width:991px){
    .industry4{
        padding: 90px 20px;
        margin-top: 0;
    }

    .industry4 h1{
        font-size: 32px;
        line-height: 40px;
    }
}
