*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family: sans-serif;
}

/* ====== HERO BACKGROUND ====== */
.hero{
  height:600px;
  background: url("images/hero_img.png");
  background-size:cover;
  background-position:center;
  display:flex;
  flex-direction:column;
}

/* ====== NAVBAR ====== */
.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:28px 4%;
}
.logo img{
  width:4.5rem;
  border-radius: 6px;
}
/* MENU */
.nav-links{
  display:flex;
  list-style:none;
  gap:10px;
  align-items:center;
   background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius:20px;
  padding:10px;
  z-index: 100;
}

.nav-links li a{
  text-decoration:none;
  color:#eee;
  font-size:1rem;
  opacity:.9;
}

.nav-links li a:hover{
  color:#E68133;
}
.nav-links li img{
    width:20px;
    color:#fff;
}
.contact-btn{
  background:linear-gradient(to right, #E68133  0%, #C9302E 100% );
  padding:14px 20px;
  color:white;
  border-radius:24px;
  font-size:14px;
  text-decoration:none;
 
}
.menu-toggle{
  font-size: 32px;      /* ICON SIZE */
  padding: 10px 14px;  /* TAP AREA */
}
/* ====== HERO CONTENT ====== */
.hero-content{
  flex:1;
  display:flex;
  align-items:center;
  justify-content: center;
  text-align: center;
  padding:0 8%;
}

.hero-text{
 /* max-width:650px;*/
  color:white;
}

.hero-text h1{
  font-size:2rem;
  line-height:1.2;
  margin-bottom:20px;
}

.hero-text p{
  color:#ddd;
  margin-bottom:35px;
  font-size:1.1rem;
}

.hero-buttons{
  display:flex;
  align-items: center;
  justify-content: center;
  gap:20px;
  
}

.hero-buttons a{
  text-decoration:none;
  padding:10px 20px;
  border-radius:30px;
  font-size:1.2rem;

}

.btn-outline{
  border:1px solid #E68133;
  color:white;
   background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.btn-outline:hover{
  background: rgba(158, 158, 158, 0.12); 
}
.btn-fill{
 border:1px solid #E68133;
  color:white;
   background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  
}
.btn-fill:hover{
   background:rgba(158, 158, 158, 0.12); 
}


/* ====== MOBILE ====== */
.menu-toggle{
  display:none;
  font-size:22px;
  color:white;
  cursor:pointer;
}

@media(max-width:992px){
    
  .nav-links{
    position:absolute;
    top:80px;
    right:15px;
    align-items: flex-start;
    flex-direction:column;
    width:200px;
    
    display:none;
    padding:20px;
  }

  .nav-links.active{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .hero-text h1{
    font-size:38px;
  }
  .nav-links li img{
    display:none;
    
}
.contact{
 margin-top: 0.6rem;
/* align-self: center;*/
}
.contact-btn{
 
  padding:12px 14px;
  font-size:14px;

}
}

@media screen and (min-width:993px){
    .hero{
 min-height:100vh;

}
   .logo img{
  width:6.5rem;
  border-radius: 6px;
} 
.nav-links{
  gap:16px;
  border-radius:50px;
  padding:20px;
}
.nav-links li{
    text-align: center;
}
.nav-links li a{
   font-size:1.2rem;
 
}
.nav-links li img{
  margin-left: 0.8rem;
}
.hero-text h1{
  font-size:3rem;
 }

.hero-text p{
   font-size:1.3rem;
}
.hero-buttons{
 gap:20px;
}

.hero-buttons a{
 
  padding:12px 32px;
  border-radius:50px;
  font-size:1.4rem;
}

}
@media screen and (max-width:767px) {
    .hero{
        height:350px;
    }
     .logo img{
  width:4rem;
  border-radius: 6px;
} 
    .nav-links{
      top:75px;
   }
.hero-text h1{
    font-size:1.55rem;
    margin-bottom: 10px;
  }
  .hero-text p{
   font-size:1.08rem;
   margin-bottom: 15px;
}
.hero-buttons{
 /* flex-direction: column;*/
 gap:10px;
 margin-bottom: 10px;
}

.hero-buttons a{
  padding:8px 10px;
  font-size:1rem;
}


}
@media screen and (max-width:359px){
  .hero-buttons a{
  padding:8px;
  font-size:0.95rem;
}
}

@media screen and (min-width:1024px) and (max-width:1400px) {
   .hero{
    min-height:40vh;
}
.nav-links{
  gap:4px;
  border-radius:50px;
  padding-block:25px
}
.navbar{
  padding:28px 1%;
}
.hero-buttons a{
  padding:18px 32px;
  font-size:1.4rem;
}
}

/* vision section styling */

.vision-section{
  position: relative;
  padding: 60px 4%;
  background: #ffffff;
  text-align: center;
}
/* ===== LEFT TEXT ===== */
.vision-text{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.vision-text h1{
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: #000;
}

.vision-text p{
  font-size: 1.1rem;
  line-height: 1.5;
  color: #444;
  margin-bottom: 20px;
  max-width: 640px;
}

.highlight-orange{
  color: #E68133;
  font-weight: 600;
}

.highlight-green{
  color: #0AAC9D;
  font-weight: 600;
}

.vision-quote{
  margin-top: 10px;

}

/* ===== RIGHT IMAGE ===== */
.vision-image{
  flex: 1;
  text-align: right;
}

.vision-image img{
  width: 100%;
  max-width: 420px;
}

/* ===== MOBILE RESPONSIVE ===== */
@media(max-width: 993px){
  .vision-container{
    flex-direction: column;
    text-align: center;
  }

 /* .vision-image{
    text-align: center;
  }*/

  .vision-text h1{
    font-size: 40px;
  }
}
@media screen and (max-width:767px) {
 .vision-image{
    text-align: center;
  }

  .vision-text h1{
    font-size: 1.8rem;
  }
  .vision-text p{
  font-size: 1rem;
  max-width: 22rem;
}
.vision-image img{
  width: 100%;
  width: 250px;
  
}
}
@media screen and (max-width:400px) {
   .vision-text h1{
    font-size: 1.6rem;
  }
  .vision-text p{
  font-size: 0.95rem;
  max-width: 18rem;
}
}
@media screen and (min-width:993px){
  .vision-text h1{
  font-size: 3rem;
}

.vision-text p{
  font-size: 1.25rem;
  max-width: 1100px;
}
.vision-image img{
  width: 100%;
  max-width: 620px;
}
}
@media screen and (min-width:1024px) and (max-width:1400px){
  .vision-text p{
  font-size: 1.25rem;
  max-width: 900px;
}
.vision-image img{
  width: 100%;
  max-width: 520px;
 margin-right: 0.5rem;
}
}
/* Flagship section styling */

.flagship-section{
  height:800px;
  background-color: #EEEEEE;
  position: relative;
  }
.flagship-section .flagship_img{
  width:100%;
  height:100%;
 
}
 .flagship-section .flagship-title{
   position: absolute;
    top:30px;
    left:50%;
    transform: translateX(-50%);
    font-size: 2rem;
    font-weight: 700;
   
    
  }
  .flagship-title img{
    width:6rem;
    margin-bottom: 1rem;
  }
.flagship-wrapper{
  display: flex;
  justify-content: space-between;
  position: absolute;
  top:60px;
  left:0;
  right:0;
  bottom:0;
 padding:20px 20px;
 
}
.flagship-left{
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  margin-top: 2rem;
 }
.title_btn{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:2rem;
  margin-bottom: 1rem;
  width:18rem
}
.title_btn .visit-btn{
  text-decoration:none;
  padding:8px 36px;
  border-radius:30px;
  font-size:1.2rem;
  border:1px solid #000;
 background-color: #000;
  color:#fff;
  transition: all 0.3s ease;
}
.title_btn .visit-btn:hover{
transform: scale(1.1);
background-color: #302f2f;
}
 .title_btn h1{
  font-size: 1.6rem;
  font-weight: 600;
  text-align: start;
}
.flagship-left p, .flagship-right p{
  width:22rem;
  text-wrap: wrap;
  
}
.product-images{
 display: flex;
}
.product-images .mobile1{
  width:180px;
  
}
.left-images .mobile2{
  margin-top: 2rem;
  width:140px;
  height:250px;
}

.flagship-right{
 display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-self: flex-end;
  color:#fff
}

.right-images{
 display: flex;
 justify-content: center;
 align-items: center;
}
.product-images .mobile3{
  width:200px;
  height:280px;
  margin-top: 3rem;
}
.product-images .mobile4{
  width:180px;
  height:350px;
}
.title_btn1{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:2rem;
  margin-bottom:1rem;
  width:22rem;
}
 .title_btn1 h1{
  font-size: 1.6rem;
  font-weight: 600;
  text-align: start;
}
 .title_btn1 .visit-btn1{
  text-decoration:none;
   padding:8px 36px;
  border-radius:30px;
  font-size:1.2rem;
  border:1px solid #fff;
  color:#fff;
   background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: all 0.3s ease;
}
.title_btn1 .visit-btn1:hover{
  transform: scale(1.1);
   background: rgba(121, 121, 121, 0.12);
}


@media screen and (max-width:767px) {
  .flagship-section{
  height:1240px;
 
}
  .flagship-wrapper{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding:0px;
}
.flagship-left{
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  margin-block: 1rem;
  padding-left: 1rem;

 }
 .flagship-right{
   width:100%;
 display: flex;
  flex-direction: column;
   justify-content: flex-start;
  align-items: flex-start;
  background-color: #0AAC9D;
  padding-top: 2rem;
  padding-left: 1rem;
  margin-top: 1rem;
}
.flagship-section .flagship_img{
  display: none;
}
.flagship-section .flagship-title{
   position: absolute;
    top:30px;
    left:50%;
    font-size: 1.6rem;
    text-wrap: nowrap;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
   }
  .flagship-title img{
    width:8rem;
    margin-bottom: 2rem;
    order:2;
 }
 .title_btn{
  display: flex;
  justify-content: center;
  width:10rem;
  margin-top: 2rem;
}

.title_btn1{
  width:10rem;
  margin-bottom:1rem;
}
.title_btn h1, .title_btn1 h1{
  font-size: 1.5rem;
  padding-top: 2rem;
}
 .title_btn .visit-btn{
   display: none;
}
 .title_btn1 .visit-btn1{
  display: none;
}
.title_btn .visit-img1 img{
  width:3rem;
  margin-top: 1rem;
}
.title_btn1 .visit-img2 img{
  width:3.5rem;
   margin-top: 1rem;
}
.left-images{
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-images{
  order:2
}

}
@media screen and (max-width:359px){
  .flagship-left p, .flagship-right p{
  width:20rem;
  text-wrap: wrap;
  
}
}
@media screen and (min-width:768px) and (max-width:900px) {
   .flagship-section .flagship-title{
   position: absolute;
    top:20px;
    left:45%;
    font-size: 1.6rem;
    text-wrap: nowrap;
    display: flex;
    justify-content: center;
    align-items: center;
   }
  .product-images .mobile1{
  width:160px;
  height:280px;
  
}
.left-images .mobile2{
  margin-top: 2rem;
  width:120px;
  height:200px;
}
.product-images .mobile3{
  width:200px;
  height:220px;
  margin-top: 5rem;
}
.product-images .mobile4{
  width:180px;
  height:320px;
}
}
@media screen and (max-width:400px) {
 .flagship-section{
  height:1250px;
}
 .flagship-left{
  margin-top: 3rem;
 }
 
.flagship-section .flagship-title{
   left:50%;
   transform: translateX(-50%);
   font-size: 1.6rem;
  }
.product-images .mobile3{
  width:180px;
  height:220px;
  margin-top: 3rem;
 }
.product-images .mobile4{
  width:170px;
  height:350px;
}
}
@media screen and (min-width:768px) {
  .visit-img1, .visit-img2{
 display:none;
}
}
@media screen and (min-width:993px) {
  .flagship-section{
  height:1150px;
  background-color: #EEEEEE;
   position: relative;
}
.flagship-section .flagship-title{
   font-size: 3rem;
}
.flagship-title img{
  width:10rem;
  
}
  .flagship-wrapper{
    padding:60px 100px 20px 100px;
  }
 
   .flagship-left p, .flagship-right p{
  width:35rem;
  font-size: 1.3rem;
}

.product-images .mobile1{
  width:280px;
  
}
.left-images .mobile2{
  margin-top: 3rem;
  width:220px;
 height:400px;
}
/*
.flagship-center{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:150px;
 
}
.flagship-center a{
  padding:10px 40px;
  font-size:1.4rem;
 
}*/

.title_btn{
   width:20rem
}
.title_btn .visit-btn{
  padding:10px 54px;
  font-size:1.4rem;
}
 .title_btn h1{
  font-size: 2rem;
}
.flagship-left p, .flagship-right p{
  width:28rem;
  text-wrap: wrap;
  font-size: 1.2rem;
}

.product-images .mobile3{
  width:380px;
  height:380px;
 margin-top: 7rem;
 
}
.product-images .mobile4{
  width:350px;
  height:auto;
}
.title_btn1{
   width:28rem
}
.title_btn1 .visit-btn1{
  padding:10px 54px;
  font-size:1.4rem;
}
 .title_btn1 h1{
  font-size: 2rem;
}

}

@media screen and (min-width:1024px) and (max-width:1400px){
   .flagship-section{
  height:1780px;
   padding:80px;
}
  .flagship-wrapper{
   display: flex;
  flex-direction: column;
  justify-content: center;
 padding: 0;
 
}
.flagship-section .flagship-title{
   font-size: 3rem;
}
.flagship-title img{
  width:10rem;
  }
  .flagship-left p, .flagship-right p{
  width:42rem;
  text-wrap: wrap;
  
}
.flagship-left{
  width:100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding-top: 80px;
  padding-left: 180px;
}
 .flagship-right{
   width:100%;
 display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  background-color: #0AAC9D;
 
  margin-top: 3rem;
  padding-top: 70px;
  padding-left: 180px;
}
.flagship-section .flagship_img{
  display: none;
}
.flagship-section .flagship-title{
   position: absolute;
    top:40px;
    left:50%;
    font-size: 2.8rem;
    text-wrap: nowrap;
   }
  .flagship-title img{
    width:10rem;
    margin-bottom: 1rem;
 }
  .title_btn{
  width:20rem;
  padding-top: 4rem;
  padding-bottom: 1rem;
  
}
.title_btn1{
  width:28rem;
  margin-bottom:1rem;
  
}
.title_btn h1, .title_btn1 h1{
  font-size: 2rem;
}
 .title_btn .visit-btn{
   font-size:1.4rem;
}
 .title_btn1 .visit-btn1{
   font-size:1.4rem;
}
.left-images{
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-images{
  order:2
}
.product-images .mobile3{
  width:420px;
  height:450px;
  margin-top: 0rem;
}

}


/* services section styling */

.services-section {
  padding: 60px 4%;
  background: #fff;
  text-align: center;
 
}
.main-heading {
   font-size: 2rem;
  font-weight: 600;
}
.main-heading img{
  width:5rem;
  
}
.sub-heading {
  font-size: 1.8rem;
  color: #776D62;
  margin-bottom: 24px;
   font-weight: 600;
}
.services-desc {
  max-width: 800px;
  margin: 0 auto 50px;
  color: #313131;
  font-size: 1.2rem;
}

/* ============================
   AUTO MOVING SLIDER
============================ */

.auto-slider-wrapper {
  width: 100%;
  overflow: hidden;
/*  padding-bottom: 20px;*/
  position: relative;
}

.auto-slider-track {
  display: flex;
  gap: 20px;
  width: max-content;
  will-change: transform;
  animation: slideMove 20s linear infinite;
}

/* ✅ CONTINUOUS LEFT → RIGHT MOVEMENT */
@keyframes slideMove {
 /* from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-1 * var(--scroll-width)));
  }*/
  from {
    transform: translateX(0%);
  }
  to {
    transform: translateX(-50%);
  }
}
/* ✅ PAUSE ON HOVER 
.auto-slider-wrapper:hover .auto-slider-track {
  animation-play-state: paused;
}
*/

/* SERVICE CARD */
.service-card {
 /* min-width: 260px;*/
  min-width:300px;
  width:350px;
  background: #fafafa;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s ease;
 }

.service-card img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
   display:block;
   background-color: #E68133;
}
.service-card p {
  font-size: 1.4rem;
  font-weight: 600;
  padding: 15px 0;
}

@media screen and (max-width:767px){
  .services-section {
  padding: 60px 0% 20px 0%;
 }
  .main-heading {
    display: flex;
    flex-direction: column;
  justify-content:center ;
  align-items: center;
  font-size: 1.5rem;
 
}
.main-heading img{
  width:5rem;
  order:2
}
.sub-heading {
  font-size: 1.5rem;
  margin-top: 1.2rem;
}
.services-desc {
  max-width: 350px;
  font-size: 0.98rem;
}
.service-card {
  min-width:250px;
  width:250px;
}
.service-card img {
  width: 100%;
  height: 250px;
}

.service-card p {
  font-size: 1.3rem;
}
}
@media screen and (max-width:400px){
.main-heading {
  display: flex;
  justify-content: center;
  font-size: 1.4rem;
  text-wrap: nowrap;
   text-align: center;
}
.main-heading img{
  width:4rem;
}
.sub-heading {
  font-size: 1.4rem;
}
.services-desc {
  max-width: 320px;
 }
 .service-card p {
  font-size: 1.2rem;
}
}
@media screen and (min-width:993px) {
  .main-heading {
  font-size: 3rem;
}
.main-heading img{
  width:7rem;
}
.sub-heading {
  font-size: 2.4rem;
  margin-bottom: 20px;
 
}
/* SERVICE CARD */
.service-card {
  min-width: 240px;
  min-width: 420px;
 }
.service-card p {
  font-size: 1.6rem;
}
.service-card img {
   height: 400px;
 }
}


/* Foundation section styling */

.foundation-section {
 padding: 10px 4%;
  background: #fff;
  
}

.foundation-title {
  text-align: center;
  font-size: 1.8rem;
  font-weight:600;
  color: #776D62;
  margin-bottom: 80px;
  position: relative;
}

.foundation-title::after {
  content: "";
  width: 50%;
  height: 1px;
  background: #f47c20;
  background: linear-gradient(to right, #E68133 0%, #FFFFFF 100%);

  position: absolute;
  left: 50%;
  bottom: -15px;
  transform: translateX(-50%);
}

.foundation-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 20px;
}

/* LEFT CARD GRID */
.foundation-cards {
  display: flex;
  flex-direction: row;
 /* flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);*/
  gap: 20px;
  
}

/* CARD STYLE */
.foundation-card {
  width:280px;
  background: #fff;
  border-radius: 20px;
  padding: 35px 15px;
  text-align: center;
  box-shadow: 0 1px 30px rgba(0,0,0,0.22);
}
.foundation-card:hover {
  transform: translateY(-10px);
}
.foundation-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 20px 0 12px;
}

.foundation-card p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
  margin-top: 1.5rem;
}

/* ICON */
.foundation-card .icon img {
  width: 55px;
}

.foundation-center-card{
  position: relative;
  width:100%;
 display: flex;                /* ✅ NOT grid */
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
 }
/* RIGHT IMAGE */
.foundation-image {
 /* text-align: right;*/
 position: absolute;
  bottom:0;
  right:0;
}

.foundation-image img {
  width: 100%;
  max-width: 250px;
}
.foundation-center-card .foundation-card{
  margin: 0 auto; 
}
/* ==========================
   RESPONSIVE
========================== */


@media (max-width: 767px) {
  .foundation-cards {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:40px;
  }
  .foundation-card{
  width:330px;
}
.foundation-center-card{
  height:660px;
  position: relative;
  width:100%;
 display: flex; 
 flex-direction: column;  
  justify-content: space-between;
 
  align-items: center;
}
 .foundation-center-card .foundation-card{
   width:330px;
   
}
  .foundation-title {
    font-size: 1.6rem;
  }
.foundation-image {
 /* text-align: right;*/
 
 position: absolute;
  bottom:0;
  right:0;
  left:50px;
}
.foundation-title::after {
   width: 90%;
}
}
@media screen  and (min-width:768px) and (max-width:900px){
 
.foundation-grid {
  flex-direction: column;
}

/* LEFT CARD GRID */
.foundation-cards {
 /* display: flex;
  flex-direction: column;*/
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  
}

/* CARD STYLE */
.foundation-card {
  width:320px;
}
.foundation-center-card{
   height:400px;
}
/* RIGHT IMAGE */
.foundation-image img {
  width: 100%;
  max-width: 300px;
}
.foundation-center-card .foundation-card{
 position: absolute;
 left:10px;
 bottom:0px;
}
}
@media screen and (max-width:400px) {
  .foundation-center-card{
  height:680px;
 }
  .foundation-card{
    width:320px;
  }
  .foundation-center-card .foundation-card{
   width:320px;
}
.foundation-title {
    font-size: 1.5rem;
  }
  .foundation-card h3 {
    font-size: 1.24rem;
 }
.foundation-image {
    left:50px;
} 

}
@media screen and (min-width:993px) {
  .foundation-section {
  padding: 20px 12%;

}
.foundation-title {
    font-size: 2.4rem;
}

.foundation-title::after {
   width: 18%;
}
.foundation-cards {
  gap: 40px;
}

/* CARD STYLE */
.foundation-card {
  width:400px;
  padding: 35px 25px;
}

.foundation-card h3 {
  font-size: 1.5rem;
}

.foundation-card p {
  font-size: 1.1rem;
}

/* ICON */
.foundation-card .icon img {
  width: 55px;
}

/* RIGHT IMAGE */
.foundation-image {
 /* text-align: right;*/
 position: absolute;
  bottom:0;
  right:0;
}

.foundation-image img {
  width: 100%;
  max-width: 350px;
}
.foundation-center-card .foundation-card{
  margin: 0 auto; 
}
.foundation-title::after {
 
  width: 35%;
  
}
}
@media screen and (min-width:1024px) and (max-width:1400px) {
  .foundation-section {
  padding: 20px 0%;
}
.foundation-title {
  font-size: 2.8rem;
}

.foundation-grid {
  flex-direction: column;
}

/* LEFT CARD GRID */
.foundation-cards {
 /* display: flex;
  flex-direction: column;*/
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  
}

/* CARD STYLE */
.foundation-card {
  width:400px;
  height:550px;
}
.foundation-card h3 {
  font-size: 1.8rem;
  
}
.foundation-card p {
  font-size: 1.2rem;
  
}

/* ICON */
.foundation-card .icon img {
  width: 75px;
  margin-block: 1rem;
}
.foundation-center-card{
   height:600px;
   
}
/* RIGHT IMAGE */
.foundation-image {
 /* text-align: right;*/
 position: absolute;
  bottom:0;
  right:50px;
}

/* RIGHT IMAGE */
.foundation-image img {
  width: 100%;
  max-width: 400px;
}
.foundation-center-card .foundation-card{
 position: absolute;
 left:8%;
 bottom:0px;
}

}
@media screen and (min-width:1200px) and (max-width:1400px){
  .foundation-center-card .foundation-card{
 position: absolute;
 left:18%;
 bottom:0px;
}

}
/* growth section styling */

.growth-section {
  padding: 60px 4%;
  background: #fff;
  text-align: center;
  
}

/* ✅ TITLE */
.growth-title {
  font-size: 1.8rem;
  font-weight: 600;
  color: #5d5b5b;
  margin-bottom: 70px;
  position: relative;
}

.growth-title::after {
  content: "";
  width: 40%;
  height: 1px;
 background: linear-gradient(to right, #E68133 0%, #FFFFFF 100%);
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
}

/* ✅ CARD WRAPPER */
.growth-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 60px;
  flex-wrap: wrap;
  padding-top: 40px;
}

/* ✅ CARD */
.growth-card {
   display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 320px;
  background: #fff;
  border-radius: 20px;
  padding: 40px 25px;
  text-align: center;
  box-shadow: 0 1px 30px rgba(0,0,0,0.22);
  transition: transform 0.3s ease;
}

.growth-card:hover {
  transform: translateY(-10px);
}

/* ✅ CARD TITLE */
.growth-card h3 {
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
}

/* ✅ ICON */
.growth-icon {
  margin-bottom: 25px;
}

.growth-icon img {
  width: 55px;
}

/* ✅ LIST */
.growth-card ul {
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: left;
}

.growth-card ul li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  padding-left: 16px;
}

.growth-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #f47c20;
  font-size: 1.2rem;
}

/* ✅ MOBILE RESPONSIVE */
@media (max-width: 767px) {
  .growth-section {
  padding: 60px 5%;
 }
 
  .growth-cards {
    gap: 30px;
    padding-top: 20px;
  }
.growth-card {
    width: 100%;
    max-width: 330px;
  }
.growth-title {
    font-size: 1.5rem;
  }
  .growth-card h3 {
  font-size: 1.4rem;
}
.growth-title::after {
  width: 75%;
  height: 1px;
 }
 .growth-card ul li {
  font-size: 0.95rem;
}

}
@media screen  and (min-width:768px) and (max-width:900px){
   /* ✅ CARD */
   .growth-card {
     width: 300px;
   }
}
 
@media screen and (max-width:400px) {
  .growth-card {
    max-width: 320px;
  }
  .growth-title {
    font-size: 1.5rem;
  }
  .growth-card h3 {
  font-size: 1.25rem;
}
}
@media screen and (min-width:993px) {
    .growth-card {
      width: 400px;
  }
  .growth-title{
    font-size: 2.4rem;
  }
.growth-title::after {
  width: 24%;
 }
 .growth-card h3 {
  font-size: 1.5rem;
  
}

}
@media screen and (min-width:1024px) and (max-width:1400px) {
  /* ✅ TITLE */
.growth-title {
  font-size: 1.8rem;
}
/* ✅ CARD */
.growth-card {
  width: 400px;
  text-align: center;
}
.growth-card h3 {
  font-size: 1.6rem;
}
.growth-icon img {
  width: 65px;
}
.growth-card ul li {
  font-size: 1.1rem;
}
}

/* maintainace and evaluation section */

.maintenance-section {
  padding: 30px 4%;
  background: #fff;
  text-align: center;
 
}

.maintenance-heading {
  font-size: 2rem;
  font-weight: 600;
  color: #776D62;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.maintenance-heading span {
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 1px;
 background: linear-gradient(to right, #E68133 0%, #FFFFFF 100%);
  border-radius: 2px;
}

.maintenance-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding-top: 50px;
 /* max-width: 1200px;
  margin: auto;*/
   position: relative;
}

.maintenance-image img {
  width: 250px;
  max-width: 100%;
  height:340px;
  position: absolute;
  bottom:10px;
  left:0;
}
.maintenance-card {
 margin:0 auto;
 width: 320px;
  background: #fff;
  padding: 40px 25px 20px 25px;
  border-radius: 20px;
  box-shadow: 0 1px 30px rgba(0,0,0,0.22);
  text-align: center;
}
.maintenance-card:hover{
  transform: translateY(-10px);
}
.maintenance-card h3 {
  font-size: 1.4rem;
  margin-bottom: 20px;
  color: #000;
  font-weight: 600;
}

.maintenance-icon img {
  width:40px;
  margin-bottom: 20px;
}

.maintenance-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.maintenance-card ul li {
  font-size: 1rem;
  color: #333;
  line-height: 1.7;
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}

.maintenance-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #e68133;
  font-size: 1.2rem;
}
@media screen and (max-width:767px) {
  .maintenance-wrapper {
  height:760px;
  position: relative;
  width:100%;
 display: flex; 
 flex-direction: column;  
  justify-content: space-between;
  align-items: center;
 }
  .maintenance-card {
 /*margin:0 auto;*/
 width: 330px;
 
}
.maintenance-image img {
  width: 250px;
  max-width: 100%;
  height:280px;
  position: absolute;
  top:40px;
  left:80px;
}
.maintenance-heading {
  font-size: 1.6rem;
}
.maintenance-card h3 {
  font-size: 1.4rem;
}
}
@media screen and (max-width:400px){
  .maintenance-image img {
  width: 230px;
  max-width: 100%;
  height:280px;
  position: absolute;
  top:40px;
  left:60px;
  
}
}
@media screen and (min-width:768px) and (max-width:900px) {
  .maintenance-image img {
     width: 200px;
     height:300px;
 
}
.maintenance-card {
  width: 300px;
  padding: 40px 20px 20px 20px;
 }
}
@media screen and (max-width:399px) {
  .maintenance-wrapper {
    height:820px;
 }
   .maintenance-card {
    width: 320px;
 
} 
}
@media screen and (min-width:993px) {
  .maintenance-section {
  padding: 30px 12%;
 
}
.maintenance-heading {
  font-size: 2.4rem;
}
.maintenance-image img {
  width: 380px;
  max-width: 100%;
  height:400px;
  left:0px;
}
.maintenance-card {
  width: 400px;
}
.maintenance-card h3 {
  font-size: 1.5rem;
}
}
@media screen and (min-width:1024px) and (max-width:1400px) {
  .maintenance-section {
  padding: 30px 0%;
 
}
  /* ✅ TITLE */
.maintenance-heading  {
  font-size: 1.8rem;
}
/* ✅ CARD */
.maintenance-card {
  width: 400px;
  text-align: center;
}
.maintenance-card h3 {
  font-size: 1.6rem;
}
.maintenance-icon img {
  width: 65px;
}
.maintenance-card ul li {
  font-size: 1.1rem;
}
.maintenance-image img {
  width: 280px;
  height:380px;
  position: absolute;
  bottom:0px;
  left:10px;
}
}


/* payment and onboarding section styling */

.payment-support-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 6% 0;
  margin-top: 80px;
  text-align: center;
  background: linear-gradient(to bottom, #f5f5f5 50%, #c5c5c5 100%);
  position: relative;
  overflow: hidden;

}

.payment-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
}

.payment-desc .razorpay{
  color: #3395ff;
  font-weight: 600;
  font-size: 1.4rem;
}

.payment-desc {
  max-width: 620px;
 /* margin: 12px auto 25px;*/
  font-size: 1.1rem;
  color: #333;
  line-height: 1.6;
}
.payment_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
}
.payment-btn {
  background: #e68133;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  text-decoration: none;
}

.payment_icon img{
  width:4rem;
  height:4rem;
 margin-bottom: 1rem;
}
.payment-btn:hover {
  transform: translateY(-2px);
 /* box-shadow: 0 14px 30px rgba(230,129,51,0.4);*/
  background: #b8611f;
}

/* ===============================
   PAYMENT VISUAL AREA
================================ */

.payment-visual-area {
  margin-top: 80px;
  position: relative;
 /* height: 380px;*/
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-visual-area img{
  width:100%;
  height:400px;
}

@media screen and (max-width:767px) {
  .payment-support-section {
   margin-top: 20px;
    padding: 40px 3% 0px;
  /*  max-width: 360px;*/
    
 }

.payment-title {
  font-size: 1.4rem;
  text-wrap: nowrap;
}

.payment-subtitle {
  font-size: 1rem;
  margin-top: 10px;
}
.payment-visual-area {
  margin-top: 40px;
}
.payment-visual-area img{
  width:100%;
  height:230px;
}

.payment-desc {
  max-width: 320px;
  font-size: 1rem;
}

.payment-btn {
  padding: 12px 20px;
  font-size: 1.1rem;
  
}
}
@media screen and (max-width:400px) {
  .payment-title {
  font-size: 1.4rem;
}
}

@media screen and (min-width:993px) {
.payment-title {
  font-size: 3rem;
}
.payment-desc {
  font-size: 1.3rem;
 }
.payment-visual-area img{
  width:100%;
  height:500px;
  object-fit: cover;
}
.payment-btn {
  font-size: 1.3rem;
}
.payment-desc .razorpay{
  font-size: 1.5rem;
}
}
@media screen and (min-width:1024px) and (max-width:1400px) {
 .payment-visual-area img{
  width:100%;
  height:350px;
  object-fit: cover;
}
}
/* meet the minds section */

.team-section {
  padding: 40px 4%;
  text-align: center;
 
}

.team-title {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  font-weight: 700;
  color: #383737;
}
.team-title img{
  width:6rem;
  margin-bottom: 2rem;
}
.team-subtitle {
  max-width: 700px;
  margin: 10px auto 70px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.6;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* =========================
   TEAM CARD
========================= */

.team-box {
  width:250px;
/*  height:450px;*/
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: 0.3s ease;
}
.team-box:hover {
  transform: translateY(-8px);
}
 .member{
   width:100%;
   height:260px;
}
.team-box img {
  width: 100%;
  height:100%;
 
  object-fit: cover;
}
.team-info {
  position: relative;
 width:100%;
 height:280px;
  color: #fff;
  padding: 25px 20px 45px;
background-color: #000;
 
}

.team-info h4{
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.team-info span{
  font-size: 1.1rem;
  color: #e68133;
  font-weight: 600;
}

.team-info p{
  font-size: 0.95rem;
  margin-top: 10px;
  line-height: 1.6;
  color: #ddd;
}

/* LINKEDIN ICON */
.linkedin {
  position: absolute;
  bottom:-4%;
  left:50%;
  transform: translateX(-50%);
  width: 62px;
  height: 62px;
 /* background: #0A66C2;*/
 font-size: 1.2rem;
  color: #fff;
 /* border-radius: 15%;*/
  text-decoration: none;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
 /* border: 2px solid #fff;*/
 box-shadow: 0px 20px 35px rgba(0,0,0,0.22);
}
@media screen and (max-width:767px) {
  .team-title {
   font-size: 1.5rem;
  
}
.team-title img{
  width:3.5rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
 
}
.team-subtitle {
  max-width: 300px;
  margin: 0px auto 70px;
  font-size: 1.05rem;
}
  .team-grid {
  display:flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.team-box {
  width:280px;
}
.team-info h4{
  font-size: 1.25rem;
  
}
.team-info {
  height:250px;
}
.team-info span{
  font-size: 1.05rem;
  
} 
.linkedin {
  bottom:-3%;
  width: 60px;
  height: 60px;
 }
}
@media screen and (min-width:768px) and (max-width:900px) {
   .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.team-box {
  width:340px;
}
}
@media screen and (min-width:993px) {
 
.team-section {
  padding: 40px 6%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
 
}

.team-title {
  font-size: 3rem;
}
.team-title img{
  width:7rem;
  height:7rem;
  margin-bottom: 2rem;
}
.team-subtitle {
  max-width: 900px;
  margin: 6px auto 70px;
  font-size: 1.3rem;
}
.team-grid {
  gap: 60px;
}

/* =========================
   TEAM CARD
========================= */

.team-box {
  width:400px;
}
 .member{
   width:100%;
   height:370px;
}
.team-info {
  height:280px;
}
.team-info h4{
  font-size: 1.6rem;
}
.team-info span{
  font-size: 1.2rem;
  margin-top: 10px;
}

.team-info p{
  font-size: 1.15rem;
  margin-top: 10px;
  line-height: 1.6;
  color: #ddd;
}

.linkedin {
  bottom:-4%;
  width: 72px;
  height: 72px;
  font-size: 1.2rem;
  box-shadow: 0px 20px 35px rgba(0,0,0,0.22);
}
}
@media screen and (min-width:1024px) and (max-width:1400px) {
  .team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.team-box {
  width:440px;
}
}
/* network section styling */

.network-section {
  width: 100%;
  padding: 40px;
  background: #ffffff;
 
}

.network-container {
  margin: auto;
  text-align: center;
 }

.network-container h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.network-container h4 {
  font-size: 1.2rem;
  font-weight: 500;
  color: #333;
  margin-bottom: 25px;
}

.network-container p {
  font-size: 1.06rem;
  line-height: 1.8;
  color: #444;
  max-width: 1050px;
  margin: auto;
}

@media screen and (max-width:767px) {
   .network-container h1 {
  font-size: 1.6rem;
}
.network-container h4 {
  font-size: 1.2rem;
}

.network-container p {
  font-size: 1.01rem;
  max-width: 350px;
}
} 
@media screen and (max-width:400px) {
   .network-container h1 {
  font-size: 1.45rem;
}
.network-container h4 {
  font-size: 1.2rem;
}

.network-container p {
  font-size: 0.97rem;
  max-width: 350px;
}
} 
@media screen and (min-width:993px) {
  .network-container h1 {
  font-size: 3rem;
}
.network-container h4 {
  font-size: 1.6rem;
}

.network-container p {
  font-size: 1.2rem;
  max-width: 1250px;
}
}
@media screen and (min-width:1024px) and (max-width:1400px){
  .network-container p {
  font-size: 1.2rem;
  max-width: 750px;
}
}
/* visionaries section */

.testimonial-section {
  padding: 40px 20px 0px 20px;
  text-align: center;
  background: linear-gradient(to bottom, #f0f0ef 0%, #f3f3f2 0%);
 
}

.testimonial-section h1 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.testimonial-section h1 img{
  width:6rem;
   margin-bottom: 1rem;
}
.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  max-width: 1000px;
  margin: auto;
 
}

.slider-container {
  display: flex;
  overflow: hidden;
 /*   width: 900px;*/
 width:100%;
  gap: 4px;
  scroll-behavior: smooth;
}

.testimonial-card {
/*  min-width: 250px;*/
  flex: 0 0 250px;
  max-width: 250px;
  border-radius: 14px;
  box-shadow: 0 10px 18px rgba(0,0,0,0.12);
  transform: scale(0.9);
  transition: 0.4s;
  background: #fff;
}

.testimonial-card.active {
 /* opacity: 1;
  transform: scale(1);*/
  border: 2px solid #E68133;
  background: #fff;
}
.testimonial-card-top{
  height:9rem;
  position: relative;
  width:100%;
  padding: 25px;
   border-radius: 14px 14px 0 0 ;
  background-color: #d7d7d7;
  margin-bottom: 2rem;
  
}
.testimonial-card h4 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
}

.role {
  font-size: 1.07rem;
  padding-bottom: 1rem;
  margin: 6px 0 10px;
}

.stars {
 position: absolute;
 left:50%;
 bottom:-29px;
 transform: translateX(-50%);
  color: #E68133;
  font-size: 18px;
  margin-block: 16px;
  border:1px solid  #E68133;
  width:6rem;
  background: #fff;
}

.review {
  font-size: 1.04rem;
  line-height: 1.6;
  color: #444;
  padding:5px;
}

.nav {
  background: #fff;
  border: 1px solid #bdbbbb;
  font-size: 24px;
  padding: 10px 15px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 10px;
}

.dots {
  margin-top: 25px;
}

.dot {
  display: inline-block;
  width: 30px;
  height: 4px;
  background: #f3c3ba;
  margin: 0 4px;
  border-radius: 4px;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #ff6f00;
}
.visionary_img{
 
  display:flex;
  justify-content: flex-start;
  align-items: flex-start;
}
.visionary_img img{
  width:280px;
  height:250px;
}
@media screen and (max-width:767px){
 .testimonial-section {
  padding: 40px 10px 0px 10px;
}
.testimonial-section h1 {
  display: flex;
  flex-direction: column;
 justify-content: center;
 align-items: center;
  font-size: 1.55rem;
}
.testimonial-section h1 img{
   margin-bottom: 0;
}
/*
.slider-wrapper {
  overflow: hidden;
}*/
.testimonial-card {
   flex: 0 0 90%;
    max-width: 90%;
    height:350px;
}
.nav {
    display: none; /* swipe only */
  }
.testimonial-card h4 {
  font-size: 1.45rem;
}
.role {
  font-size: 1.02rem;
}
/*.nav {
  font-size: 14px;
  padding: 8px 12px;
}*/
.visionary_img{
  margin-top: 1.5rem;
  display:flex;
  justify-content: center;
  align-items: center;
  
}
.visionary_img img{
  width:220px;
  height:250px;
}


}
@media screen and (max-width:400px) {
  
 .testimonial-section h1 {
  font-size: 1.45rem;
}
.visionary_img img{
  width:200px;
  height:200px;
 
}

}
@media screen and (min-width:768px){
  .dot1{
  display:none;
}
}
@media screen and (min-width:993px) {
  .testimonial-section h1 {
  font-size: 3rem;
}
.testimonial-section h1 img{
  width:8rem;
   margin-bottom: 1rem;
}
.slider-wrapper {
 max-width: 1200px;
}

.slider-container {
  width:100%;
  gap: 12px;
}

.testimonial-card {
  flex: 0 0 280px;
  max-width: 280px;
 }

.testimonial-card-top{
  height:12rem;
  padding: 35px 25px;
}
.testimonial-card h4 {
   font-size: 1.6rem;
   margin-block: 0.6rem;
}
.role {
  font-size: 1.15rem;
}
.stars {
  font-size: 20px;
  margin-block: 16px;
  width:8rem;
}
.review {
  font-size: 1.2rem;
  padding: 15px ;
}
.dot {
  width: 35px;
}

.visionary_img img{
  width:350px;
  height:320px;
}
}

/* core section styling */

.core-section {
  position:relative;
  padding: 50px 4%;
  background: #fff;
 
}
.core-section h2 img{
  width:6rem;
  margin-bottom: 2rem;
}
.core-arrow{
  position: absolute;
  left:0;
  top:20px;
}
.core-arrow img{
  width:15rem;
}
.core-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 50px;
}
.core-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  gap: 0px;
  max-width: 1200px;
  margin: auto;
}

/* SIDE CARDS */
.core-left, .core-right {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.info-card {
  width:16rem;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  position: relative;
}

.tag {
  position: absolute;
  top: -14px;
  left: 15px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 500;
}

.tag1 {
  position: absolute;
  top: -14px;
  right: 15px;
  background: #000;
  color: #fff;
  font-size: 12px;
  padding: 4px 10px;
  border-radius: 8px;
  font-weight: 500;
}

.info-card p {
  font-size: 14.5px;
  line-height: 1.6;
  color: #444;
}
.core-wheel{
  width:22rem;
}
.core-wheel img{
  width:100%;
  object-fit: cover;
}


/* RESPONSIVE */
@media (max-width: 767px) {
  .core-wrapper {
    grid-template-columns: 1fr;
}
  .core-arrow{
    top:10px;
}
.core-arrow img{
  width:10rem;
}
.core-title {
  font-size: 1.69rem;
  margin-bottom: 10px;
}
.core-section h2 img{
  width:6rem;
  margin-bottom: 2.3rem;
}
/* SIDE CARDS */
.core-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
}

.core-right {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
   margin-bottom: 2rem;
}

.info-card {
  width:20rem;
}
.core-right .info-card{
  position: relative;
}
 .tag {
  position: absolute;
  top: -14px;
  left: 15px;
  font-size: 13px;
}

.core-right .info-card .tag1 {
 width:fit-content;
  position: absolute;
  top: -14px;
  left: 15px;
  font-size: 13px;
}
.info-card p {
  font-size: 15.5px;
  padding-top: 0.5rem;
}
.core-wheel{
  width:20rem;
  order:1;
  margin: auto;
}
}
@media screen  and (min-width:768px) and (max-width:912px){
.core-wrapper {
  grid-template-columns: 1fr;
  align-items: center;
  justify-content: center;
  gap: 20px;
 /* max-width: 900px;*/
  margin: auto;
}

/* SIDE CARDS */
.core-left, .core-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 20px;
}
.info-card {
  width:28rem;
  padding: 20px;
}

.tag {
  position: absolute;
  top: -18px;
  left: 15px;
  font-size: 14px;
}

.core-right .info-card .tag1 {
 width:fit-content;
  position: absolute;
  top: -12px;
  left: 15px;
  font-size: 14px;
}
.info-card p {
  font-size: 18px;
 
}
.core-wheel{
  width:22rem;
  margin: auto;
  order:2;
}
.core-wheel img{
  width:100%;
  object-fit: cover;
}

}
@media screen and (min-width:993px){
  .core-section h2 img{
  width:8rem;
  margin-bottom: 3rem;
}

.core-arrow{
  position: absolute;
  left:0;
  top:20px;
}
.core-arrow img{
  width:26rem;
}
.core-title {
  font-size: 3rem;
}
.core-wrapper {
  max-width: 1300px;
}

/* SIDE CARDS */
.core-left, .core-right {
  gap: 40px;
}
.info-card {
  width:28rem;
  padding: 20px;
}

.tag {
  top: -18px;
  left: 15px;
  font-size: 16px;
  padding: 6px 12px;
}
.tag1 {
  top: -18px;
  right: 15px;
  font-size: 16px;
  padding: 6px 12px;
}

.info-card p {
  font-size: 1.2rem;
}
.core-wheel{
  width:28rem;
  margin-top: 3rem;
}
}
@media screen and (min-width:1024px) and (max-width:1400px) {
  .core-wrapper {
    grid-template-columns: 1fr;
}
  .core-arrow{
    top:20px;
}
.core-arrow img{
  width:19rem;
}
.core-title {
  font-size: 2.2rem;
  margin-bottom: 10px;
}
.core-section h2 img{
  width:8rem;
  margin-bottom: 2.3rem;
}
/* SIDE CARDS */
.core-left{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.core-right {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 50px;
}

.info-card {
  width:35rem;
 
}
.core-right .info-card{
  position: relative;
}
 .tag {
  position: absolute;
  top: -14px;
  left: 15px;
  font-size: 16px;
}

.core-right .info-card .tag1 {
 width:fit-content;
  position: absolute;
  top: -14px;
  left: 15px;
  font-size: 16px;
}
.info-card p {
  font-size: 1.2rem;
  padding-top: 1rem;
}
.core-wheel{
 width:26rem;
  order:1;
  padding-top: 2rem;
  margin: auto;
}
}
/* Recognition section styling */

.recognition-section {
  position: relative;
  padding: 60px 10px 0px;
  background:linear-gradient(to bottom, #f9f9f9 0%, #d4d4d4 100%);
  overflow: hidden;
  font-family: Poppins, sans-serif;
 
}

/* WATERMARKS */
.bg-emblem {
  position: absolute;
  width: 180px;
  top: 40px;
}

.left-emblem {
  left: 4%;
}

.right-emblem {
  right: 4%;
}

/* MAIN CONTENT */
.recognition-container {
 /* max-width: 900px;*/
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 5;
}

.rec-title {
  font-size: 2rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.rec-subtitle {
  font-size: 18px;
  color: #444;
  margin-bottom: 35px;
}

/* LOGOS */
.rec-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 20px;
}
.rec-logo1 {
  margin-top: 2rem;
  width:14rem;
 object-fit: contain;
}
.rec-logo {
  width:9rem;
 object-fit: contain;
}
.description{
  position: relative; 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

}
.description .arrow-left{
  position: absolute;
  top:10px;
  left:0;
  width:130px;
}
/* DESCRIPTION */
.rec-description {
   width:650px;
  font-size: 1.07rem;
  line-height: 1.6;
  color: #333;
  margin-top: 15px;
}

/* BOTTOM GRAPHICS */
.rec-bottom-graphics {
  position: relative;
  margin-top: 5px;
  display: flex;
  flex-direction: column;
  justify-content:center ;
  align-items: center;
}
.rec-bottom-graphics .arrow-left{
  width:380px;
}
.arrow-right {
  width: 130px;
  position: absolute;
  right:0;
}

.illustration {
  width: 280px;
}

/* RESPONSIVE */
@media (max-width: 767px) {
 .recognition-section {
  padding: 40px 10px 0px;
}
  .rec-title {
  font-size: 1.6rem;
  font-weight: 700;
  color: #000;
  margin-bottom: 6px;
}

.rec-subtitle {
  font-size: 1.07rem;
}
.bg-emblem {
  display:none;
}
/* LOGOS */
.rec-logos {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-bottom: 20px;
}
.rec-logo1 {
  margin-top: 1rem;
  width:10rem;
}
.rec-logo {
  width:6rem;
}
.description{
  position: relative; 
}
.description .arrow-left{
  position: absolute;
  top:-40px;
  left:0;
  width:65px;
}
/* DESCRIPTION */
.rec-description {
   width:300px;
  font-size: 1rem;
  line-height: 1.5;
}

/* BOTTOM GRAPHICS */
.rec-bottom-graphics {
  position: relative;
  margin-top: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rec-bottom-graphics .arrow-left{
  width:240px;
}
.arrow-right {
  width: 65px;
}
.illustration {
  width: 200px;
}
}
@media screen and (max-width:359px){
  .description .arrow-left{
   display: none;
}
.arrow-right {
  display: none;
}
}
@media screen and (min-width:768px) and (max-width:900px){
  
/* WATERMARKS */
.bg-emblem {
  width: 150px;
  top: 50px;
}
/* MAIN CONTENT */
.rec-logo1 {
  width:11rem;
 }
.rec-logo {
  width:8rem;
}
.description .arrow-left{
  width:110px;
  
}
/* DESCRIPTION */
.rec-description {
   width:520px;
  font-size: 1rem;
}

/* BOTTOM GRAPHICS */
.rec-bottom-graphics .arrow-left{
  width:360px;
}
.arrow-right {
  width: 130px;
}
.illustration {
  width: 280px;
}

}
@media screen and (min-width:993px) {
  
/* WATERMARKS */
.bg-emblem {
  width: 240px;
  top:80px;
}
.left-emblem {
  left: 6%;
}
.right-emblem {
  right: 6%;
}
/* MAIN CONTENT */
.rec-title {
  font-size: 3rem;
  margin-bottom: 6px;
}
.rec-subtitle {
  font-size: 1.4rem;
  margin-bottom: 35px;
}
/* LOGOS */
.rec-logos {
  margin-block: 30px;
}
.rec-logo1 {
  margin-top: 2rem;
  width:18rem;
}
.rec-logo {
  width:14rem;
}
.description .arrow-left{
  position: absolute;
  top:10px;
  left:0;
  width:280px;
}
/* DESCRIPTION */
.rec-description {
   width:950px;
  font-size: 1.3rem;
  line-height: 1.6;
  color: #333;
  margin-top: 15px;
  font-family:montserrat;
  font-style: italic;
}

/* BOTTOM GRAPHICS */
.rec-bottom-graphics {
   margin-top: 10px;
 }
.rec-bottom-graphics .arrow-left{
  width:550px;
}

.arrow-right {
  width: 280px;
}

.illustration {
  width: 350px;
}
}
@media screen and (min-width:1024px) and (max-width:1400px){
 

/* WATERMARKS */
.bg-emblem {
  width: 180px;
  top: 40px;
}
/* MAIN CONTENT */
.rec-logo1 {
  width:16rem;
 }
.rec-logo {
  width:10rem;
}
.description .arrow-left{
  width:170px;
}
/* DESCRIPTION */
.rec-description {
   width:650px;
  font-size: 1.1rem;
}

/* BOTTOM GRAPHICS */
.rec-bottom-graphics .arrow-left{
  width:400px;
}
.arrow-right {
  width: 180px;
}
.illustration {
  width: 280px;
}

}
/* Partner section styling */

.partner-section {
    position: relative;
    padding: 60px 20px 60px;
    text-align: center;
    background: #ffffff;
    
}
/* MAIN TITLE */
.partner-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
    color: #000;
}

/* TOP PARAGRAPH */
.partner-description {
    max-width: 700px;
    margin: 25px auto 30px;
    font-size: 1.08rem;
    line-height: 1.6;
    color: #444;
}
/* BUTTON */
.partner-btn {
  background: #e68133;
  color: #fff;
  border: 2px solid #fff;
  padding: 12px 28px;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  transition: 0.3s ease;
  text-decoration: none;
  margin-top: 0.4rem;
  
}
.partner-btn:hover {
    transform: translateY(-2px);
    background: #b8611f;
}
/* INVESTOR CORNER BLOCK */
.partner{
 /* position: relative;*/
  display:flex;
  justify-content: center;
  align-items: center;
}
.investor-title {
    font-size: 1.7rem;
    font-weight: 700;
    margin: 60px 0 20px 0;
}
.investor-subtitle {
   width:420px;
    font-size: 1.08rem;
    color: #555;
    margin-bottom: 10px;
}
.investor-icon {
    width: 90px;
    margin-bottom: 10px;
}
.funding-text {
  width:400px;
    font-size: 1.08rem;
    font-weight: 600;
    margin: 8px 0 10px;
}

.investor-email {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    font-size: 15px;
}

.investor-email a {
    color: #ff6b00;
    font-weight: 600;
}

.email-icon {
    width: 18px;
}

/* BOTTOM ILLUSTRATION */

/* TOP/BACKGROUND ILLUSTRATION */
.partner-img {
    position: absolute;
    width: 250px;
    bottom: 0px;
    left: 0px;
  
}

/* RESPONSIVE */
@media (max-width: 767px) {
  .partner-section {
   height:1100px;
  }
 .partner-title {
        font-size: 1.45rem;
    }
  .partner-bg-img {
        display: none;
    }
.partner-bottom-img {
        width: 220px;
    }
    .partner-description {
    max-width: 300px;
    font-size: 0.99rem;
    line-height: 1.4;
   
}
/* BUTTON */
.partner-btn {
   font-size: 1.15rem;
}
/* INVESTOR CORNER BLOCK */


.investor-title {
    font-size: 1.45rem;
    margin: 40px 0 20px 0;
}
.investor-subtitle {
   width:300px;
    font-size: 0.99rem;
   
    margin-bottom: 10px;
    align-self: center;
    margin: 0 auto;
}
.investor-icon {
    width: 90px;
    margin-top: 10px;
}
.email-icon {
    width: 20px;
}

/* BOTTOM ILLUSTRATION */

/* TOP/BACKGROUND ILLUSTRATION */
.partner-img {
    position: absolute;
    top: 100%;
    left: 55%;
    transform: translateX(-50%); 
     width: 250px;
    align-self: center;
    margin: 0 auto;
  
}
}
@media screen and (min-width:768px) and (max-width:900px){
   .partner-section {
     padding: 60px 40px 60px;
}
/* TOP PARAGRAPH */
.partner-description {
    max-width: 580px;
}
/* INVESTOR CORNER BLOCK */
.investor-icon {
    width: 90px;
    margin-bottom: 10px;
}
.funding-text {
    width:360px;
    margin: 8px 40px 10px;
}
.email-icon {
    width: 20px;
}
/* TOP/BACKGROUND ILLUSTRATION */
.partner-img {
    position: absolute;
    width: 240px;
    bottom: 0px;
    left: 5px;
}
}
@media screen and (min-width:993px){
  
.partner-section {
   padding: 80px 20px 60px;
}
.partner-title {
    font-size: 3rem;
}

/* TOP PARAGRAPH */
.partner-description {
    max-width: 1200px;
    margin: 25px auto 40px;
    font-size: 1.2rem;
}
/* BUTTON */
.partner-btn {
  font-size: 1.35rem;
}
/* INVESTOR CORNER BLOCK */
.investor-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 60px 0 20px 0;
}
.investor-subtitle {
   width:650px;
    font-size: 1.2rem;
}
.investor-icon {
    width: 150px;
}
.funding-text {
   width:600px;
    font-size: 1.3rem;
    margin: 8px 0 10px;
}
.investor-email {
   font-size: 18px;
}
.email-icon {
    width: 20px;
}
/* TOP/BACKGROUND ILLUSTRATION */
.partner-img {
    width: 550px;
    bottom: 0px;
    left: 0px;
  
}
}
@media screen and (min-width:1024px) and (max-width:1400px){
 .partner-description {
    max-width: 800px;
}
/* INVESTOR CORNER BLOCK */
.investor-subtitle {
   width:480px;
    font-size: 1.2rem;
    margin:auto;
}
.investor-icon {
    width: 150px;
}
.funding-text {
   width:380px;
    font-size: 1.3rem;
    margin: 8px 40px 10px;
}
/* TOP/BACKGROUND ILLUSTRATION */
.partner-img {
    width: 340px;
}
}


/* contact form and newsletter */

.container {
  max-width: 1250px;
  padding: 60px auto 0 ;
  display: flex;
  gap: 40px;
 
  
}
.card {
  margin-bottom: 50px;
  position: relative;
  background: #fff;
  padding: 25px;
  padding-top: 40px;
  width: 650px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,.2);
 
}
.card h1 {
  font-size: 2rem;
  margin-bottom: 15px;
  font-weight: 600;
}
label{
  color:#000;
  font-weight: 500;
  margin-top: 0.2rem;
  margin-bottom: 0.2rem;
}
input, select, textarea {
  width: 100%;
  padding: 12px 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #D1D5DB;
  color:#333;
}

textarea {
  height: 100px;
}

.phone-box {
  display: flex;
  gap: 5px;
  width: 100%;
}

#countryCode {
  width: 80px;
  color:#333;
  text-align: center;
  font-weight: bold;
}
/* Prevent Chrome/Edge autofill blue background */
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  box-shadow: 0 0 0px 1000px #E4E4E4 inset !important; /* Match your background */
  -webkit-box-shadow: 0 0 0px 1000px #E4E4E4 inset !important;
  -webkit-text-fill-color: #000 !important;
  transition: background-color 5000s ease-in-out 0s; /* Prevent flash */
}

#state, #country{
 
  background-color: #E4E4E4;
   padding-left: 12px;
   appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 1.7rem;
}

/* inputs + textarea */
input.filled-input,
textarea.filled-input {
  background-color: #e4e4e4 !important;
  color: #000 !important;
}

/* selects – separate handling */
select.filled-select {
  background-color: #e4e4e4 !important;
  color: #000 !important;

  appearance: auto !important;
  -webkit-appearance: auto !important;
  -moz-appearance: auto !important;

  background-image: initial !important;
}

select {
  background-color: #fff;
  color: #000;
}
.button_text{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap:20px;
}
.button_text p{
  font-size: 1rem;
}
.button_text p a{
  color:#ff6f00;
}
.submit-btn {
  font-size: 1.1rem;
  background: #E68133;
  color: #fff;
  padding: 12px 18px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.submit-btn:hover{
   background: #80471c;
   transform: translateY(-3px);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.95rem;
  line-height: 1.4;
  margin-bottom: 20px;
  color:#333;
  max-width: 100%;
}
.checkbox .text {
  display:flex;
  gap:4px;
  text-wrap: nowrap;
margin-top: 0.6rem;
}
.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
margin-top: 0.8rem;
 
}
.checkbox .text a{
  color:#3b82f6;
  text-decoration: none;
  cursor: pointer;
}
.checkbox .text a:hover{
  color:#2857a1;
}
/* Mobile-only line break 
.mobile-break {
  display: none;
}  */
.newsletter-container{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.newsletter {
  padding: 40px;
}
.newsletter h1{
  font-size: 2rem;
  font-weight: 700;
}
.newsletter p{
  font-size: 1.085rem;
 line-height: 1.5;
}
.subscribe-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px
}
.subscribe-box input{
 
   background-color: #E4E4E4;
  flex:1;
  margin-bottom: 0;
}
.subscribe-box input::placeholder{
  color:#707070;
}
.subscribe-btn {
  background: #57DE03;
 font-size: 1.1rem;
 color: #fff;
  padding: 10px 16px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.4s ease;
}
.subscribe-btn:hover{
   background: #45ad03;
    transform: translateY(-3px);
}

.error {
  color: #e63946;
  font-size: 12px;
  display: none;
  margin-block: 4px;
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
  border-color: #e63946;
}

.form-alert {
 
  display: none;
  padding: 12px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  background: #0AAC9D;
}

.form-alert.success {
   position: absolute;
  bottom:10%;
  left:20px;
  background: #d1fae5;
  color: #065f46;
  padding: 12px 16px;
  border-radius: 6px;
}

.form-alert.error {
  background: #fee2e2;
  color: #991b1b;
}
.subscribe-illustration{
  width:250px;
  align-self: flex-end;
  margin-top: 8rem;

}
.subscribe-illustration img{
  width:100%;
  
}
#customAlert1 {
  display:none;
 background: #d1fae5;
  color: #065f46;
  padding: 10px 12px;
  border-radius: 6px;
  margin-top: 0.2rem;
}
@media screen and (max-width:767px){
  .container {
   flex-direction: column;
   max-width: 360px;
   gap: 20px;
   margin-top: 60px;
}
.card{
  width:330px;
}
.card h1 {
  font-size: 1.6rem;
 align-self: center;
}
input, select, textarea {
  font-size: 0.9rem;
}
.newsletter {
  padding:0 20px 20px 20px;
}
.newsletter h1{
  font-size: 1.6rem;
}
.newsletter p{
  font-size: 1.2rem;
 line-height: 1.5;
}
.subscribe-box{
  display: flex;
  justify-content: center;
  align-items: center;
  gap:10px
}
.subscribe-btn {
  margin-top: 1rem;
  font-size: 1.15rem;
  padding: 10px 26px;
}
.subscribe-illustration{
  width:200px;
  align-self: center;
   margin-top: 1rem;

}
.button_text p{
  font-size: 1rem;
   text-align: center;
}
.button_text p a{
  color:#ff6f00;
  font-size: 0.95rem;
 
}
.checkbox input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-top: 0.8rem;
}

}
@media screen and (min-width:768px) and (max-width:900px){
  .container {
  max-width: 1250px;
  margin: 50px auto 0 ;
  display: flex;
  gap: 15px;
}
  .card {
    padding: 15px;
    width: 800px;
 
}
}
@media screen and (max-width:480px) {
   .container {
   flex-direction: column;
   max-width: 380px;
   gap: 20px;
   margin-top: 60px;
}
.card{
   width:350px;
   padding: 15px;
   padding-block: 40px;
}
  .newsletter h1{
  font-size: 1.5rem;
}
  .subscribe-box{
   flex-direction: column;
}
.newsletter p{
  font-size: 0.95rem;
}
/*
.checkbox .text{
  display:inline-flex;
  width:25rem;
  text-wrap: wrap;
}*/
.checkbox {
  font-size: 0.94rem;
  line-height: 1.4;
 
}
.checkbox .text {
  display:flex;
  gap:3px;
  text-wrap: nowrap;
margin-top: 0.6rem;

}
}
@media screen and (max-width:359px){
  .card{
   width:320px;
   padding: 15px;
   padding-block: 40px;
}
.checkbox {
  font-size: 0.84rem;
}
}
@media screen and (min-width:993px) {
  .container {
  max-width: 1400px;
  gap: 60px;
}
  #contactForm .row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
  .field {
  flex: 1;
  display: flex;
  flex-direction: column;
}
.card h1 {
  font-size: 2.4rem;
}
label{
 font-weight: 500;
 font-size: 1.2rem;
}
input, select, textarea {
 font-size: 1.1rem;
}

textarea {
  height: 140px;
}
.checkbox {
 font-size: 1.1rem;
}
.checkbox .text{
  gap:8px;
}
.button_text p{
  font-size: 1.15rem;
  margin-block: 1rem;
}
.submit-btn {
  font-size: 1.3rem;
  padding: 12px 26px;
 }
.newsletter h1{
  font-size: 3rem;
  font-weight: 700;
}
.newsletter p{
  font-size: 1.2rem;
 line-height: 1.7;
}

.subscribe-btn {
 font-size: 1.3rem;
 padding: 10px 26px;
}

.error {
   color: #e63946;
  font-size: 12px;
  display: none;
}
.form-alert.success {
   position: absolute;
  bottom:4%;
  left:40px;
  background: #d1fae5;
  color: #4ead92;
  padding: 12px 16px;
  border-radius: 6px;
}
#customAlert1 {
 background: #d1fae5;
  color: #4ead92;
  padding: 12px 4px;
  width:80%;
  border-radius: 6px;
  margin-top: 0.2rem;
}
.subscribe-illustration{
  width:400px;
 /* margin-top: 16rem;*/
 margin-top: 6rem;
  margin-bottom: 0.5rem;
}
}
@media screen and (min-width:1024px) and (max-width:1400px) {
  .container {
   gap: 10px;
   
}
.card {
  padding:60px 20px;
  width: 670px;
}
.card h1{
  padding-bottom: 20px;
}
input, select, textarea {
 padding: 12px 8px;
 font-size: 1rem;
}
textarea {
  height: 100px;
}
#countryCode {
  width: 50px;
}
.subscribe-illustration{
  width:400px;
  align-self: flex-end;
  margin-top: 4rem;

}

}

/* footer styling */

.footer {
  padding: 60px 4%;
  background: linear-gradient(180deg, #0b0b0b, #000);
  color: #d1d5db;
  font-family: "Inter", sans-serif;
}

.footer-container {
 display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  
}
.footer-logos{
 display: flex;
  justify-content: end;
 align-items: end;
 gap:40px;
 margin-bottom: 1rem;
}
.footer-logos .rec-logo1{
  width:12rem;
}
.footer-logos .rec-logo{
  width:6rem;
}
.footer-col h4 {
  color: #fff;
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 5px;
  font-size: 1rem;
 
}

.footer-col ul li a {
   color:#c9c6c6;
  text-decoration: none;
}

.footer-col ul li a:hover {
  color: #f97316;
}

.company p {
  font-size: 1rem;
  margin: 15px 0;
  color:#c9c6c6;
  width:20rem;
  text-wrap: wrap;
}

.logo {
  display: flex;
  gap: 12px;
  align-items: center;
}

.logo img {
  width: 80px;
}

.logo h3 {
  font-size: 1rem;
  color: #fff;
}

.logo span {
  font-size: 13px;
  
}

.socials a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-right: 10px;
}
.socials a img{
  width:40px;
}
.socials a:hover {
  cursor:pointer;
}

.contact-list li {
  line-height: 1.6;
  color:#dddbdb;
}
.contact-list li i{
 color:#ff6f00
}
.investment-section{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap:10px;
  margin-top: 50px;
}
.terms{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap:10px;
}
.terms p{
 font-size: 1rem;
}
.terms a{
  color:#dddbdb;
  cursor: pointer;
  text-decoration: none;
  
}
.terms a img{
  width:1rem;
  margin-right: 0.4rem;
}
/*
.cin-badge {
  background: #1f2933;
  border-radius: 6px;
  padding: 10px 14px;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cin-title {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: #e5e7eb;
 
}

.cin-title .dot {
  width: 6px;
  height: 6px;
  background: #f97316;
  border-radius: 50%;
}

.cin-number {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  color: #f97316;
  letter-spacing: 0.3px;
} */

/* Investment Bar */
.investment-bar {
  margin: 0 10px;
  background: #1f2933;
  padding: 20px 25px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  
}
.investment_desc{
  display: flex;
  flex-direction: column;
}
.investment-bar h5 {
  color: #fff;
  margin-bottom: 6px;
}

.investment-bar a {
  color: #f97316;
  text-decoration: none;
  font-weight: 500;
}

/* Bottom */
.footer-bottom {
  margin-top: 30px;
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
   color:#dddbdb;
}
.footer-bottom img{
  width:1.1rem;
}
/* Responsive */
@media (max-width: 1024px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  


  
  .footer-bottom {
    margin: 20px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
}
@media screen and (max-width:767px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap:20px;
  }
  .company p {
  font-size: 0.95rem;
  margin: 15px 0;
  color:#c9c6c6;
  width:20rem;
  text-wrap: wrap;
}
  .investment-section{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap:20px;
   margin-top: 20px;
}
.terms{
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap:5px;
  align-self: flex-start;
}
.terms p{
  margin: 0.2rem;
}
  .investment_desc h5{
    text-wrap: nowrap;
  }
  .footer-bottom{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-wrap: wrap;
    width:20rem;
    margin: 0 auto;
    text-align: center;
     padding: 20px 0px;
  }
}
@media screen and (min-width:768px) and (max-width:1080px){
 .investment-bar {
    width:30rem;
  }
}
@media screen and (min-width:993px) {
  .footer {
  padding: 10px 100px;
 }
 .company p {
  width:28rem;
  text-wrap: wrap;
}
 .logo h3 {
  font-size: 1.2rem;
 
}
.logo span {
  font-size: 0.95rem;
  
}
.socials a img{
  width:60px;
}
.terms p{
 font-size: 1.1rem;
}

}

/* privacy policy section styling */

/* Modal Overlay */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
 /* position: absolute;*/
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
   overflow-y: hidden;
 
}

/* Modal Box */
.modal-content {
  background-color: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  position: relative;
}

/* Close Button */
.close {
  position: absolute;
  top: 12px;
  right: 18px;
  font-size: 35px;
  font-weight: bold;
  color: #555;
  cursor: pointer;
}

.close:hover {
  color: #000;
}

/* Scrollable content if long */
.privacy_policy {
  max-height: 60vh;
  overflow-y: auto;
  padding-right: 10px;
}

.privacy_policy{
  font-family:Arial, Helvetica, sans-serif;
  max-height:600px;
  overflow-y: scroll;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.1px;
   line-height: 1.7rem;
  

}
.privacy_policy strong{
  font-size: 1.2rem;
  padding:0 0.5rem 0 0;
 
}
.privacy_policy p{
  font-size: 1.05rem;
   color:#3f3e3e;
   margin-block: 0;
}
.privacy_policy ul li{
    font-family:Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.01px;
  color: #6b6a6a;

}
.privacy_policy ul li::marker{
   font-size: 24px;
 }
@media screen and (min-width:944px) {
 .modal-content{
    width:50%;
      margin: 10% auto;
    
  }
}
 a {
      color:#53b616;
      text-decoration: none;
    }
    a:hover {
      text-decoration: underline;
    }
/*
    .terms {
  color: #25A941;
  cursor: pointer;
  text-decoration: underline;
  margin: 20px;
}*/
.privacy:hover{
  color:rgb(88, 88, 88);
  cursor: pointer;
}

/* terms and condition section styling */

/* Modal Overlay */
.modal1 {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  overflow-y: hidden;
  text-align: center;
}

/* Modal Box */
.modal-content1 {
  background: #fff;
  margin: 5% auto;
  padding: 25px;
  border-radius: 12px;
  max-width: 700px;
  width: 90%;
  position: relative;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
 
}
.modal-content1 h2{
  font-size: 1.6rem;
  color:#000;
  
}
/* Close Button */
.close1 {
  position: absolute;
  top: 10px;
  right: 18px;
  font-size: 35px;
  color: #555;
  cursor: pointer;
}
.close1:hover {
  color: #000;
}

/* Scrollable content */
.terms-and-conditions {
  max-height: 65vh;
  overflow-y: auto;
  padding-right: 10px;
}

/* Modal Styles for terms section */
.terms-and-conditions{
  font-family:Arial, Helvetica, sans-serif;
  max-height:600px;
  overflow-y: scroll;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.01px;
   line-height: 1.9rem;
  }
  .terms-and-conditions h2{
    font-size: 1.5rem;
    letter-spacing: 0.3;
    color:black;
  }
.terms-and-conditions strong{
  font-size: 1.2rem;
  padding:0 0.5rem 0 0;
  font-weight: 800;
 
}
.terms-and-conditions p{
  font-size: 1.05rem;
   color:#3f3e3e;
   margin-block: 0;
}
.terms-and-conditions ul li{
    font-family:Arial, Helvetica, sans-serif;
  font-size: 0.97rem;
  letter-spacing: 0.01px;
  color: #6b6a6a;

}
.terms_of_services:hover{
  color:rgb(88, 88, 88);
  cursor: pointer;
}
.terms-and-conditions ul li::marker{
   font-size: 24px;
 }

 @media screen and (min-width:944px) {
 .modal-content1{
    width:50%;
      margin: 10% auto;
  }
}
@media screen and (max-width:767px) {
  .privacy_policy strong{
  font-size: 1rem;
}
.privacy_policy p{
  font-size: 0.9rem;
 }
.privacy_policy ul li{
   font-size: 0.97rem;
}
.privacy_policy{
 max-height:400px;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.1px;
   line-height: 1.7rem;
}
.modal-content {
  background-color: #fff;
  margin: 50% auto;
  padding: 20px;
  width: 90%;
  border-radius: 8px;
  position: relative;
}
 .terms-and-conditions strong{
  font-size: 1rem;
}
.terms-and-conditions p{
  font-size: 0.9rem;
 }
.terms-and-conditions ul li{
   font-size: 0.97rem;
}
.terms-and-conditions{
 max-height:400px;
  font-size: 0.8rem;
  text-align: start;
  padding: 10px;
  cursor: pointer;
   letter-spacing: 0.1px;
   line-height: 1.7rem;
}
.modal-content1 {
  background-color: #fff;
  margin: 50% auto;
  padding: 20px;
  width: 90%;
  border-radius: 8px;
  position: relative;
}

.modal-content1 h2{
  margin-top: 1rem;
  text-align: center;
 
}
}

/* chatbot styling */

     
/* Q&A Side Panel - Now with Glassmorphism! */
 #qa-side-panel {
    position: fixed;
   /* position: absolute;*/
    bottom: 5px !important;
    right: 20px !important;
    width: 70px;
    height: 70px;
    background-color: #ff9428;
   /*  background: #f44437;*/
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0,0,0,0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    z-index: 1000;
    overflow: hidden;
    padding-top: 0.5rem;
 }
   
#qa-side-panel.expanded {
    width: min(50vw, 480px);
    height: 70vh;
    min-height: 400px;
    /* Glassmorphism properties for the expanded panel */
    background: rgba(255, 255, 255, 0.15);;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2 ); 
    box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.2);

    border-radius: 1rem;
    right: 20px;
    z-index: 19999;
   
}
    /* Adjusted Mobile styles for expanded state */
    @media (max-width: 768px) {
       #qa-side-panel {
        bottom: 10px;
        right: 10px;
        width: 60px; /* Slightly smaller on small screens */
        height: 60px;
    }
        #qa-side-panel.expanded {
        width: 90vw;
        height:71vh;
      /*  height: calc(95vh - env(safe-area-inset-bottom)); /* Use 95vh minus safe area for dynamic height */
        min-height: unset; /* Remove min-height override on mobile */
        bottom: env(safe-area-inset-bottom, 5px); /* Anchor to bottom, respect safe area */
        left: 5vw;
        right: 5vw;
        max-width: unset;
        border-radius: 1.5rem;
        top: auto; /* Ensure it sticks to the bottom */
        bottom:10px;
    }
  }
   @media screen and (max-width:400px) {
     #qa-side-panel.expanded {
      height:92vh;
    }
   }
 #qa-side-panel-toggle-btn {
    background-color: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
   
}
 /* Toggle Icons */
#qa-side-panel-toggle-btn  .chat-icon { 

  transition: transform 0.3s ease-in-out; 
}
#qa-side-panel.expanded #qa-side-panel-toggle-btn {
    color: #1f2937;
    position: absolute;
    top: 10px; /* Keep close button near the top of the panel */
    right: 10px;
    width: 35px;
    height: 35px;
    font-size: 1.3rem;
    transform: none;
    
}
#qa-side-panel.expanded #qa-side-panel-toggle-btn:hover{
  color:#25A941;
}
#qa-side-panel:not(.expanded) #qa-side-panel-toggle-btn .chat-icon { 
  display: block;
 }
#qa-side-panel.expanded #qa-side-panel-toggle-btn .chat-icon { display: none; }
#qa-side-panel:not(.expanded) #qa-side-panel-toggle-btn .close-icon { display: none; }
#qa-side-panel.expanded #qa-side-panel-toggle-btn .close-icon { display: block; }

#qa-panel-content {
    display: none;
    flex-grow: 1;
    width: 100%;
    height: 100%;
    padding: 1.5rem;
    padding-top: 50px;
    flex-direction: column;
}
#qa-side-panel.expanded #qa-panel-content {
   display: flex;
   }

.qa-container {
  /*  flex-grow: 1;*/
    display: flex;
    flex-direction: column;
    background-color: transparent;
}
.qa-message-history {
    flex-grow: 1;
    overflow-y: auto;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1rem;
    background-color: #f9fafb;
    max-height: 300px;
}
.qa-message {
   margin-bottom: 0.75rem; 
   line-height: 1.4;
    animation: fadeInMessage 0.3s ease-out forwards;
   }
.qa-message.user { 
  text-align: right;
 }
.qa-message.bot { 
  text-align: left; 
}
.qa-message-bubble { 
  display: inline-block;
   padding: 0.75rem 1rem;
    border-radius: 1rem;
     max-width: 80%; 
     word-wrap: break-word;
     }
.qa-message.user .qa-message-bubble { background-color:  #ff9428;
   color: white;
   }
.qa-message.bot .qa-message-bubble { 
  background-color: #e5e7eb; 
  color: #1f2937; 
}
@keyframes fadeInMessage { 
  from {
     opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); } 
    }
.qa-current-question-container {
  
    display: flex;
    flex-direction: column;
    
     }
.qa-question-button {
    background-color:#25A941;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    margin-bottom: 0.6rem;
}

.qa-input-area { 
   display: flex;
   margin-top: 1rem;
   width:100%;
  align-items: center;
   }
.qa-input-area input, .qa-input-area select {
   flex: 1;
   width:100%;
    padding-left: 0.5rem; 
    border: 1px solid #d1d5db;
     border-radius: 0.5rem 0 0 0.5rem;
      outline: none;
      box-sizing: border-box;
 }
 
.qa-input-area button {
    background-color:  #ff9428;
     background: #25A941;

    color: white;
    padding: 0.75rem 1.25rem;
    border: none;
    border-radius: 0 0.5rem 0.5rem 0;
    cursor: pointer;
    transition: background-color 0.2s ease;
}
.qa-input-area button:hover { 
  background-color: #a35e19;
    background: #166626;
     white-space: nowrap;   /* stops text breaking */
 }
 @media screen and (min-width:768px) and (max-width:992px) {
   .qa-input-area input{
    font-size: 1.15rem;
  }
  .qa-input-area button{
    font-size: 1.2rem;
  }
 }
@media screen and (min-width:993px) {
 .qa-input-area input{
    font-size: 1.15rem;
  }
  .qa-input-area button{
    font-size: 1.3rem;
  }
}

.contact_flex{
  gap:3px;
  padding-block:1rem;
  

}
.phone_flex{
  /* width:80%;*/
    width:330px;
  display:flex;
 
  margin-bottom: 0.5rem;
  border: 1ps solid #25A941;
  border-radius: 6px;
  margin-left: 0.5rem;
 border:1px solid #91f0a9;
  overflow: hidden; /* prevents distortion */
  box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
}
.phone_flex_select{
  border:none;
   padding:0.8rem;
   min-width: 80px; 
 
   
}
.phone_flex_input{
 width:100%;
  border:none;
  padding-block: 0.8rem;
  color: #fff;
 padding-left: 0.5rem;
 margin-left: 0.5rem;  
}

#qa-input-email{
 /*  width:80%;*/
   width:330px;
   padding:0.8rem;
    border-radius: 6px;
     margin-left: 0.5rem;
      border:1px solid #91f0a9;
       box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
} 
#qa-input-email:focus{
  border:none;
}
.flex_buttons{
 padding-left: 0.8rem;
}

.qa-question-button{
  background: #25A941;
  border: 1px solid #25A941;
  margin-right:0.5rem;
   box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
    
 }

.qa-question-button:hover{
  background-color: #1d7c32;
}
.country_flex{
 margin-top: 0.5rem;
margin-left: 0.5rem;
 
}
.country_select{
  width:330px;
  padding-left: 0.5rem;
  border-radius: 6px;
  border:1px solid #91f0a9;
  box-shadow:  0 8px 32px 0 rgba(31, 38, 135, 0.3);
  color:#747272;
}
@media screen and (max-width:767px){
  .phone_flex,  #qa-input-email, .country_select{
    max-width:300px;
    font-size: 0.92rem;
  }
 
}
@media screen and (max-width:400px){
  .phone_flex_input{

 padding-left: 0rem;
 margin-left: 0.1rem;  
}
 .phone_flex,  #qa-input-email, .country_flex, .country_select{
    max-width:280px;
    font-size: 0.92rem;
   
}
   #qa-input-email{
    padding-left: 0.5rem;
   }
   
}


/* 🔥 Remove Chrome Autofill Background */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus, 
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: #000 !important;  /* keeps text white */
  transition: background-color 9999s ease-in-out 0s;
}
.phone_flex,
.phone_flex_select,
.phone_flex_input,
#qa-input-email,
.country_select {
  background: #fff !important;
  color: #000;
}