@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Manrope:wght@200..800&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Comic+Relief:wght@400;700&family=IBM+Plex+Serif:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;1,100;1,200;1,300;1,400;1,500;1,600;1,700&family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Karla:ital,wght@0,200..800;1,200..800&family=Manrope:wght@200..800&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Signika:wght@300..700&display=swap');

:root{
    --primary:#00adef;
    /* --second:#a6cc38; */
    --second:#00adef;
    --third:#ec0010e0;
    --bg-sub:linear-gradient(to right,  #8CB64B, #D0F876);
        --bg-sub-01:linear-gradient(to left,  #8CB64B, #D0F876);
     --form-bg:linear-gradient(to right, #009ffd, #00cfff);
    --form-bg-01:linear-gradient(to left, #009ffd, #00cfff);
    /* --new-bg:linear-gradient(to right, #f1f2f3, #6d7070); */
    --search-bg: #F0F4F1;
    --family-h:"Manrope", sans-serif;
    --famiily-para:"Inter", sans-serif;
    --family:"IBM Plex Serif", serif;
    --sz-a:45px;
    --sz-a2:40px;
    --sz-b:35px;
    --sz-c:20px;
    --sz-d:14px;
    --sz-e:16px;
    --sz-h:16.5px;
    --sz-f:18px;
    --sz-g:25px;




    --bg09:linear-gradient(to left, #009ffd, #00cfff);
    --primary01:white;
    --f-fmly:"Manrope", sans-serif;
    --f-fmly01:"Inter", sans-serif;
    --font01:45px;
    --font02:25px;
    --font03:20px;
    --font04:16px;
    --font05:14.5px;
    
}
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background: #F0F4F1;
    /* background: white; */
}

/* header part style start here */
#header{
   max-width: 100%;
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    z-index: 10;
    background: white;
    /* background-color: #faf9f9; */
    /* background-color: #F7F9FB; */
    /* background: linear-gradient(180.27deg, #FFFFFF 0.23%, #FEFBFF 13.48%, #EBEBF3 51.03%); */
    top: 0;
    font-family: var(--family);
    transition: background-color 0.3s ease;
    box-shadow: 0 1px 10px 5px rgba(0,0,0,0.2); 
}
/* #header.scrolled {
    background-color:white; 
    transition: background-color 0.3s ease;
    box-shadow: 0 1px 10px 5px rgba(0,0,0,0.2); 
} */
 


/* ----------------------- */
.suggestions-list {
  position: absolute;
  background: white;
  border: 1px solid #ccc;
  list-style: none;
  margin-top: 5px;
  padding: 0;
  width: 100%;
  /* max-height: 200px; */
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  left: 0;
}

.suggestions-list li {
  padding: 10px 10px 10px 30px;
  cursor: pointer;
  border-bottom: 1px solid #eee;
}

.suggestions-list li:hover {
    background: #00adef;
    color: white;
}
.suggestion-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.suggestion-img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 5px;
  flex-shrink: 0;
}

.suggestion-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.suggestion-name {
  font-size: 14px;
  color: #333;
  line-height: 1.3;
}

.suggestion-price {
  font-size: 13px;
  color: #00adef;
}

mark {
  background: #ffef96;
  color: #000;
  font-weight: bold;
  border-radius: 2px;
  padding: 0 2px;
}
/* ------------------------ */





 
.logo{
     margin-left: 30px;
}
.imageLogo{
    height: 80px;
    width: 320px;
    object-fit: contain;
}
.listItems{
    position: relative;
    gap: 40px;
    width: 70%;
    padding-right: 70px;
    display: flex;
    justify-content:end;
    height: 50px;
}
.inquiry{
    margin-top: 5px;
    width: 120px;
    height: 40px;
    background: var(--third);
    font-size: 16px;
    font-weight: 600;
    color: white;
    border: none;
    outline: none;
    border-radius: 5px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
}
.inquiry:hover{
  background:white ;
  color: #ff0010;
  border: 1px solid #ff0010;
}
.anchorList{
padding-top: 10px;
}
a{
    text-decoration: none;
}
 /* linear-gradient(to right,#337fdc,#1d2f6f) !important  */

.listItems, .anchorList, .anchorList-01{
    font-size: var(--sz-f);
    font-weight: 500;
    color: black;
    cursor: pointer;
}
 
 .listItems .anchorList:hover{
    color: var(--primary);
    cursor: pointer;
}
#icon1{
    color: var(--primary);
    font-size: 20px;
    padding-top: 5px;
}
.search{
    padding-top: 10px;
    cursor: pointer;
}
#close-Icon{
    cursor: pointer;
    font-size: 18px;
}
.searchBar{
    width: 30%;
    height: 50px;
    border-radius: 10px;
    border: 1px solid var(--primary);
    background: var(--search-bg);
    text-decoration: none;
    overflow: hidden;
    margin-right: 20px;
 
}

.searchInput{
    width: 90%;
    height: 40px;
    border:none;
    background: #F0F4F1;
    padding-left: 30px;
    outline: none;
}
::placeholder{
    color: black;
    opacity: 1;
    font-size: 15px;
    font-family:var(--famiily-para);
}

 




 
/* dropdown page start here */
.ul-0, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Dropdown Container */


.dropdown {
    position: relative;
    padding-top: 10px;
}

.dropdown ul {
    position: absolute;
    top: 100%;
    /* left: -795px; */
    left: -677px;
    display: none;
    gap: 20px;
    /* width: 1365px; */
    /* width: 1365px; */
    width: 1391px;
    background: linear-gradient(to top, skyblue, white);
    padding: 30px 150px 50px 150px;
    cursor: pointer;
    list-style: none;
}

.dropdown:hover ul {
    display: flex;
}

/* Main Dropdown Items */
.comma, .indus, .dom, .appl, .therma {
    width: 150px;
    margin-right: 10px;
    font-size: 16px;
    font-family: var(--f-fmly);
    font-weight: 600;
    color: black;
}

.comma {
    margin-left: 150px;
}

/* Inner List (Order List) */
ol {
    display: none;
    width: 140vh;
    background:linear-gradient(to right, #009ffd 0%, #00cfff 20%);
    height: auto;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.order li {
    font-size: 16px;
    font-family: var(--f-fmly01);
    font-weight: 350;
    height: 43px;
    /* padding: 5px; */
    color: white;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform-origin: center bottom;
    border-radius: 10px;
}
 
.comma .order li:nth-child(-n+1) {
    width: 160px; /* Width for the first 4 items */
    padding: 10px 0 0 20px;
}
.comma .order li:nth-child(2),
.comma .order li:nth-child(3) {
    width: 170px; 
    padding: 10px 0 0 20px;
}
.comma .order li:nth-child(4){
    width: 190px; 
    padding: 10px 0 0 20px;
}
.comma .order li:nth-child(5){
    width: 210px; 
    padding: 10px 0 0 20px;
}
.comma .order li:nth-child(6),
.comma .order li:nth-child(7) {
    width: 235px; 
    padding: 10px 0 0 20px;
}
.comma .order li:nth-child(8),
.comma .order li:nth-child(9),
.comma .order li:nth-child(10){
    width: 150px;
    padding: 10px 0 0 20px;
}

 

.comma .order li:nth-child(11), 
.comma .order li:nth-child(16){
    /* background-color: red; */
    width: 180px;
    padding: 10px 0 0 20px;    
}
.comma .order li:nth-child(12),
.comma .order li:nth-child(13),
.comma .order li:nth-child(15){
    width: 140px;
    padding: 10px 0 0 20px;    
}

.comma .order li:nth-child(14){
    width: 160px;
    padding: 10px 0 0 20px;      
}



.indus .order li:nth-child(-n+1){
    /* width: 130px; */
    width: 260px;
    padding: 10px 0 0 20px;
}
.indus .order li:nth-child(2),
.indus .order li:nth-child(3),
.indus .order li:nth-child(4),
.indus .order li:nth-child(5),
.indus .order li:nth-child(6),
.indus .order li:nth-child(7),
.indus .order li:nth-child(8),
.indus .order li:nth-child(9),
.indus .order li:nth-child(10),
.indus .order li:nth-child(11),
.indus .order li:nth-child(12){
    /* width: 150px; */
    /* width: 265px; */
    padding: 10px 0 0 20px;
}
.indus .order li:nth-child(2),
.indus .order li:nth-child(7){
  width: 245px;
}
.indus .order li:nth-child(3),
.indus .order li:nth-child(12){
  width: 230px;    
}
.indus .order li:nth-child(4),
.indus .order li:nth-child(10){
    width: 185px;
}
.indus .order li:nth-child(5){
    width: 160px;
}
.indus .order li:nth-child(6),
.indus .order li:nth-child(11){
    width: 235px;
}
.indus .order li:nth-child(8){
   width: 240px;
} 
.indus .order li:nth-child(9){
   width: 155px;
}

.dom .order li:nth-child(-n+1) {
    width: 150px;
    padding: 10px 0 0 20px;
}
.dom .order li:nth-child(2),
.dom .order li:nth-child(3),
.dom .order li:nth-child(4),
.dom .order li:nth-child(5),
.dom .order li:nth-child(6){
    padding: 10px 0 0 20px;
}
.dom .order li:nth-child(2){
    width: 210px;
}
.dom .order li:nth-child(3){
    width: 170px;
 }
.dom .order li:nth-child(4){
    width: 240px;
 }
.dom .order li:nth-child(5){
    width: 220px;
} 

.dom .order li:nth-child(6) {
    width: 300px;
 }

.therma .order li:nth-child(-n+1){
    width: 120px;
    padding: 10px 0 0 20px;
}
.therma .order li:nth-child(2){
    width: 135px;
    padding: 10px 0 0 20px;
}
.therma .order li:nth-child(3),
.therma .order li:nth-child(4){
    width: 215px;
    padding: 10px 0 0 20px;
}
.therma .order li:nth-child(5){
    width: 220px;
    padding: 10px 0 0 20px;
}
.therma .order li:nth-child(6),
.therma .order li:nth-child(7){
    width: 240px;
    padding: 10px 0 0 20px;
}

.appl .order li:nth-child(-n+1){
    width: 105px;
    padding: 10px 0 0 20px;
}
.appl .order li:nth-child(2),
.appl .order li:nth-child(3){
    width: 120px;
    padding: 10px 0 0 20px;
}
.appl .order li:nth-child(4){
    width: 130px;
    padding: 10px 0 0 20px;
}
.appl .order li:nth-child(5),
.appl .order li:nth-child(6){
    width: 140px;
    padding: 10px 0 0 20px;
}
 
.appl .order li:nth-child(7){
    width: 160px;
    padding: 10px 0 0 20px;
}

.order li:hover {
    transform: scale(1.02) translateY(-10px); /* move up & zoom in */
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
 }
 .therma ol li{
    width: 150px;
} 
.order a{
    color:white;
}
 
.comma:hover ol{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px; 
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    margin-top: 15px;
    border-top: none;
    border-radius: 10px;        
}
.indus:hover ol{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px; 
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    margin-top: 15px;
    border-top: none;
    border-radius: 10px; 
} 






/* Show <ol> on hover */
/* .comma:hover ol,
.indus:hover ol, */
.dom:hover ol,
.appl:hover ol,
.therma:hover ol {
    display: block;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 20px;
    margin-top: 15px;
    border-top: none;
    border-radius: 10px;
    
}
 
.comma:hover ol{
 margin-left: 80px;
}
.indus:hover ol{
    margin-left:-100px;
}
.dom:hover ol{
    margin-left: -280px;
}
.appl:hover ol{
    margin-left: -640px;
}
.therma:hover ol{
    margin-left: -460px;
}

/* Image styling (hidden by default) */
.port_img,
.port_img1,
.port_img2,
.port_img3,
.port_img4 {
    display: none;
    position: absolute;
    top: 120px;
    left: 50px;
    width: 300px;
    height: 300px;
    border-radius: 10px;
    z-index: 10;
}
 
/* Show images on hover */
.comma:hover .port_img {
    display: block;
}

.indus:hover .port_img1 {
    display: block;
}

.dom:hover .port_img2 {
    display: block;
}
 
.appl:hover .port_img3 {
    display: block;
}
.therma:hover .port_img4{
    display: block;
}
/* dropdown page end here */




/* Floating Button style start here - Right Side */
.ob-tag{
  color: white;
  font-family: 'Times New Roman', Times, serif;
  font-size: 14px;
  text-decoration: none;
}

.fl-fv.float-fr {
  position: fixed;
  top: 160px;               
  right: -130px;            
  width: 155px;
  padding: 8px 7px;
   background-color: #25D366;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  border-radius: 4px 0 0 4px;
   transition: right 0.3s ease;
  z-index: 999;
 }
 
 
 
/* On hover, slide left into view */
.fl-fv.float-fr:hover {
  right: 0;
  }
 
 .fl-fv.float-fr:hover .fa-whatsapp {
padding-left: 10px;  
}
/* Icon styling */
.fl-ft.float-ft {
  position: fixed;
  /* top: 205px; */
  top: 197px;
  right: -130px;  
  /* width: 175px;
  padding: 10px 15px; */
  width: 155px;
  padding: 8px 7px;
   background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 30px;
  border-radius: 4px 0 0 4px;
  transition: right 0.2s ease;
  z-index: 999;
}

/* On hover, slide left into view */
.fl-ft.float-ft:hover {
  right: 0;
}
.fl-fx.float-fx {
  position: fixed;
  /* top: 250px;  */
  top: 234px;              
  right: -130px;           /* Hide part of the button off-screen */
  /* width: 175px;
  padding: 10px 15px; */
  width: 155px;
  padding: 8px 7px;
  background-color: #1877F2;
   color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 4px 0 0 4px;
  transition: right 0.2s ease;
  z-index: 999;
}
/* On hover, slide left into view */
.fl-fx.float-fx:hover {
  right: 0;
}
.fl-fl.float-fb {
  position: fixed;
  /* top: 295px; */
  top: 271px;
  right: -130px;           /* Hide part of the button off-screen */
  /* width: 175px;
  padding: 10px 15px; */
  width: 155px;
  padding: 8px 7px;
  background-color: #0A66C2;
  color: white;
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 4px 0 0 4px;
  transition: right 0.2s ease;
  z-index: 999;
}
.fl-fl.float-fb:hover{
  right: 0;
}
 
.fl-fa.float-fa {
  position: fixed;
  /* top: 340px; */
  top: 308px;
  right: -130px;           /* Hide part of the button off-screen */
  /* width: 175px;
  padding: 10px 15px; */
  width: 155px;
  padding: 8px 7px; 
  background: linear-gradient(to right, #ed8330 0%, #ea7c28 100%);
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 4px 0 0 4px;
  transition: right 0.2s ease;
  z-index: 999;
}
 
.fl-fa.float-fa:hover{
  right: 0;
}
.fl-fk.float-fk {
  position: fixed;
  /* top: 385px; */
  top: 346px;
  right: -130px; 
  /* width: 175px;
  padding: 10px 15px; */
  width: 155px;
  padding: 8px 7px;  
  background: linear-gradient(90deg, #FEE715 0%, #FFC107 40%, #F7A200 100%);
  font-family: Arial, sans-serif;
  display: flex; 
  justify-content: flex-start;
  align-items: center;
  gap: 20px;
  border-radius: 4px 0 0 4px;
  transition: right 0.2s ease;
  z-index: 999;
 }
.fl-fk.float-fk:hover{
  right: 0;
}

.fa-brands{
  font-size: 18px;
  color: white;
}
.fa-solid{
  margin-left: 2px;
  font-size: 18px;
  color: white;
}
.floaticon{
  margin-left: 3px;
  color: white;
}
.flik{
   width: 20px;
  height: 20px;
   object-fit: contain;
 }
/* Floating Button style start here - Right Side */




/* scroll to top btn style start here */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 40px;
  right: 30px;
  z-index: 100;
  width: 50px;              /* Equal width */
  height: 50px;             /* Equal height */
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #00adef;
  color: white;
  cursor: pointer;
  border-radius: 50%;       /* Makes it perfectly round */
  transition: 0.3s ease;
  text-align: center;
  line-height: 40px;        /* Vertically center the icon/text */
  padding: 0;               /* Remove padding */
}


#scrollTopBtn:hover {
  background-color:#47bae7;
}
/* scroll to top btn style end here */



/* showUp form style start here */
/* inquiry form show */

.form-controll{
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 110;
    padding: 2rem;
    border-radius: 0;
     display: none;
  } 
    

.blur-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    backdrop-filter: blur(6px);
    z-index: 100;
    display: none;
  } 
  

#form-popup {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 30px; 
    border-radius: 5px;
    z-index: 1000;
  } 

.main{
    font-size: 30px;
    color: white;
    cursor: pointer;
}
.container{
display: flex;
justify-content: start;
width: 1000px;
margin-left: 100px;
background: var(--form-bg);
border-radius: 10px;
}
.form-container{
    margin-left: 50px;
    width: 500px;
    margin-bottom: 30px;
}
.headingOf{
    text-align: start;
    margin-bottom: 15px;
    margin-top: 20px;
}
.sayHi{
    font-size: var(--sz-g);
    font-family: var(--family-h);
    font-weight: bold;
    color: white;
}
.sayHello{
    font-size: var(--sz-f);
    font-family: var(--famiily-para);
    font-weight: 400;
    padding-top: 10px;
    color: white;
}
.first-input{
    display: flex;
    justify-content: start;
    gap: 15px;
}
.one{
width: 220px;
height: 40px;
background: white;
border-radius: 10px;
}
.bxs-user{
    font-size: var(--sz-f);
    margin-top: 10px;
    margin-left: 10px;
}
.input-01{
padding-left: 10px;
width: 180px;
height: 35px;
border: none;
outline: none;
background: transparent;
}
.input-01::placeholder{
    color: black;
    font-weight: 500;
    font-family: var(--famiily-para);
    font-size: 14px;
}
.bxs-envelope{
    font-size: var(--sz-f);
    margin-top: 10px;
    margin-left: 10px;
}
.second-input{
    display: flex;
    justify-content: start;
    gap: 15px;
}
.input-03{
padding-left: 10px;
width: 180px;
height: 35px;
border: none;
outline: none;
background: transparent;
}
.input-03::placeholder{
    color: black;
    font-weight: 500;
    font-family: var(--famiily-para);
    font-size: var(--sz-d);
}
.subject-p{
    background: white;
    width: 455px;
    height: 40px;
    border-radius: 10px;
}
.input-04{
    margin-left: 10px;
    width: 180px;
    height: 35px;
    border: none;
    outline: none;
    background: transparent;
}
.input-04::placeholder{
    color: black;
    font-weight: 500;
    font-family:  var(--famiily-para);
    font-size: var(--sz-d);
}
.bxs-phone-call{
    font-size:var(--sz-f);
    padding-top: 8px;
    margin-left: 6px;
}
.input-02{
    padding-left: 8px;
    width: 420px;
    height: 35px;
    border: none;
    outline: none;
    background: transparent;
}
.input-02::placeholder{
    font-size: var(--sz-d);
    font-weight: 500;
    font-family:  var(--famiily-para);
}
.bxs-captions{
    font-size: var(--sz-f);
    margin-top: 10px;
    margin-left: 10px;
}
.text-area{
    width: 455px;
    height: 150px;
    background: white;
    border-radius: 10px;
}
.text-a01::placeholder{
    color: black;
    font-family:  var(--famiily-para);
    font-weight: 500;
    font-size: var(--sz-d);
}
 .text-a01{
    padding: 20px 20px 10px 30px;
    background: transparent;
    width: 450px;
    height: 150px;
    outline: none;
    border: none;
}
.submit{
    padding-top: 20px;
}
.sub-mit{
    width: 120px;
    height: 40px;
    font-size: var(--sz-d);
    color: white; 
    border: none;
    border-radius: 10px;
    background:var(--form-bg-01);
    box-shadow: black 0px 1px 4px;
    cursor: pointer;
}
.sub-mit:hover{
    background: var(--form-bg);
}
.other-container{
    height: 400px;
    width: 400px;
}
.align{
    margin-top: 20px;
    margin-left: 10px;
}
.cont-info{
    margin-top: 100px;
    font-size: var(--sz-g);
    font-family: var(--family-h);
    font-weight: bold;
    color: white;
}
.add{
    font-size: var(--sz-d);
    font-family: var(--famiily-para);
    font-weight: 400;
    color:white ;
    margin-top: 10px;
    text-align: justify;
}
.Numb{
    margin-top: 8px;
    display: flex;

}
#phone-call{
    color: white;
    font-size: var(--sz-c);
}
.nom{
    color: white;
    margin-top: 10px;
    font-size: var(--sz-e);
}
.openTo{
    margin-top: 10px;
    font-size: var(--sz-d);
    color: white;
    font-family: var(--famiily-para);
}
.follow{
    font-size: var(--sz-c);
    font-family: var(--family-h);
    font-weight: bold;
    color: white;
}
.followIcon{
    width: 200px;
    display: flex;
    justify-content: start;
    gap: 8px;
}
 
.spn-of{
  font-size: 20px;
  color: white;
  cursor: pointer;
}

/* showUp form style end here */
/* inquiry form show */






/* header next part style start here */
.headnxt{
    width: 100%;
    height: 60vh;
    /* background: var(--bg09); */
    /* background-image: url('../../Images/Industries/Greenbg.webp'); */
    background-image: url('../../Images/bg-career.webp');
    /* background-image: url('../../Images/Industries/Artboard\ 2.2B.webp'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: grid;
    /* place-content: center; */
    align-items: center;
    justify-content: center;
    position:relative;
}
.headnxt1{
    width: 100%;
    height: 30vh;
    display: grid;
    place-content: center;   
    transition: transform 0.8s;
    animation: 1.3s fadeInUp;
    font-family: "Manrope", sans-serif;
    font-size: 50px;
    font-weight: 900;
    /* color: white; */
    color: #09394d;
}
     @keyframes fadeInUp {
    0% {
    transform: translateY(100%);
    opacity: 0;
    }
    100% {
    transform: translateY(0%);
    opacity: 1;
    }
    }

/* header next part style start here */
 

 
/* tilted containers page start here   */
.db-wrapper{
    width: 100%;
    display: grid;
    place-items:center;
 }
.db-txt-wrap{
    width: 80%;
    height: auto;
    padding: 30px;
    margin-top: 30px;
    /* border: 1px solid black; */
}
.work-wrap{
    font-weight: 900;
    font-family: var(--f-fmly);
    font-size: 60px;
    background:linear-gradient( to bottom, #00adef, #a6cc38 80%);
     -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;      
 
}
.work-para{
    margin-top: 20px;
    line-height: 1.5;
    /* border: 1px solid black; */
    font-family: var(--f-fmly01);
    font-size: 18px;
}
.containers{
    width: 100%;
    height: 55vh;
    margin-top: 60px;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding-bottom: 20px;
  }
.db1{
    width: 220px;
    height: 220px;
    background-color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;  
}
.db1 img{
    width: 100%;
    height: 220px;
    border-radius: 15px;

}
.up {
  transform: translateY(-15px);
 }
.down {
  transform: translateY(15px);
}
.up:hover{
    transform: translateY(-30px) scale(1.09); 
    box-shadow: #50b8e0 0px 4px 8px;  
    
} 
.down:hover{
    transform: translateY(50px) scale(1.09);  
    box-shadow: #50b8e0 0px 4px 8px;  
}
/* tilted containers page start here   */



/* our values page style start here */
.wrapper-value{
    margin:0px 0 40px 0;
    width: 100%;
    height: 80vh; 
 
}
.value{
    /* display: flex;
    justify-content: start; */
    display: grid;
    place-items: center;
     margin-top: 20px;
    cursor: pointer;
 }
.loness1{
    margin-top: 10px;
    width: 100px;
    height: 2px;
    background: linear-gradient(to bottom, rgb(37, 36, 36), #ff0010);
    transform: scaleX(0.2);
    transform-origin: center;
    transition: transform 0.4s ease;
}
.value:hover .loness1{
    width: 180px;
    transform: scaleX(1);    
}
.vl-Of{
    font-family: var(--f-fmly);
    /* font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    font-size: 35px;
    font-weight: 600;
    background: linear-gradient(to bottom, rgb(37, 36, 36), #ff0010);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.vl-cont{
    width: 100%;
    height: 80vh;
    display: grid;
    place-items: center;
    align-items: center;
}
.vl-cont1{
    width: 90%;
    height: 65vh;
    border-radius: 15px;  
    display: grid;
    grid-column-gap:5px;
    grid-row-gap: 0.5rem;
    border-radius: .75rem;
    grid-template-rows: auto;
    grid-template-columns: 1fr 1fr;
    grid-auto-columns: 1fr;
    padding: 2rem;
 
}
.cont-wrap{
    width: 580px;
    height: 180px;
    background-color: white;
    border-radius: 15px;
    transition: transform 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
 
    /* transition: transform 0.3s ease; */
} 
.upLft:hover {
    transform: translate(-20px, -30px);
} 
.upRgt:hover{
    transform: translate(20px, 30px);
}
.upRgtOn:hover{
    transform: translate(-20px, 30px); 
}
.upLftOn:hover{
    transform: translate(20px, -30px);
}
.cont-wrap:hover{
    /* background: #6ec3d4; */
    background:var(--bg-sub);
 }
.cont-wrap:hover .imp{
    color: white;
}
.cont-wrap:hover .p-para{
    color: white;
}
.loness{
    margin-left: 20px;
    width: 60px;
    height: 2px;
    background-color: black;
    transform: scaleX(0.2);
    transform-origin: left;
    transition: transform 0.4s ease;
}
.cont-wrap:hover .loness{
    background-color: white;
    transform: scaleX(1); 
}
.imp{
    margin: 40px 0 0 20px;
    font-family: var(--family-h);
    font-size: 22px;
}
.p-para{
    /* border: 1px solid black; */
    padding-top: 10px;
    margin-left: 20px;
     font-family: var(--famiily-para);
    font-size: 18px;
    color: gray;
    line-height: 1.6;
}

/* current opening style  */
 
/* current opening  style  end  */


/* leads-wrap style start here */

.leads-wrap{
    width: 100%;
    height: auto;
    /* border: 1px solid black; */
    display: grid;
    place-items: center;
    padding-top: 40px;
    /* background-color: white; */
}
.main-con-lead{
    width: 100%;
    height: 55vh;
    display: grid;
    place-items: center;
    /* border: 1px solid black; */

}
.inner-conts{
    /* border: 1px solid red; */
    margin-top: 20px;
}
.text-head{
    display: grid;
    place-items: center;
    align-items: center;
}
.focus{
    font-family: var(--family-h);
    font-size: 35px;
    padding-bottom: 10px;
    font-weight: 600;   
        background: linear-gradient(to bottom, rgb(37, 36, 36), #ff0010);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent; 
}
.focus-tag{
    font-family: var(--famiily-para);
    font-size: 18px;
    font-weight: 400;
      color: #555;
}

.inner-conts1{
    /* border: 1px solid black; */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 60px;
}
.boxes{
    /* width: 200px;
    height: 160px; */
    width: 250px;
    height: 250px;    
    /* border: 1px solid rgb(184, 182, 182); */
    border-radius: 10px;
    transition: all 0.3s ease; /* Smooth animation */
    /* padding: 10px; */
    display: grid;
    place-items: center;
    align-items: center;
    background: white;
}
 
.boxes h2{
    padding-top: 20px;
    font-size: 20px;
    font-family: var(--f-fmly);
    background: linear-gradient(to bottom, #00adef , #a6cc38); 
    /* background: linear-gradient(to bottom, #ff0010 , black);  */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;  
}
 
.jobsy{
    /* margin-top: 18px; */
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
    /* width: 90%; */
    /* width: 100%;
    height: 180px; */
    /* margin-top: -30px; */
     width: 90px;
    height: 90px;
    /* object-fit: contain; */
    border: 1px solid black;
}
.box-lp{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 145px;
    height: 145px;
    border-radius: 50%;
 }
 .boxes:hover .box-lp{
    /* border: 1px solid rgb(184, 182, 182);
    background-color: rgb(184, 182, 182); */
     background-color: white;

 }
.boxes:hover{
    /* border: 1px solid white;
    background-color: white;     */
     background-color:transparent;
    transform: translateY(-10px); 
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
/* .boxes:hover{
    background:var(--form-bg-01);    
    transform: translateY(-10px); 
    border: none;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
} 
.boxes:hover p{
    color: white;
} */
 
 /* -------------------------------------------- */
.carts3{
    width: 250px;
    height: 250px;
    border-radius: 10px;
    /* box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; */
   }
 
 
.carts3 .elem4{
  width: 120px; 
  /* margin: 45px 0 0 95px; */
  margin:30px 0 0 70px;
  object-fit: contain;
      /* border: 1px solid black; */

}
 
.sec-con{
    margin-top: 30px;
    padding-left: 20px;
    padding-right: 20px;
    text-align: center;
    color: white;
 }
 

.show {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background:white;
  color: black;
  padding: 20px;
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  overflow-y: auto;
  border-radius: 10px;
  z-index: 2;
  /* text-align: justify; */
  text-align: center;
}
 
.show .elem2{
        width: 80px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: 40px;
    left: 90px;
    /* border: 1px solid black; */
}
.show .elem1{
  position: absolute;
  /* top: 15px; */
  top: 30px;
  left: 50px;
}
 
.carts3:hover .show {
  opacity: 1;
  transform: translateY(0);
}

/* Important: Make .carts1 a positioning context */
 
.carts3 {
  position: relative;
  overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
    background: white;
    /* border-top: 5px solid #00adef; */
    border-top: 5px solid #a6cc38;
    /* background:linear-gradient(to top, #00ADEF,  #47CBFF); */
 
 }

 
.carts3:hover{
    /* border-top: 5px solid #00adef; */
    border-top: none;
  transform: translateY(-20px); /* lifts up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* optional: add a shadow */    
}


 

.show{
  /* background: var(--form-bg-01); */
  background: var(--bg-sub);
 } 
.show .show-p1{
    font-size: 17px;
    font-family: var(--f-fmly01);
    line-height: 1.4;
    margin-top: 80px;
    color: white;
}
.show .show-p1{
 margin-top: 120px;
}
.show .show-p{
    font-size: 14px;
    font-family: var(--f-fmly01);
    line-height: 1.4;
    /* margin-top: 80px; */
    margin-top: 100px;
    color:white;
    border-radius: 20px;
 }
 
.carts3 span{
    font-size: 20px;
    /* font-family: myFont; */
    font-family: var(--f-fmly);
    font-weight: 700;
    background: linear-gradient(to bottom, #0d6385 , #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer; 
  
}
 /* -------------------------------------------- */

.main1{
    font-family: var(--family-h);
    font-size: 17px;
    font-weight: 600;
    text-align: center;
}
.main2{
    padding-top: 8px;
    text-align: center;
}


/* women empowerment section style start */
.women-grid {
  margin-top: 80px;
  text-align: center;
  padding: 60px 20px;
  background: #eef3f1;
}

.women-grid h2 {
    font-family: var(--f-fmly);
  font-size: 2rem;
  margin-bottom: 10px;
  /* color: #222; */
      background: linear-gradient(to bottom, rgb(37, 36, 36), #ff0010);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.women-grid p {
    font-family: var(--f-fmly01);
  margin-bottom: 40px;
  color: #555;
}

.women-profiles {
   display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.profile {
   width: 250px;
    /* transition: transform 0.3s ease, background 0.3s ease; */
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    background: white;
    animation: wave 6s ease-in-out infinite;
    transition: transform 0.3s ease;
    /* padding: 0 5px 0 10px; */
 }
/* .profile:hover{
    transform: translateY(-30px);
} */

.profile img {
    /* margin-top: 10px; */
   height: 200px;
  width: 250px;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  /* border-radius: 50%; */
  margin-bottom: 15px;
}

.profile h3 {
  font-family: var(--f-fmly);
  font-size: 1rem;
  margin: 5px 0;
}

.profile p {
    margin-top: 10px;
    font-family: var(--f-fmly01);
    /* font-size: 0.9rem; */
    font-size: 16px;
    font-weight: 500;
    color: black;
}

.empower-quote {
  margin-top: 40px;
  font-style: italic;
   color: #333;
}
 

 
@keyframes wave {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
.profile:hover {
  animation-play-state: paused;   
  transform: translateY(-30px);   
}
 
/* .profile:nth-child(1) {
  animation-delay: 0s;
}
.profile:nth-child(2) {
  animation-delay: 0.2s;
}
.profile:nth-child(3) {
  animation-delay: 0.4s;
}
.profile:nth-child(4) {
  animation-delay: 0.6s;
} */
.profile:nth-child(1) {
  animation-delay: 0s;
}
.profile:nth-child(2) {
  animation-delay: 1.5s;
}
.profile:nth-child(3) {
  animation-delay: 3s;
}
.profile:nth-child(4) {
  animation-delay: 4.5s;
}
     
/* women empowerment section end */
 
/* leads-wrap style end here */



/* the discover part style start here */
.discover{
    width: 100%;
    height: 70vh;
    background-color:white;
    display: grid;
    place-items: center;
    align-items: center;
}
.dis-cont{
    width: 80%;
    height: 40vh;
    border-radius: 10px;
    background-color: #F0F4F1;
    background-image: url('../../Images/soft-bg.svg');
    background-position: right(100px);
    background-size: cover;
    background-size: 730px 450px;  
    position: relative;
    z-index: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}
.dis-cont:hover .air-disc{
    color: white;
}
.dis-cont:hover .aire-disc1{
    color: white;
}
.dis-cont:hover .enq-now{
    /* background: #5e9fb9; */
    background: none;
    border: 1px solid white;
    color: white;   
}
.dis-cont:hover span{
    background-color:transparent;
}
.dis-cont:hover{
    background-color: #669da8;
    background-image: url('../../Images/shape2.webp');
    transform: translateY(-10px); 
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;    
}
 
.text-cover{
    width: 80%;
    height: 30vh;
    padding: 20px;
}
.air-disc{
    font-size: 40px;
    font-family: var(--family-h);
 }
.air-disc span{
    background-color: #a6cc38;
}
.aire-disc1{
    font-size: 22px;
    font-family: var(--famiily-para);    
}
.text-cover1{
    width: 18%;
    height: 30vh;
    display: flex;
    align-items: center;
}
.enq-now{
    width: 170px;
    height: 50px;
    /* color: white; */
    font-weight: 500;
    font-size: 17px;
    border-radius: 6px;
    border: none;
    outline: none;
    font-family: var(--famiily-para);    
    /* background-color: #8CB64B; */
    background-color: #a6cc38;
    cursor: pointer;
}
.enq-now:hover{
    /* background-color: #97c553; */
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; 
}
hr{
    border: 1px solid red;
}
/* the discover part style end here */




/* benefit style start here */
 .discover1{
     width: 100%;
    height: 90vh;
    background-color:white;
    display: grid;
    place-items: center;
    align-items: center;
 
     /* border: 1px solid black; */
}
 
.dis-cont1{
    background-image: url('../../Images/soft-bg.svg');
    background-position: right();
    background-size: contain;
    background-size: 800px 670px;  
    position: relative;
    z-index: 0;
    background-color: #F0F4F1; 
     width: 80%;
    height: 60vh;
    border-radius: 10px;
    gap: 10px;
    padding: 25px;
    transition: all 0.3s ease;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;    
}
 
.dis-cont1:hover{
    /* background-color: #669da8; */
    background-color: #73b9c7;
    background-image: url('../../Images/shape2.webp'); 
    transform: translateY(-10px); 
     box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;    
}
.dis-cont1:hover .bene{
    color: white;
    background: none;
}
.dis-cont1:hover p{
    color: white;
}
.dis-cont1:hover .fa-check{
    color: white;
}
.contain-para{
    margin-top: 15px;
    display: grid;
    place-items: start;
}
 
.contain-para h2{
    font-family: var(--family-h);
    font-size: 40px;
    background: #a6cc38;
}
.bene-p{
    font-family: var(--famiily-para);
    font-size: 18px;
}
.bene-icn{
    padding-right: 10px;
}
.fa-check{
    color: black;
}
/* benefit style start here */

/* break style */
.breakIt{
    width: 100%;
    height: 50px;
    background-color: white;
}
.breakIt1{
    width: 100%;
    height: 50px;
background: #F0F4F1;
}
/* break style */








/* current opening style start */
        .wrapOfOpening {
            width: 100%;
            height: auto;
            padding: 50px;
            background-color: white;
        }
        
        .wrap-main {
            width: 100%;
            height: auto;
            display: flex;
            justify-content: center;
        }
        
        .hold-content {
            width: 100%;
            display: grid;
            place-items: center;
        }
        
        .hold-cont {
            width: 80%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            transition: background-color 0.4s ease;
            cursor: pointer;
        }
        
        .web, .material-symbols-outlined {
            display: inline-block;
            transition: all 0.5s ease;
        }
        
        .web {
            font-family: var(--f-fmly01);
            letter-spacing: normal;
            transform: translateY(0);
        }
        
        .material-symbols-outlined {
            transform: rotate(0deg) scale(1);
        }
        
        .animates {
            border-bottom: 1px solid black;
            cursor: pointer;
        }
        
        .animates:hover {
            background-color: skyblue;
        }
        
        .animates:hover .web {
            letter-spacing: 3px;
            transform: translateY(-5px);
            color: #003f5c;
        }
        
        .animates:hover .material-symbols-outlined {
            transform: rotate(20deg) scale(0.85);
            color: #ff6f61;
        }
        
        .hold-cont h2 {
            font-family: var(--f-fmly);
            font-size: 30px;
        }
        
        /* Hidden content styles */
        .hold-cont1 {
            width: 80%;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background-color 0.4s ease;
        }
        
        .hold-cont1 p {
            margin-top: 10px;
            font-family: var(--f-fmly);
            font-size: 16px;
            line-height: 1.5;
            align-items: center;
        }
        
        .hidden-content {
            border-radius: 10px;
            max-height: 0;
            overflow: hidden;
            opacity: 0;
            transform: translateY(-10px);
            transition: all 0.5s ease;
            padding: 0 20px;
            text-align: justify;
            font-family: var(--f-fmly01);
            box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        }
        
        .hidden-content:not(.hidden-content) {
            max-height: 500px;
            opacity: 1;
            transform: translateY(0);
            padding: 20px;
            margin-bottom: 10px;
        }
        
        .arrow {
            transition: transform 0.3s ease;
        }
        
        .hold-cont.active .arrow {
            transform: rotate(90deg);
        }
        
        .rightOf {
            width: 40px;
            height: 40px;
            border: 1px solid grey;
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: grey;
        }
        
        .newMon {
            color: white;
            transform: rotate(90deg);
            font-size: 10px;
        }
        .dash{
            font-size: 25px;
            transition: transform 0.3s ease;    
        }
        .rotate {
            transform: rotate(180deg);
        }
/* --------------------- */
/* Show #show-para in full screen over both columns */
 












/* Optional smooth hide for toggleTrigger */
 

/* footer part style start */
.section-0{
    background-image: url('../../Images/footer/FOOTER2.png'); 
    background-size: cover;
    background-position: center;
    height: 580px;
   }

.footer-0{
    width: 100%;
    display: flex;
    padding-left: 20px;
    padding-right: 20px;
}
.foot-log{
    margin-left: 5px;
    width: 380px;
    height: 85px;
    background-color: transparent;
    margin-top: -1px;
  }
.foot-img{
    width: 380px;
    height: 85px;
    object-fit: contain;
}
.first{
    width: 330px;
    height: auto;
    border-radius: 10px;
    padding-bottom: 10px;
    background-color: white;
    margin-top: 25px;
    margin-left: 30px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
 }
.para-b{
    padding-top: 12px;
    padding-left: 20px;
    padding-right: 20px;
    line-height: 1.6;
    font-size: 15px;
    font-family: var(--famiily-para);
    font-weight: 500;
    text-align: start;
}

.ware .fa-solid{
    font-size: 15px;
    color: black;
}

.contra{
    display: flex;
    justify-content: start;
    padding-top: 15px;
    padding-left: 20px;
    font-size: var(--sz-c);
    font-family: var(--family-h);
    font-weight: 500;
    color: black;
}
.contact-us{
    padding-left: 20px;
}
.cont-hr{
    width: 70px;
    margin-left: 55px;
    border: 1px solid black;
}
.cont-hr01{
    width: 28px;
    margin-left: 65px;
    border: 1px solid black;
}
.cont-hr02{
    width: 28px;
    margin-left: 60px;
    border: 1px solid black;
}
.foot-div{
    width: 860px;
    height: 435px;
    border-radius: 10px;
    background-color: #ffffff;
    margin-left: 30px;
    margin-top: 110px;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  }
  .foot-div-01{
    display: flex;
    justify-content: space-evenly;
  
  }
.second{
    width: 180px;
    height: 250px;
 
}
.third{
    margin-left: 30px;
    width: 200px;
    height: 250px;
}
.fourth{
    margin-left: 40px;
    width: 200px;
    height: 250px;
}
.use{
    font-size: var(--sz-c);
    font-family: var(--family-h);
    font-weight: 500;
    margin-top: 30px;
}
.first-list{
    list-style: none;
    font-family: var(--famiily-para);
    font-weight: 500;
    margin-top: 10px;
    line-height: 2;
    font-size: 18px;
 }
.links{
    width: 70px;
    border: 1px solid black;
}
.list-a{
    text-decoration: none;
    color: black;
}
.list-a:hover{
    color: var(--third);
}
.vl {
    border-right: 1px solid black;
    height: 120px;
  }
.cate{
    font-size: var(--sz-c);
    font-family: var(--family-h);
    font-weight: 500;
    margin-top: 30px;
}
 .second-list{
    list-style: none;
    font-family: var(--famiily-para);
    font-weight: 500;
    margin-top: 10px;
    line-height: 2;
    font-size: 18px;
  }
 .lines{
    width: 70px;
    border: 1px solid black;
 }

 .forms{
    font-size: var(--sz-c);
    font-family: var(--family-h);
    font-weight: 500;
    margin-top: 30px;
 }
.num01{
    font-weight: 500;
    margin-top: 10px;
}
#oxi{
    margin-left: 0px;
    margin-right: 4px;
}
.follow-us{
    margin-top: 20px;
}
.follow-on0{
    font-size: var(--font02);
    font-family:var(--family-h);
    font-weight: 600;
}
.boxi{
    margin-top: 10px;
    font-size: 25px;
}
.number0{
    font-size: 20px;
}
.mailer{
    font-size: 18px;
}
.certificate{
    width: auto;
    margin-left: 30px;
    margin-top: 15px;
    /* border: 1px solid black; */
  }
.c-head{
    font-size: 25px;
    font-family: var(--family-h);
    font-weight: 500;
    margin-bottom: 20px;
    margin-left:20px;
    display: grid;
    place-items: start;
}
.cert-01{
    display: flex;
    justify-content:start;
    /* border: 1px solid black; */
}
.cert-img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-left: 40px;
    
}
.h-lines{
    border: 1px solid rgb(41, 40, 40);
    margin-left: 30px;
    margin-top: 10px;
    height: 60px;
}
.linesOn{
    width: 90px;
    border: 1px solid black;
}
 
.boxi a{
    color: black;
}
.num01 a{
  color: black;
}
/* footer style end here */
 


/*MEDIA QUERY START */

 @media screen and (min-width: 2560px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
    #header{
        display: flex;
        justify-content: center;
        gap: 300px;
    }
    .listItems{
        width: auto;
    }
    .dropdown .ul-0{
        border-radius: 20px;
    }
 .order{
    width: 900px;
 
 }

 .headnxt{
    height: auto;
 }
 
 /*  MAIN CONTENT */
 
 


 /* FOOTER */
 .section-0{
    justify-content: center;
 }
 .footer-0{
    justify-content: center;
 }
}

 @media screen and (min-width: 1200px) {
    .container {
        max-width: 1140px;
        margin: 0 auto;
    }
        #header{
        display: flex;
        justify-content: center;
        gap: 180px;
    }
 
    .listItems{
        width: auto;
        }
    .dropdown .ul-0{
        border-radius: 20px;
        left: -660px;      
      }
 .order{
    width: 900px;
 }
 
  .searchBar{
     margin-left: -180px;
   }
  .searchBar i{
    padding-left: 50px;
  }
  
}

 

/* Tablets and smaller desktops (max-width: 1199px) */
@media screen and (max-width: 1199px) {
    /* header */
    #header{
        width: 100%;
    }
    .dropdown ul {
        width: 1210px;
        left: -650px;
        padding: 25px 60px 40px 100px;
    }
    
    .comma {
        margin-left: 200px;
    }
    
    .container {
        max-width: 960px;
    }
    
    .listItems {
        gap: 20px;
        padding-right: 10px;
     }

 
  

    /* FOOTER */
    .foot-div{
        margin-left: 5px;
     }
 
    .second{
        padding-left: 20px;
        width: 30%;
    }
    .third{
        width: 35%;
    }
    .Categories{
        font-size: 18px;
    }
    .certificate{
        margin-left: 0;
    }
    /* FORM POPUP */
    #form-popup{
        left: 45%;
    }
}

/* Tablets (max-width: 992px) */
@media screen and (max-width: 992px) {
    .dropdown ul {
        width: 900px;
        left: -500px;
        padding: 20px 60px 30px 60px;
    }
    
    .comma {
        margin-left: 150px;
    }
    
    .container {
        max-width: 720px;
    }
    
    .listItems {
        gap: 25px;
        padding-right: 30px;
    }
    
    .searchBar {
        width: 250px;
    }
    
    .imageLogo {
        width: 280px;
    }

 
}

/* Mobile devices (max-width: 768px) - HIDE NAV ITEMS, SHOW ONLY LOGO */
@media screen and (max-width: 768px) {
    /* Hide navigation items, show only logo */
    .listItems {
        display: none !important;
    }
    
   .mobile-menu-icon {
    display: block !important;
  }

  .searchBar {
    display: none !important;
  }
    
    /* Adjust header for mobile */
    #header {
        height: 70px;
        padding: 0 15px;
    }
    
    .logo {
        margin-left: 15px;
    }
    
    .imageLogo {
        width: 250px;
        height: 70px;
    }
    
    /* Adjust dropdowns for mobile */
    .dropdown ul {
        display: none !important;
    }
    
    /* Adjust search bar */
    .searchBar {
        display: none;
    }
    
    .mobile-search {
        display: block;
        margin: 15px 0;
    }
    
    /* Adjust slideshow */
    .slideshow-container {
        margin-top: 0px;
    }
    
    .mySlides img {
        height: 300px;
    }
    
    /* Adjust forms */
    .container {
        width: 100%;
        margin-left: 0;
    }
    .form-controll{
        left: 50% !important;
    }
    .form-container {
        width: 100%;
        margin-left: 0;
     }
    .first-input,
    .second-input {
         flex-direction: column;
        gap: 10px;
    }
    
    .one,
    .subject-p,
    .text-area {
        width: 90%;
    }
    .subject-p{
    display: flex !important;
 }
    
    .text-a01 {
        width: 100%;
    }
    .form-container{
        width: 50% !important;
     }
  .other-container{
    width: 50% !important;
    padding: 0 20px 0 20px;
   }
    
    /* Adjust floating icons */
    .fl-fv.float-fr,
    .fl-ft.float-ft,
    .fl-fx.float-fx,
    .fl-fl.float-fb,
    .fl-fa.float-fa,
    .fl-fk.float-fk {
        display: none;
    }
 
    
 
 /* .we-serve{
    border: 1px solid black;
 } */


/* absolute form start here */
.do-2{
    left: 90px;
    width: 600px;
    height: auto;
}

 .form-c{
    display: grid;
    place-items: start;
 }

.d-one-1 {
     width: 600px;
    display: grid;
    place-items: center;
  }
.heading-left{
    text-align: center;
    font-size: 20px;
}
.head-left-1{
    font-size: 20px;
    margin: 0;
}
.d-two{
    /* border: 1px solid red; */
    width: 550px;
    display: grid;
    place-content: center;
}
.d-two-1{
    margin: 0;
    
}
.form-im{
    display: none;
}
.i-fields{
    display: grid;
    gap: 30px;
}

.i-fields01{
    width: auto;
}
.i-f02{
    width: 400px;
}
/* HEADNEXT */
.headnxt{
    height: auto;
}

/* WRAPPER */
.db-wrapper{
    width: auto;
     height: auto;
}
.db-txt-wrap{
    width: 100%;
    height: auto;
  }
 .containers{
    margin-top: 1px;
    height: auto;
 
 }
.work-para{
     width: 100%;
    font-size:16px;
    text-align: start !important;
}

.containers{
     display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
.up,
.down{
    transform: none;
}
.up:hover,
.down:hover{
transform: translateY(-15px);
}

/* WRAPPER VALUE */
/* .wrapper-value{
     width: 100%;
    height: auto;
    border: 1px solid red;
} */
 
.cont-wrap{
width: auto;
height: auto;
}
 
/* LEADS WRAPPER */
.leads-wrap{
    width: 100%;
}
.main-con-lead{
     height: auto;
}
 
.text-head p{
    text-align: center;
 }
 
/* BENEFIT PART  */
.discover1{
    padding-top: 40px;
    padding-bottom: 40px;
     width: auto;
    height: auto;
 }
.dis-cont1{
     height: auto;
}
.contain-para{
     display: grid;
    place-items: start;
 }

 .discover{
    padding-top: 40px;
    padding-bottom: 40px;
    height: auto;
  }
 
 .dis-cont{
     height: auto;
       display: grid;
      place-items: start;
      padding-bottom: 40px;
 }
 .text-cover{
    width: 100%;
    height: auto;
    text-align: justify;
  }
 .text-cover1{
    display: flex;
    justify-content: start;
    align-items: start;
    height: auto;
    margin-left: 20px;
  }




    /* Adjust footer */
    .section-0{
        height: auto;
    }
    .footer-0 {
        flex-direction: column;
    }
    
    .first {
        width: 100%;
        margin: 15px 0;
    }
    
    .foot-div {
        width: 100%;
        margin: 15px 0;
        height: auto;
     }
    
    .foot-div-01 {
        /* flex-direction: column; */
        display: flex;
    }
    
    .second,
    .third,
    .fourth {
        width: 30%;
        margin: 15px 0;
        text-align: start;
        place-items: start;
     }
    
    .vl {
        display: none;
    }
}

/* Small mobile devices (max-width: 576px) */
@media screen and (max-width: 576px) {
    /* Further adjustments for small screens */
    .imageLogo {
        width: 200px;
    }
    
    .logo {
        margin-left: 10px;
    }
    
    .mobile-menu-icon {
    display: block !important;
  }

  .searchBar {
    display: none !important;
  }
    
    .slideshow-container {
        margin-top: 0;
    }
    
    .mySlides img {
        height: 200px;
    }
  
 

 /* Adjust forms */
    .container {
        width: 80%;
        margin-left: 0;
    }
    .form-controll{
        top: 50% !important;
        left: 60% !important;
    }
    .other-container{
        display: none;
    }
 .subject-p{
    display: flex !important;
 }
     .form-container{
        width: 90% !important;
      }
    .first-input,
    .second-input {
        flex-direction: column;
        gap: 10px;
    }
    .one,
    .subject-p,
    .text-area {
        width: 90% !important;
     }
 

 


    /* Adjust forms */
    .form-popup {
        width: 95%;
        padding: 15px;
    }
    
 



    /* Adjust footer */
    .foot-log {
        width: 100%;
    }
    
    .foot-img {
        width: 100%;
    }
    .foot-div{
        place-items: start;
        padding-left: 10px;
    }
    .second,.third,.fourth{
        width: auto;
        place-items: start;
        padding-left: 10px;    
     }
 .certificate{
    width: 100%;
    margin: 0;
    display: grid;
    place-items: start;
 }
    .foot-div-01{
        display: grid;
    }
    .cert-01 {
        flex-wrap: wrap;
        justify-content: start;
        gap: 15px;
        padding-left: 10px;
    }
    .c-head{
        margin-left: 10px;
     }
    .cert-img {
        margin-left: 0;
         width: 70px;    
    }
    
    .h-lines {
        display: none;
    }
}

/* Very small mobile devices (max-width: 400px) */
@media screen and (max-width: 400px) {
    .foot-log{
         margin-top: -7px;
    }
 
    .imageLogo {
        width: 180px;
     }
    
   .mobile-menu-icon {
    display: block !important;
  }

  .searchBar {
    display: none !important;
  }
    
    .mySlides img {
    height: 150px;
    }
    
  /* Adjust forms */
    .container {
        width: 65%;
        margin-left: 0;
    }
    .form-controll{
        top: 50% !important;
        left: 75% !important;
    }
    
    .other-container{
        display: none;
    }
 
     .form-container{
        width: 90% !important;
      }
    .first-input,
    .second-input {
        flex-direction: column;
        gap: 10px;
    }
        .one,
    .subject-p,
    .text-area {
        width: 90% !important;
     }

         .second, .third, .fouryh{
        place-items: start;
     }
    .cert-img{
    width: 50px;
  } 
    
}

 

/* ----------------------------- */
/* OUR VALUES – LARGE SCREENS   */
/* ----------------------------- */
/* @media screen and (min-width: 1200px) {
    .wrapper-value {
        height: 80vh;
    }

    .vl-cont1 {
        grid-template-columns: 1fr 1fr;
        height: auto;
    }

    .cont-wrap {
        width: 550px;
        height: 180px;
    }
} */

/* ----------------------------- */
/* TABLETS (max-width: 992px)   */
/* ----------------------------- */
@media screen and (max-width: 992px) {

    .wrapper-value {
        height: auto;
        padding-bottom: 20px;
    }

    .vl-cont {
        height: auto;
    }

    .vl-cont1 {
        width: 95%;
        height: auto;
        grid-template-columns: 1fr;
        grid-row-gap: 1.5rem;
        padding: 1.5rem;
    }

    .cont-wrap {
        width: 100%;
        height: auto;
        padding: 20px 0;
    }

    .imp {
        font-size: 20px;
        margin-left: 20px;
    }

    .p-para {
        font-size: 16px;
        margin-left: 20px;
    }

    /* Reduce line width */
    .loness {
        width: 50px;
    }

    /* Reduce hover animation impact */
    .upLft:hover,
    .upRgt:hover,
    .upLftOn:hover,
    .upRgtOn:hover {
        transform: translateY(-10px);
    }
}

/* ----------------------------- */
/* MOBILE DEVICES (max-width: 768px) */
/* ----------------------------- */
@media screen and (max-width: 768px) {

    .wrapper-value {
        width: 100%;
        height: auto;
    }

    .vl-Of {
        font-size: 26px;
        text-align: center;
    }

    .vl-cont1 {
        width: 100%;
        grid-template-columns: 1fr;
        padding: 1rem;
        grid-row-gap: 1.2rem;
    }

    .cont-wrap {
        width: 100%;
        height: auto;
        padding: 18px 0;
    }

    .imp {
        font-size: 18px;
        margin-left: 15px;
    }

    .p-para {
        font-size: 15px;
        margin-left: 15px;
        line-height: 1.4;
    }

    .loness {
        width: 40px;
        margin-left: 15px;
    }

    /* Disable hover animations (mobile doesn't support hover) */
    .upLft:hover,
    .upRgt:hover,
    .upLftOn:hover,
    .upRgtOn:hover {
        transform: none;
    }
}

/* ----------------------------- */
/* SMALL MOBILES (max-width: 576px) */
/* ----------------------------- */
@media screen and (max-width: 576px) {

    .wrapper-value {
        width: 100%;
        height: auto;
    }

    .vl-cont1 {
        width: 100%;
        padding: 10px;
    }

    .cont-wrap {
        padding: 15px 0;
    }

    .imp {
        font-size: 17px;
        margin-left: 12px;
    }

    .p-para {
        font-size: 14px;
        margin-left: 12px;
    }

    .loness {
        width: 35px;
        margin-left: 12px;
    }
}

/* ----------------------------- */
/* VERY SMALL PHONES (max-width: 400px) */
/* ----------------------------- */
@media screen and (max-width: 400px) {

    .vl-Of {
        font-size: 22px;
    }

    .imp {
        font-size: 16px;
        margin-left: 10px;
    }

    .p-para {
        font-size: 13px;
        margin-left: 10px;
        line-height: 1.3;
    }

    .loness {
        width: 30px;
    }

    .cont-wrap {
        padding: 12px 0;
    }
}


/* ============ FIX FOR SCROLLING ISSUES ============ */
html {
    overflow-x: hidden;
}

body {
    overflow-x: hidden;
    position: relative;
}

/* * {
    max-width: 100%;
} */

img {
    max-width: 100%;
    height: auto;
}

/* Add mobile menu functionality */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  margin-right: 20px;
  cursor: pointer;
  color: var(--primary);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background-color: white;
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
  z-index: 9;
}

.mobile-menu a {
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  border-top: 1px solid #eee;
  color: black;
  font-family: var(--family);
}

.mobile-menu a:hover {
  background: var(--primary);
  color: white;
}
.mobile-submenu {
    display: none;
    flex-direction: column;
    padding-left: 15px;
    border-left: 2px solid #eee;
}
.mobile-menu.active {
  display: flex;
}
.mobile-submenu a {
    padding: 10px 20px;
    font-size: 14px;
}
.mobile-menu button{
    border: none;
    background: #ff0010;
    color: white;
    height: 40px;
}
.mobile-products-toggle {
    cursor: pointer;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
}

.mobile-submenu.active {
    display: flex;
}


 

@media (max-width: 768px) {
  .listItems:not(.mobile-menu) {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }

  .searchBar {
    display: none !important;
  }
}

/* ================== TOUCH DEVICE OPTIMIZATIONS ================== */
@media (hover: none) and (pointer: coarse) {
  /* Disable hover effects on touch devices */
  .dropdown:hover ul,
  .comma:hover ol,
  .indus:hover ol,
  .dom:hover ol,
  .appl:hover ol,
  .therma:hover ol,
  .order li:hover,
  .imm-tag:hover .im-hr,
  .theContainer:hover,
  .db1:hover {
    transform: none;
  }
  
  /* Show dropdown on click instead of hover */
  .dropdown.active ul {
    display: flex !important;
  }
}

/* ================== HIGH DPI SCREENS ================== */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .imageLogo,
  .foot-img,
  .cert-img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* ================== PRINT STYLES ================== */
@media print {
  .listItems,
  .fort-body,
  .moreToLike,
  .slider,
  .footer-0,
  .copyright-0,
  #scrollTopBtn,
  .bulk-inq,
  .addTo,
  .purchase {
    display: none !important;
  }
  
  .pr-dv,
  .descp {
    break-inside: avoid;
  }
}



/* core animation styles for menu items */
.listItems .menu-anim-item {
  display: inline-block;            /* keep natural layout */
  transform: translateX(0);
  opacity: 1;
  transition: transform 320ms cubic-bezier(.2,.9,.2,1), 
              opacity 320ms cubic-bezier(.2,.9,.2,1);
  will-change: transform, opacity;
}

/* hidden state: shifted to the right and invisible */
.listItems .menu-anim-item.is-hidden {
  transform: translateX(20px);
  opacity: 0;
  pointer-events: none;             /* no hover/click */
}

/* for dropdown we want pointer-events off when hidden (safer) */
.listItems .menu-anim-item.is-hidden .dropdown,
.listItems .menu-anim-item.is-hidden .anchorList {
  pointer-events: none;
}

/* small tweak: ensure search bar container looks good */
#search-input {
  display: none; /* default hidden; your code may already set this */
  align-items: center;
  gap: 8px;
}

/* optional: adjust inline-block elements so they align nicely */
.listItems a.anchorList,
.listItems .dropdown,
.listItems .inquiry,
.listItems #show-form-btn {
  vertical-align: middle;
}