 /* small responsive tweaks */
    @media (min-width: 1024px) {
      #kk-track .kk-item { min-width: calc(100% / 3); } /* 3 visible */
      #kk-track .kk-item img { height: 260px; }
    }
    @media (min-width: 640px) and (max-width: 1023px) {
      #kk-track .kk-item { min-width: calc(100% / 2); } /* 2 visible */
      #kk-track .kk-item img { height: 240px; }
    }
    @media (max-width: 639px) {
      #kk-track .kk-item { min-width: 100%; } /* 1 visible */
      #kk-track .kk-item img { height: 190px; }
      #kk-prev, #kk-next { width:36px;height:36px;font-size:18px; }
    }

    /* hover effect */
    #kk-track .kk-item img { transition: transform .25s ease, box-shadow .25s ease; }
    #kk-track .kk-item img:hover { transform: scale(1.02); box-shadow:0 8px 20px rgba(0,0,0,0.12); }



    .img{
      height: 180px;
      width: full;
    border-radius: 8px;
    }




    /* Counter Section Styling */
.counter-section {
    background: #f9fafc;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
    margin-top: 20px;
}

.counter-section .section-title h2 {
    font-size: 52px;
    font-weight: 700;
    color: #222;
}

.counter-section .section-title h2 span {
    color: #ff7b00;
}

.counter-section p {
    color: #555;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 16px;
}

.counter-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    padding: 20px 20px;
    transition: all 0.3s ease;
}

.counter-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 30px rgba(197, 8, 8, 0.1);
}

.counter-box h3 {
    font-size: 40px;
    font-weight: 700;
    color: #ff7b00;
    margin-bottom: 10px;
}

.counter-box p {
    font-size: 16px;
    color: #333;
    margin: 0;
    font-weight: 500;
}





/* Base Navbar Item */
.nav-item {
  position: relative;
}

/* Nav Link */
.nav-link {
  text-decoration: none;
  color: #fff; /* changed text to white */
  font-weight: 600;
  padding: 10px 15px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.nav-link:hover {
  color: #ffd700; /* optional: golden hover effect for contrast */
}

/* Dropdown Menu */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 38px;
  left: 0;
  z-index: 99;
  padding: 0 0;
  min-width: 200px;
  white-space: nowrap;
  background: #FF6200;   /* changed background to orange */
  box-shadow: none;     /* removed shadow */
  border: none;         /* clean look */
  border-radius: 4px;   /* optional: slightly rounded corners */
}

/* Dropdown Links */
.dropdown-menu a {
  display: block;
  color: #fff;          /* changed text to white */
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  padding: 6px 14px;
  transition: color 0.3s ease, background 0.3s ease;
}

.dropdown-menu a:hover {
  color: #FF6200;       /* optional: golden hover for contrast */
  background: #fff;  /* slightly darker orange on hover */
}

/* Show dropdown on hover (desktop) */
.nav-item:hover .dropdown-menu {
  display: block;
}

/* ---------- Responsive Styles ---------- */
@media (max-width: 768px) {
  /* Stack nav items vertically */
  .nav-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .nav-item {
    width: 100%;
  }

  .dropdown-menu {
    position: static;
    display: none;
    padding: 0;
    margin-top: 4px;
    background:  #FF6200;   /* maintain orange background on mobile */
  }

  .dropdown-menu a {
    padding: 10px 15px;
    border-bottom: 1px solid  #FF6200; /* lighter orange border */
    color: #fff;                       /* white text */
  }

  .dropdown-menu a:last-child {
    border-bottom: none;
  }

  /* Show on tap (via JS toggle) */
  .dropdown-menu.show {
    display: block;
  }
}







/* 🌿 Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* 🌿 Body Styling */
body {
  /* font-family: "Poppins", sans-serif; */
  /* font-family: " sans-serif", Arial; */
  font-family: " sans-serif",;
  background: #fff9f5;
  color: #1a1a1a;
   /* color: #000000; */
}

/* 🌿 Section Styling */
.gallery-section {
  max-width: 1300px;
  margin: 50px auto;
  text-align: center;
  padding: 0 20px;
}

.gallery-title {
  font-size: 2.5rem;
  margin-bottom: 30px;
  background: linear-gradient(90deg, #FF6200, #ff7f32);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
}

/* 🌿 Grid Layout */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 30px;
}

/* 🌿 Image Card */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
}

/* 🌿 Hover Effect */
.gallery-item:hover img {
  transform: scale(1.1);
  filter: brightness(0.8);
}

/* 🌿 Overlay Text */
.gallery-item::after {
  /* content: "View Photo"; */
  position: absolute;
  bottom: -50px;
  left: 0;
  right: 0;
  background: rgba(255, 98, 0, 0.85);
  color: white;
  padding: 10px;
  font-size: 1rem;
  transition: bottom 0.3s ease;
  opacity: 0;
}

.gallery-item:hover::after {
  bottom: 0;
  opacity: 1;
}

/* 🌿 Hidden Images */
.hidden {
  display: none;
}

/* 🌿 View All Button */
.btn-wrapper {
  margin-top: 30px;
}

#viewAllBtn {
  background: linear-gradient(90deg, #FF6200, #ff8533);
  border: none;
  padding: 12px 30px;
  color: white;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#viewAllBtn:hover {
  transform: scale(1.05);
  box-shadow: 0 5px 15px rgba(255, 98, 0, 0.4);
}

/* 🌿 Fullscreen Modal */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 1000;
  padding-top: 50px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.9);
}

.modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 900px;
  border-radius: 10px;
  box-shadow: 0 0 25px rgba(255, 98, 0, 0.8);
  animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
  from { transform: scale(0.7); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* 🌿 Close Button */
.close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: #FF6200;
  font-size: 40px;
  font-weight: bold;
  cursor: pointer;
  transition: color 0.3s ease;
}

.close:hover {
  color: #fff;
}




.white-text {
  color: white !important;
}













/* counter css start */

.counter-section {
  background: #fff8f0;
  padding: 60px 0;
}

.counter-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 30px;
}

.counter-box {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px 20px;
  flex: 1 1 200px;
  max-width: 340px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.s ease-in-out;
}

.counter-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.counter-box i {
  color: #ff7b00;
  font-size: 3.2rem;
  margin-bottom: 15px;
}

.counter-wrap {
  display: flex;
  align-items: baseline;
  justify-content: center;
}

.counter {
  font-size: 2.4rem;
  font-weight: 900;
  color: hsl(0, 0%, 0%);
  margin: 0;
}

.plus {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ff7b00;
  margin-left: 4px;
}

.counter-box p {
  font-size: 1.5rem;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
  letter-spacing: 0.5px;
}



 /* Simple Clean Book Section */
  .book-section {
    max-width: 1100px;
    margin: 50px auto;
    padding: 10px 0;
    display: grid;
    grid-template-columns: 300px auto;
    gap: 30px;
    align-items: start;
  }

  .book-section img {
    width: 100%;
    border-radius: 10px;
    border: 3px solid #ff7b00;
  }

  .book-info h2 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #ff7b00;
  }

  .book-info p {
    font-size: 17px;
    line-height: 1.6;
    margin: 6px 0;
  }

  .book-info strong {
    color: #ff7b00;
  }

  /* Counters */
  .book-counters {
    margin-top: 20px;
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
  }

  .counter-box {
    padding: 12px 20px;
    border-left: 4px solid #ff7b00;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    background: #fff;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .book-section {
      grid-template-columns: 1fr;
      text-align: center;
    }
    .book-counters {
      justify-content: center;
    }
    .counter-box {
      text-align: center;
    }
  }




 /* Gallery Book Section */


   .book-gallery-section {
    max-width: 1100px;
    margin: 40px auto;
    text-align: center;
  }

  .book-gallery-title {
    font-size: 34px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #ff7b00;
  }

  .book-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
  }

  .book-gallery-grid img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #ff7b00;
    cursor: pointer;
    transition: 0.3s ease;
  }
  .book-gallery-grid img:hover {
    transform: scale(1.03);
  }

  /* Responsive */
  @media (max-width: 768px) {
    .book-gallery-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  @media (max-width: 500px) {
    .book-gallery-grid {
      grid-template-columns: 1fr;
    }
  }










  .icon-box {
    width: 70px;
    height: 70px;
    background: #ff7a00;      /* Orange circle */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    transition: 0.3s;
}

.icon-box i {
    font-size: 28px;
    color: #ffffff;           /* White Icons */
}

.icon-box:hover {
    background: #e46d00;
}

.how-work-item {
    text-align: center;
    padding: 25px;
}


  




/* photp crausal start */





/* photp crausal  */



.image-frame {
  display: inline-block;
  padding: 10px;             /* Space between image and border */
  border: 3px solid #e46d00; /* Frame color */
  border-radius: 10px;       /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0,0,0,0.2); /* Shadow effect */
  overflow: hidden;
}

.image-frame img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 7px; /* Slight rounding inside the frame */
}




