@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);
     --form-bg:linear-gradient(to right, #009ffd, #00cfff);
    --form-bg-01:linear-gradient(to left, #009ffd, #00cfff);
    --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;
}

/* 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;
     top: 0;
    font-family: var(--family);
    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;
}
 
 .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;
    border: 1px solid var(--primary);
    background: var(--search-bg);
    border-radius: 20px;
    text-decoration: none;
    overflow: hidden;
    margin-right: 20px;
}

.searchInput{
    width: 200px;
    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: -769px;
    display: none;
    gap: 20px;
    /* width: 1365px; */
    width: 1483px;
    background: linear-gradient(to top, skyblue, white);
    padding: 30px 150px 50px 150px;
    cursor: pointer;
    list-style: none;
}

 
.dropdown.show ul{
    display: flex !important;
}

.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: 140px;
    /* left: 50px; */
    left: 180px;
    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 */




/* 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 */




/* 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: 45vh;
    background: var(--bg09);
    display: grid;
    place-content: center;
 
}
.headnxt1{
    width: 100%;
    height: 30vh;
    display: grid;
    place-content: center;    
    transition: transform 0.8s;
    animation: 1.3s fadeInUp;
}
     @keyframes fadeInUp {
    0% {
    transform: translateY(100%);
    opacity: 0;
    }
    100% {
    transform: translateY(0%);
    opacity: 1;
    }
    }
.head1{
    display: flex;
    justify-content: center;
    color: white;
    font-family: var(--f-fmly);
    font-size: 25px;
 }
.flexfix{
    display: flex;
    justify-content: center;
    gap: 15px;
}
.spons{
    font-family: var(--f-fmly01);
    font-size: 20px;
    color: white;
}
.flexfix a{
    color: white;
}
/* header next part style start here */




/* hero section style start here */
.hero{
    width: 100%;
    background: transparent;
    padding: 40px;
}
.latest {
  display: grid;
  align-items: center;
  justify-content: start;
  gap: 5px; 
   cursor: pointer;
  font-family: var(--f-fmly);
  margin-left: 7px;
   width: 30%;
}

.line {
    margin-top: 5px;
    width: 200px;
    height: 2px;
     background: linear-gradient(to right, #00adef, #a6cc38); 
    transform: scaleX(0.2);      
    transform-origin: left;    
    transition: transform 0.4s ease;    
}
.latest:hover .line{
     width: 200px;
    transform: scaleX(1);    
}

 .lots{
    font-size: 2rem;
    background: linear-gradient(to right, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;    
 }
 
.hero1{
    width: 100%;
    height: auto;    
    padding:40px 0 40px 10px;
    display: flex;
    justify-content:space-between;
}
.cards-flex{
    width: 70%;
    height: auto;  
     display: flex;
    flex-wrap: wrap;
    justify-content: start;
    gap: 30px;
 

}
 
 
.latexBlog {
  width: 129vh;
  height: 90vh;
  background: white;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  overflow: hidden; /* important for clipping the zoom */
  position: relative;
  margin-bottom: 60px;
 }
 .latexBlog:hover{
    animation: liftUp 0.4s forwards ease-out;
 }
 
.latexBlog.visible {
  opacity: 1;
  transform: translateY(0);
}
.latexBlog .tagLines{
    margin-top: 40px;
    font-size:25px ;
    display: flex;
    justify-content: start;
    padding-left: 20px;
    flex-wrap: wrap;
    font-family:var(--f-fmly) ;
    font-weight:700 ;   
    transition: transform 0.4s ease;  
 
}
.latexBlog .cards-p{
    font-size: 16px;
    transition: transform 0.4s ease;  
}
.latexBlog:hover .cards-p{
    padding-left: 40px;
    padding-right: 40px;
}
.latexBlog:hover .tagLines{
    padding-left: 40px;
}
.latexBlog:hover .cards-p,
.latexBlog:hover .tagLines{
  transform: scale(1.03);
 
}
.imgSet{
    width: 100%;
    height:40vh ;
    overflow: hidden;
    box-sizing: border-box;
}
.whyMg1 {
  width: 100%;
  transition: transform 10s ease;
  display: block;
    /* width: 129vh; */
    height:40vh ;
    /* object-fit: contain; */
    object-fit: cover;
}
.imgSet1{
     width: 100%;
    height:30vh ;
    overflow: hidden;
    box-sizing: border-box;
}
 
.cards:hover .whyMg{
    transform: scale(1.2);
}
/* Zoom image when hovering the card */
.latexBlog:hover .whyMg1 {
  transform: scale(1.2);
}
.latexBlog:hover{
    /* background: var(--form-bg-01); */
/* background: var(--form-bg-01); */
background-image: url('../../all-imgs/landing\ page/hover-img.webp');
}
.latexBlog:hover .tagLines,
.latexBlog:hover .cards-p,
.latexBlog:hover .gobi{
    color: black;
}
.latexBlog:hover .replaceR{
 
    color: white;
 }
.latexBlog:hover .replaceR > .gobi{
color: white;
 }
.latexBlog:hover .replaceR{
 margin-top: 18px;
 box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.latexBlog .replaceR:hover{
 background: linear-gradient(to right, #00adef, #a6cc38); 
}
.reading{
    display: grid;
    place-content: start;
    /* width: 100%; */
    width: 55%;
    cursor: pointer;
 }
.reading .keep{
    font-size: 28px;
    font-family: var(--f-fmly);
    font-weight: 600;  
}
.keep{
    background: linear-gradient(to right, #00adef, #a6cc38); 
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;    
    cursor: pointer;   
}
.reading .horps{
    margin-top: 5px;
    width: 200px;
    height: 2px;
    /* background: black; */
    background: linear-gradient(to right, #00adef, #a6cc38); 
    transform: scaleX(0.2);     /* 60px / 300px = 0.2 */
    transform-origin: left;   /* Expand outward from center */
    transition: transform 0.4s ease;    
}
.reading:hover .horps{
    width: 180px;
    transform: scaleX(1);
}
 
.cards {
    width: 45%;
    height: 85vh;
    margin-top: 20px;
    background: rgb(255, 255, 255);
    opacity: 0;
    transform: translateY(0);
    transition: all 0.6s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

/* Hover effect: lift upward */
 
  
.cards:hover{
    background-image: url('../../all-imgs/landing\ page/hover-img.webp');
    animation: liftUp 0.4s forwards ease-out;
    cursor: pointer;
 
}
@keyframes liftUp {
    0% {
        transform: translateY(0);
        box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
    }
    100% {
        transform: translateY(-12px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    }
}

.cards .replaceR1:hover{
 background: linear-gradient(to right, #00adef, #a6cc38); 
}
/* .cards:hover .cards-p, */
.cards:hover .tagLines{
    padding-left: 27px;
    padding-right: 25px;
    transform: scale(1.03);    
}
.cards.visible {
  opacity: 1;
  transform: translateY(0);
}
.whyMg{
    width: 397px;
    height: 30vh;
    object-fit:cover ;
      transition: transform 10s ease;
}
.cards .tagLines{
    margin-top: 20px;
    font-size:22px ;
    /* text-align: center; */
    display: flex;
    justify-content: start;
    padding-left: 20px;
    flex-wrap: wrap;
    font-family:var(--f-fmly) ;
    /* font-family: Arial, sans-serif; */
    font-weight:700 ;

}
.cards .tagLines1{
    margin-top: 20px;
    font-size:22px ;
    /* text-align: center; */
    display: flex;
    /* justify-content: start; */
    flex-wrap: wrap;
    font-family:var(--f-fmly) ;
    font-weight:700 ;
    padding-left: 20px;
}
 
.cards-p{
    margin-top: 10px;
    font-size:15px ;
    font-family:var(--f-fmly01) ;
    font-weight: 400;
    text-align: justify;
    line-height: 1.4;
    padding: 0 25px 0 25px;
    transition: transform 0.4s ease;  
}
.replaceR{
 margin-top: 30px;
 width: 160px;
 height: 40px;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 5px;
 margin-left: 26px;
 background: var(--form-bg-01);
 padding-top: 20px;
 padding-bottom: 20px;
font-family: var(--f-fmly01);
    font-size: 16px;
    color: white;     
 
}
.replaceR1{
     margin-left: 26px;
     margin-top: 30px;
 width: 100px;
 height: 40px;
 font-size: 13px;
 display: flex;
 justify-content: center;
 align-items: center;
 border-radius: 5px;
 background: var(--form-bg-01);
 color: white;
  padding-top: 20px; 
 padding-bottom: 20px;
 box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}
.replaceR1 .gobi,
.replaceR .gobi{
    font-size: 12px;
    color: white;
}
 
.gobi{
    color: var(--second);
    font-size: 14px;
    margin-top: 3px;
    margin-left: 5px;
}
 
.card-flex1{
    width: 30%;
    height: 290vh;
    background: white;
    background: white;
    padding: 10px 30px;
  
}
 
.cont-lft{
    width: 100%;
    height: auto;
    background:white; 
    display: grid;
    place-items: center;
    gap: 30px;
     padding-bottom: 30px;
}
.searchOg{
   
    /* border: 1px solid black; */
    padding-bottom: 30px;
}
.txt{
    font-family: var(--f-fmly01);
    font-size: 18px;
    font-weight: 500;
    padding: 20px 0 25px 0;
}
.contains{
    display: flex;
    align-items: center;
    gap: 20px;
}
.searchInOn{
    padding: 0 10px 0 10px;
    width: 250px;
    height: 40px;
    border: 1px solid #F0F4F1;
    border-radius: 5px;
    outline: none;
}
.searchInOn:focus{
    border: 1px solid var(--second);
    color: rgb(165, 164, 164);
}
.searchInOn:focus::placeholder{
    color: grey;
}
.spnOg{
    width: 40px;
    height: 40px;
    padding: 10px;
    background-color: var(--second);
    border-radius: 5px;
}
.spnOg:hover{
    background: white;
    border: 1px solid var(--second);
}
.spnOg:hover i{
color: var(--second);
}

.blog-filters{
 
    width: 100%;
}
.filter{
    width: 70px;
    height: 35px;
    border: none;
    color: var(--second);
    cursor: pointer;
    font-family: var(--f-fmly01);
    font-size: 15px;
    background: none;
}
.filter.active{
    background: var(--second);
    color: white;
    border-radius: 5px;
}
.filter:focus{
    background: var(--second);
    color: white;
    border-radius: 5px;
}
.obi{
    width: 100%;
    height: 2px;
    background-color: grey;
}

.newCards{
    width: 100%;
    height: 100px;
    display: flex;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;

}
.newCards:hover{
    animation: liftUp 0.4s forwards ease-out;  
    cursor: pointer;
}
.newCards.visible {
  opacity: 1;
  transform: translateY(0);
}
.n-mg{
    width: 25%;
    height: 100px;
    /* border-right: 1px solid red; */
}
.d-mg{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.n-mg1{
    width: 75%;
    display: grid;
    place-content: center;
    padding: 0 10px 10px 10px ;
    gap: 10px;
}
.heards{
    font-size: 20px;
    font-family: var(--f-fmly01);
}
.heards1{
    font-size: 14px;
    font-family: var(--f-fmly01);
}
/* hero section style start here */


/*  paginations */
.pagination-container {
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
}

.pagination-container button {
  margin: 0 5px;
  padding: 8px 14px;
  border: none;
  background-color: #007bff;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.pagination-container button.active {
  background-color: #0056b3;
}

.pagination-container button.disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
/*  paginations */





/* 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{
    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 */


/*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;
 }
}

/* 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;
     }
.n-mg1{
    width: 50%;
  }
 .heards{
    font-size: 14px;
 }
 .newCards{
    width: auto;
  }
 
  .cards{
    height: auto;
  }
 .obi{
    display: none;
 }

    /* 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;
 } */


 .latest{
    width: auto;
  }
  .hero1{
     width: 100%;
  }
  /* .cards-flex{
    border: 1px solid black;
  } */
  .latexBlog{
    width: 500px;
    height: auto;
   }
  .latexBlog .tagLines{
    font-size: 20px;
  }
  .latexBlog .whyMg1{
    width: 100%;
  }
  .card-flex1{
    display: none;
  }


    /* 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;
    }
  
 

 /* mid contact  */

 


    /* 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: 15px;
    }
    .second,.third,.fourth{
         place-items: start;
        width: auto;
     }
     .second{
        padding-left: 0;
     }
 .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;
        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;
    }
    
  .card-flex1{
    display: none;
  }

  .cert-img{
    width: 50px;
  }  
}

 
/* ---------------------------------- */

/* ============ BLOG PAGE MEDIA QUERIES ============ */

/* Large screens (min-width: 1200px) */
@media screen and (min-width: 1200px) {
    .hero {
        padding: 40px 5%;
    }
    
    .cards-flex {
        width: 75%;
        gap: 40px;
    }
    
    .latexBlog {
        width: 95%;
        height: auto;
        min-height: 600px;
    }
    
    .card-flex1 {
        width: 30%;
     }
}

/* Tablets and smaller desktops (max-width: 1199px) */
@media screen and (max-width: 1199px) {
    .hero {
        padding: 30px 20px;
    }
    
    .hero1 {
        flex-direction: column;
        padding: 30px 0;
    }
    
    .cards-flex {
        width: 100%;
        justify-content: center;
        gap: 25px;
    }
    
    .latexBlog {
        width: 100%;
        max-width: 600px;
        height: auto;
        margin: 0 auto 40px;
    }
    
    .card-flex1 {
        width: 100%;
        height: auto;
        margin-top: 40px;
    }
    
    .cont-lft {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .latest {
        width: 50%;
        margin-left: 0;
    }
    
    .reading {
        width: 70%;
    }
}

/* Tablets (max-width: 992px) */
@media screen and (max-width: 992px) {
    .headnxt {
        height: auto;
        padding: 40px 20px;
    }
    
    .headnxt1 {
        height: auto;
    }
    
    .head1 {
        font-size: 22px;
        text-align: center;
    }
    
    .flexfix {
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .hero {
        padding: 20px 15px;
    }
    
    .cards {
        width: 100%;
        max-width: 400px;
        height: auto;
        margin: 20px auto;
    }
    
    .whyMg {
        width: 100%;
        height: 250px;
    }
    
    .tagLines, .tagLines1 {
        font-size: 20px;
        padding: 0 15px;
    }
    
    .cards-p {
        padding: 0 15px;
        font-size: 14px;
    }
    
    .replaceR, .replaceR1 {
        margin: 20px auto;
        width: 140px;
    }
}

/* Mobile devices (max-width: 768px) */
@media screen and (max-width: 768px) {
    .headnxt {
        height: 30vh;
        padding: 30px 15px;
    }

   /* 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;
   }  
    
    .head1 {
        font-size: 20px;
    }
    
    .spons {
        font-size: 16px;
    }
    
    .hero {
        padding: 20px 10px;
    }
    .latest{
         padding-left: 70px;
    }
    .reading{
         padding-left: 70px;
    }
    .latest {
        width: 100%;
        margin-left: 0;
        text-align: center;
    }
    
    .lots {
        font-size: 1.8rem;
    }
    
    .reading {
        width: 100%;
        text-align: center;
        margin-top: 20px;
    }
    
    .reading .keep {
        font-size: 24px;
    }
    
    .cards-flex {
        gap: 20px;
    }
    
    .latexBlog {
        width: 100%;
        height: auto;
        margin-bottom: 30px;
    }
    
    .imgSet {
        height: 30vh;
    }
    
    .whyMg1 {
        height: 30vh;
    }
    
    .latexBlog .tagLines {
        font-size: 22px;
        padding: 0 15px;
        margin-top: 20px;
    }
    
    .cards-p {
        font-size: 14px;
        line-height: 1.5;
        padding: 0 15px;
    }
    
    .replaceR {
        margin: 10px 10px;
        width: 140px;
    }
 
    .cards .replaceR1{
        margin: 10px 10px;
    }
    /* Blog filters and sidebar */
    .card-flex1 {
        padding: 20px 15px;
    }
    
    .contains {
        flex-direction: column;
        gap: 10px;
    }
    
    .searchInOn {
        width: 100%;
    }
    
    .spnOg {
        width: 100%;
        text-align: center;
    }
    
    .blog-filters {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        justify-content: center;
    }
    
    .filter {
        width: auto;
        padding: 8px 15px;
    }
    
    .newCards {
        height: auto;
        flex-direction: column;
        margin-bottom: 20px;
    }
    
    .n-mg {
        width: 100%;
        height: 150px;
    }
    
    .d-mg {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .n-mg1 {
        width: 100%;
        padding: 15px;
        text-align: center;
    }
    
    .heards {
        font-size: 18px;
    }
    
    .heards1 {
        font-size: 14px;
    }
    
    /* Pagination */
    .pagination-container {
        margin: 20px 0;
    }
    
    .pagination-container button {
        padding: 6px 12px;
        margin: 2px;
        font-size: 14px;
    }
}

/* Small mobile devices (max-width: 576px) */
@media screen and (max-width: 576px) {
    .headnxt {
        height: 25vh;
        padding: 20px 10px;
    }
    
    .head1 {
        font-size: 18px;
    }
    
    .spons {
        font-size: 14px;
    }
    
    .flexfix {
        gap: 10px;
    }
    
    .hero {
        padding: 15px 5px;
    }
    
    .lots {
        font-size: 1.5rem;
    }
    
    .reading .keep {
        font-size: 20px;
    }
    .latest{
         padding-left: 0 !important;
    }
    .reading{
         padding-left: 0 !important;
    }
    .latest .line{
        margin-left: 20px !important;
     }
    .reading{
         padding-left: 0 !important;
    }
  
    .reading .horps{
         width: 80px;
    }
    
    
    .cards {
        width: 100%;
        margin: 15px 0;
    }
    
    .whyMg {
        height: 200px;
    }
    
    .tagLines, .tagLines1 {
        font-size: 18px;
        padding: 0 10px;
    }
    
    .cards-p {
        font-size: 13px;
        padding: 0 10px;
    }
    
    .latexBlog .tagLines {
        font-size: 20px;
        padding: 0 10px;
    }
    
    .imgSet, .imgSet1 {
        height: 25vh;
    }
    
    .whyMg1 {
        height: 25vh;
    }
    
    .replaceR, .replaceR1 {
        width: 120px;
        height: 35px;
        font-size: 14px;
        margin: 15px 10px;
    }
    
    .gobi {
        font-size: 12px;
    }

     /* 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;
     }


    /* Animation adjustments for mobile */
    .latexBlog:hover .tagLines,
    .latexBlog:hover .cards-p {
        transform: none;
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .cards:hover {
        animation: none;
        transform: none;
    }
}

/* Very small mobile devices (max-width: 400px) */
@media screen and (max-width: 400px) {
    .headnxt {
        height: 20vh;
    }
    
    .head1 {
        font-size: 16px;
    }
    
    .lots {
        font-size: 1.3rem;
    }
 
    .latest .line{
        margin-left: 20px !important;
     }
    .reading{
         padding-left: 0 !important;
    }
  
    .reading .horps{
         width: 80px;
    }
    
    .tagLines, .tagLines1 {
        font-size: 16px;
    }
    
    .cards-p {
        font-size: 12px;
    }
    
    .imgSet, .imgSet1 {
        height: 20vh;
    }
    
    .whyMg, .whyMg1 {
        height: 20vh;
    }
    
    .replaceR, .replaceR1 {
        width: 110px;
        height: 32px;
        font-size: 12px;
    }
    
    .pagination-container button {
        padding: 5px 10px;
        font-size: 12px;
    }

       /* 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;
     }
}

/* Fix for image zoom on mobile */
@media screen and (max-width: 768px) {
    .latexBlog:hover .whyMg1,
    .cards:hover .whyMg {
        transform: none;
    }
    
    .latexBlog:hover {
        background-image: none;
        background: white;
    }
    
    .latexBlog:hover .tagLines,
    .latexBlog:hover .cards-p,
    .latexBlog:hover .gobi {
        color: inherit;
    }
}

/* Ensure content doesn't overflow on very small screens */
@media screen and (max-width: 320px) {
    .hero {
        padding: 10px 5px;
    }
    
    .cards-flex {
        gap: 15px;
    }
    
    .tagLines, .tagLines1 {
        font-size: 15px;
    }
    
    .cards-p {
        font-size: 11px;
    }
}
/* --------------------------------- */
/* ============ 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 button{
    border: none;
    background: #ff0010;
    color: white;
    height: 40px;
}
.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-products-toggle {
    cursor: pointer;
    font-size: 16px;
    padding: 15px 20px;
    display: block;
}

.mobile-submenu.active {
    display: flex;
}
