
*{
  margin: 0px;;
  padding: 0px;
  box-sizing: border-box;
  font-family: 'Poppins','sans-serif';
}
    .navbar-brand img {
      width: 150px;
    }

    .hero-slide {
      height: 80vh;
      object-fit: cover;
    }

    .carousel-caption {
      background: rgba(0,0,0,0.5);
      padding: 15px;
      border-radius: 8px;
    }


 /* About Section Background */
.about-wrap{
  background:#faf8f2;
  background-image:
    radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.02) 1px, transparent 1px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px, 24px 24px;
}

/* Image styling */
.about-img{
  max-width: 80%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}

/* Right copy + watermark */
.about-copy{ position: relative; }
.about-watermark{
  position: absolute;
  inset: -12px auto auto 0;
  font-weight: 800;
  font-size: clamp(40px, 10vw, 120px);
  line-height: .9;
  color: rgba(0,0,0,.04);
  text-transform: capitalize;
  pointer-events: none;
  user-select: none;
}
.ls-1{ letter-spacing: .12em; }

/* Read more button */
.readmore-btn{
  background: #e68313;
  color: #fff;
  border: 0;
  box-shadow: 0 6px 20px rgba(230,131,19,.25);
}
.readmore-btn:hover{ filter: brightness(.95); }
.readmore-btn .chev{
  display:inline-block;
  transition: transform .25s ease;
}
.readmore-btn[aria-expanded="true"] .chev{
  transform: rotate(180deg);
}
/* ===== Journey section ===== */
.journey-wrap{ background:#f4f8fb; }

.journey-card{
  position: relative;
  display: block;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  background:#000;
}
.journey-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 14px 28px rgba(0,0,0,.16);
}

/* media */
.journey-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  transition: transform 1.2s ease;
}
.journey-card:hover .journey-media img{
  transform: scale(1.1); /* gentle zoom on hover */
}

/* overlay content */
.journey-overlay{
  position: absolute;
  inset: 0;
  display: grid;
  align-content: end;
  gap: .5rem;
  padding: 1.25rem 1.25rem 1.5rem;
  color:#fff;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.0) 50%);
}
.journey-badge{
  position: absolute;
  left: 1rem; top: 1rem;
  background: #fff;
  color: #1b5e20;
  font-weight: 700;
  font-size: .8rem;
  padding: .35rem .6rem;
  border-radius: .5rem;
  box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.journey-title{
  margin: 0 0 .3rem;
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  line-height: 1.25;
  text-shadow: 0 2px 8px rgba(0,0,0,.35);
}
.journey-cta{
  align-self: start;
  box-shadow: 0 6px 14px rgba(255, 193, 7, .35);
  animation: pulse 2.2s infinite;
}
@keyframes pulse{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-1px); }
}

/* reveal on scroll */
.reveal-on-scroll{
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal-on-scroll.in{
  opacity: 1;
  transform: translateY(0);
}

/* responsive spacing */
@media (min-width: 992px){
  .journey-wrap{ padding-top: 3.5rem; padding-bottom: 3.5rem; }
}
/* Background with subtle pattern */
.specialities-wrap{
  background:#fcf9f4 url('assets/bg-pattern.png') repeat;
  background-size: 200px auto;
}

/* Card */
.speciality-card{
  padding: 1.5rem;
  border-radius: 12px;
  transition: transform .3s ease, box-shadow .3s ease;
  background: transparent;
}
.speciality-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}

/* Icon circle */
.speciality-icon{
  width: 110px;
  height: 110px;
  margin: 0 auto;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,.05);
}
.speciality-icon img{
  width: 55px;
  height: 55px;
  object-fit: contain;
}
/* Section bg like earlier rice pattern (optional) */
.products-wrap{
  background:#faf8f2;
  background-image:
    radial-gradient(rgba(0,0,0,.03) 1px, transparent 1px),
    radial-gradient(rgba(0,0,0,.02) 1px, transparent 1px);
  background-position: 0 0, 12px 12px;
  background-size: 24px 24px, 24px 24px;
}

/* Rail */
.products-rail{ padding: 1rem 0 3.5rem; }

/* Track: horizontal scroll + snap */
.products-track{
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 22vw, 320px);
  gap: clamp(12px, 2vw, 28px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: .5rem 1rem 1rem;
  -webkit-overflow-scrolling: touch;
}
.products-track::-webkit-scrollbar{ height: 10px; }
.products-track::-webkit-scrollbar-thumb{
  background: #e0e0e0; border-radius: 10px;
}

/* Card */
.product-card{
  scroll-snap-align: center;
  display: block;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
}
.product-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(0,0,0,.16);
}
.product-card img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Prev/Next buttons */
.products-nav{
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
  z-index: 2;
  font-weight: 700;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(25,135,84,.25);
}
.products-nav.prev{ left: 10%; }
.products-nav.next{ right: 10%; }

/* Buttons look like sample (rounded green) */
.products-nav.btn{
  background:#2e7d32;  /* dark green */
  border:0;
}
.products-nav.btn:hover{ filter: brightness(.95); }

/* Mobile: place buttons full width stacked */
@media (max-width: 576px){
  .products-nav.prev, .products-nav.next{
    position: static;
    transform: none;
    width: 100%;
    margin: .35rem 0 0;
  }
  .products-rail{ padding-bottom: 1rem; }
}
/* 
footer */

  .site-footer {
    background-color: #102d0f;
    color: #ffffff;
    padding: 60px 30px 20px;
    font-family: 'Poppins', sans-serif;
    position: relative;
  }
  
  .footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
  }
  
  .footer-column {
    flex: 1 1 200px;
    min-width: 220px;
  }
  
  .company-info .footer-logo {
    width: 200px;
    margin-bottom: 10px;
  }
  
  .company-info h2 {
    font-size: 20px;
    font-weight: 600;
  }
  
  .footer-links {
    list-style: none;
    padding: 0;
  }
  
  .footer-links li {
    margin: 10px 0;
  }
  
  .footer-links a {
    text-decoration: none;
    color: #aaa;
    transition: 0.3s;
  }
  
  .footer-links a:hover {
    color: #fff;
  }
  
  .blog-snippet {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
  }
  
  .blog-snippet img {
    width: 60px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
  }
  
  .blog-snippet .date {
    color: #fbbc05;
    font-size: 12px;
    margin-bottom: 4px;
  }
  
  .blog-snippet .title {
    font-size: 14px;
    color: #ddd;
    line-height: 1.3;
  }
  .blog-snippet a {
    font-size: 14px;
    color: #ddd;
    line-height: 1.3;
    text-decoration: none;
  }
  .contact p {
    margin: 8px 0;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .contact a{
    font-size: 14px;
    color: #ddd;
    line-height: 1.3;
    text-decoration: none;
    cursor: pointer;
  }
  .subscribe-box {
    margin-top: 20px;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    background: white;
    padding: 5px 10px;
    align-items: center;
  }
  
  .subscribe-box input {
    border: none;
    padding: 10px;
    flex: 1;
    outline: none;
  }
  
  .subscribe-box button {
    background-color: #ffc107;
    border: none;
    padding: 10px 15px;
    border-radius: 50%;
    cursor: pointer;
    color: #000;
  }
  
  .footer-bottom {
    border-top: 1px solid #ffffff22;
    margin-top: 40px;
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    color: #fff;
  }
  
  
  
  .social-icons a {
    color: #fff;
    font-size: 18px;
    margin: 0 10px;
    transition: color 0.3s;
  }
  
  .social-icons a:hover {
    color: #fbbc05;
  }
  
  .scroll-to-top {
    position: absolute;
    left: 30px;
    bottom: 30px;
    background-color: #1ca15e;
    color: #fff;
    border: none;
    border-radius: 50%;
    padding: 15px;
    font-size: 20px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .scroll-to-top:hover {
    background-color: #17894f;
  }
  


  
  .testimonial-section {
    padding: 40px 20px;
    text-align: center;
  }
  
  .section-title {
    font-size: 2rem;
    margin-bottom: 0.5em;
  }
  
  .section-subtitle {
    color: #555;
    font-size: 1rem;
    margin-bottom: 2rem;
  }
  
  .slider-wrapper {
    overflow: hidden;
    width: 100%;
  }
  
  .testimonial-track {
    display: flex;
    width: fit-content;
    animation: scrollRight 15s linear infinite; /* ⏩ Faster (was 30s) */
  }
  
  .testimonial {
    flex: 0 0 auto;
    width: 420px; /* 📏 Wider (was 300px) */
    margin: 0 20px;
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 8px 8px 0 #fbbc05;
    min-height: 200px;
  }
  
  .testimonial::before {
    content: "❝";
    font-size: 36px;
    color: #fbbc05;
    display: block;
    margin-bottom: 12px;
  }
  
  .testimonial p {
    color: #555;
    font-size: 16px;
    line-height: 1.5;
  }
  
  .testimonial .author {
    margin-top: 18px;
    font-weight: bold;
    color: #000;
  }
  
  .testimonial .school {
    font-size: 14px;
    color: #888;
  }
  
  @keyframes scrollRight {
    0% {
      transform: translateX(-50%);
    }
    100% {
      transform: translateX(0%);
    }
  }
  
  @media (max-width: 768px) {
    .testimonial {
      width: 280px; /* Make sure it looks good on small screens too */
    }
  }
