.home-hero-section {
  background: no-repeat center center/cover;
  color: var(--text-light);
  
  text-align: center;
  padding: 100px 20px;
  position: relative;
  height: 630px;
}

.home-hero-section h1 {
  font-size: 65px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.4;
  
}

.home-hero-section p {
  color: var(--text-light);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 25px auto;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .home-hero-section h1 {
    font-size: 3.0rem;
  }

}

.hero-btn {
  display: inline-block;    
  width: auto;              
  padding: 12px 30px;       
  background: var(--highlight-color);
  color: var(--text-light);
  border: none;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
}

.hero-btn:hover {
  background: var(--highlight-colorhover);
}


/* Responsive Styles */


@media (max-width: 480px) {
  .hero-section h1 {
    font-size: 1.6rem;
  }

  .hero-section p {
    font-size: 0.85rem;
  }

  .hero-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
  }
}











/* ABOUT SECTION */
.about-section {
  padding: 80px 20px;
  background: #fff;
}

.about-container {
  max-width: 1300px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

/* Left Image */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
  transition: transform 0.6s ease-in-out;
}


.about-image img:hover {
    transform: scale(1.05); /* Slight zoom-in */
}


/* Right Content */
.about-content {
  flex: 1;
}

.about-eyebrow {
  font: 700 16px/1 'Mukta', sans-serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--highlight-color);
  margin-bottom: 10px;
}

.about-title {
  font-family: Cambria, serif;
  font-size: 36px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.about-desc {
  line-height: 1.7;
  margin-bottom: 15px;
  color: var(--paragraph-color);
}

/* Actions */
.about-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 20px;
  flex-wrap: wrap;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: 0.3s ease;
  
}

.btn-primary {
  background: var(--highlight-color);
  padding: 12px 25px;
  text-decoration: none;
  border-radius: 6px;
  color: var(--text-light);
  font-weight: 600;
}

.btn-primary:hover {
  background: var(--primary-color);
}

/* Call Box */
.call-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 15px;
  border-radius: 6px;
  background: #fff;
}

.call-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--highlight-color);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.call-text span {
  font-size: 14px;
  color: var(--paragraph-color);
}

.call-text strong {
  font-size: 16px;
  color: var(--highlight-color);
  font-weight: bold;
}

/* Responsive */
@media (max-width: 992px) {
  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image,
  .about-content {
    max-width: 100%;
  }

  .about-actions {
    justify-content: center;
  }
}






/* our services *//* our services *//* our services *//* our services */

.home-services {
  background: var(--primary-color); /* light bluish background */
  padding: 80px 20px;
  align-items: stretch;
}

.home-services .container {
  max-width: 1300px;
  margin: 0 auto;
  text-align: left;
  
}


.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr); /* Always 3 per row */
  gap: 25px;
  max-width: 1300px;
  margin: 0 auto;
}

.home-card {
  background: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 40px ;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.1);
}

/* .home-card .icon {
  font-size: 24px;
  display: block;
  margin-bottom: 15px;
  color: var(--primary-color);
} */


.why-icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
  
}


.home-card h3 {
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.home-card p {
  line-height: 1.5;
  color: var(--paragraph-color);
}


.home-card .read-more {
  font-weight: bold;
  color: var(--highlight-color);   /* Green */
  text-decoration: none;
  transition: color 0.3s ease;
}

.home-card .read-more:hover {
  color: var(--highlight-color);
}


/* Responsive for smaller screens */
@media (max-width: 992px) {
  .home-grid {
    grid-template-columns: repeat(2, 1fr); /* 2 per row on tablets */
  }
}

@media (max-width: 600px) {
  .home-grid {
    grid-template-columns: 1fr; /* 1 per row on mobile */
  }
}










/* Base layout assumed to be side-by-side */
.guidance-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  padding: 80px 20px;
}

/* LEFT IMAGES LAYOUT */
.left-images {
  flex: 1;
  display: flex;
  gap: 20px;
  height: 600px; /* control proportions */
}

.big-image {
  flex: 1;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
  transition: transform 0.6s ease-in-out;
}

.big-image:hover {
transform: scale(1.04);
}

.stacked-images {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.stacked-image {
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  transition: transform 0.6s ease-in-out;
}


.stacked-image:hover {
transform: scale(1.04);
}


.stacked-image.top {
  flex: 3; /* 30% height */
}

.stacked-image.bottom {
  flex: 7; /* 70% height */
}

/* RIGHT CONTENT */
.right-content {
  flex: 1;
}

.subtitle {
  color: var(--highlight-color);
  font-weight: bold;
  margin-bottom: 10px;
}

.right-content h2 {
  font-size: 32px;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 30px;
}

.content-block {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.content-block .icon {
  color: var(--highlight-color);
  font-size: 20px;
  margin-top: 5px;
  
}

.content-block h3 {
  margin: 0;
  font-size: 18px;
  font-weight: bold;
  color: var(--primary-color);
}

.content-block p {
  margin: 5px 0 0;
  
  line-height: 1.5;
  color: var(--paragraph-color);
}



/* ===============================
   RESPONSIVENESS
   =============================== */

/* ✅ Below 1100px — stack layout and show only one image */
@media (max-width: 1100px) {
  .guidance-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 50px;
  }

  /* Show only the main big image */
  .left-images {
    justify-content: center;
  }

  .big-image {
    width: 320px;
    height: 420px;
    display: block;
  }

  /* Hide the smaller stacked images */
  .stacked-images {
    display: none;
  }

  .right-content {
    max-width: 90%;
  }

  .right-content h2 {
    font-size: 26px;
  }

  .content-block {
    flex-direction: column;
    align-items: center;
  }

  .content-block .icon {
    margin-bottom: 6px;
  }
}


/* ✅ Below 768px (tablet/phone) */
@media (max-width: 768px) {
  .guidance-section {
    padding: 40px 15px;
  }

  .big-image {
    width: 250px;
    height: 330px;
  }

  .stacked-image {
    width: 120px;
    height: 100px;
  }

  .right-content h2 {
    font-size: 26px;
  }

  .right-content p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/* ✅ Below 480px — Same (image first, content below) */
@media (max-width: 480px) {
  .guidance-section {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
    padding: 30px 10px;
  }

  .left-images {
    order: 1; /* image first */
    display: flex;
    justify-content: center;
  }

  .big-image {
    width: 250px;
    height: 320px;
    display: block;
  }

  /* Ensure small images hidden */
  .stacked-images {
    display: none;
  }

  .right-content {
    order: 2; /* content second */
    max-width: 95%;
  }

  .right-content h2 {
    font-size: 22px;
  }

  .right-content p {
    font-size: 14px;
    line-height: 1.6;
  }

  .content-block {
    flex-direction: column;
    align-items: center;
  }

  .content-block h3 {
    font-size: 16px;
  }
}

/* ✅ Below 320px */
@media (max-width: 320px) {
  .big-image {
    width: 180px;
    height: 240px;
  }

  .stacked-image {
    width: 80px;
    height: 65px;
  }

  .right-content h2 {
    font-size: 18px;
  }

  .right-content p {
    font-size: 13px;
  }
}










:root{
  --container-max: 1300px;
  --gap: 23.6px;
  --accent: #0b014b;
  --card-border: #ababff;
}

*{box-sizing:border-box}
body{margin:0;font-family:Inter, system-ui, Arial, sans-serif;color:#222;background:#fff;}

.testimonials-section{
  padding:30px 8px 80px;
  display:flex;
  justify-content:center;
}

.testimonial-container{
  width:100%;
  max-width:var(--container-max);
  margin:0 auto;
  text-align:center;
  position:relative;
}

/* Heading */
.section-title{ margin:0 0 6px; font-size:26px; color:var(--accent); font-weight:700; }
.section-subtitle{ margin:0 0 20px; color:#5b5b5b; font-size:14px; }

/* Wrapper holds viewport and arrows inside */
.testimonial-wrapper{
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  padding: 0 60px; 
}

/* Viewport */
.testimonial-viewport{
  overflow:hidden;
  
}

/* Track (flex row). We'll translate this */
.testimonial-track{
  display:flex;
  gap:var(--gap);
  align-items:stretch;
  transform:translateX(0);
  will-change:transform;

}

/* Card styles */
.testimonial-card{
  background:#fff;
  border:1px solid var(--card-border);
  border-radius:10px;
  padding:22px;
  text-align:left;
  box-shadow:0 6px 18px rgba(12,12,12,0.04);
  min-height:170px;
  flex:0 0 auto; /* width set by JS */
  
}





.stars{ color:#FFD700; margin-bottom:10px; font-size:18px;}
.testimonial-text{ color:#333; font-size:15px; line-height:1.6; margin-bottom:16px;}
.testimonial-footer{ display:flex; align-items:center; gap:12px;}
.client-img{ width:50px; height:50px; border-radius:50%; object-fit:cover;}
.client-name{ margin:0; color:var(--accent); font-weight:700;}
.client-position{ margin:0; color:#777; font-size:13px; }

/* ARROWS: positioned inside the container edges */
.testimonial-prev,
.testimonial-next{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:50%;
  border:2px solid var(--accent);
  background:#fff;
  color:var(--accent);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  z-index:5;
  font-size:20px;
  transition:all .15s ease;
}
.testimonial-prev:hover,
.testimonial-next:hover{ background:var(--accent); color:#fff; }

.testimonial-prev{ left:6px; }   /* inside left edge (8px from container inner) */
.testimonial-next{ right:6px; }  /* inside right edge */




/* Responsive breakpoints - width allocation controlled by JS, but fallback spacing */
@media (min-width: 992px) {
  /* desktop — 3 visible */
  .testimonial-wrapper{ padding:10px 58px; }
}
@media (min-width: 600px) and (max-width:991px) {
  /* tablet — 2 visible */
  .testimonial-wrapper{ padding:10px 40px; }
  .testimonial-prev, .testimonial-next{ width:40px; height:40px; font-size:18px;}
}
@media (max-width:599px) {
  /* mobile — 1 visible */
  .testimonial-wrapper{ padding:8px 32px; }
  .testimonial-prev, .testimonial-next{ width:38px; height:38px; font-size:16px; }
  .testimonial-prev{ left:6px; } .testimonial-next{ right:6px; }
}

/* small helper */
.demo-note{ font-size:12px; color:#666; margin-top:12px; }


























