
.main_navbar {
    display: flex;
}

.navbar_inner {
    display: flex;
    align-items: center;
    gap: 35px;
    padding: 1rem 3rem;
    width: 100%;
}

.navbar_items_inner {
    display: flex;
    gap: 35px;
}

.main_navbar img {
    width: 220px;
}

.main_navbar_top_links {
    font-weight: bold;
    color: rgb(75, 75, 236);
}

.main_navbar_top_links a {
    font-size: 13px !important;
    color: rgb(75, 75, 236) !important;
}

.main_navbar_top_links i {
    font-size: 25px;
}

.navbar_items {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: end;
    width: 100%;
    gap: 30px;
    font-family: "Playfair Display", serif;
}

.navbar_items a {
    text-decoration: none;
    color: black;
    font-size: 12px;
    font-weight: 600;
}

.navbar_right_links {
    display: flex;
    align-items: center;
    gap: 35px;
}

.navbar_right_links a {
    text-decoration: none;
    color: black;
    font-size: 12px;
}

.navbar_right_links button {
    border: 0;
    background-color: transparent;
    padding: 0;
    margin: 0;
    font-size: 25px;
}


/* Image change section */

.image_change_section {
    margin-top: 50px;
    position: relative;
}

.image_change_section h1 {
    text-align: center;
    color: green;
}

.image_change_section p {
    margin-bottom: 130px;
    font-weight: 500;
}

.big_img {
    width: 85%;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
}

.big_img img {
    width: 100%;
}

.big_img_inner {
    position: absolute;
    top: 0;
    padding: 27px;
}

.big_img_inner_heading {
    color: white;
    font-size: 32px;
}

.big_img_inner_desc {
    color: white;
}

.img_change_btn_section {
    position: absolute;
    top: 50%;
    right: 0;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    border: 1px solid #ccc;
    /* overflow: hidden; */
}

.img_change_btn_section button {
    /* border: 0; */
    color: #ffffff;
    padding: 35px 20px;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    /* border: 1px solid #0d6efd; */
}

.rm_inspection {
    border: 0;
    background-color: #1f4435;
    color: white;
    width: 300px;
    text-align: left;
    margin: 10px;
    height: 50px;
    padding-left: 10px;
    border-radius: 10px;
}

.rm_inspection:hover {
    border: 1px solid #1f4435;
}

.pm_inspection {
    border: 0;
    background-color: #1f4435;
    color: white;
    width: 300px;
    text-align: left;
    margin: 10px;
    height: 50px;
    padding-left: 10px;
    border-radius: 10px;
}

.pm_inspection:hover {
    border: 1px solid #1f4435;
}

.in_process {
    border: 0;
    background-color: #1f4435;
    color: white;
    width: 300px;
    text-align: left;
    margin: 10px;
    height: 50px;
    padding-left: 10px;
    border-radius: 10px;
}

.in_process:hover {
    border: 1px solid #1f4435;
    color: white !important;
}

.fp_inspection {
    border: 0;
    background-color: #1f4435;
    color: white;
    width: 300px;
    text-align: left;
    margin: 10px;
    height: 50px;
    padding-left: 10px;
    border-radius: 10px;
}

.fp_inspection:hover {
    color: white;
}


/* .img_change_btn_section button:hover,
.img_change_btn_section button.active {
    background-color: white;
    color: #0d6efd;
} */

.img_change_btn_section button.active {
    border: 1px solid #1f4435;
}


/* Add "›" arrow before the active button */

.img_change_btn_section button.active::before {
    content: "";
    position: absolute;
    left: -14px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 20px solid #1f4435;
    /* Change color as needed */
    transform: rotate(-25deg);
}

@media(max-width: 576px) {
    .img_change_btn_section button.active::before {
        border-top: 10px solid transparent;
    }
}

.main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 800px;
}

h1 {
    font-size: 2em;
    color: #004d40;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 700;
}

.flowchart-divider {
    width: 80%;
    border: none;
    border-top: 1px solid #ccc;
    margin: 60px 0;
}

.flowchart-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
    width: 100%;
}

.step,
.result-box,
.side-step,
.side-by-side-step {
    width: 280px;
    padding: 20px;
    margin: 10px 0;
    color: white;
    font-weight: 700;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.step:hover,
.result-box:hover,
.side-step:hover,
.side-by-side-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.step-yellow {
    background-color: #ffc107;
}

.step-blue {
    background-color: #2196f3;
}

.step-green {
    background-color: #4caf50;
}

.step-red {
    background-color: #f44336;
}

.step-purple {
    background-color: #9c27b0;
}

.arrow {
    width: 3px;
    height: 40px;
    background-color: #555;
    position: relative;
    margin: 10px 0;
}

.arrow::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #555;
}

.parallel-path-container {
    display: flex;
    justify-content: space-between;
    width: 600px;
    margin-top: -10px;
    margin-bottom: 20px;
}

.parallel-branch {
    display: flex;
    align-items: center;
}

.side-arrow-container {
    position: relative;
    width: 80px;
    height: 40px;
    margin-right: -10px;
}

.side-arrow {
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: #555;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}

.side-arrow::after {
    content: '';
    position: absolute;
    top: -15px;
    left: 0;
    width: 3px;
    height: 15px;
    background-color: #555;
}

.side-arrow::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 3px;
    height: 15px;
    background-color: #555;
}

.horizontal-connection-container {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 10px 0;
    position: relative;
}

.bidirectional-arrow {
    width: 250px;
    height: 3px;
    background-color: #555;
    position: relative;
    margin: 0 20px;
}

.bidirectional-arrow::before {
    content: '';
    position: absolute;
    left: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #555;
    transform-origin: center center;
}

.bidirectional-arrow::after {
    content: '';
    position: absolute;
    right: -8px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #555;
    transform-origin: center center;
}

.side-by-side-step {
    margin: 0;
    width: 280px;
}

.split-path-container {
    display: flex;
    justify-content: space-around;
    width: 600px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.split-branch {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.split-arrow {
    width: 3px;
    height: 40px;
    background-color: #555;
    position: relative;
}

.split-arrow.split-left {
    transform: rotate(45deg) translateY(-10px);
}

.split-arrow.split-right {
    transform: rotate(-45deg) translateY(-10px);
}

.result-box {
    width: 220px;
    margin-top: 20px;
}

.final-steps-container {
    display: flex;
    justify-content: space-around;
    width: 600px;
}


/* Image change section End */


/* Products */

.we_deal_in {
    display: flex;
    gap: 1rem;
    margin: 50px 0;
    overflow-x: auto;
    /* Enable horizontal scrolling */
    scroll-behavior: smooth;
    /* Smooth scrolling */
    -ms-overflow-style: none;
    /* IE and Edge */
    scrollbar-width: none;
    /* Firefox */
}

.we_deal_in::-webkit-scrollbar {
    display: none;
    /* Chrome, Safari, Opera */
}

.we_deal_in_card {
    border: 2px solid #ecd184;
    width: 250px;
    flex-shrink: 0;
    /* Prevent shrinking */
    position: relative;
}

.we_deal_in_card img {
    width: 100%;
    display: block;
}

.we_deal_in_card img {
    width: 100%;
    display: block;
}

.we_deal_in_card_inner {
    position: absolute;
    width: 100%;
    height: 0%;
    background: #00000096;
    bottom: 0;
    left: 0;
    transition: all 1s;
    color: white;
}

.we_deal_in_card:hover .we_deal_in_card_inner {
    height: 100%;
}

.we_deal_in_card_inner p {
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    opacity: 0;
}

.we_deal_in_card:hover .we_deal_in_card_inner p {
    opacity: 1;
}


/* Products End */


/* Gallery */


/* Gallery End */








/* home slide */

 <style>
                * {
                    margin: 0;
                    padding: 0;
                    box-sizing: border-box;
                }
                
                body {
                    font-family: 'Open Sans', sans-serif;
                    color: #333;
                    line-height: 1.6;
                    overflow-x: hidden;
                }
                
                
                /* Hero Slider */
                .hero-slider {
                    height: 100vh;
                    position: relative;
                    overflow: hidden;
                }
                
                .slide {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    opacity: 0;
                    transition: opacity 1s ease;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    background-size: cover;
                    background-position: center;
                }
                
                .slide.active {
                    opacity: 1;
                }
                
                .slide-content {
                    text-align: center;
                    color: white;
                    max-width: 800px;
                    padding: 0 20px;
                    z-index: 2;
                }
                
                .slide-content h1{
                    background-color: #00000059;
                    color: white;
                    
                }
                
                .slide-overlay {
                    position: absolute;
                    top: 0;
                    left: 0;
                    width: 100%;
                    height: 100%;
                    background: rgba(5, 43, 70, 0.6);
                }
                
                .slide h1 {
                    font-family: 'Montserrat', sans-serif;
                    font-size: 3.5rem;
                    font-weight: 700;
                    margin-bottom: 20px;
                    line-height: 1.2;
                }
                
                .slide p {
                    font-size: 1.2rem;
                    margin-bottom: 30px;
                    max-width: 600px;
                    margin-left: auto;
                    margin-right: auto;
                }
                
                .slide-btn {
                    display: inline-block;
                    background: #4ecdc4;
                    color: white;
                    padding: 12px 30px;
                    border-radius: 30px;
                    text-decoration: none;
                    font-weight: 600;
                    font-size: 1.1rem;
                    transition: all 0.3s ease;
                }
                
                .slide-btn:hover {
                    background: #3bb4ac;
                    transform: translateY(-3px);
                    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
                }
                
                .slider-nav {
                    position: absolute;
                    bottom: 40px;
                    left: 50%;
                    transform: translateX(-50%);
                    display: flex;
                    z-index: 10;
                }
                
                .slider-dot {
                    width: 12px;
                    height: 12px;
                    border-radius: 50%;
                    background: rgba(255, 255, 255, 0.5);
                    margin: 0 8px;
                    cursor: pointer;
                    transition: background 0.3s ease;
                }
                
                .slider-dot.active {
                    background: white;
                }
                
                
               
                
                
                /* Responsive Design */
                @media (max-width: 992px) {
                    
                    
                    .slide h1 {
                        font-size: 2.8rem;
                    }
                }
                
                @media (max-width: 768px) {
               
                    
                    .slide h1 {
                        font-size: 2.2rem;
                    }
                    
                    .slide p {
                        font-size: 1rem;
                    }
                }
            </style>
            /* home slide end */
            
            
            /* Home text section*/
            
            <style>
          .home_text_section{
              text-align: center;
              /*margin-top: 35px;*/
              padding-top: 35px;
              padding-bottom: 35px;
              background-color: #efe9e9;
          }
    
          .home_text_section button{
              border: 0;
              background: #1f4435;
              background-image: linear-gradient(90deg, #1f4435, #7b9c8fff);
              color: white;
              padding: 15px 50px;
              border-radius: 50px;
              margin-top: 30px;
          }
    
          .home_text_section span{
              font-size: 20px;
              font-weight: bold;
              color: #1f4435;
              line-height: 30px;
              font-family: "Roboto Slab", serif;
              
          }
        </style>
        
        /* home text section end */
        
        
        
        /* we deal in */
        
        <style>
            .we_deal_in {
              display: flex;
              flex-wrap: nowrap;       /* force one line */
              overflow-x: auto;        /* scroll left-right */
              overflow-y: hidden;      /* disable top-bottom scroll */
              scroll-behavior: smooth; /* smooth scroll */
              gap: 16px;               /* space between cards */
            }
            
            .we_deal_in_card {
              flex: 0 0 auto;          /* prevent shrinking, keep width */
              width: 250px;            /* set a fixed card width */
            }
        </style>
        
        /* We deal in end */
        
        
        
        /* home points section */
        
        <style>
          .home_points_section{
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: space-around;
            margin-top: 30px;
            margin-bottom: 130px;
          }
          
          .home_points_section a{
              text-decoration: none;
              color: black;
          }
          
          
        
          .home_points_heading h1{
            text-align: center;
            margin-top: 70px;
            position: relative;
            color: green;
          }
        
          .home_points_heading h1::before{
            position: absolute;
            content: "";
            bottom: 0;
            height: 2px;
            width: 280px;
            background: green;
            left: 40%;
          }
        
          .home_points{
            border-radius: 10px;
            padding: 20px 10px;
            width: 280px;
            display: flex;
            gap: 10px;
            align-items: center;
            box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
            transition: all .5s;
          }
        
          .home_points:hover{
            transform: scale(1.1);
          }
        
          .home_points img{
            width: 50px;
          }
          
          
          
          @media(max-width: 576px) {
              .home_points_heading h1::before{
                position: absolute;
                content: "";
                bottom: 0;
                height: 2px;
                width: 230px;
                background: green;
                left: 20%;
              }
              
            
              .img_change_btn_section button.active::before {
                    border-top: 10px solid transparent;
                }
              
              
          }
        </style>
        
        /* home points section end */