/* =========================================================
   RESET & BASE
========================================================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  color: #555;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  color: #333;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1280px;
  margin: auto;
  padding: 60px 20px;
}

p {
  padding: 8px 0;
}


/* =========================================================
   HEADER ICONS - Simple Outline Design
========================================================= */

.header-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Common icon link styling */
.header-icons a {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  color: #333;
  transition: color 0.3s ease;
}

.header-icons a:hover {
  color: #000;
}
.header-icons .btn {
    color: #FFF;
    text-transform: uppercase;
    margin-top: 0;
}
/* ----- USER ICON ----- */
.user-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
}

/* User head (circle) */
.user-icon::before {
  content: "";
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
}

/* User body (semi-circle) */
.user-icon::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 10px;
  border: 1.5px solid currentColor;
  border-top: none;
  border-radius: 0 0 12px 12px;
}

/* ----- BAG/CART ICON ----- */
.bag-icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: inline-block;
  border: 1.5px solid currentColor;
  border-top: none;
  border-radius: 0 0 3px 3px;
}

/* Bag handle */
.bag-icon::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  border: 1.5px solid currentColor;
  border-bottom: none;
  border-radius: 6px 6px 0 0;
}

/* Optional: Cart count badge */
.cart-count {
  font-size: 12px;
  color: #333;
  margin-left: 4px;
  font-weight: 500;
}

/* Hover effect */
.header-icons a:hover .user-icon,
.header-icons a:hover .bag-icon {
  opacity: 0.7;
}


/* =========================================================
   ANNOUNCEMENT BAR
========================================================= */
.announcement-bar {
  background-color: #d1e8e2;
  color: #333;
  text-align: center;
  padding: 8px 0;
  font-size: 13px;
  font-weight: 400;
  width: 100%;
}

.announcement-bar p {
  margin: 0;
  letter-spacing: 0.5px;
}

/* =========================================================
   HEADER
========================================================= */
.site-header {
  background: #fff;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
}

.logo {
  font-size: 22px;
  font-weight: 600;
}

.logo img {
  width: 70%;
}

/* =========================================================
   NAVIGATION (DESKTOP)
========================================================= */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 15px 30px;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  color: #666;
}

/* =========================================================
   DROPDOWN (DESKTOP)
========================================================= */
.submenu {
  list-style: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  padding: 12px 0;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 9999;
}

.submenu li {
  display: block;
}

.submenu li a {
  display: block;
  width: 100%;
  padding: 4px 20px;
  font-size: 14px;
  color: #555;
  white-space: normal;
}

/* Desktop hover */
@media (min-width: 769px) {
  .has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    flex-direction: column;
  }
}

/* =========================================================
   BURGER MENU
========================================================= */
.burger {
  display: none;
  flex-direction: column;
  cursor: pointer; border: 1px solid #d678a7; padding: 5px 8px;
}

.burger span {
  width: 25px;
  height: 3px;
  background: #d678a7;
  margin: 4px 0;
}

.menu-close {
  display: none;
}

/* =========================================================
   HERO
========================================================= */
.hero {
  height: 75vh;
}

.hero-slider {
  position: relative;
  height: 100%;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Hero arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.7);
  border: none;
  font-size: 30px;
  padding: 10px 15px;
  cursor: pointer;
  z-index: 10;
}

.hero-arrow.prev {
  left: 20px;
}

.hero-arrow.next {
  right: 20px;
}

/* =========================================================
   ABOUT
========================================================= */
.about {
  background: #fff;
}

.blue_c {
  background: #f2f8f7;
}

.pink_c {
  background: #fcddd7;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #9e6b61;
  font-weight: 400;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  background: #f2b5c0;
  color: #fff;
  padding: 10px 22px;
  text-decoration: none;
  font-size: 13px;
}

/* =========================================================
   STATS
========================================================= */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.stat-box {
  text-align: center;
  padding: 120px 20px;
}

.green {
  background: #eaf5f3;
}

.pink {
  background: #fcddd7;
}

.grey {
  background: #f1f1f1;
}

.stat-box h3 {
  font-size: 60px;
 color: #9e6b61;
}

.stat-box p{font-size:28px;}

/* =========================================================
   WORK SECTIONS
========================================================= */
.work-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.work-grid.reverse {
  direction: rtl;
}

.work-grid.reverse > * {
  direction: ltr;
}

.work-text {
  padding: 50px;
}

.work-text h3 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #9e6b61;
  font-weight: 400;
}

.pink-bg {
  background: #fde6ea;
}

.green-bg {
  background: #eaf4f2;
}

.btn-link {
  display: inline-block;
  margin-top: 15px;
  font-size: 13px;
  color: #333;
  text-decoration: underline;
}

/* =========================================================
   CTA
========================================================= */
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-box {
  position: relative;
  text-decoration: none;
  color: #fff;
}

.cta-box span {
  position: absolute;
  bottom: 40%;
  left: 40%;
  background: rgba(255,255,255,0.85);
  color: #333;
  padding: 10px 20px;
  font-size: 13px;
}

/* =========================================================
   PARTNERS
========================================================= */
.partners {
  text-align: center;
  background: #fcfbfc;
}

.logo-slider {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 30px;
}

.partners-slider-wrapper {
  display: flex;
  align-items: center;
  position: relative;
  gap: 10px;
}

.partners-overflow {
  overflow: hidden;
  width: 100%;
}

.partners-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.logo-item {
  flex: 0 0 20%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.logo-item img {
  max-width: 100%;
  height: 50px;
  object-fit: contain;
  transition: 0.3s;
}

.logo-item img:hover {
  filter: grayscale(0%);
}

.partner-arrow {
  background: #f0f0f0;
  border: none;
  font-size: 30px;
  cursor: pointer;
  padding: 10px;
  z-index: 10;
}

/* =========================================================
   CONTRIBUTORS SLIDER
========================================================= */
.contributors-slider {
  background-color: #eaf4f2;
  padding: 10px 0;
  text-align: center;
}

.section-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 28px;
  color: #8c6a5e;
  margin-bottom: 20px;
  font-weight: 400;
  letter-spacing: 1px;
}

.slider-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  flex: 1;
  padding: 0 50px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-slide {
  display: none;
  animation: fadeIn 0.8s ease;
}

.testimonial-slide.active {
  display: block;
}

.contributor-logo img {
  max-height: 40px;
  margin: 0 auto 30px;
  display: block;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #444;
  max-width: 850px;
  margin: 0 auto;
  font-weight: 400;
}

/* Arrow Buttons */
.slider-arrow {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #333;
  padding: 10px;
  transition: color 0.3s;
}

.slider-arrow:hover {
  color: #f2b5c0;
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================================================
   CONTRIBUTORS / INSTAGRAM
========================================================= */
.contributors,
.instagram {
  text-align: center;
}

.contributor-text {
  max-width: 700px;
  margin: auto;
  font-size: 15px;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 30px;
}

/* =========================================================
   MEDIA
========================================================= */
.media-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.media-text h3 {
  font-size: 26px; font-weight: 400;
  margin-bottom: 15px;
}

/* =========================================================
   FOOTER
========================================================= */
.footer {
  background: #ebf5f4;
  margin: 20px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer h4 {
  margin-bottom: 10px;
}

.footer ul {
  list-style: none;
}

.footer a {
  text-decoration: none;
  font-size: 14px;
  color: #555;
}

.footer-bottom {
  text-align: center;
  padding: 15px;
  border-top: 1px solid #ddd;
  font-size: 13px;
}

/* =========================================================
   MOBILE NAV & DROPDOWN
========================================================= */
.menu-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.submenu-toggle {
  background: none;
  border: none;
  font-size: 14px;
  cursor: pointer; padding:1px 10px;  min-width: 10px;
   
  }

  .submenu-toggle:hover {
    background: #f9f9f9;
  }

  /* Arrow Icon (Chevron Down) */
  .submenu-toggle::before {
    content: "›";
    display: inline-block;
    transform: rotate(90deg);
    transition: transform 0.3s ease;
    font-size: 20px;
  }

  /* Rotate arrow when submenu is open */
  .has-submenu.open .submenu-toggle::before {
    transform: rotate(-90deg);
  }

/* =========================================================
   HEADER ICONS – OUTLINE DESIGN
========================================================= */
.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Common icon link */
.header-icons .icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #777;
  font-size: 0;
}

/* Icon base */
.header-icons .icon span:not(.cart-count) {
  display: inline-block;
  width: 26px;
  height: 26px;
  border: 2px solid #888;
  border-radius: 4px;
  position: relative;
}

/* USER ICON (outline style) */
.icon-user {
  border-radius: 50%;
}

.icon-user::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 6px;
  height: 6px;
  border: 2px solid #888;
  border-radius: 50%;
}

.icon-user::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 6px;
  border: 2px solid #888;
  border-top: none;
  border-radius: 0 0 8px 8px;
}

/* BAG ICON (outline style) */
.icon-bag::before {
  content: "";
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 8px;
  border: 2px solid #888;
  border-bottom: none;
  border-radius: 8px 8px 0 0;
}

/* Cart count */
.cart-count {
  font-size: 14px;
  color: #777;
  margin-left: 4px;
  line-height: 1;
}

/* Hover (optional) */
.header-icons .icon:hover span:not(.cart-count),
.header-icons .icon:hover .cart-count {
  border-color: #555;
  color: #555;
}

/* =========================================================
 Our Belief Page
========================================================= */




/* Hero */
.hero-section {
    /* Image path yahan daalein */
    background-image: url('../images/our-belief-banner.jpg'); 
    background-size: cover;
    background-position: center;
    height: 350px; /* Aap apne hisaab se adjust kar sakte hain */
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Background ko dull banane ke liye overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Black color ka 50% transparency (dull effect) */
    background-color: rgba(0, 0, 0, 0.5); 
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-text {
    color: #ffffff;
    font-family: 'Poppins', sans-serif; /* Ya jo bhi font aap use kar rahe hain */
    font-size: 32px;
    font-weight: 600;
    letter-spacing: 4px; /* Text ke beech mein space ke liye */
    text-transform: uppercase; 
    z-index: 1; /* Text overlay ke upar rahega */
}

/* Movement Section */
.movement-section {
    padding: 60px 20px 0 20px;
    text-align: center;
    
    margin: auto;
}

.movement-section h2 { font-size: 36px; color: #a06a60;}

.belief-tags {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
}

.tag {
    padding: 8px 25px;
    border-radius: 5px;
    font-size: 0.95rem;
    width: fit-content;
}

.tag-pink { background: #fee2e2; }
.tag-teal { background: #e0f7fa; }
.tag-grey { background: #f3f4f6; }
.tag-orange { background: #ffedd5; }
.tag-yellow { background: #fef9c3; }
.tag-light-grey { background: #f1f5f9; }

/* --- Info Blocks (Updated) --- */
.info-block {
    display: flex;
    flex-wrap: wrap; /* Mobile par stack hone ke liye */
    align-items: stretch; /* Taaki content aur image ki height barabar rahe */
    min-height: 450px; /* Thoda height badhaya hai design match karne ke liye */
    width: 100%; margin: 40px 0;
}

.info-block.reverse { 
    flex-direction: row-reverse; 
}

.info-content {
    flex: 0 0 50%; /* Exactly 50% width */
    max-width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Content ko vertically center rakhega */
    box-sizing: border-box;
}

.info-content h3{ font-size: 34px; color: #9e6941;}

.info-image {
    flex: 0 0 50%; /* Exactly 50% width */
    max-width: 50%;
    overflow: hidden;
}

.info-image img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Image ko bina stretch kiye fit karega */
    display: block;
}


/* Contributors Section */

.testimonial-slider{max-width: 1280px;
  margin: auto;
  padding:20px;}
.testimonial-slider h2{text-align: center; color: #9e6b61; font-size: 38px;}

.slider-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    min-height: 250px;
}



.custom-slide {
    display: none; /* JS isse handle karega */
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    text-align: center;
}

.custom-slide img { text-align: center;     display: inline-block;}

.custom-slide.active {
    opacity: 1;
}

.slider-nav {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.slider-nav button {
    background: none;
    border: 1px solid #a68b80;
    color: #a68b80;
    padding: 10px 15px;
    cursor: pointer;
    font-size: 20px;
    transition: 0.3s;
}

.slider-nav button:hover {
    background: #a68b80;
    color: white;
}

/* =========================================================
 Our Belief Page END
========================================================= */


/* Info Blocks 50/50 Split */
.info-block { display: flex; flex-wrap: wrap; align-items: center; }
.info-content { flex: 0 0 50%; padding: 60px; box-sizing: border-box; }
.info-image { flex: 0 0 50%; }
.info-image img { width: 100%; display: block; }

/* Cards & Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-top: 20px; }
.market-card { padding: 40px; }
.market-card h3{text-align: center; color: #242323; font-size: 35px;}
.market-card h4{color: #242323; font-size: 26px; font-weight:600;}
.bg-light-teal { background-color:#eaf5f3; }
.bg-light-pink { background-color:#fcddd6; }
.bg-grey { background-color:#e8e6e8; }

.impact-card { padding: 40px; margin:40px 0; }
.impact-card h3{text-align: center; color: #242323; font-size: 35px;}
/* Table Styling */
.table-responsive { overflow-x: auto; margin-top: 30px; }
.growth-table { width: 100%; border-collapse: collapse; background:#fff; }
.growth-table th, .growth-table td { 
    padding: 15px; 
    border: 1px solid #ddd; 
    text-align: center; 
}
.growth-table th { background-color: #f9f9f9; color: var(--text-brown); }

.takeaway { margin-top: 30px; font-style: italic; color: #555; border-left: 4px solid var(--text-brown); padding-left: 15px; }
.ourGrwth{margin:0; padding:0;}
.ourGrwth  h2{text-align: center; color: #9e6b61; font-size: 36px;}
.section-desc{ text-align: center; padding:0 60px;}

/* --- Base Styles --- */
.our-school-page {
  
    color: #5a4a42;
    overflow-x: hidden;
}

.gry_box{width: 1280px; margin: 0 auto; background:#f1f1f1; padding: 40px;}

.school-main-title {
    
    text-align: center;
    color: #a68b80;
    margin:0 20px;
    font-size: 28px;
}

.school-intro-text, .school-mission-text {
    text-align: center;
    max-width: 90%;
    margin: 0 auto 40px;
    line-height: 1.8;
    font-size: 15px;
}

/* --- 50/50 Flex Block --- */
.school-flex-block {
    display: flex;
    align-items: stretch;
    margin-bottom: 50px;
}

.school-img, .school-content-box {
    flex: 0 0 50%;}

.school-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.school-content-box {
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bg-teal { background-color: #e0f2f1; }

/* --- Stats Grid --- */
.school-stats {
    display: flex;
    width: 100%;
    text-align: center;
}

.stat-box {
    flex: 1;
    padding: 80px 20px;
}

.stat-box h3 { font-size: 50px; margin-bottom: 10px; color: #9f6a62; font-weight: bold;}
.stat-box p { font-size: 22px; color: #111; }

.bg-teal-light { background-color: #f0fafa; }
.bg-pink-light { background-color: #fdf2f0; }
.bg-grey-light { background-color: #eceff1; }

/* --- Slider Styles --- */
.artisan-slider-section { padding: 60px 0; background: #fff; }

.school-slider-container {
    position: relative;
    max-width: 800px;
    margin: 30px auto 0 auto;
    display: flex;
    align-items: center;
}

.school-slides-wrapper {
    flex: 1;
    text-align: center;
    min-height: 200px;
}

.artisan-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.artisan-slide.active { display: block; }

.artisan-img img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px; display: inline;
}
.artisan-slide img {
    
}

.artisan-quote {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
}

.slider-arrow {
    background: none;
    border: none;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    padding: 0 20px;
    transition: 0.3s;
}

.slider-arrow:hover { color: #a68b80; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}


.school-banner {
    /* Image path yahan daalein */
	background-image: url('../images/our-school-banner.jpg'); }


/* Custom Styles for Our Story Section */
.ourstory-container {
  
    line-height: 1.6;
    color: #444;
    overflow-x: hidden;
}

.ourstory-flex-wrapper {
    display: flex;
    align-items: stretch; /* Image aur Text ki height barabar rakhta hai */
}

.ourstory-image-side {
    flex: 0 0 50%;
}

.ourstory-image-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ourstory-text-side {
    flex: 0 0 50%;
    background-color: #f0fafa; /* Light Teal background */
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ourstory-heading {
   
    color: #a68b80;
    font-size: 28px;
    margin-bottom: 20px;
}

.ourstory-text-side p {
    margin-bottom: 20px;
    font-size: 14.5px;
    color: #555;
}

/* Pink Banner Section */
.ourstory-support-banner {
    background-color: #fdf2f0; /* Soft Pink background */
    padding: 80px 20px; margin: 0 0 40px 0;
    text-align: center;
}

.ourstory-narrow-content {
    max-width: 900px;
    margin: 0 auto;
}

.ourstory-narrow-content p {
    font-size: 15px;
    margin-bottom: 30px;
    color: #444;
}

.ourstory-footer-text {
    font-weight: 500;
}

.women_empower{}
.women_empower p{ color:#333; font-size:16px; }



/* Our Dream Page*/

.ourdream-page {
   
    color: #5a4a42;
    background-color: #fff;
}

.ourdream-header {
    text-align: center;
    padding: 50px 20px;
}

.ourdream-header h1 {
    
    color: #a68b80;
    font-size: 26px;
    font-weight: 500;
}

.ourdream-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px 80px;
}

.ourdream-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 25px;
    background-color: #f0fafa; /* Light Teal Background as per image */
    border-radius: 4px;
    overflow: hidden;
}

.ourdream-img {
    flex: 0 0 45%;
    max-width: 45%;
}

.ourdream-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ourdream-content {
    flex: 0 0 55%;
    max-width: 55%;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.ourdream-content h2 {
   
    color: #a68b80;
    font-size: 30px;
    margin-bottom: 15px;
    line-height: 1.3;
}

.ourdream-content p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

.ourdream-content p:last-child {
    margin-bottom: 0;
}

.empowerment-page {
   
    color: #5a4a42;
    padding-bottom: 80px;
}

.text-center { text-align: center; }

.emp-main-title {
    
    color: #a68b80;
    margin: 50px 0 20px;
    font-size: 28px;
}

.emp-intro {
    max-width: 900px;
    margin: 0 auto 50px;
    padding: 0 20px;
    line-height: 1.6;
    font-size: 15px;
    color: #666;
}

/* Grid Layout */
.emp-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.emp-card {
    text-align: center;
}

.emp-card-img {
    width: 100%;
    height: 250px;
    overflow: hidden;
    margin-bottom: 15px;
}

.emp-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.emp-card:hover img {
    transform: scale(1.05);
}

.emp-card p {
    font-size: 14px;
    line-height: 1.4;
    color: #444;
}

/* Slider Section */
.emp-slider-section {
    margin-top: 100px;
    text-align: center;
}

.emp-slider-title {
   
    color: #a68b80;
    font-size: 24px;
    margin-bottom: 30px;
}

.emp-slider-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.emp-slide-content {
    flex: 1;
}

.emp-artisan-slide {
    display: none;
    animation: fadeIn 0.5s;
}

.emp-artisan-slide.active {
    display: block;
}

.artisan-thumb {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

.quote {
    font-size: 16px;
    font-style: italic;
    color: #555;
}

.emp-nav-btn {
    background: none;
    border: none;
    font-size: 30px;
    color: #ccc;
    cursor: pointer;
    padding: 0 20px;
}

@keyframes fadeIn {
    from { opacity: 0; } to { opacity: 1; }
}

.ourschool-contact-section {
    padding: 80px 0;
    background-color: #fff;
    color: #5a4a42;
}

.ourschool-contact-flex {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

/* Left Side Styles */
.ourschool-contact-info {
    flex: 0 0 40%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ourschool-info-card {
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.ourschool-info-card:hover {
    transform: translateY(-5px);
}

.ourschool-info-card h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #a68b80;
}

.ourschool-info-card p {
    font-size: 14px;
    line-height: 1.5;
}

/* Right Side Form Styles */
.ourschool-contact-form-wrapper {
    flex: 0 0 60%;
    background: #f0fafa; /* Light Teal match */
    padding: 40px;
    border-radius: 12px;
}

.form-group {
    margin-bottom: 20px;
}

.ourschool-form input, 
.ourschool-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    outline: none;
}

.ourschool-form input:focus, 
.ourschool-form textarea:focus {
    border-color: #a68b80;
}

.ourschool-submit-btn {
    background-color: #a68b80;
    color: white;
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s;
}

.ourschool-submit-btn:hover {
    background-color: #8d6e63;
}

/* Colors from Design */
.bg-teal-light { background-color: #e0f2f1; }
.bg-pink-light { background-color: #fdf2f0; }
.bg-grey-light { background-color: #eceff1; }


.ourschool-testimonials-page {
   
    color: #5a4a42;
    padding-bottom: 80px;
   
}

.ourschool-header {
    text-align: center;
    padding: 60px 20px;
}

.ourschool-intro {
    color: #8d6e63;
    font-style: italic;
    margin-top: 10px;
}

.ourschool-testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    grid-gap: 25px;
    grid-auto-flow: dense;
}

.ourschool-testi-card {
    padding: 30px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ourschool-testi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.testi-user {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.testi-user img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
}

.testi-user h4 {
    font-size: 16px;
    margin: 0;
    color: #a68b80;
}

.testi-user span {
    font-size: 12px;
    color: #999;
}

.ourschool-testi-card p {
    font-size: 14.5px;
    line-height: 1.7;
    color: #555;
}

/* Color Themes */
.bg-teal-light { background-color: #e0f2f1; }
.bg-pink-light { background-color: #fdf2f0; }
.bg-grey-light { background-color: #eceff1; }
.bordered { border: 2px solid #fdf2f0; background: #fff; }

/* Masonry Effect for wider cards */
.ourschool-testi-card.wide {
    grid-column: span 2;
}

.ourschool-media-page {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding-bottom: 80px;
}

.ourschool-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
}

.ourschool-media-card {
    cursor: pointer;
    background: #fdf2f0; /* Soft Pink Theme */
    border-radius: 12px;
    overflow: hidden;
    transition: 0.3s;
}

.ourschool-media-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.media-img-container {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.media-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.media-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(166, 139, 128, 0.7); /* Brownish Overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.ourschool-media-card:hover .media-overlay { opacity: 1; }
.media-overlay span { color: white; font-weight: 500; border: 1px solid white; padding: 8px 15px; }

.media-heading { padding: 15px 15px 5px; font-size: 18px; color: #8d6e63; }
.media-date { padding: 0 15px 20px; font-size: 13px; color: #999; }

/* --- Popup Styles --- */
.media-popup {
    display: none;
    position: fixed;
    z-index: 9999;
    padding-top: 50px;
    left: 0; top: 0; width: 100%; height: 100%;
    background-color: rgba(0,0,0,0.9);
    overflow: auto;
}

.popup-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 85vh;
    border: 3px solid #fff;
}

#popupCaption {
    margin: auto;
    display: block;
    width: 80%;
    text-align: center;
    color: #ccc;
    padding: 20px 0;
}

.popup-close {
    position: absolute;
    top: 20px; right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

.ourstory-journey-page {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding-bottom: 100px;
}

.ourstory-timeline-container {
    position: relative;
    max-width: 1100px;
    margin: 50px auto;
    padding: 0 20px;
}

/* Vertical Center Line */
.ourstory-timeline-container::after {
    content: '';
    position: absolute;
    width: 2px;
    background: #e0f2f1; /* Light Teal match */
    top: 0; bottom: 0; left: 50%;
    margin-left: -1px;
}

.ourstory-journey-step {
    padding: 40px 0;
    position: relative;
    width: 100%;
}

/* Year Circle in Center */
.journey-year {
    position: absolute;
    left: 50%;
    top: 40px;
    transform: translateX(-50%);
    background: #a68b80; /* Theme Brown */
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    z-index: 10;
    border: 4px solid #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.journey-content {
    position: relative;
    width: 45%;
    background: #fdf2f0; /* Soft Pink Theme */
    border-radius: 12px;
    overflow: hidden;
    transition: 0.4s ease;
}

.journey-content.left { left: 0; }
.journey-content.right { left: 55%; }

.journey-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

.journey-text {
    padding: 25px;
}

.journey-text h3 {
    color: #a68b80;
    margin-bottom: 10px;
    
}

.journey-text p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}

.ourschool-shop-page {
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    padding-bottom: 80px;
}

/* Category Filters */
.shop-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    border: 1px solid #e0f2f1; /* Light Teal */
    background: white;
    border-radius: 25px;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s;
    color: #5a4a42;
}

.filter-btn.active, .filter-btn:hover {
    background: #e0f2f1;
    border-color: #a68b80;
}

/* Product Grid */
.shop-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 30px;
}

.product-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #fdf2f0; /* Pinkish Border */
    overflow: hidden;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.product-img {
    position: relative;
    height: 280px;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #a68b80; /* Brown theme */
    color: white;
    padding: 4px 12px;
    font-size: 11px;
    border-radius: 20px;
    text-transform: uppercase;
}

.product-details {
    padding: 20px;
}

.product-details h3 {
    font-size: 18px;
    color: #5a4a42;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.product-desc {
    font-size: 13px;
    color: #888;
    margin-bottom: 15px;
    height: 40px;
    overflow: hidden;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price {
    font-weight: 600;
    color: #a68b80;
    font-size: 18px;
}

.add-to-cart {
    background: #fdf2f0; /* Soft Pink */
    border: none;
    padding: 8px 15px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    color: #5a4a42;
    transition: 0.3s;
}

.add-to-cart:hover {
    background: #a68b80;
    color: white;
}
/* gallery-page CSS- 4 Feb------------------ */
/* Container & Grid */
.imgS-container { max-width: 1200px; margin: 0 auto; padding: 40px 20px; font-family: 'Poppins', sans-serif; }
.imgS-folder-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 30px; }

/* Folder Cards */
.imgS-folder-card { cursor: pointer; border-radius: 20px; overflow: hidden; background: #fff; box-shadow: 0 10px 20px rgba(0,0,0,0.05); position: relative; transition: transform 0.3s ease; }
.imgS-folder-card:hover { transform: translateY(-10px); }
.imgS-cover-wrap { height: 350px; width: 100%; }
.imgS-cover-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Overlay & Badges */
.imgS-folder-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 30px 20px; background: linear-gradient(transparent, rgba(0,0,0,0.85)); color: white; }
.imgS-badge { background: #a68b80; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 500; }
.imgS-folder-info .head { margin: 10px 0 0; font-size: 26px; color: #fff; }

/* Popup Lightbox */
.imgS-popup-overlay { display: none; position: fixed; z-index: 100000; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.98); backdrop-filter: blur(8px); }
.imgS-popup-close { position: absolute; top: 25px; right: 35px; color: white; font-size: 50px; cursor: pointer; z-index: 100001; }
.imgS-slider-box { height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 20px; }
.imgS-img-holder { max-width: 85%; text-align: center; }
#imgS-active-pic { max-width: 100%; max-height: 80vh; border: 4px solid rgba(255,255,255,0.1); border-radius: 10px; }
.imgS-caption { color: #ccc; margin-top: 20px; font-size: 18px; }

/* Buttons */
.imgS-nav-btn { background: rgba(255,255,255,0.1); color: white; border: none; font-size: 40px; width: 60px; height: 60px; cursor: pointer; border-radius: 50%; transition: 0.3s; }
.imgS-nav-btn:hover { background: #a68b80; }

.imgS-hidden-data { display: none !important; }

/* Mobile Responsive */
@media (max-width: 768px) {
    .imgS-folder-grid { grid-template-columns: 1fr; }
    .imgS-img-holder { max-width: 95%; }
    .imgS-nav-btn { width: 50px; height: 50px; font-size: 25px; position: absolute; bottom: 40px; }
    .imgS-prev { left: 25%; }
    .imgS-next { right: 25%; }
}

.imgS-journey-section {
    background-color: #fff;
    padding: 80px 0;
    font-family: 'Poppins', sans-serif;
}

.imgS-container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
}

.imgS-timeline-header {
    text-align: center;
    margin-bottom: 70px;
}

.imgS-main-title {
    font-family: 'Playfair Display', serif;
    color: #a68b80;
    font-size: 38px;
    margin-bottom: 15px;
}

.imgS-intro-text {
    color: #777;
    font-size: 18px;
    font-style: italic;
}

/* Timeline Base */
.imgS-timeline {
    position: relative;
    padding: 20px 0;
}

/* Central Line */
.imgS-timeline::before {
    content: '';
    position: absolute;
    width: 2px;
    background: #e0f2f1;
    top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
}

.imgS-timeline-block {
    position: relative;
    width: 50%;
    margin-bottom: 60px;
}

.imgS-left { left: 0; padding-right: 60px; text-align: right; }
.imgS-right { left: 50%; padding-left: 60px; text-align: left; }
.imgS-center { width: 100%; left: 0; text-align: center; margin-bottom: 80px; }

/* Year Marker */
.imgS-marker {
    position: absolute;
    top: 25px;
    width: 65px; height: 32px;
    background: #a68b80;
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 10;
    font-size: 13px;
    box-shadow: 0 3px 8px rgba(166, 139, 128, 0.3);
}

.imgS-left .imgS-marker { right: -32.5px; }
.imgS-right .imgS-marker { left: -32.5px; }
.imgS-center .imgS-marker { left: 50%; transform: translateX(-50%); top: -16px; width: 90px; }

/* Card Design */
.imgS-content {
    background: #fdf2f0;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(166, 139, 128, 0.12);
    transition: transform 0.3s ease;
}

.imgS-content:hover { transform: translateY(-8px); }

/* Image Styling */
.imgS-media-wrap {
    width: 100%;
    height: 240px;
}

.imgS-media-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}

.imgS-text-box {
    padding: 30px;
}

.imgS-text-box h3 {
    margin-top: 0;
    color: #a68b80;
    font-size: 24px;
    margin-bottom: 12px;
}

.imgS-text-box p {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    .imgS-timeline::before { left: 20px; }
    .imgS-timeline-block { width: 100%; left: 0; padding-left: 50px; padding-right: 0; text-align: left; }
    .imgS-marker { left: -10px !important; width: 50px; }
    .imgS-center .imgS-marker { left: 15px !important; transform: none; top: -15px; }
    .imgS-media-wrap { height: 180px; }
}