@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');
@font-face {
  font-family: myFont;
  src:url(../../Images/Industries/BasementGrotesque.ttf.ttf);
}

:root{
    --primary:#00adef;
    /* --second:#a6cc38; */
    --second:#00adef;
    --third:#ec0010e0;
    /* --bg-sub:linear-gradient(to right,  #8CB64B, #D0F876); */
    --bg-sub:linear-gradient(to right,  #9ad147, #d6f887); 
    --bg-sub0:linear-gradient(to left,  #9ad147, #d6f887); 
    --form-bg:linear-gradient(to right, #009ffd, #00cfff);
    --form-bg-01:linear-gradient(to left, #009ffd, #00cfff);
    --bg-red:linear-gradient(to bottom, rgb(59, 57, 57), #ff0010 );

    --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-color: #faf9f9; 
}

/* header part style start here */
#header{
   /* max-width: 100%; */
    width: 100%;      
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position:sticky;
    z-index: 10;
    background: white;
    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: 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: 300px;
    height: 40px;
    border-radius: 20px; */
    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: 200px; */
    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: -750px; */
     left: -695px;
    display: none;
    gap: 20px;
     width: 1468px;
    background: linear-gradient(to top, skyblue, white);
     padding: 30px 150px 50px 150px;
    cursor: pointer;
    list-style: none;
   transition: opacity 0.3s ease;
 
}

 

.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; */
    margin-left: 280px;
}

/* 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){
    width: 250px;
    padding: 10px 0 0 20px;
}
.therma .order li:nth-child(4){
    width: 120px;
    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: 160px;
    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;
}
/* .therma:hover .port_img3{
    display: block;
} */
.appl:hover .port_img3 {
    display: block;
}
.therma:hover .port_img4{
    display: block;
}
/* dropdown page end here */


/* next container  style start here  */


.main-container{
    width: 100%;
    height: 60vh;
    background-image: url(../../Images/Industries/Artboard\ 2.2B.webp);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;    
 
  }
 .main-heads{
   height: 45vh;
   display: grid;
   place-content: center;
   align-items: center;
   transition: transform 0.4s;
   animation: 1.5s fadeInUp ;
 }
 .allTagLines{
    display: flex;
    justify-content: center;
    font-family: var(--f-fmly);
 }
.allTagLines h1{
    font-size: 36px;
    color: white;
} 
     @keyframes fadeInUp {
    0% {
    transform: translateY(100%);
    opacity: 0;
    }
    100% {
    transform: translateY(0%);
    opacity: 1;
    }
    }
 .para-dv{
    display: grid;
    place-content: center;
    font-family: var(--f-fmly01);
 }
 .paraOfAb{
    width: 800px;
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
    /* color: grey; */
    color: white;
 }
 .absy-cont{
    width: 900px;
    height: 300px;
    background: white;
    border-radius: 30px;
    position: absolute;
    left: 230px;
    top: 360px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;    
  }
  .absy-cont:hover{
  transform: translateY(-10px); /* lifts up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2)    
  }
.absy-co{
   padding: 45px 40px 0px 40px;
   font-family: var(--f-fmly01);
   font-size: 16px;
   line-height: 1.8;
   text-align: justify;
   /* font-weight: 300; */
 
}
.absy-cont:hover{
  background: linear-gradient(to top, skyblue, white);
 
}
 
 

.absy-co span{
    color: var(--third);
    font-size: 26px;
    font-family:'Courier New', Courier, monospace;
    font-weight: 600;    
}
.absy-co .ash{
    font-family:'Courier New', Courier, monospace;
    font-size: 30px;
}
/* .absy-cont:hover .absy-co{
    color: red;
} */
 
 .about-air{
    display: grid;
    place-content: center;
  }
 .new-box{
    width: 900px;
    height: 60vh;
    background: white;
    border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    padding-bottom: 30px;
    display: flex;
  }
 .new-box:hover {
  transform: translateY(-10px); /* lifts up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* optional: add a shadow */
  }  

 
  .contss1{
    position: relative;
    top: 35px;
    width: 100%;
  }
  .contss1 .hope2{
     display: grid;
    place-content: center;
    margin-left: 90px;
    font-family: var(--f-fmly);
    font-size: 32px;
    font-weight: 600;
    background: linear-gradient(to left, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;
  }
  .line1{
    margin-top: 3px;
    margin-left: 250px;
    width: 200px;
    height: 2px;
    background: linear-gradient(to left, #00adef, #a6cc38);
    transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: left;   /* Expand outward from center */
    transition: transform 0.4s ease;        
  }
.contss1:hover .line1{
    width: 260px;
    transform: scaleX(1);    
  }
  .contss1 .hope-p1{
    margin-left: 250px;
    /* margin-left: 250px; */
    font-family: var(--f-fmly01);
    width:600px ;
    text-align: justify;
    font-size: 18px;
    padding-top: 10px;
    line-height: 1.9;
   }
 
.new-box:hover,
.new-box1:hover,
.new-box2:hover,
.new-box4:hover{
/* background: linear-gradient(to top, skyblue, white); */
background-image: url('../../all-imgs/landing\ page/hover-img.webp');
background-size: cover;
background-repeat: no-repeat;
} 
  
  
  .hashMg1{
    border-radius: 50%;
    position: absolute;
    left: -160px;
    top: -25px;
     border-radius: 5px;
    transition: transform 0.2s;
    border-radius: 20px;
  }
  .hashMg1:hover{
    transform: scale(1.04); /* or adjust zoom level */
    cursor: zoom-in, pointer;    
  }
  .hashMg1 .mg1{
    width: 400px;
    height: 350px;
    object-fit: contain;
    filter: drop-shadow(0 12px 5px #bfbfbf);
  }
 
.hope-p .fa-paper-plane{
 color: black;
 padding-right: 10px;
}
 .new-box1{
    margin-top: 15vh;
    width: 900px;
    height: 60vh;
    background: white;
    border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
  }
  .new-box4{
    margin-top: 15vh;
     width: 900px;
    height: 60vh;
     background: white;
     border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;  
  }
  .new-box4 .contss{
    width: 100%;
    height: 56vh;
    position: relative;
    top: 25px;
  }
.new-box1:hover,
.new-box4:hover,
.new-box2:hover {
  transform: translateY(-10px); /* lifts up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* optional: add a shadow */
}  
  .contss{
    position: relative;
    top: 40px;
    /* border: 1px solid black; */
  }
 .new-box2 .contss > .hope1{
     display: inline-block;
    place-content: start;
    font-family: var(--f-fmly);
    font-size: 32px;
    font-weight: 600;
    margin: 0 0 10px 270px;
    background: linear-gradient(to left, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;
  }
    .new-box2 .contss > .hope-p{
    margin-left: 230px;
  }
    .contss .hope1{
     display: inline-block;
    place-content: start;
    font-family: var(--f-fmly);
    font-size: 32px;
    font-weight: 600;
    margin: 10px 0 10px 40px;
    background: linear-gradient(to left, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;
  }
 .new-box2 .line{
    margin-top: 3px;
    margin-left: 270px;
    width: 200px;
    height: 2px;
     background: linear-gradient(to left, #00adef, #a6cc38);
     transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: left;   /* Expand outward from center */
    transition: transform 0.4s ease;        
  }
   .new-box4 .line{
    margin-top: 3px;
    margin-left: 40px;
    width: 200px;
    height: 2px;
    /* background: var(--second); */
    background: linear-gradient(to left, #00adef, #a6cc38);
    /* background: linear-gradient(to bottom, rgb(37, 36, 36), #ff0010 ); */
    transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: left;   /* Expand outward from center */
    transition: transform 0.4s ease;        
  }
     .new-box1 .line{
    margin-top: 3px;
    margin-left: 40px;
    width: 200px;
    height: 2px;
    /* background: var(--second); */
    background: linear-gradient(to left, #00adef, #a6cc38);
    /* background: linear-gradient(to bottom, rgb(37, 36, 36), #ff0010 ); */
    transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: left;   /* Expand outward from center */
    transition: transform 0.4s ease;        
  }
.contss:hover .line{
    width: 190px;
    transform: scaleX(1);    
  }
  .contss .hope-p{
    font-family: var(--f-fmly01);
    width:600px ;
    font-size: 18px;
    padding: 10px 15px 0 45px;
    line-height: 1.9;
    /* border: 1px solid black; */
  }
  .hashMg{
    /* border: 1px solid black; */
    /* width: 450px;
    height: 400px; */
    position: absolute;
    right: -80px;
    top: -10px;
    /* background: red; */
    border-radius: 5px;
    transition: transform 0.2s;
  }
  .hashMg2{
    position: absolute;
    left: -190px;
    top: -35px;
    /* background: red; */
    border-radius: 5px;
    transition: transform 0.2s;
    /* background: white; */
    border-radius: 20px;
    /* box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px; */
  }
  .hashMg3{
    position: absolute;
    right: -95px;
    top: 0;
    border-radius: 5px;
    transition: transform 0.2s;
    border-radius: 20px;    
  }
  .hashMg2:hover,
  .hashMg3:hover{
    transform: scale(1.04); /* or adjust zoom level */
    cursor: zoom-in, pointer;    
  }
    .mg3{
    width: 350px;
    height: 350px;
    object-fit: contain;
  }
 
   .mg2{
    width: 450px;
    height: 350px;
    object-fit: contain;
    margin-left: 30px;
    margin-top: 10px;
  }
 
  .hashMg:hover{
    transform: scale(1.04); /* or adjust zoom level */
    cursor: zoom-in, pointer;    
  }
  .hashMg .mg{
    width: 320px;
    height: 320px;
    object-fit: contain;
    /* filter: drop-shadow(0 12px 5px #bfbfbf); */
  }
  .new-box2{
    margin-top: 15vh;
    /* width: 900px;
    height: 75vh; */
    width: 900px;
    height: 60vh;
     background: white;
     border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;      
  }
  .hope-p3{
    font-family: var(--f-fmly01);
    font-size: 18px;
    padding: 10px 15px 0 270px;
    line-height: 1.9;  
    /* border: 1px solid black;   */
  }
.new-box,
.new-box1,
.new-box2,
.new-box4,
.new-box02 {
    opacity: 0;
    transform: translateY(100px); /* Start from right */
    transition: all 0.6s ease-out;
}

.animate-in {
    opacity: 1;
    transform: translateY(0); /* Final position */
}

/* next container  style end here with animations  */



/*  pattern break our vision part start here  */
.visionPart{
    width: 100%;
     height: 90vh;
    margin-top: 80px;
    padding-bottom: 60px;
    display: grid;
    place-items: center;
     background-image: url('../../all-imgs/About\ Us/Greenbg.webp');
    background-size: cover;
    background-repeat: no-repeat;
    gap: 0;
    /* opacity: 0.8;  */

}
.visHead{
    font-family: var(--f-fmly);
    font-size: 26px;
     margin-top: 20px;
}
.visHead .vis-head{
    background: white;    
     -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;
  }
.lineOs{
    margin-top: 3px;
    width: 190px;
    height: 2px;
    background: white; 
     transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: center;   /* Expand outward from center */
    transition: transform 0.4s ease;  
}
.visHead:hover .lineOs{
    transform: scaleX(1);       
}
.visionP{
    width: 96%;
     height: 62vh;
    margin-top: 35px;
    border-radius: 10px;
     padding: 0 50px 50px 0;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;    
     backdrop-filter: blur(10px); /* applies the blur */
    -webkit-backdrop-filter: blur(10px); /* for Safari */    
}
.visPara .hope-ps{
    font-family: var(--f-fmly01);
    font-size: 18px;
    padding: 10px 15px 0 45px;
    line-height: 1.9; 
    color: white;  
    /* color: #033142; */
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);*/
 
    }
.visPara .hope-p{
    font-family: var(--f-fmly01);
    font-size: 18px;
    padding: 10px 15px 0 45px;
    line-height: 1.9;    
    color: white;
 /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6);  */
}
.visionP .hope-p i {
  color: white !important;
  /* text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.6); */
}

.about-air .new-box02{
    margin-top: 15vh;
    /* width: 800px; */
    width: 900px;
    height: 60vh;
    background: white;
    border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;
  }    
 .new-box02 .hope-p{
 width: 100%;
 text-align: justify;
 padding-right: 45px;
 }
.new-box02{
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    will-change: transform;     
}
.new-box02:hover{
 background-image: url('../../all-imgs/landing\ page/hover-img.webp');
 background-size: cover;
 background-repeat: no-repeat;
  transform: translateY(-10px); /* lifts up */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* optional: add a shadow */

}
.new-box02 .contss{
    position: relative;
    top: 40px;
}
 
 .new-box02 .hope1 {
  display: grid;
  place-content: center;
  text-align: center;
  font-family: var(--f-fmly);
  font-size: 32px;
  font-weight: 600;
  margin: 10px 0;
  cursor: pointer;
}

.new-box02 .hope1 span {
  display: inline-block;
  background: linear-gradient(to right, #00adef,  #a6cc38 );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.new-box02 .line{
    margin-top: 3px;
    margin-left: 360px;
    width: 170px;
    height: 2px;
     background: linear-gradient(to left, #00adef 10%, #6a8812 100%); 
     transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: center;   /* Expand outward from center */
    transition: transform 0.4s ease;      
}
 
    .hope-ps,
    .hope-p {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .animate-visible {
      opacity: 1;
      transform: translateY(0);
    } 


#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;
}








/* 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;              /* Vertical position */
  right: -130px;           /* Hide part of the button off-screen */
  /* width: 175px;
  padding: 10px 15px; */
  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;
  /* clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); */
}
 
 
 
/* On hover, slide left into view */
.fl-fv.float-fr:hover {
  right: 0;
  /* clip-path: polygon(10% 0, 100% 0, 100% 100%, 10% 100%, 0 50%); */
/* clip-path: polygon(0 0, 90% 0, 100% 100%, 90% 100%, 0 100%);   */
  }
 
 .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: 18px;
  height: 18px;
   object-fit: contain;
 }
/* Floating Button style start here - Right Side */








/* our initiative part style start here*/

.our-init{
    /* margin-top: 15vh; */
    width: 100%;
    height: auto;
    background: white;
    padding-bottom: 70px;
 
}
.head-init{
    font-family: var(--f-fmly);
    font-size: 25px;
    color: black;
    display: grid;
    place-content: center;
    gap: 15px;
    padding-top: 80px;
    padding-bottom: 70px;  
 }
 .head-init h2{
    background: linear-gradient(to left, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;      
 }
.lones{
    margin-top: 2px;
    /* margin-left: 150px; */
    height: 2px;
    background: linear-gradient(to left, #00adef, #a6cc38); 
    transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: center;   /* Expand outward from center */
    transition: transform 0.4s ease; 
}
.head-init:hover .lones{
    transform: scaleX(1);       
    width: 500px;
}
.cont-dv{
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 60px;
}
.carts1, .carts2, .carts3{
    width: 300px;
    height: 52vh;
    border-radius: 15px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
   }
.carts2 .elemOp{
  width: 140px; 
  margin: 70px 0 0 80px;
  object-fit: contain;
}
 
.carts3 .elem4{
  width: 120px; 
  margin: 65px 0 0 95px;
  object-fit: contain;
}
.carts1 .elem{
  width: 80px;
  margin: 55px 0 0 115px;
}
.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: 15px;
  z-index: 2;
  text-align: justify;
}
.show img{
    width: 80px;
    height: 80px;
    object-fit: contain;
    position: absolute;
    top: 15px;
    left: 130px;
}
.show .elem2{
    position: absolute;
    top: 40px;
    left: 120px;
}
.show .elem1{
  position: absolute;
  /* top: 15px; */
  top: 30px;
  left: 110px;
}
.carts1:hover .show,
.carts2:hover .show,
.carts3:hover .show {
  opacity: 1;
  transform: translateY(0);
}

/* Important: Make .carts1 a positioning context */
.carts1,
.carts2,
.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;
    /* background:linear-gradient(to top, #00ADEF,  #47CBFF); */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* optional: add a shadow */    

 }

.carts1:hover,
.carts2:hover,
.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);
 } 
.show .show-p1{
    font-size: 14px;
    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;
 }
.carts1 span,
.carts2 span,
.carts3 span{
    font-size: 20px;
    /* font-family: myFont; */
    font-family: var(--f-fmly);
    font-weight: 600;
     background: linear-gradient(to left, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer; 
  
}

/* animation style for carts1,2,3 */
.card-flip {
  transform: rotateY(40deg);
  opacity: 0;
  transition: transform 1.5s ease-out, opacity 0.8s ease;
  will-change: transform, opacity;
   transform-origin: center;
     animation: waveLift 4s ease-in-out infinite;
}
@keyframes waveLift {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
 
.card-flip.flip-visible {
  transform: rotateY(0deg);
  opacity: 1;
   
}
.card-flip:nth-child(1) {
  transition-delay: 0.1s;
    animation-delay: 0s;
 
}
.card-flip:nth-child(2) {
  transition-delay: 0.3s;
      animation-delay: 0.8s;
 
}
.card-flip:nth-child(3) {
  transition-delay: 0.5s;
  animation-delay: 1.6s;
}
.card-flip:nth-child(4) {
  transition-delay: 0.1s;
    animation-delay: 2.4s;
}
.card-flip:nth-child(5) {
  transition-delay: 0.3s;
    animation-delay: 3.2s;

}
/* Default hidden state before animation */
 

/* our initiative part style end here*/




/* our blog style part start here */

.new-int{
    width: 100%;
    background: #faf9f9;
    padding-bottom: 90px;
 }
.new-head{
 
    width: 100%;
    height: 140px;  
 
    display: grid;
    place-content: center;
    align-items: center;
 
 }
 
 
 

.new-int h2 {
    font-weight: bold;
    font-family: var(--f-fmly);
    font-size: 40px;
    background: var(--bg-sub);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;
}
.loons{
    margin-top: 2px;
    height: 2px;
    width: 100px;
    background: var(--bg-sub); 
    transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: center;   /* Expand outward from center */
    transition: transform 0.4s ease; 
}
 .new-head:hover .loons{
    transform: scaleX(1);             
 }
 
 .new-contsDv{
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 40px;
 }
.mgees{
    position: relative;
} 
.gls{
    position: absolute;
    width: 100%;
    height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-family: var(--f-fmly);
    text-align: center;
}
.mgees .gls > .glhs{
    color: white !important;
    text-shadow: .1em .1em 0 hsl(357, 94%, 56%); 
}
.textsOn{
    top: 0;
    position: absolute;
    color: white;
    border-radius: 20px;
    height: 60vh;
    padding: 0 20px;
    display: grid;
    place-items: center;
   background: rgba(255, 255, 255, 0.2); /* semi-transparent for glass look */
  backdrop-filter: blur(2px); /* 👈 this is the back blur */
  -webkit-backdrop-filter: blur(12px); /* Safari support */
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  color: white;
  font-size: 16px;
  line-height: 1.6; 
  box-sizing: border-box;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s ease;
  overflow-y: auto;
   z-index: 2;  
}
.carts01:hover .textsOn,
.carts02:hover .textsOn,
.carts03:hover .textsOn{
     opacity: 1;
  transform: translateY(0); 
}
.textsOn p{
    font-size: 18px;
    font-family: var(--f-fmly01);
    text-align:justify;
}
.carts01, .carts02, .carts03{
    width: 350px;
    height: 60vh;
     border-radius: 30px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
 }
 

.view-all{
    display: grid;
    place-content: center;
    margin-top: 60px;
}
.view-all .blog{
    width: 160px;
    height: 40px;
    background: var(--bg-sub);
    border-radius: 10px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
.blog:hover{
    background: var(--bg-sub0);
    color: black;
    
}
.animate-up {
  opacity: 0;
  transform: translateY(40px); /* Slide in from below */
  transition: all 0.8s ease-out;
}

.animate-up-visible {
  opacity: 1;
  transform: translateY(0); /* Natural position */
}
.animate-up:nth-child(1) {
  transition-delay: 0.1s;
}
.animate-up:nth-child(2) {
  transition-delay: 0.3s;
}
.animate-up:nth-child(3) {
  transition-delay: 0.5s;
}

/* our blog style part end here */



/* mid contact style start here */
.mid-contact{
    margin-top: 12vh;
    max-width: 100%;
    max-height: 440px;
    display: flex;
    justify-content: start;
    font-family: var(--family-h);
    font-weight: 600;
    padding-top: 30px;
    padding-left: 50px;
    padding-bottom: 50px;
    height: auto;
    background-image: url('../../all-imgs/landing page/Artboard 2.2 (1).webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.mid-head01{
    color: #ffffff;
    font-size: var(--sz-b);
}
.mid-head02{
    color: #ffffff;
    font-size: 30px;
}
.contact-us0{
    display: flex;
    margin-left: 260px;
    margin-top: 35px;
}
.contact-mid{
    width: 150px;
    height: 50px;
    border: none;
    border-radius: 15px;
    color: #a6cc38;
    background-color: white;
    font-size: 17px;
    font-family: "Inter", sans-serif !important;
    cursor: pointer;
}
.contact-mid:hover{
    /* box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19); */
    box-shadow: rgba(17, 17, 26, 0.1) 0px 4px 16px, rgba(17, 17, 26, 0.1) 0px 8px 24px, rgba(17, 17, 26, 0.1) 0px 16px 56px;

}

/* mid contact style end here */



/* random container style start here */
.about-air0{
    width: 100%;
    height: 80vh;
    background: #faf9f9;
    display: grid;
    place-content: center;
 }
.new-box01{
    width: 800px;
    height: 50vh;
     background: white;
     border-radius: 30px;
     box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;

}
 

/* random container style end here */

/* journey part style start here */
 
/* journey part style end here */


/* footer part style start */
.section-0{
    background-image: url('../../all-imgs/landing\ page/FOOTER2.webp'); 
    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 */




/* copyright page start */
.copyright-0{
    /* background-image: url('../../Images/footer/FOOTER2.png'); 
    background-repeat: no-repeat; */
    padding-top: 20px;
    padding-left: 40px;
    padding-bottom: 15px;
 }
.copyright{
    font-size: var(--sz-f);
    color: black;
    font-weight: 500;
    font-family: var(--famiily-para);

}

/* copyright page end */





/* 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: black; 
    border: none;
    border-radius: 10px;
    background:var(--form-bg-01);
    box-shadow: black 0px 1px 4px;
}
.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 */ 




 .journey {
       position: relative;
       max-width: 100%;
      margin-top: 200px;
      padding: 60px;
    }
.ourJourn{
    display: flex;
    justify-content: center;
 }
.ourJourn h2{
    font-family: var(--f-fmly);
    font-size: 40px;
    background: linear-gradient(to left, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;
}
.journs {
  position: relative;
  display: inline-block;
  font-size: 32px;
  padding: 10px 20px;
  color: #023047;
  cursor: pointer;
  text-align: center;
}

.journs::before,
.journs::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: linear-gradient(to right, #00adef, #a6cc38); 
  transition: transform 0.4s ease;
  transform-origin: center;
}

.journs::before {
  left: -50px;
  transform: scaleX(1);
  transform-origin: right; /* animate outward to left */
}

.journs::after {
  right: -50px;
  transform: scaleX(1);
  transform-origin: left; /* animate outward to right */
}

.journs:hover::before {
  transform: scaleX(3); /* expand left */
}

.journs:hover::after {
  transform: scaleX(3); /* expand right */
}


    .journey-wrapper {
      width: 100%;
      overflow: hidden;
      padding: 50px 0;
     }

    .journey1 {
      display: flex;
      transition: transform 0.5s ease-in-out;
      will-change: transform;
    }

    .jCards {
      flex: 0 0 700px;
      height: 300px;
      margin: 0 40px; /* 40px left + right = 80px total gap */
      background:linear-gradient(to right, rgba(0, 242, 96, 0.3) 40%,rgba(0, 184, 241, 0.2) 100%   );
      background-size: cover;
      background-repeat: no-repeat;
      display: flex;
       align-items: center;
      justify-content: center;
      font-size: 24px;
      font-weight: bold;
      border-radius: 10px;
      transition: transform 0.3s ease;
    }

    .jCards.zoomed {
      transform: scale(1.1);
      background-image: url('../../all-imgs/landing\ page/hover-img.webp');
      background-size: cover;
      background-repeat: no-repeat;
      color: black;
      z-index: 1;
      box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    }
 
 
    .nav-button {
      position: absolute;
      top: 55%;
      transform: translateY(-50%);
      font-size: 32px;
      background: #023047; 
      color: white;
      border: none;
      padding: 12px 16px;
      border-radius: 6px;
      cursor: pointer;
      z-index: 1;
    }

  .nav-button.left {
    left: 55px;
    }

  .nav-button.right {
  right: 55px;
    }
    .card-content {
  text-align: center;
  padding: 20px;
}

.card-content h2 {
  margin-bottom: 10px;
}

.card-content p {
  font-size: 16px;
  font-weight: 500;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  margin-bottom: 12px;
}

.card-content button {
  width: 140px;
  padding: 8px 16px;
  background: linear-gradient(to left, #00B8F1, #28C76F );
  border: none;
  border-radius: 4px;
  font-weight: bold;
  cursor: pointer;
  color: white;
}
.card-image {
  width: 200px;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 15px;
}


 
/* MEDIA QUERY START */

 @media screen and (min-width: 2560px) {
 
    #header{
        display: flex;
        justify-content: center;
        gap: 300px;
    }
    .listItems{
        width: auto;
    }
    .dropdown .ul-0{
        border-radius: 20px;
    }
 .order{
    width: 900px;
 }
 
/* MAIN CONTAINER */
.main-container{
  height: auto;
}
.main-heads{
   height: 30vh;
}
 
  .absy-cont {
    left: 50%;
    top: 6%;
    transform: translate(-50%, 0);
  }

  .absy-cont:hover {
    transform: translate(-50%, -10px); /* keeps center + adds hover lift */
  }
/* ABOUT AIR */
.about-air{
  display: grid;
  place-items: center;
 }
.new-box, .new-box1{
  height: auto;
}
.new-box1{
  padding-bottom: 50px;
}
.new-box .hope-p1{
  padding-bottom: 40px;
}
.new-box1 .hope-p{
  height: 20vh;
 }
 
.new-box2{
  /* height: 25vh; */
  height: auto;
  padding-bottom: 70px;
}
.new-box4{
  height: 25vh;
}

/* VISION PART */
.visionPart{
  height: auto;
}
.visionP{
  width: 50% !important;
  height: auto;
}


/* MID CONTENT */
.mid-contact{
  display: flex !important;
  justify-content: center !important;
} 


/* CARDS */
.our-init{
  display: grid;
  place-items: center;
}
.cont-dv{
  width:50% !important;
  }
.carts1, .carts2, .carts3{
  /* height: 27vh; */
  /* height: 20vh; */
  height: auto !important;
  padding-bottom: 70px;
}

.new-box02{
  /* height: 25vh !important; */
  height: auto !important;
  padding-bottom: 100px !important;
 }


/* JOURNEY PART */
.journey{
  display: grid;
  place-items: center;
}
 .journey-wrapper{
  padding-right: 60px;
  width: 60%;
  }
 .nav-button.left{
left: 21%;
 }
 .nav-button.right{
 right: 21%;
 }


 /* 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: 190px;
    }
    .listItems{
      width: auto;
     }
    .dropdown .ul-0{
      border-radius: 20px;
      }
    .order{
      width: 900px;
     }  
 
 
  .absy-cont {
    left: 50%;
    transform: translate(-50%, 0);
  }

  .absy-cont:hover {
    transform: translate(-50%, -10px); /* keeps center + adds hover lift */
  }
  
/* MID CONTENT */
.mid-contact{
  display: flex !important;
  justify-content: center !important;
}

/* VISION PART */
.visionPart{
  height: auto;
}
.visionP{
width: 80%;
  height: auto;
}

/* CARDS */
.our-init{
  display: grid;
  place-items: center;
}
.cont-dv{
  width:80%;
 }
   /* FOOTER */
 .section-0{
    justify-content: center;
 }
 .footer-0{
    justify-content: center;
 }
}

/* 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;
     }

 /* CONACT FORM */
    .hero{
        display: flex;
        justify-content: center;
        padding-left: 0;
    }


/* MAIN CONTENT */

.main-heads{
  height: auto;
  padding: 50px;
}
.main-container{
  height: auto;
  padding: 40px;
}
.para-dv{
  width: 100%;
 }

.absy-cont{
  top: 320px;
  left: 70px;
  }

  
  /* NEW BOXES CARTS */

  .new-box{
    height: auto;
  }
  .new-box1,
  .new-box2{
    height: auto;
    padding-bottom: 40px;
  }
  .new-box4{
    height: 400px;
    padding-bottom: 50px;
  }
  .new-box4 .contss{
    height: 380px;
  }
  .contss1, .contss{
    padding-bottom: 30px;
  }
  .hashMg1{
    left: -50px;
  }
  .hashMg{
  right: -30px;
  }
  .hashMg2{
   left: -140px;
  }
  .hashMg3{
   right: 0;
  }
  .hashMg1 .mg1,
  .hashMg .mg,
  .hashMg3 .mg3{
    width: 300px;
    height: 300px;
  }

  .new-box02{
    height: auto !important;
    padding-bottom: 40px;
  }

/* VISION PART */

.visionPart{
  height: auto;
}
.visionP{
  height: auto;
}


  /* CARDS */
  .cont-dv{
    padding: 20px;
  }
.carts1,
.carts2,
.carts3{
  height: auto !important;
}
 .sec-con{
  padding-bottom: 40px;
 }
 



    /* 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 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{
    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;
}

/* 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;
   }

/* CONTACT FORM */
 
 .part-1{
    width: auto;
    height: auto;
 }

/* MAIN CONTAINER */
.main-heads{
  height: auto;
  padding: 50px;
}
.main-container{
  height: auto;
  padding: 40px;
}
.para-dv{
  width: 100%;
 }
 .paraOfAb{
  font-size: 16px;
 }
 .absy-cont{
  width: 700px;
  left: 35px;
  top: 300px;
  height: auto;
 }
 .absy-co{
  padding-bottom: 40px;
 }


 /* VISION PART */
.visionPart{
  height: auto;
}
.visionP{
  height: auto;
}

 /* ABOUT AIR CARDS */

.about-air{
  display: grid;
  place-items: center;
}

 .new-box,
 .new-box1{
  width: 90% !important;
  height: auto !important;
  }
  .new-box2{
    width: 90%;
    height: auto;
  }
 .new-box4{
  width: 700px;
  height: 350px !important;
 }
 .new-box .hope2,
 .new-box1 .hope1,
 .new-box2 .hope1,
 .new-box4 .hope1{
  font-size: 20px !important;
  }
  .new-box2 .hope-p3{
    font-size: 14px !important;
  }
 .contss1 .hope-p1{
  font-size: 14px !important;
  width: 60%;
 }
 .contss,.contss1{
  padding-bottom: 50px;
 }
 .contss .hope-p{
  font-size: 14px !important;
  width: 65%;
  text-align: justify;
 }
 .hashMg1{
  width: auto;
  left: 10px;
  top: 0;
 }
 .hashMg2{
  width: auto;
  left: 0;
  top: 0;
 }
 
 .hashMg{
  right: 20px;
 }
 .hashMg3{
  right: 10px;
  top: 30px;
 }
 
  .hashMg1 .mg1,
  .hashMg .mg,
  .hashMg2 .mg2,
  .hashMg3 .mg3{
  width: 220px;
  height: 230px;
 }
 
.about-air .new-box02{
  width: 80%;
  height: auto;
}
.new-box02 .hope-p{
  width: 100%;
  padding-bottom: 20px;
}
.new-box02 > .contss .line{
  margin-left: 220px !important;
}

/* MID CONTENT */
 
.mid-head01,
.mid-head02{
  font-size: 20px;
}
.contact-us0{
  margin-right: 50px;
}

/* AIREX CARDS */
.carts1,
.carts2,
.carts3{
  height: auto !important;
}
 .sec-con{
  padding-bottom: 40px;
 }
 /* WRAPPER */
 .card-content{
  display: grid;
  place-items: center;
  align-items: center;
 }
 .card-content p{
  font-size: 18px;
  width: 60%;
 }

    /* 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 {
      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;
    }

/* MAIN-CONTAINER */
 
.allTagLines h1{
font-size: 18px;
}
.paraOfAb{
width: 100%;
font-size: 14px;
}

.absy-cont{
display: none;
}

/* JOURNEY */
.journey{
 margin-top: 0;
}
.journey .nav-button.left{
left: 10px;
}
.journey .nav-button.right{
right: 10px;
}
.journs{
font-size: 20px !important;
}
.card-content h2{
font-size: 19px;
}
 .card-content p{
  font-size: 14px !important;
  width: 40%;
 }
 
 /* NEW BOX */
 .new-box,
 .new-box1,
 .new-box2{
 width: 80% !important;
 }
 .new-box4{
 width: 350px;
 height: 420px !important;
 }
 .contss1 .line1{
  margin-left: 25px;
 }
 
 .contss1 .hope2,
 .contss .hope-p{
  margin-left: 0;
  font-size: 18px;
  align-items: center;
 }
 .contss1 .hope-p1{
  width: 90%;
  margin-left: 20px;
 }
 .new-box2 .hope-p,
 .new-box2 .hope-p3{
  margin-left: 0 !important;
 padding-left: 20px;
 }
 .new-box2 .hope1,
 .new-box2 .line{
 margin-left: 20px !important;
 }

 .contss .hope-p{
   width: 100%;
  margin-left: 0px;
  padding-right: 40px;
 }



 .hashMg1{
  top: -60px;
 }
 .hashMg2{
 left: 0;
 top: -70px;
 }
 .hashMg{
 right: 0;
 top: -60px;
 }
 .hashMg3{
 right: 0;
 top: -40px;
 }
.hashMg1 .mg1,
.hashMg .mg,
.hashMg2 .mg2,
.hashMg3 .mg3{
width: 50px;
height: 50px;
}
/* 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;
     }

/* OUR VISION */

.visionPart{
  height: auto;
}
.visionP{
height: auto !important;
text-align: justify;
}


 .new-box02 .line{
   display: none;
 }

 /*  MID CONTENT */

 .mid-contact{
 display: grid;
 place-items: center;
 height: auto;
 }
 .contact-us0{
 margin-left: 0;
 }


/* AIREX CARTS */
.head-init{
font-size: 20px;
}
 .head-init:hover .lones{
 transform: scaleX(0.8);
 width: 400px;
 }

    /* 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: center;
        gap: 15px;
    }
    
    .cert-img {
        margin-left: 0;
        padding-left: 15px;
        width: 75px;
    }
    
    .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;
     }
    .cert-img{
      width: 60px;
    }
   .mobile-menu-icon {
    display: block !important;
  }

  .searchBar {
    display: none !important;
  }
    
    .mySlides img {
    height: 150px;
    }
    
  .head-init h2{
    font-size: 25px;
  }
   .card-content p{
  font-size: 12px !important;
  text-align: center;
  width: 30%;
 }
  .cert-img{
    width: 55px;
  }  

   /* Adjust forms */
    .container {
        width: 70%;
        margin-left: 0;
    }
    .form-controll{
        top: 50% !important;
        left: 70% !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;
     }
}

html {
  overflow-x: hidden;
}

body {
  overflow-x: hidden;
  position: relative;
}

/* * {
    max-width: 100%;
} */

img {
  max-width: 100%;
  height: auto;
}

 .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 !important;
  font-family: var(--family);
}
.mobile-menu.active {
  display: flex;
}
.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 button{
    border: none;
    background: #ff0010;
    color: white;
    height: 40px;
}
.mobile-submenu a {
    padding: 10px 20px;
    font-size: 14px;
}

.mobile-products-toggle {
    cursor: pointer;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
}

.mobile-submenu.active {
    display: flex;
}

/* ============ FIX FOR SCROLLING ISSUES ============ */
 
 
 /* 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;
}


