/* hero */
header {
  background: var(--main-color);
}

/* Banner Section  */
/* Banner Section  */
/* Banner Section  */
.banner {
  padding-top: 2rem;
  padding-bottom: 0rem;
}

.banner .banner-container {
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  /* align-items: center; */
  column-gap: 0px;
  row-gap: 20px;
}

/* Banner Item  */
.banner .banner-container .banner-item {
  width: 40%;
}

.banner .banner-container .banner-item.details-container {
   padding: 0 0 0 2rem; /* 0 top, 0 right, 0 bottom, 4rem left */
   position: relative;
}

.banner .banner-container .banner-item.right-image {
  width: 60%;
}

.banner .banner-container .center-logo {
  display: none;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.banner .banner-container .center-logo img {
  width: 200px;
}

.banner .banner-container .hero-details {
  padding-top: 1rem; /*top marging hero banner */
}

.banner .banner-container .hero-details p {
  color: var(--white-color);
  font-size: 28px;
  text-align: left;
}



.banner .banner-container .hero-details h1 {
    font-size: 47px;
    font-weight: 600;
    text-transform: capitalize;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.banner .banner-container .hero-details .hero-description p {
    font-size: 24px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

.banner .banner-container .hero-details .courses-description p {
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
    color: #fff;
}

 
	
	
	
	
.banner .banner-container .hero-details .button-container {
  padding-top: 2rem;
  display: flex;
  align-items: center;
  gap: 20px;
}

.banner .banner-container .hero-details .scroll-container {
  padding-top: 1rem;
  display: flex;
  align-items: center;
  
}

.banner .banner-container .hero-details .button-container a {
  font-size: 17px;
  font-weight: 500;
  display: block;
}

.banner .banner-container .hero-image {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
}

.banner .banner-container .hero-image img {
  max-width: 100%;
}

/* Banner Responsive Section */
@media screen and (max-width: 1040px) {
  .banner .banner-container .bg-button {
    width: 150px;
  }
  
  .banner .banner-container .hero-details p {
  font-size: 35px;
}

.banner .banner-container .hero-details h1 {
    font-size: 32px;
   
}


}
@media screen and (max-width: 768px) {
  .banner .banner-container .hero-details h1 {
    font-size: 22px;
	text-align: center;
	
  }

}


@media screen and (max-width: 1040px) {
  .banner .banner-container .hero-details h1
  {
    font-size: 27px;
	
  }
  .banner .banner-container .hero-details h1
  {
    font-size: 25px;
	
  }
  
  .banner .banner-container .hero-details p {
  font-size: 22px;
  }
  
}



@media screen and (max-width: 899px) {
  .banner .banner-container .bg-button {
    width: 130px;
    position: relative;
    z-index: 9;
  }
  
  .banner .banner-container .hero-details p {
  font-size: 30px;
}
  
}


@media screen and (max-width: 767px) {
 
nav {
 padding: 0 24px; /* 0 top and bottom, 24px left and right */

}


 .banner {
    padding-top: 0rem;
  }

  .banner .banner-container {
    flex-direction: column;
  }

  .banner .banner-container .bg-button {
    width: 180px;
  }

  .banner .banner-container .banner-item {
    width: 100%;
  }

  .banner .banner-container .banner-item.right-image {
    width: 100%;
  }

  .banner .banner-container .center-logo {
    display: flex;
  }

  .banner .banner-container .hero-details p {
    text-align: center;
  }

  .banner .banner-container .hero-details .button-container {
    justify-content: center;
  }
  
  .banner .banner-container .hero-details .scroll-container {
    justify-content: center;
  }
  
  .banner .banner-container .hero-image {
    padding-top: 2rem;
  }
  
  .banner .banner-container .banner-item.details-container {
  padding: 0 1rem;
  }
  
   
}


@media screen and (max-width: 468px) {
  .banner .banner-container .bg-button {
    width: 150px;
  }
  
}

@media screen and (max-width: 400px) {
  .banner .banner-container .hero-details p {
    font-size: 18px;
  }

.banner .banner-container .hero-details .hero-description p {
    font-size: 18px;
  }

}

@media screen and (max-width: 335px) {
  .banner .banner-container .bg-button {
    width: 130px;
  }
}





.cta-button {
  background: var(--blue-color);
  color: var(--white-color);
  padding: 12px 24px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 25px;
  text-align: center;
  
  transition: all 0.3s ease; /* Smooth transition for hover effects */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); /* Subtle shadow */
}

.cta-button:hover {
  background: var(--blue2-color);
  color: var(--white-color);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2); /* Enhanced shadow on hover */
  transform: translateY(-2px); /* Slight lift effect */
}

.cta-button:active {
  transform: translateY(1px); /* Button presses down slightly when clicked */
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

/* Banner Responsive Section */
@media screen and (max-width: 1040px) {
  .banner .banner-container .cta-button {
    max-width: 150px; /* Changed from fixed width to max-width for better flexibility */
  }
 }

@media screen and (max-width: 899px) {
  .banner .banner-container .cta-button {
    max-width: 130px;
    position: relative;
    z-index: 9;
  }
  
  .banner .banner-container .hero-details p {
    font-size: 2em; /* Adjusted to use relative units for better responsiveness */
  }
}

@media screen and (max-width: 767px) {
  .banner .banner-container .cta-button {
    max-width: 140px; /* Adjusted for more uniform scaling */
  }
}

.profession-typing {
  font-size: 1.5rem;
  font-weight: 500;
  margin-top: 10px;
  color: var(--textblue-color);
}

/* Center the "profession-typing" text on small screens */
@media (max-width: 767px) {
  .profession-typing {
    text-align: center;
    display: block;      /* ensures full-width so centering works */
  }
}



/* Why-Us Section  */
/* Why-Us Section  */
/* Why-Us Section  */
/* Why-Us Section  */
/* Why-Us Section  */
/* Why-Us Section  */

/* General Styles */
.choose-container {
  padding: 20px 0;
}



.why-us {
  margin-top: 0px;
  box-sizing: border-box;
}


.bottom-wave-wrapper {
  width: 100%; /* ✅ Use 100% instead of 100vw */
  height: 120px;
  overflow: hidden;
  background: #2EDA9B;
  z-index: 1;
}

.bottom-wave {
  width: 3000px;
  height: 120px;
  margin: 0 auto;
  position: relative;
}

.bottom-wave-svg {
  width: 100%;
  height: 100%;
  display: block;
}


.why-us .choose-title h1 {
  font-size: 35px;
  color: var(--main-color);
  text-align: center;
  padding-top: 10px;
}

.why-us .choose-container {
  margin-top: 0rem;
  padding: 0 2rem;
  box-sizing: border-box;
}



.choose-container {
  margin-top: -13rem;
  padding: 0 2rem;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  gap: 20px; /* Consistent spacing */
  justify-content: center; /* Center align items */
}





.info-container .btn-link { 
background-color: orange; 
border: none;
color: white; 
padding: 10px 20px; 
text-align: center; 
text-decoration: none; 
display: inline-block; 
border-radius: 5px; 
margin-top: 30px; 
margin-bottom: 10px; 
transition: background-color 0.3s ease, transform 0.3s ease; 
} 

.info-container .btn-link:hover { 
background-color: darkorange; 
transform: scale(1.05); 
}


/* --- override default centering for choose-item cards --- */
.choose-item,
.choose-item .title,
.choose-item .info-container {
  text-align: left !important;   /* keep everything flush-left */
}


/* Why-US Responsive Section  */
@media screen and (max-width: 991px) {


}

@media screen and (max-width: 400px) {

}

/* Media query for screens with a maximum width of 768px */
@media screen and (max-width: 768px) {
 

}





/* Profession We Serve */
/* Default card layout for larger screens */

p {
  line-height: 1.9; /* Adjust this value as needed */
}



.fixed-width-container {
  max-width: 900px; /* Set a max width for the container */
  margin: 0 auto;    /* Center the container */
}


.card {
  border: none;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.card:hover {
  box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

/* Card image adjustments */
.card img {
  height: 200px;
  object-fit: contain;
  width: 100%;
}


/* Show two cards next to each other on small screens */
@media (max-width: 768px) {
  .card {
    width: 48%; /* Makes two cards fit next to each other */
    margin: 1%; /* Adds some space between cards */
  }
}

/* Adjustments for very small screens (e.g., mobile) */
@media (max-width: 576px) {
  .card {
    width: 100%; /* On very small screens, cards take full width */
    margin-bottom: 10px; /* Adds spacing between stacked cards */
  }
}




.proof         { text-align:center; padding:4rem 1rem; font-family:system-ui; }
.proof__count  { font-weight:700; font-size: clamp(2.5rem, 5vw, 3.5rem); }
.quote         { max-width:60ch; margin-inline:auto; }
.quote__title  { color:#12c58b; font-size:1.5rem; margin-bottom:.75rem; }
.quote__body   { font-size:1.125rem; line-height:1.45; margin:.5rem 0 1.5rem; }
.quote__stars  { font-size:1.75rem; letter-spacing:.15rem; }
.quote__author { display:block; font-style:italic; margin-top:.75rem; }
.nav           { background:#f4f4f6; border:none; border-radius:50%; width:60px; height:60px; font-size:2rem; cursor:pointer; }
.nav--prev     { position:absolute; left:0; top:50%; transform:translateY(-50%); }
.nav--next     { position:absolute; right:0; top:50%; transform:translateY(-50%); }

.proof__carousel {
  position: relative;
  padding: 0 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav {
  background: #f4f4f6;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  cursor: pointer;
 /* ↓↓↓ centering magic ↓↓↓ */
  display:flex;
  align-items:center;      /* vertical centering */
  justify-content:center;  /* horizontal centering */
  line-height:1;           /* prevents extra vertical offset */
  padding:0;               /* remove any default padding */
}

.nav--prev {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.nav--next {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}