/* Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans Devanagari', Arial, sans-serif;
  color: #8d6663;
  background-color: #fff8e1;
  line-height: 1.6;
  padding-top: 120px;
  overflow-x: hidden;
}

a {
  color: #8d6663;
  text-decoration: none;
}

h1, h2, h3, h4, h5 {
  color: #8d6663;
  font-weight: 700;
}

/* Smooth Scrolling */
html {
  scroll-behavior: auto;
}


/* Unified Header Styles */
.header-right-section {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-info-desktop {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-link-small {
  font-size: 12px;
  color: #6c757d;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  transition: color 0.3s ease;
}

.contact-link-small:hover {
  color: #8d6663;
}

.contact-divider {
  color: #6c757d;
  margin: 0 8px;
  font-size: 12px;
}

.social-icons-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-link-header {
  color: #8d6663;
  text-decoration: none;
  font-size: 18px;
  transition: color 0.3s ease;
}

.social-link-header:hover {
  color: #5a4a3a;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Second Navbar Styles */
#second-navbar {
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: fixed;
  top: 70px !important;
  left: 0;
  right: 0;
  z-index: 1020;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid #e0e0e0;
}

.second-navbar,
.sub-navbar {
  padding-left: 60px;
  padding-right: 60px;
}

.nav-link-second {
  color: #8d6663 !important;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s ease;
}

.nav-link-second:hover {
  color: #e65100 !important;
}

.nav-divider {
  color: #8d6663;
  margin: 0 0.5rem;
  font-size: 1rem;
}

.business-text, .campaign-text {
  color: #8d6663;
  font-weight: 600;
  font-size: 0.9rem;
}

.btn-yellow-pill {
  background-color: #029df7;
  color: #212529;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-yellow-pill:hover {
  background-color: #ffb300;
  color: #212529;
}

.btn-orange-donate {
  background-color: #ffed00;
  color: #000;
  border: none;
  border-radius: 20px;
  padding: 0.4rem 1.2rem;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
}

.btn-orange-donate:hover {
  background-color: #e55a2b;
  color: white;
}

.contact-dropdown-menu {
  background-color: #fef9e7;
  border: 1px solid #f5e6cc;
  box-shadow: 0 6px 20px rgba(141, 102, 99, 0.1);
  border-radius: 8px;
  padding: 16px 24px;
  min-width: 400px;
  top: 100%;
  left: 0;
}

.contact-dropdown-menu .dropdown-item {
  color: #8d6663;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f0e6d2;
  white-space: normal;
  line-height: 1.4;
}

.contact-dropdown-menu .dropdown-item:last-child {
  border-bottom: none;
}

.contact-dropdown-menu .dropdown-item:hover {
  background-color: transparent;
  color: #e65100;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .contact-info-desktop {
    display: none;
  }
  
  .header-right-section {
    gap: 8px;
  }
  
  .social-icons-header {
    gap: 8px;
  }
  
  #second-navbar {
    height: auto;
    padding: 1rem 0;
  }
  
  #second-navbar .container-fluid {
    flex-direction: column;
    gap: 1rem;
  }
  
  .contact-dropdown-menu {
    min-width: 100%;
    left: 0;
    right: 0;
  }
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-left: 20px;
}

.social-link {
  color: white;
  font-size: 1.1rem;
  text-decoration: none;
}

.social-link:hover {
  color: #e65100;
}

.contact-info {
  display: flex;
  gap: 20px;
  margin-right: 20px;
  align-items: center;
}

.contact-link {
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}

.contact-link:hover {
  color: #e65100;
}

.contact-link i {
  font-size: 0.9rem;
}

/* Navbar */
#navbar {
  background-color: #ffffff;
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  position: fixed;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 1030;
  width: 100%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.9rem;
  border-bottom: 1px solid #e0e0e0;
}

.navbar .container-fluid,
.navbar > .container {
  padding-left: 150px!important;
  padding-right: 150px!important;
}

#navbar .navbar-nav {
  gap: 1.5rem;
}

#navbar.scrolled {
  background-color: #ffffff;
  box-shadow: 0 5px 30px rgba(0,0,0,0.15);
}

#navbar .nav-link {
  color: #8d6663 !important;
  font-weight: 600;
  font-size: 1rem;
  margin-left: 1.5rem;
  position: relative;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

#navbar .nav-link:hover {
  color: #e65100 !important;
}

#navbar .nav-link.active,
#navbar .nav-link:focus {
  color: #8d6663 !important;
  border-bottom-color: #e65100 !important;
}

#navbar .nav-link::after {
  display: none;
}

#navbar .navbar-brand {
  color: #343a40;
  font-weight: 700;
  font-size: 1.1rem;
}

#navbar .navbar-brand:hover {
  color: #007bff;
}

#navbar .dropdown-menu {
  background-color: white;
  border: 1px solid #f5e6cc;
  box-shadow: 0 6px 20px rgba(141, 102, 99, 0.1);
  margin-top: 0;
  border-radius: 0;
}

#navbar .dropdown-item {
  color: #8d6663;
  font-size: 0.9rem;
  padding: 0.5rem 1rem;
}

#navbar .dropdown-item:hover {
  background-color: #f5e6cc;
  color: #e65100;
}

/* Navigation Icons */
.nav-icon {
  color: #8d6663 !important;
  font-size: 1.1rem;
  padding: 0.5rem;
  margin: 0 0.25rem;
  text-decoration: none;
  border: none;
  background: none;
}

.nav-icon:hover {
  color: #e65100 !important;
  background-color: transparent;
}

.navbar-toggler{
  color: #8d6663!important;
}

/* Modal Forms */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 99999;
  justify-content: center;
  align-items: center;
}
.modal-overlay.active {
  display: flex;
}

/* Search Overlay */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  display: none;
  opacity: 0;
  visibility: hidden;
}

.search-overlay.active {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 10%;
  opacity: 1;
  visibility: visible;
}

.search-container {
  background: white;
  border-radius: 8px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.search-header {
  display: flex;
  align-items: center;
  padding: 1.5rem;
  border-bottom: 1px solid #e0e0e0;
}

.search-input-wrapper {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
}

.search-icon {
  color: #672503;
  margin-right: 1rem;
  font-size: 1.1rem;
}

.search-input {
  border: none;
  outline: none;
  font-size: 1.2rem;
  width: 100%;
  color: #333;
}

.search-input::placeholder {
  color: #999;
}

.search-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #672503;
  padding: 0.5rem;
  margin-left: 1rem;
  cursor: pointer;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close:hover {
  background-color: #f8f9fa;
  color: #333;
}

.quick-links {
  padding: 1.5rem;
}

.quick-links h6 {
  color: #333;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.quick-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links li {
  margin-bottom: 0.5rem;
}

.quick-links a {
  color: #0056b3;
  text-decoration: none;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  padding: 0.25rem 0;
}

.quick-links a:hover {
  text-decoration: underline;
}

/* Sidebar */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  height: 100vh;
  background: #FDF6EC;
  z-index: 9999;
  transition: transform 0.3s ease;
  box-shadow: -2px 0 10px rgba(0,0,0,0.1);
  transform: translateX(100%);
}

.sidebar.active {
  transform: translateX(0);
}

@media (min-width: 768px) {
  .sidebar {
    width: 320px;
  }
}

.sidebar-top-bar {
  padding: 16px 20px;
  border-bottom: 1px solid #e0d6c8;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.sidebar-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-size: 20px;
  color: #4A2912;
  line-height: 1;
}

.sidebar-close:hover {
  opacity: 0.7;
}

.sidebar-content {
  padding: 0;
  height: calc(100vh - 120px);
  overflow-y: auto;
}

.sidebar-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.sidebar-menu li {
  margin-bottom: 0;
}

.sidebar-menu a {
  display: block;
  padding: 16px 20px;
  color: #4A2912;
  text-decoration: none;
  font-size: 16px;
  font-family: 'Hind', sans-serif;
  border-bottom: 1px solid #ece8e0;
  background: none;
}

.sidebar-menu a:hover {
  background: #f0e8d8;
}

.sidebar-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: #FDF6EC;
}

.join-button {
  width: calc(100% - 32px);
  background: #D85A30;
  color: white!important;
  font-size: 16px;
  font-weight: 500;
  padding: 14px;
  border: none;
  border-radius: 8px;
  margin: 0;
  cursor: pointer;
  font-family: 'Hind', sans-serif;
}

.join-button:hover {
  background: #c54a28;
}

/* Full Screen Overlay Drawer */
.drawer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.drawer-overlay.active {
  opacity: 1;
  visibility: visible;
}

.drawer-container {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  display: flex;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.drawer-overlay.active .drawer-container {
  transform: translateX(0);
}

/* Left Panel - Navigation */
.drawer-left-panel {
  width: 300px;
  background: #f5e6cc;
  height: 100%;
  overflow-y: auto;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
}

.drawer-header {
  padding: 20px;
  border-bottom: 1px solid #8d6663;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.sidebar-logo {
  cursor: pointer;
}

.drawer-header h3 {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 600;
}

.drawer-close {
  background: none;
  border: none;
  font-size: 24px;
  color: #672503;
  cursor: pointer;
  padding: 5px;
  border-radius: 4px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-close:hover {
  background-color: #f0f0f0;
}

.drawer-nav {
  padding: 0;
}

.drawer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer-nav-list li {
  margin-bottom: 0;
}

.drawer-nav-list a {
  display: block;
  padding: 16px 20px;
  color: #333;
  text-decoration: none;
  font-size: 16px;
  border-bottom: 1px solid #f0f0f0;
  transition: background-color 0.2s ease;
}

.drawer-nav-list a:hover {
  background-color: #f8f9fa;
  color: #F97316;
}

.drawer-nav-list .join-button:hover {
  background-color: #D85A30 !important;
  color: white !important;
}

/* Right Panel - Feature Cards */
.drawer-right-panel {
  flex: 1;
  background: #fff8e1;
  height: 100%;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.drawer-right-panel .drawer-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 100;
  background: #8d6663;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: white;
  font-size: 14px;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.drawer-right-panel .drawer-close:hover {
  background: #e65100;
}

.drawer-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.drawer-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 1.2);
  padding: 24px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.drawer-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.drawer-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.drawer-card-link:hover {
  text-decoration: none;
  color: inherit;
}

.drawer-card-icon {
  width: 44px;
  height: 44px;
  background: #ffd7a8!important;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.drawer-card-icon i {
  width: 20px;
  height: 20px;
  color: #F97316!important;
}

.drawer-card-content {
  padding-left: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.drawer-card-content h4 {
  color: #1a1a1a;
  font-size: 16px;
  font-weight: 700;
  margin: 16px 0 6px 0;
  line-height: 1.3;
}

.drawer-card-content p {
  color: #6b7280;
  font-size: 14px;
  line-height: 1.5;
  margin: 6px 0 0 0;
}

/* Responsive adjustments for drawer */
@media (max-width: 768px) {
  .drawer-left-panel {
    width: 250px;
  }
  
  .drawer-right-panel {
    padding: 20px;
  }
  
  .drawer-cards-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .drawer-card {
    padding: 20px;
  }
  
  .drawer-card-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 14px;
  }
  
  .drawer-card-icon i {
    width: 18px;
    height: 18px;
  }
  
  .drawer-card-content h4 {
    font-size: 15px;
    margin: 14px 0 5px 0;
  }
  
  .drawer-card-content p {
    font-size: 13px;
  }
}

@media (max-width: 640px) {
  .drawer-container {
    flex-direction: column;
  }
  
  .drawer-left-panel {
    width: 100%;
    height: auto;
    max-height: 40vh;
  }
  
  .drawer-right-panel {
    height: 60vh;
    padding: 16px;
  }
  
  .drawer-cards-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .drawer-card {
    padding: 18px;
  }
  
  .drawer-card-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 12px;
  }
  
  .drawer-card-icon i {
    width: 16px;
    height: 16px;
  }
  
  .drawer-card-content h4 {
    font-size: 14px;
    margin: 12px 0 4px 0;
  }
  
  .drawer-card-content p {
    font-size: 12px;
  }
}


/* Responsive adjustments */
@media (max-width: 768px) {
  #navbar .nav-link {
    font-size: 0.85rem;
    margin: 0 0.25rem;
    padding: 0.5rem 0.5rem;
  }
  
  .nav-icon {
    font-size: 1rem;
    padding: 0.4rem;
  }
  
  .search-container {
    width: 95%;
  }
  
  .sidebar {
    width: 280px;
    left: -280px;
  }
}

/* Section background image */
.section-bg {
  background-image: url('image/design-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.section-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(255, 248, 225, 0.8);
  z-index: 1;
}

.section-bg > .container,
.section-bg > .container .row,
.section-bg > .container .row > * {
  position: relative;
  z-index: 2;
}

/* Dropdown Menu Styling */
#navbar .dropdown-menu {
  background-color: white;
  border: 1px solid #f5e6cc;
  left: 0 !important;
  min-width: 280px;
}

#navbar .dropdown-menu .dropdown-item {
  color: #8d6663;
  font-size: 0.95rem;
  white-space: normal;
  padding: 0.5rem 1rem;
}

#navbar .dropdown-menu .dropdown-item:hover {
  background-color: #f5e6cc;
  color: #e65100;
}

#navbar .dropdown-menu .dropdown-item.active,
#navbar .dropdown-menu .dropdown-item:active {
  background-color: #e65100;
  color: white;
}

/* Hero Section */
.hero-section {
  position: relative;
  margin-top: 0;
  overflow: hidden;
  height: 80vh;
  min-height: 520px;
}

.hero-container {
  display: flex;
  height: 100%;
  width: 100%;
}

.hero-left,
.hero-right {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-content-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0) 100%);
  color: white;
  padding: 2rem;
  z-index: 10;
}

.hero-content-overlay h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content-overlay h6 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #e65100;
}

.hero-content-overlay h6 span{
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  line-height: 1.2;
  color: #ff9800;
}

.hero-content-overlay p {
  font-size: 1.1rem;
  line-height: 1.6;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  margin: 0;
}

.read-more {
  color: white;
  font-style: italic;
  font-size: 1.1rem;
  text-decoration: none;
  cursor: pointer;
}

/* Problem Cards */
.problem-card {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}



.problem-icon {
  font-size: 3.5rem;
  color: #e65100;
  margin-bottom: 1rem;
}


.problem-card h4 {
  color: #8d6663;
  font-size: 1.3rem;
}


/* Solution Section */
.solution-list {
  list-style: disc;
  padding-left: 1.5rem;
}

.solution-list li {
  margin-bottom: 1rem;
  color: #8d6663;
  line-height: 1.8;
}

/* Program Cards */
.program-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
  position: relative;
}



.program-card .card-img {
  height: 250px;
  object-fit: cover;
}


.program-card h5 {
  padding: 1.5rem 1.5rem 0.5rem;
  font-size: 1.2rem;
}


.program-card p {
  padding: 0 1.5rem 1.5rem;
  color: #8d6663;
  font-size: 0.95rem;
}


/* Process Flow */
.process-flow {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.process-step {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  min-width: 140px;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
}

.step-icon {
  font-size: 2.5rem;
  color: #e65100;
  margin-bottom: 0.5rem;
}

.process-step h5 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.process-step p {
  font-size: 0.85rem;
  color: #8d6663;
}

.process-arrow {
  font-size: 1.5rem;
  color: #8d6663;
}

/* Before/After Cards */
.before-after-card {
  background: white;
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
}

.before-after-card h5 {
  color: #8d6663;
  font-size: 1.1rem;
}

/* Contact Form */
.contact-form {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
}

.form-label {
  color: #8d6663;
  font-weight: 600;
}

.form-control {
  border: 1px solid #f5e6cc;
  border-radius: 6px;
  color: #8d6663;
}

.form-control:focus {
  border-color: #e65100;
  box-shadow: 0 0 0 0.2rem rgba(230, 81, 0, 0.15);
  color: #8d6663;
}

.form-control::placeholder {
  color: #c9a787;
}

/* Custom Button */
.btn-custom {
  background-color: #e65100 !important;
  color: white !important;
  border: none;
  border-radius: 25px;
  font-weight: 600;
  padding: 0.6rem 1.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}


.btn-custom:hover {
  background-color: #d64a00 !important;
}


.btn-custom:focus {
  box-shadow: 0 0 0 0.2rem rgba(230, 81, 0, 0.25);
}

/* Responsive */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 0.95rem;
  }
  
  .process-flow {
    gap: 0.75rem;
  }
  
  .process-step {
    min-width: 100px;
    padding: 1rem;
  }
  
  .process-step h5 {
    font-size: 0.9rem;
  }
  
  #navbar .nav-link {
    margin-left: 0;
  }
}

/* Image Showcase */
#image-showcase img {
  max-height: 480px;
  object-fit: cover;
  width: 100%;
  display: block;
  margin: 0 auto;
}

#image-showcase h3,
#image-showcase p {
  color: #8d6663;
}

/* Section Images */
.section-image {
  max-height: 300px;
  object-fit: cover;
  width: 100%;
  display: block;
  margin: 0 auto;
  border-radius: 12px !important;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.15) !important;
}

/* Particles Container */
#particles {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

#particles div {
  position: absolute;
  border-radius: 50%;
}

/* Scroll to Top Button */
#scrollToTop {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 50px;
  height: 50px;
  background: #e65100;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(230, 81, 0, 0.3);
}

#scrollToTop.show {
  opacity: 1;
  visibility: visible;
}


/* Niwasi Form Card */
.niwasi-form-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(141, 102, 99, 0.15);
}


.niwasi-form-card img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Info Box */
.info-box {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  border-left: 5px solid #e65100;
  box-shadow: 0 4px 15px rgba(141, 102, 99, 0.1);
}


.info-box h5 {
  color: #e65100;
  font-weight: 700;
}

.info-box p {
  color: #8d6663;
  font-size: 1rem;
  line-height: 1.8;
}

/* Initiative Content */
.initiative-content {
  position: relative;
}

.initiative-item {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
}


.initiative-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #e65100, #f08a3d);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.3rem;
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(230, 81, 0, 0.3);
}

.initiative-item h5 {
  color: #8d6663;
  margin-top: 0.5rem;
  line-height: 1.4;
}

/* Initiative Cards Grid */
.initiative-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.initiative-card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
  cursor: pointer;
}


.card-icon {
  font-size: 2.5rem;
  color: #e65100;
  margin-bottom: 1rem;
}



.initiative-card p {
  color: #8d6663;
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Workshop Section */
.workshop-points {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workshop-point {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(141, 102, 99, 0.08);
}


.point-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: #e65100;
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.point-content h6 {
  color: #8d6663;
  margin: 0;
  line-height: 1.5;
  font-weight: 600;
}

/* Workshop Guidelines */
.workshop-guidelines {
  background: linear-gradient(135deg, rgba(230, 81, 0, 0.05), rgba(245, 230, 204, 0.5));
  padding: 1.5rem;
  border-radius: 10px;
  border-left: 4px solid #e65100;
}

.workshop-guidelines h6 {
  color: #8d6663;
  line-height: 1.7;
  margin: 0;
}

/* Workshop Showcase */
.workshop-showcase {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.workshop-showcase img {
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(141, 102, 99, 0.15);
}


.workshop-images-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.workshop-images-grid img {
  height: 200px;
  object-fit: cover;
}

/* Responsive Workshop Grid */
/* Training & Experience Gallery Section */
.gallery-header {
  background: linear-gradient(135deg, #8b6f47, #6b5a38);
  color: #fff8e1;
  padding: 1.5rem 2.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(141, 102, 99, 0.15);
}

.gallery-header h3 {
  color: #fff8e1;
  font-size: 1.2rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.5;
}


/* Gallery Items */
.gallery-item {
  position: relative;
  height: 100%;
  cursor: pointer;
}


/* Gallery Image Wrapper */
.gallery-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(141, 102, 99, 0.15);
  height: 280px;
  background: white;
  border: 4px solid #fff8e1;
}


/* Gallery Image */
.gallery-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* Gallery Overlay */
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(230, 81, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  border-radius: 8px;
}


.gallery-overlay i {
  font-size: 2.5rem;
  color: white;
}

/* Gallery Label */
.gallery-label {
  background: linear-gradient(135deg, #ffed4e, #fff500);
  color: #8d6663;
  padding: 0.8rem 1rem;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 0 0 12px 12px;
  margin-top: -4px;
  border: 2px solid #fff500;
  box-shadow: 0 2px 8px rgba(255, 237, 78, 0.3);
}


/* Gallery Footer */
.gallery-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: rgba(255, 248, 225, 0.5);
  border-top: 3px solid #f5e6cc;
  border-radius: 8px;
  margin-top: 2rem;
}


/* Foundation Credit */
.foundation-credit {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: linear-gradient(135deg, #fff8e1, #f5e6cc);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  box-shadow: 0 4px 12px rgba(141, 102, 99, 0.1);
}

.foundation-credit i {
  font-size: 1.3rem;
  color: #e65100;
}

.foundation-credit span {
  font-weight: 700;
  color: #0056b3;
  font-size: 1rem;
}


/* Gallery Number */
.gallery-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #e65100;
  background: linear-gradient(135deg, #ffff00, #ffed4e);
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 6px 20px rgba(255, 237, 78, 0.4);
}


/* Responsive Gallery */
@media (max-width: 768px) {
  .gallery-header h3 {
    font-size: 1rem;
  }

  .gallery-image-wrapper {
    height: 220px;
  }

  .gallery-footer {
    flex-direction: column;
    gap: 1rem;
  }

  .gallery-overlay i {
    font-size: 2rem;
  }

  .gallery-label {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
}

/* Connect & Initiatives Mobile Fix */
.connect-header {
  text-align: center;
  margin-bottom: 3rem;
}

.connect-label {
  display: inline-block;
  background: linear-gradient(135deg, #fff8e1, #f5e6cc);
  color: #8d6663;
  padding: 1rem 2rem;
  border-radius: 25px;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(141, 102, 99, 0.15);
}


/* Initiative Items */
.initiative-item-featured,
.initiative-item-secondary {
  position: relative;
  margin-bottom: 2rem;
}


/* Initiative Box */
/* Initiative Box (Cream/Yellow base for all items) */
.initiative-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 2.5rem;
  border-radius: 20px;
  background: linear-gradient(135deg, #ffe4a8, #ffd980);
  color: #8d6663;
  box-shadow: 0 6px 20px rgba(141, 102, 99, 0.12);
  position: relative;
  overflow: hidden;
}

.initiative-box:hover {
  background: linear-gradient(135deg, #ffff00, #ffed4e);
}

/* Initiative Text Styles */
.initiative-text-featured {
  font-size: 1.3rem;
  font-weight: 700;
  color: #8d6663;
  text-align: left;
  flex: 1;
  line-height: 1.4;
  z-index: 2;
}

.initiative-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: #8d6663;
  text-align: left;
  flex: 1;
  line-height: 1.4;
  z-index: 2;
}

/* Initiative Badge */
.initiative-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, #ffff00, #ffed4e);
  color: #ff0000;
  border-radius: 50%;
  font-size: 1.8rem;
  font-weight: 900;
  box-shadow: 0 6px 20px rgba(255, 255, 0, 0.4);
  flex-shrink: 0;
  margin-left: 1.5rem;
  z-index: 2;
}


/* Responsive Design */
@media (max-width: 768px) {
  .initiative-box {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem 1.5rem;
  }

  .initiative-badge {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-left: 0;
    margin-bottom: 1rem;
  }

  .initiative-text-featured,
  .initiative-text {
    font-size: 1rem;
  }

  .connect-label {
    font-size: 1.2rem;
    padding: 0.8rem 1.5rem;
  }
}

/* Enhanced Responsive */
@media (max-width: 768px) {
  .problem-card:hover {
    transform: translateY(-10px);
  }

  .program-card:hover {
    transform: translateY(-8px) scale(1.01);
  }

  /* Top Navbar Mobile */
  .top-navbar {
    padding: 5px 0;
    font-size: 0.8rem;
  }

  .social-icons {
    margin-left: 10px;
    gap: 10px;
  }

  .social-link {
    font-size: 1rem;
  }

  .contact-info {
    margin-right: 10px;
    gap: 15px;
    flex-direction: column;
    align-items: flex-end;
  }

  .contact-link {
    font-size: 0.8rem;
  }

  .contact-link i {
    font-size: 0.8rem;
  }

  body {
    padding-top: 110px;
  }
}


/* Hero Section Carousel */
.hero-carousel {
  position: relative;
  width: 100%;
  background-color: #f5e6c8;
  padding: 0 60px;
  box-sizing: border-box;
}

.carousel-slide,
.slide-content {
  padding-left: 0;
  padding-right: 0;
}

.slide-content {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

/* Left text side padding */
.slide-left {
  padding-left: 60px;
  padding-right: 40px;
}
  /* overflow: hidden;
  margin-top: 0;
} */

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
}

.slide-content {
  display: flex;
  align-items: stretch;
  height: 700px;
  overflow: hidden;
  padding: 0;
  max-width: 100%;
  margin: 0 auto;
}

.slide-left {
  width: 45%;
  padding: 40px 50px 40px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  height: 100%;
  overflow-y: auto;     /* if text is too long, it scrolls internally */
  box-sizing: border-box;
}

.slide-right {
  width: 55%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

/* Slide Text Styles */
.slide-heading {
  font-size: 3.5rem;
  font-weight: 500;
  color: #000;
  margin-bottom: 20px;
  line-height: 1.2;
  font-family: inherit;
}

.slide-paragraph {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #672503;
  margin-bottom: 20px;
  font-family: inherit;
}

.slide-subheading {
  font-size: 1.5rem;
  font-weight: 600;
  color: #672503;
  margin-bottom: 15px;
  font-family: inherit;
}

.slide-small-text {
  font-size: 1.1rem;
  color: #672503;
  margin-bottom: 15px;
  font-family: inherit;
}

.slide-link {
  display: inline-block;
  width: auto;
  max-width: fit-content;
  color: #F97316;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  padding: 12px 24px;
  border: 2px solid #F97316;
  border-radius: 8px;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.slide-link:hover {
  background-color: #F97316;
  color: white;
  text-decoration: none;
}

/* Right Side Rows */
.right-row {
  display: flex;
  width: 100%;
}

.top-row {
  flex: 1.5;
  height: 60%;
}

.top-row img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bottom-row {
  flex: 1;
  height: 40%;
  display: flex;
}

.bottom-img {
  width: 50%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.placeholder-box {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: stretch;
}

/* Slide Right Image Styling */
.slide-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.placeholder-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  display: block;
}


/* Dots Navigation */
.dots-navigation {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #5c2d0a;
  background-color: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  outline: none;
}

.dot:hover {
  border-color: #5c2d0a;
}

.dot.active {
  background-color: #5c2d0a;
  border-color: #5c2d0a;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero-carousel {
    margin-top: 0;
    min-height: auto;
  }
  
  .slide-content {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }
  
  .slide-left {
    width: 100%;
    padding: 0 0 30px 0;
    margin-bottom: 0;
  }
  
  .slide-right {
    width: 100%;
    height: 250px;
    padding: 0;
  }
  
  .slide-heading {
    font-size: 1.5rem;
  }
  
  .slide-paragraph {
    font-size: 1.1rem;
  }
  
  .slide-subheading {
    font-size: 1.5rem;
  }
  
  .placeholder-box {
    height: 250px;
  }
  
  .dots-navigation {
    bottom: 20px;
    left: 50%;
  }
}

/* Session Cards */
.session-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(249, 115, 22, 0.12);
  padding: 24px;
  height: 100%;
  border: 1px solid rgba(249, 115, 22, 0.15);
  transition: all 0.3s ease;
}

.session-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(249, 115, 22, 0.15);
}

.session-header {
  background: rgba(249, 115, 22, 0.05);
  padding: 16px 24px;
  border-bottom: 1px solid rgba(249, 115, 22, 0.15);
}

.session-date {
  color: #F97316;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
}

.session-date span {
  color: #888;
  font-weight: 600;
  font-size:  1rem;
  margin-left: 8px;
}

.session-time-slots {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.time-slot {
  background: #fff3e0;
  color: #F97316;
  border: 1px solid #F97316;
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 0.82rem;
  cursor: pointer;
  font-family: inherit;
}

.session-topic {
  color: #F97316;
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.session-reference {
  color: #888;
  font-size: 0.88rem;
  margin-bottom: 16px;
  font-style: italic;
}

.session-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-action {
  padding: 7px 14px;
  border-radius: 8px;
  border: none;
  font-size: 0.85rem;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

.btn-accept {
  background: #F97316;
  color: white;
}

.btn-suggest-time {
  background: #fff3e0;
  color: #F97316;
  border: 1px solid #F97316;
}

.btn-suggest-topic {
  background: #fff3e0;
  color: #F97316;
  border: 1px solid #F97316;
}

/* Modal Forms */
#participationModal,
#timeSuggestionModal,
#topicSuggestionModal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 999999;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: white;
  border-radius: 12px;
  padding: 28px;
  width: 90%;
  max-width: 480px;
  position: relative;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.modal-title {
  color: #F97316;
  font-weight: 700;
  margin: 0;
}

.modal-close {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: #888;
}

.modal-body {
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  color: #555;
  font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.9rem;
  box-sizing: border-box;
}

.modal-footer {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
}

.btn-cancel {
  background: #f5f5f5;
  color: #672503;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-family: inherit;
}

.btn-submit {
  background: #F97316;
  color: white;
  border: none;
  padding: 9px 20px;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 600;
  font-family: inherit;
}

/* Registration Form Styles */
.registration-section {
  background: linear-gradient(135deg, #fdf6e3 0%, #f5e6d3 100%);
  min-height: 100vh;
  padding: 120px 0 60px;
}

.registration-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.registration-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.registration-form .form-input {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid #e8e8e8;
  border-radius: 10px;
  font-size: 15px;
  transition: all 0.3s ease;
  background-color: #fafafa;
}

.registration-form .form-input:focus {
  outline: none;
  border-color: #e8430a;
  background-color: white;
  box-shadow: 0 0 0 4px rgba(232, 67, 10, 0.1);
  transform: translateY(-2px);
}

.registration-form .form-input:hover {
  border-color: #d4a574;
  background-color: white;
}

.registration-form label {
  color: #5a3e2b;
  font-weight: 600;
  margin-bottom: 8px;
  display: block;
  font-size: 14px;
}

.registration-form .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #e8430a 0%, #d63808 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.registration-form .submit-btn:hover {
  background: linear-gradient(135deg, #d63808 0%, #c43207 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(232, 67, 10, 0.3);
}

.registration-form .submit-btn:active {
  transform: translateY(0);
}

.registration-form .submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.registration-form .submit-btn:hover::before {
  left: 100%;
}

.registration-form .cancel-btn {
  width: 100%;
  background: linear-gradient(135deg, #6c757d 0%, #5a6268 100%);
  color: white;
  border: none;
  padding: 16px;
  border-radius: 10px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.registration-form .cancel-btn:hover {
  background: linear-gradient(135deg, #5a6268 0%, #495057 100%);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(108, 117, 125, 0.3);
}

.registration-form .cancel-btn:active {
  transform: translateY(0);
}

.registration-form .cancel-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.registration-form .cancel-btn:hover::before {
  left: 100%;
}

/* Mobile Responsive for Registration Form */
@media (max-width: 768px) {
  .registration-section {
    padding: 100px 0 40px;
  }
  
  .registration-card {
    padding: 25px;
    margin: 0 15px;
  }
  
  .registration-form .form-input {
    padding: 12px 16px;
    font-size: 14px;
  }
  
  .registration-form .submit-btn {
    padding: 14px;
    font-size: 16px;
  }
}

/* Gallery Styles */
.gallery-section {
  margin-bottom: 40px;
}

.section-title {
  position: relative;
  padding-bottom: 15px;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(135deg, #e8430a 0%, #d63808 100%);
  border-radius: 2px;
}

.video-card,
.image-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover,
.image-card:hover {
  transform: translateY(-5px);
}

.gallery-video {
  transition: transform 0.3s ease;
}

.gallery-video:hover {
  transform: scale(1.02);
}

.gallery-image {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  box-shadow: 0 12px 35px rgba(0,0,0,0.2);
}

.video-description,
.image-description {
  transition: all 0.3s ease;
  border-left: 4px solid #e8430a;
}

.video-description:hover,
.image-description:hover {
  background: #f0f0f0;
  border-left-width: 6px;
  box-shadow: 0 4px 15px rgba(232, 67, 10, 0.1);
}

.video-description h5,
.image-description h5 {
  transition: color 0.3s ease;
}

.video-description:hover h5,
.image-description:hover h5 {
  color: #e8430a;
}

/* Video Info Cards */
.video-info-card {
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 4px solid #e8430a;
  padding: 20px;
  height: 100%;
  transition: all 0.3s ease;
}

.video-info-card:hover {
  background: #f0f0f0;
  border-left-width: 6px;
  box-shadow: 0 4px 15px rgba(232, 67, 10, 0.1);
}

.video-highlights {
  margin-top: 20px;
}

.highlight-item {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.highlight-item:hover {
  transform: translateX(5px);
}

.highlight-item i {
  font-size: 14px;
  width: 20px;
  text-align: center;
}

.highlight-item span {
  color: #2c3e50;
  font-weight: 500;
  font-size: 14px;
}

.video-date-badge {
  display: inline-block;
  transition: all 0.3s ease;
}

.video-date-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(232, 67, 10, 0.2);
}

/* Video Controls Styling */
.gallery-video::-webkit-media-controls-panel {
  background: linear-gradient(transparent, rgba(0,0,0,0.8));
}

.gallery-video::-webkit-media-controls-play-button,
.gallery-video::-webkit-media-controls-pause-button {
  background-color: #e8430a;
  border-radius: 50%;
}

/* Mobile Responsive for Gallery */
@media (max-width: 768px) {
  .gallery-section {
    margin-bottom: 30px;
  }
  
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }
  
  .gallery-video {
    border-radius: 8px;
    height: 300px !important;
  }
  
  .gallery-image {
    height: 200px !important;
    border-radius: 8px;
  }
  
  .video-description,
  .image-description,
  .video-info-card {
    padding: 15px;
    margin-top: 15px;
  }
  
  .video-description h5,
  .image-description h5,
  .video-info-card h5 {
    font-size: 16px;
  }
  
  .video-description p,
  .image-description p,
  .video-info-card p {
    font-size: 13px;
  }
  
  .video-highlights {
    margin-top: 15px;
  }
  
  .highlight-item {
    margin-bottom: 8px;
    padding: 6px 0;
  }
  
  .highlight-item i {
    font-size: 12px;
    width: 18px;
  }
  
  .highlight-item span {
    font-size: 12px;
  }
  
  .video-date-badge {
    margin-top: 15px;
    padding: 6px 12px;
  }
}

@media (max-width: 576px) {
  .gallery-video {
    height: 250px !important;
  }
  
  .gallery-image {
    height: 180px !important;
  }
  
  .video-description,
  .image-description {
    padding: 12px;
  }
  
  .section-title::after {
    width: 40px;
  }
}


/* Search Overlay - True Overlay Implementation */
.search-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(6px);
}

.search-overlay.active {
  transform: translateY(0);
}

/* Search Panel - Content Container */
.search-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* Search Panel Header */
.search-panel-header {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e9ecef;
}

.search-input-container {
  position: relative;
  background: #f8f9fa;
  border-radius: 8px;
  padding: 0;
}

.search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #6c757d;
  font-size: 1.1rem;
  z-index: 2;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 2.5rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: transparent;
  outline: none;
  color: #333;
}

.search-input::placeholder {
  color: #6c757d;
}

.search-close {
  background: #F97316;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search-close:hover {
  background: #e85a15;
}

/* Search Panel Content */
.search-panel-content {
  padding: 2rem 0;
  max-height: 60vh;
  overflow-y: auto;
}

.quick-links {
  text-align: left;
}

.quick-links-title {
  color: #e85a15!important;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.quick-link-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  color: #8d6663!important;
  text-decoration: none;
  transition: all 0.2s ease;
  border-radius: 6px;
  margin-bottom: 0.5rem;
}

.quick-link-item:hover {
  background: #f8f9fa!important;
  color: #F97316!important;
  text-decoration: none;
}

.quick-link-item i {
  font-size: 1rem;
  color: #F97316;
  margin-right: 0.75rem;
  width: 1.2rem;
  text-align: center;
}

/* Navigation Responsive - 1151px Breakpoint */
@media (min-width: 1151px) {
  #navbarToggle {
    display: none !important;
  }
  
  #navbarNav {
    display: flex !important;
  }
}

@media (max-width: 1150px) {
  #navbarToggle {
    display: block !important;
  }
  
  #navbarNav {
    display: none !important;
  }
  
  #navbarNav.mobile-show {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #f5e6cc;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
  }
  
  #navbarNav.mobile-show .navbar-nav {
    flex-direction: column;
    width: 100%;
  }
  
  #navbarNav.mobile-show .nav-item {
    width: 100%;
  }
  
  #navbarNav.mobile-show .nav-link {
    padding: 0.75rem 1.5rem;
    border-bottom: 1px solid #f0f0f0;
  }
}

/* Search Panel Mobile Responsive */
@media (max-width: 768px) {
  .search-panel-header {
    padding: 1rem 0;
  }
  
  .search-input {
    padding: 0.75rem 1rem 0.75rem 2.25rem;
    font-size: 0.9rem;
  }
  
  .search-icon {
    left: 0.75rem;
    font-size: 1rem;
  }
  
  .search-close {
    width: 2.25rem;
    height: 2.25rem;
    font-size: 0.9rem;
  }
  
  .search-panel-content {
    padding: 1.5rem 0;
    max-height: 50vh;
  }
  
  .quick-links-title {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
  
  .quick-link-item {
    padding: 0.625rem 0.75rem;
    font-size: 0.9rem;
  }
  
  .quick-link-item i {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
}

/* Ethical Foundation Styles */
#ethical-foundation {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #fef9e7;
  padding-top: 80px;
}

#ethical-foundation h2 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

#ethical-foundation h3 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#ethical-foundation .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
}

/* TALASH Quote Box */
.quote-box {
  background: linear-gradient(135deg, #8d6663 0%, #d4a574 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(139, 105, 20, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.quote-box:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 105, 20, 0.3);
}

.quote-box::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* TALASH Mantra Box */
.mantra-box {
  background: rgba(139, 105, 20, 0.05);
  border-left: 4px solid #8d6663;
  border-radius: 8px;
  padding: 1.5rem;
}

.mantra-box ol {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  padding-left: 1.5rem;
  margin: 0;
}

.mantra-box li {
  margin-bottom: 0.5rem;
  position: relative;
}

.mantra-box li::before {
  content: counter(list-item);
  color: #8d6663;
  font-weight: 700;
  margin-right: 0.5rem;
}

/* Content Box */
.content-box {
  background: rgba(139, 105, 20, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.content-box a {
  color: #8d6663;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.content-box a:hover {
  color: #d4a574;
  text-decoration: underline;
}

/* Donate Button */
.btn-donate {
  background: linear-gradient(135deg, #8d6663 0%, #d4a574 100%);
  color: white;
  border: none;
  padding: 15px 40px;
  font-size: 1.2rem;
  font-weight: 600;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.3);
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn-donate:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(139, 105, 20, 0.4);
  background: linear-gradient(135deg, #d4a574 0%, #8d6663 100%);
}

.btn-donate::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn-donate:hover::before {
  left: 100%;
}

/* Trustee Cards */
.trustee-card {
  background: white;
  border: 3px solid #d4a574;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.trustee-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 105, 20, 0.2);
  border-color: #8d6663;
}

.trustee-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8d6663, #d4a574, #8d6663);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.trustee-card:hover::before {
  opacity: 0.3;
}

.trustee-name {
  color: #8d6663;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
}

.trustee-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #8d6663, #d4a574);
  border-radius: 1px;
}

.trustee-role {
  color: #d4a574;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.trustee-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: justify;
  margin: 0;
}

/* Responsive Design for Ethical Foundation */
@media (max-width: 768px) {
  #ethical-foundation {
    padding-top: 60px;
  }
  
  #ethical-foundation h2 {
    font-size: 2rem;
  }
  
  #ethical-foundation h3 {
    font-size: 1.5rem;
  }
  
  .quote-box {
    padding: 2rem 1.5rem;
  }
  
  .quote-box h3 {
    font-size: 1.4rem;
  }
  
  .quote-box p {
    font-size: 1.2rem;
  }
  
  .mantra-box {
    padding: 1rem;
  }
  
  .mantra-box ol {
    font-size: 1.1rem;
  }
  
  .content-box {
    padding: 1rem;
  }
  
  .content-box p {
    font-size: 1rem;
  }
  
  .btn-donate {
    padding: 12px 30px;
    font-size: 1.1rem;
  }
  
  .trustee-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .trustee-name {
    font-size: 1.5rem;
  }
  
  .trustee-role {
    font-size: 1rem;
  }
  
  .trustee-bio {
    font-size: 0.95rem;
  }
}

@media (max-width: 576px) {
  #ethical-foundation h2 {
    font-size: 1.8rem;
  }
  
  #ethical-foundation h3 {
    font-size: 1.3rem;
  }
  
  .quote-box h3 {
    font-size: 1.2rem;
  }
  
  .quote-box p {
    font-size: 1.1rem;
  }
  
  .mantra-box ol {
    font-size: 1rem;
  }
  
  .btn-donate {
    padding: 10px 25px;
    font-size: 1rem;
  }
  
  .trustee-card {
    padding: 1rem;
  }
  
  .trustee-name {
    font-size: 1.3rem;
  }
  
  .trustee-role {
    font-size: 0.95rem;
  }
  
  .trustee-bio {
    font-size: 0.9rem;
  }
}

/* Sunai Consultancy Styles */
#sunai-consultancy {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #fef9e7;
  padding-top: 80px;
}

#sunai-consultancy h2 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

#sunai-consultancy h3 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#sunai-consultancy .lead {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
}

/* Service Boxes */
.service-box {
  background: rgba(139, 105, 20, 0.05);
  border-left: 4px solid #8d6663;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.service-box:hover {
  background: rgba(139, 105, 20, 0.08);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.1);
}

.service-icon {
  color: #8d6663;
  font-size: 2rem;
  flex-shrink: 0;
  width: 50px;
  text-align: center;
}

.service-title {
  color: #8d6663;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* Content Boxes */
.content-box {
  background: rgba(139, 105, 20, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
}

.content-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin-bottom: 1rem;
}

.content-box ul {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  padding-left: 20px;
}

.content-box li {
  margin-bottom: 0.5rem;
}

/* Clients Grid */
.clients-grid {
  background: rgba(139, 105, 20, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
}

.client-item {
  background: white;
  border: 1px solid #d4a574;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.client-item:hover {
  background: rgba(139, 105, 20, 0.05);
  border-color: #8d6663;
  transform: translateY(-2px);
  box-shadow: 0 3px 10px rgba(139, 105, 20, 0.1);
}

.client-item span {
  color: #8d6663;
  font-weight: 600;
  font-size: 1rem;
}

/* Team Cards (similar to Trustee Cards) */
.team-card {
  background: white;
  border: 3px solid #d4a574;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.1);
  transition: all 0.3s ease;
  height: 100%;
  position: relative;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(139, 105, 20, 0.2);
  border-color: #8d6663;
}

.team-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8d6663, #d4a574, #8d6663);
  border-radius: 15px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.team-card:hover::before {
  opacity: 0.3;
}

.team-name {
  color: #8d6663;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  text-align: center;
  position: relative;
}

.team-name::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, #8d6663, #d4a574);
  border-radius: 1px;
}

.team-role {
  color: #d4a574;
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 1rem;
  text-align: center;
  font-weight: 500;
}

.team-bio {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  text-align: justify;
  margin: 0;
}

/* Team Info Box */
.team-info-box {
  background: rgba(139, 105, 20, 0.05);
  border-radius: 8px;
  text-align: center;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.team-info-box:hover {
  background: rgba(139, 105, 20, 0.08);
  transform: translateY(-2px);
}

.team-info-box p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  margin: 0;
}

/* Responsive Design for Sunai Consultancy */
@media (max-width: 768px) {
  #sunai-consultancy {
    padding-top: 60px;
  }
  
  #sunai-consultancy h2 {
    font-size: 2rem;
  }
  
  #sunai-consultancy h3 {
    font-size: 1.5rem;
  }
  
  .service-box {
    padding: 1rem;
  }
  
  .service-icon {
    font-size: 1.5rem;
    width: 40px;
  }
  
  .service-title {
    font-size: 1.2rem;
  }
  
  .service-box p {
    font-size: 1rem;
  }
  
  .content-box {
    padding: 1rem;
  }
  
  .content-box p,
  .content-box ul {
    font-size: 1rem;
  }
  
  .clients-grid {
    padding: 1rem;
  }
  
  .client-item {
    padding: 0.75rem;
    min-height: 50px;
  }
  
  .client-item span {
    font-size: 0.9rem;
  }
  
  .team-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .team-name {
    font-size: 1.5rem;
  }
  
  .team-role {
    font-size: 1rem;
  }
  
  .team-bio {
    font-size: 0.95rem;
  }
  
  .team-info-box {
    padding: 1rem;
  }
  
  .team-info-box p {
    font-size: 1rem;
  }
}

@media (max-width: 576px) {
  #sunai-consultancy h2 {
    font-size: 1.8rem;
  }
  
  #sunai-consultancy h3 {
    font-size: 1.3rem;
  }
  
  .service-box {
    padding: 0.75rem;
  }
  
  .service-icon {
    font-size: 1.3rem;
    width: 35px;
  }
  
  .service-title {
    font-size: 1.1rem;
  }
  
  .service-box p {
    font-size: 0.95rem;
  }
  
  .content-box p,
  .content-box ul {
    font-size: 0.95rem;
  }
  
  .client-item {
    padding: 0.5rem;
    min-height: 45px;
  }
  
  .client-item span {
    font-size: 0.85rem;
  }
  
  .team-card {
    padding: 1rem;
  }
  
  .team-name {
    font-size: 1.3rem;
  }
  
  .team-role {
    font-size: 0.95rem;
  }
  
  .team-bio {
    font-size: 0.9rem;
  }
  
  .team-info-box p {
    font-size: 0.95rem;
  }
}

/* Social Entrepreneur Styles */
#social-entrepreneur {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #faf6ee;
  padding-top: 80px;
}

#social-entrepreneur h2 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

#social-entrepreneur h3 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#social-entrepreneur h4 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#social-entrepreneur p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
}

/* Tagline and Motivational Boxes */
.tagline-box,
.motivation-banner {
  background: linear-gradient(135deg, #8d6663 0%, #d4a574 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(139, 105, 20, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tagline-box:hover,
.motivation-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 105, 20, 0.3);
}

.tagline-box::before,
.motivation-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Left-Bordered Boxes */
.benefits-box,
.restrictions-box,
.behavior-box,
.methods-box {
  background: rgba(139, 105, 20, 0.05);
  border-left: 4px solid #8d6663;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.benefits-box:hover,
.restrictions-box:hover,
.behavior-box:hover,
.methods-box:hover {
  background: rgba(139, 105, 20, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.1);
}

.benefits-box h4,
.restrictions-box h4,
.behavior-box h4,
.methods-box h4 {
  color: #8d6663;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefits-box ul,
.restrictions-box ol,
.behavior-box ul,
.methods-box ul {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  padding-left: 20px;
  margin: 0;
}

.benefits-box li,
.restrictions-box li,
.behavior-box li,
.methods-box li {
  margin-bottom: 0.5rem;
}

/* Training Cards */
.training-card {
  background: white;
  border: 2px solid #d4a574;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.training-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 105, 20, 0.2);
  border-color: #8d6663;
}

.training-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8d6663, #d4a574, #8d6663);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.training-card:hover::before {
  opacity: 0.2;
}

.card-title {
  color: #8d6663;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.training-card ul {
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
  padding-left: 20px;
  margin: 0;
}

.training-card li {
  margin-bottom: 0.5rem;
}

/* Sub-sections */
.sub-section {
  background: rgba(139, 105, 20, 0.03);
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.sub-section:hover {
  background: rgba(139, 105, 20, 0.05);
  transform: translateY(-2px);
}

/* Responsive Design for Social Entrepreneur */
@media (max-width: 768px) {
  #social-entrepreneur {
    padding-top: 60px;
  }
  
  #social-entrepreneur h2 {
    font-size: 2rem;
  }
  
  #social-entrepreneur h3 {
    font-size: 1.5rem;
  }
  
  #social-entrepreneur h4 {
    font-size: 1.3rem;
  }
  
  #social-entrepreneur p {
    font-size: 1.1rem;
  }
  
  .tagline-box,
  .motivation-banner {
    padding: 1.5rem;
  }
  
  .tagline-box p,
  .motivation-banner p {
    font-size: 1.2rem;
  }
  
  .benefits-box,
  .restrictions-box,
  .behavior-box,
  .methods-box {
    padding: 1rem;
  }
  
  .benefits-box h4,
  .restrictions-box h4,
  .behavior-box h4,
  .methods-box h4 {
    font-size: 1.2rem;
  }
  
  .benefits-box ul,
  .restrictions-box ol,
  .behavior-box ul,
  .methods-box ul {
    font-size: 1rem;
  }
  
  .training-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
  
  .training-card ul {
    font-size: 0.95rem;
  }
  
  .sub-section {
    padding: 1rem;
  }
}

@media (max-width: 576px) {
  #social-entrepreneur h2 {
    font-size: 1.8rem;
  }
  
  #social-entrepreneur h3 {
    font-size: 1.3rem;
  }
  
  #social-entrepreneur h4 {
    font-size: 1.2rem;
  }
  
  #social-entrepreneur p {
    font-size: 1rem;
  }
  
  .tagline-box,
  .motivation-banner {
    padding: 1rem;
  }
  
  .tagline-box p,
  .motivation-banner p {
    font-size: 1.1rem;
  }
  
  .benefits-box,
  .restrictions-box,
  .behavior-box,
  .methods-box {
    padding: 0.75rem;
  }
  
  .benefits-box h4,
  .restrictions-box h4,
  .behavior-box h4,
  .methods-box h4 {
    font-size: 1.1rem;
  }
  
  .benefits-box ul,
  .restrictions-box ol,
  .behavior-box ul,
  .methods-box ul {
    font-size: 0.95rem;
  }
  
  .training-card {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
  
  .training-card ul {
    font-size: 0.9rem;
  }
  
  .sub-section {
    padding: 0.75rem;
  }
}

/* Hamniwasi Program Styles */
#hamniwasi-program {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #faf6ee;
  padding-top: 80px;
}

#hamniwasi-program h2 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

#hamniwasi-program h3 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#hamniwasi-program h4 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#hamniwasi-program h5 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 1rem;
}

#hamniwasi-program p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
}

/* Tagline and Motivational Boxes */
.tagline-box,
.motivation-banner {
  background: linear-gradient(135deg, #8d6663 0%, #d4a574 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(139, 105, 20, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tagline-box:hover,
.motivation-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 105, 20, 0.3);
}

.tagline-box::before,
.motivation-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Left-Bordered Boxes */
.services-box,
.role-box,
.cooperation-box {
  background: rgba(139, 105, 20, 0.05);
  border-left: 4px solid #8d6663;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.services-box:hover,
.role-box:hover,
.cooperation-box:hover {
  background: rgba(139, 105, 20, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.1);
}

.services-box ul,
.role-box ul,
.cooperation-box ul {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  padding-left: 20px;
  margin: 0;
}

.services-box li,
.role-box li,
.cooperation-box li {
  margin-bottom: 0.5rem;
}

/* Activity Cards */
.activity-card {
  background: white;
  border: 2px solid #d4a574;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.activity-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 105, 20, 0.2);
  border-color: #8d6663;
}

.activity-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8d6663, #d4a574, #8d6663);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.activity-card:hover::before {
  opacity: 0.2;
}

.card-title {
  color: #8d6663;
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Responsive Design for Hamniwasi Program */
@media (max-width: 768px) {
  #hamniwasi-program {
    padding-top: 60px;
  }
  
  #hamniwasi-program h2 {
    font-size: 2rem;
  }
  
  #hamniwasi-program h3 {
    font-size: 1.5rem;
  }
  
  #hamniwasi-program h4 {
    font-size: 1.3rem;
  }
  
  #hamniwasi-program h5 {
    font-size: 1.3rem;
  }
  
  #hamniwasi-program p {
    font-size: 1.1rem;
  }
  
  .tagline-box,
  .motivation-banner {
    padding: 1.5rem;
  }
  
  .tagline-box p,
  .motivation-banner p {
    font-size: 1.2rem;
  }
  
  .services-box,
  .role-box,
  .cooperation-box {
    padding: 1rem;
  }
  
  .services-box h4,
  .role-box h4,
  .cooperation-box h4 {
    font-size: 1.2rem;
  }
  
  .services-box ul,
  .role-box ul,
  .cooperation-box ul {
    font-size: 1rem;
  }
  
  .activity-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .card-title {
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  #hamniwasi-program h2 {
    font-size: 1.8rem;
  }
  
  #hamniwasi-program h3 {
    font-size: 1.3rem;
  }
  
  #hamniwasi-program h4 {
    font-size: 1.2rem;
  }
  
  #hamniwasi-program h5 {
    font-size: 1.2rem;
  }
  
  #hamniwasi-program p {
    font-size: 1rem;
  }
  
  .tagline-box,
  .motivation-banner {
    padding: 1rem;
  }
  
  .tagline-box p,
  .motivation-banner p {
    font-size: 1.1rem;
  }
  
  .services-box,
  .role-box,
  .cooperation-box {
    padding: 0.75rem;
  }
  
  .services-box h4,
  .role-box h4,
  .cooperation-box h4 {
    font-size: 1.1rem;
  }
  
  .services-box ul,
  .role-box ul,
  .cooperation-box ul {
    font-size: 0.95rem;
  }
  
  .activity-card {
    padding: 1rem;
  }
  
  .card-title {
    font-size: 1.1rem;
  }
}

/* Mitram Kitchen & Store Styles */
#mitram-kitchen-store {
  font-family: 'Noto Serif Devanagari', serif;
  background-color: #faf6ee;
  padding-top: 80px;
}

#mitram-kitchen-store h2 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 2rem;
  text-align: center;
}

#mitram-kitchen-store h3 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#mitram-kitchen-store h4 {
  color: #8d6663;
  font-weight: 600;
  margin-bottom: 1rem;
}

#mitram-kitchen-store h5 {
  color: #8d6663;
  font-weight: 700;
  margin-bottom: 1rem;
}

#mitram-kitchen-store p {
  font-size: 1.2rem;
  line-height: 1.8;
  color: #4a4a4a;
  text-align: justify;
}

/* Highlight Banner */
.highlight-banner {
  background: linear-gradient(135deg, #8d6663 0%, #d4a574 100%);
  color: white;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(139, 105, 20, 0.2);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.highlight-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(139, 105, 20, 0.3);
}

.highlight-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(255, 255, 255, 0.05) 10px,
    rgba(255, 255, 255, 0.05) 20px
  );
  animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
  0% { transform: translate(-50%, -50%) rotate(0deg); }
  100% { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Left-Bordered Box */
.services-box {
  background: rgba(139, 105, 20, 0.05);
  border-left: 4px solid #8d6663;
  border-radius: 8px;
  padding: 1.5rem;
  transition: all 0.3s ease;
}

.services-box:hover {
  background: rgba(139, 105, 20, 0.08);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(139, 105, 20, 0.1);
}

.services-box ul {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #4a4a4a;
  padding-left: 20px;
  margin: 0;
}

.services-box li {
  margin-bottom: 0.5rem;
}

/* Info Card */
.info-card {
  background: white;
  border: 2px solid #d4a574;
  border-left: 4px solid #8d6663;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(139, 105, 20, 0.1);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(139, 105, 20, 0.2);
  border-color: #8d6663;
}

.info-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, #8d6663, #d4a574, #8d6663);
  border-radius: 12px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.info-card:hover::before {
  opacity: 0.2;
}

.icon-box {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #8d6663 0%, #d4a574 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.icon-box:hover {
  transform: scale(1.1);
}

.info-card ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
}

.info-card li {
  margin-bottom: 0.5rem;
  font-size: 1rem;
  line-height: 1.6;
  color: #4a4a4a;
}

.info-card strong {
  color: #8d6663;
  font-weight: 600;
}

.info-card a {
  color: #8d6663;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.info-card a:hover {
  color: #d4a574;
  text-decoration: underline;
}

/* Responsive Design for Mitram Kitchen & Store */
@media (max-width: 768px) {
  #mitram-kitchen-store {
    padding-top: 60px;
  }
  
  #mitram-kitchen-store h2 {
    font-size: 2rem;
  }
  
  #mitram-kitchen-store h3 {
    font-size: 1.5rem;
  }
  
  #mitram-kitchen-store h4 {
    font-size: 1.3rem;
  }
  
  #mitram-kitchen-store h5 {
    font-size: 1.3rem;
  }
  
  #mitram-kitchen-store p {
    font-size: 1.1rem;
  }
  
  .highlight-banner {
    padding: 1.5rem;
  }
  
  .highlight-banner p {
    font-size: 1.2rem;
  }
  
  .services-box {
    padding: 1rem;
  }
  
  .services-box h4 {
    font-size: 1.2rem;
  }
  
  .services-box ul {
    font-size: 1rem;
  }
  
  .info-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .info-card h5 {
    font-size: 1.2rem;
  }
  
  .info-card ul {
    font-size: 0.95rem;
  }
  
  .icon-box {
    width: 50px;
    height: 50px;
  }
}

@media (max-width: 576px) {
  #mitram-kitchen-store h2 {
    font-size: 1.8rem;
  }
  
  #mitram-kitchen-store h3 {
    font-size: 1.3rem;
  }
  
  #mitram-kitchen-store h4 {
    font-size: 1.2rem;
  }
  
  #mitram-kitchen-store h5 {
    font-size: 1.2rem;
  }
  
  #mitram-kitchen-store p {
    font-size: 1rem;
  }
  
  .highlight-banner {
    padding: 1rem;
  }
  
  .highlight-banner p {
    font-size: 1.1rem;
  }
  
  .services-box {
    padding: 0.75rem;
  }
  
  .services-box h4 {
    font-size: 1.1rem;
  }
  
  .services-box ul {
    font-size: 0.95rem;
  }
  
  .info-card {
    padding: 1rem;
  }
  
  .info-card h5 {
    font-size: 1.1rem;
  }
  
  .info-card ul {
    font-size: 0.9rem;
  }
  
  .icon-box {
    width: 45px;
    height: 45px;
  }
}

/* Vision Section Styling */
.vision-section {
  font-family: inherit;
}

.golden-box {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.golden-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.15), inset 0 0 20px rgba(255,255,255,0.3);
}

/* Impact Section Styling */
.impact-section {
  font-family: inherit;
}

.impact-heading {
  font-family: inherit;
}

.impact-content p {
  font-family: inherit;
  text-align: justify;
}

/* Ensure both sides are visible */
.impact-section .d-flex {
  display: flex;
  align-items: flex-start;
}

.impact-section img {
  display: block;
  max-width: 100%;
}

/* Stacked Images Layout */
.impact-images-stacked {
  position: relative;
  width: 40%;
  min-height: 500px;
  flex-shrink: 0;
}

.impact-img {
  position: absolute;
  object-fit: cover;
  border: 4px solid white;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.img-1 {
  top: 0;
  right: 60px;
  width: 200px;
  height: 220px;
  z-index: 1;
}

.img-2 {
  top: 160px;
  right: 0;
  width: 200px;
  height: 220px;
  z-index: 2;
}

.img-3 {
  top: 300px;
  right: 80px;
  width: 200px;
  height: 200px;
  z-index: 3;
}

/* Responsive layout for impact section */
@media (max-width: 768px) {
  .impact-section {
    padding: 30px 20px !important;
  }
  
  .impact-section .d-flex {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .impact-section .d-flex > div:first-child,
  .impact-section .d-flex > div:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .impact-heading {
    font-size: 2rem !important;
    margin-bottom: 20px !important;
  }
  
  .impact-content {
    font-size: 0.95rem !important;
    line-height: 1.6 !important;
  }
  
  .impact-images-stacked {
    position: relative;
    width: 100%;
    min-height: 400px;
  }
  
  .impact-img {
    position: relative;
    width: 100%;
    height: auto;
    margin-bottom: 15px;
    border: 3px solid white;
  }
  
  .img-1,
  .img-2,
  .img-3 {
    position: relative;
    top: auto;
    right: auto;
    z-index: auto;
  }
}

/* Road Section Styling */
.impact-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #1a3a6b;
  text-align: justify;
  margin-bottom: 20px;
}

/* Responsive layout for road section */
@media (max-width: 768px) {
  .road-section {
    padding: 30px 20px !important;
  }
  
  .road-section .d-flex {
    flex-direction: column !important;
    gap: 30px !important;
  }
  
  .road-section .d-flex > div:first-child,
  .road-section .d-flex > div:last-child {
    flex: 0 0 100% !important;
    max-width: 100% !important;
  }
  
  .road-section .impact-images-stacked {
    width: 100% !important;
    min-height: 400px !important;
  }
}

/* Business Partnership Appeal Section Responsive */
@media (max-width: 768px) {
  .business-appeal-section {
    padding: 30px 20px !important;
  }
  
  .business-appeal-section .partner-logos {
    gap: 20px !important;
  }
  
  .business-appeal-section .partner-logos img {
    width: 80px !important;
  }
  
  .business-appeal-section .main-heading {
    font-size: 1.2rem !important;
  }
  
  .business-appeal-section .top-line,
  .business-appeal-section .bottom-line-1 {
    flex-direction: column !important;
    gap: 10px !important;
    text-align: center !important;
  }
  
  .business-appeal-section .highlighted-badge {
    padding: 10px 20px !important;
  }
  
  .business-appeal-section .highlighted-badge span:first-child,
  .business-appeal-section .highlighted-badge span:last-child {
    font-size: 1rem !important;
  }
  
  .business-appeal-section .highlighted-badge span:nth-child(2) {
    font-size: 1.5rem !important;
  }
}

/* Responsive layout for aaj ka sawal section */
@media (max-width: 768px) {
  .d-flex.align-items-start {
    flex-direction: column;
  }
  /* left and right both become 100% width */
  
  .golden-box {
    width: 240px !important;
    padding: 15px !important;
  }
  
  .golden-box h2 {
    font-size: 1.8rem !important;
  }
  
  .golden-box h3 {
    font-size: 1.3rem !important;
  }
}

/* Carousel Height Consistency */
.impact-carousel-section .carousel-inner {
  max-height: 600px;
  overflow: hidden;
}

.impact-carousel-section .carousel-item {
  height: 600px;
  overflow: hidden;
}

.impact-carousel-section .carousel-item .d-flex,
.impact-carousel-section .carousel-item .impact-slide-inner,
.impact-carousel-section .carousel-item > div[style*="width: 100%"] {
  height: 100%;
  max-height: 600px;
  overflow-y: auto;
  overflow-x: hidden;
}

/* Reduce text line height and margins for carousel */
.impact-carousel-section .impact-content p,
.impact-carousel-section .impact-slide-text p,
.impact-carousel-section div[style*="color:"] p {
  line-height: 1.4 !important;
  margin-bottom: 10px !important;
}

.impact-carousel-section .impact-content,
.impact-carousel-section .impact-slide-text,
.impact-carousel-section div[style*="color:"] {
  line-height: 1.4 !important;
}

/* Staggered Images Layout for Slide 3 */
    .impact-slide-inner {
      display: flex;
      align-items: flex-start;
      gap: 40px;
      padding: 40px 60px;
      min-height: 500px;
    }

    .impact-slide-text {
      width: 60%;
      font-size: 1rem;
      line-height: 1.9;
      text-align: justify;
    }

    .impact-slide-images {
      width: 40%;
      position: relative;
      min-height: 400px;
      flex-shrink: 0;
    }

    .stag-img {
      position: absolute;
      object-fit: cover;
      border: 4px solid white;
    }

    .stag-img-1 {
      top: 0;
      right: 40px;
      width: 60px;
      height: 40px;
      z-index: 1;
    }

    .stag-img-2 {
      top: 70px;
      right: 0;
      width: 60px;
      height: 40px;
      z-index: 2;
    }

    .stag-img-3 {
      top: 140px;
      right: 20px;
      width: 50px;
      height: 30px;
      z-index: 3;
    }

    /* Override previous carousel image CSS for this slide */
    .impact-slide-images .stag-img {
      width: auto;
      height: auto;
    }

    /* Responsive Design */
    @media (max-width: 768px) {
      .impact-carousel-section .carousel-inner {
        max-height: 800px;
      }
      
      .impact-carousel-section .carousel-item {
        height: 800px;
      }
      
      .impact-slide-inner {
        flex-direction: column;
        max-height: 800px;
      }
      .impact-slide-text { 
        width: 100%; 
      }
      .impact-slide-images {
        width: 100%;
        min-height: 450px;
      }
      
      .stag-img-1 {
        right: 30px;
        width: 60px;
        height: 45px;
      }
      
      .stag-img-2 {
        top: 55px;
        right: 0;
        width: 60px;
        height: 45px;
      }
      
      .stag-img-3 {
        top: 110px;
        right: 15px;
        width: 55px;
        height: 40px;
      }
    }

/* Impact Details Section Responsive */
@media (max-width: 768px) {
  .impact-details-section {
    padding: 30px 20px !important;
  }
  
  .impact-details-content {
    font-size: 0.95rem !important;
  }
}

/* Karyashala Content Styling */
.karyashala-content {
  margin: 0 auto;
  padding: 60px 150px;
  min-height: calc(100vh - 200px);
}

.karyashala-content h2 {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.karyashala-content p {
  font-size: 1rem;
  line-height: 1.9;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.karyashala-content .dash-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.karyashala-content .dash-list li {
  padding-left: 20px;
  position: relative;
  line-height: 1.9;
  margin-bottom: 8px;
  color: #1a1a1a;
}

.karyashala-content .dash-list li::before {
  content: "- ";
  position: absolute;
  left: 0;
}

.karyashala-content .community-impact-section {
  margin: 40px 0 30px;
  padding: 32px 28px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.05);
}

.karyashala-content .community-impact-section h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 22px;
}

.karyashala-content .community-impact-section .community-impact-image {
  display: flex;
  justify-content: center;
}

.karyashala-content .community-impact-section .community-impact-image img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 20px;
  object-fit: cover;
}

/* Karyashala Responsive Design */
@media (max-width: 768px) {
  .karyashala-content {
    padding: 30px 20px;
  }
  .karyashala-content .community-impact-section {
    padding: 22px 18px;
  }
  .karyashala-content .community-impact-section h2 {
    font-size: 1.25rem;
  }
}

/* Help Content Styling */
.help-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 40px;
  text-align: center;
  color: #8B6914;
  font-size: 1rem;
  line-height: 2;
}

.help-content p {
  margin-bottom: 24px;
  color: #8B6914;
}

.help-content hr {
  border: none;
  border-top: 1px solid #8B6914;
  margin: 30px auto;
  width: 200px;
}

/* Help Responsive Design */
@media (max-width: 768px) {
  .help-content {
    padding: 30px 20px;
  }
}

/* Abhiyaan Carousel Styles */
.abhiyaan-page-wrapper,
.abhiyaan-carousel-section,
section:first-of-type {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.abhiyaan-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0;
  padding-top: 0;
  height: auto;
}

.abhiyaan-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: flex-start;
}

.abhiyaan-slide {
  min-width: 100%;
}

.abhiyaan-slide img {
  width: 100%;
  height: auto;
  max-height: 550px;
  object-fit: contain;
  object-position: center top;
  display: block;
  background: #000;
}

.abhiyaan-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.abhiyaan-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: 2px solid #5c2d0a;
  background-color: transparent;
  cursor: pointer;
  outline: none;
  padding: 0;
}

.abhiyaan-dot.active {
  background-color: #5c2d0a;
  border-color: #5c2d0a;
}

/* Abhiyaan Content Styles */
.abhiyaan-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 60px;
  font-size: 1rem;
  line-height: 1.9;
  color: #1a1a1a;
  text-align: justify;
}

.abhiyaan-content p {
  margin-bottom: 24px;
  font-weight: 600;
}

/* Mulya Page Styles */
.mulya-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.mulya-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 30px;
}

.mulya-number {
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.mulya-btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1.2rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

.mulya-btn-donate {
  background: #FFD700;
  color: #6a0dad;
}

.mulya-btn-appeal {
  background: #FFD700;
  color: #6a0dad;
}

/* Training Page Styles */
.train-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 40px;
}

.train-content h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: center;
}

.train-image-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin: 20px 0 30px;
}

.train-img-item {
  position: relative;
  overflow: hidden;
}

.train-img-item img {
  width: 100%;
  height: auto;
  max-height: 600px;
  object-fit: contain;
  display: block;
}

.train-img-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 215, 0, 0.85);
  color: #1a1a1a;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 6px 12px;
  margin: 0;
}

.small-text {
  font-size: 0.9rem;
  color: #672503;
  margin-bottom: 15px;
}

.train-description {
  font-size: 1.1rem;
  font-weight: 600;
  text-align: justify;
  line-height: 1.6;
  margin-bottom: 20px;
}

.subheading {
  font-size: 1.3rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-top: 30px;
}

.train-intro {
  font-size: 1rem;
  line-height: 1.9;
  color: #1a1a1a;
  text-align: justify;
  margin-bottom: 30px;
  font-weight: 600;
}

.train-flow {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 30px;
}

.train-box {
  width: 120px;
  min-height: 90px;
  padding: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1.4;
}

.train-box-dark {
  border: 2px solid #5c2d0a;
  background: #fff;
  color: #1a1a1a;
}

.train-box-light {
  border: 2px solid #d4b483;
  background: #fffde7;
  color: #1a1a1a;
}

.train-arrow {
  font-size: 1.5rem;
  color: #5c2d0a;
  font-weight: 700;
}

.train-small-label {
  font-size: 0.9rem;
  color: #672503;
  margin-bottom: 10px;
}

.train-benefits {
  list-style: disc;
  padding-left: 24px;
  color: #1a1a1a;
  font-size: 1rem;
  line-height: 2;
}

.train-benefits li {
  margin-bottom: 8px;
}

.train-section-heading {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 40px 0 20px;
}

.train-day-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.train-day-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.train-day-block {
  padding: 0;
}

.train-day-title {
  font-weight: 700;
  font-size: 1rem;
  color: #1a1a1a;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.train-day-number {
  background: #FFD700;
  color: #1a1a1a;
  font-weight: 700;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.train-day-section {
  color: #F97316;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
}

.train-day-block ol {
  padding-left: 20px;
  color: #1a1a1a;
  font-size: 0.9rem;
  line-height: 1.8;
}

.train-vidhi p {
  font-size: 1rem;
  line-height: 2;
  color: #1a1a1a;
  font-weight: 600;
  margin-bottom: 8px;
  text-align: justify;
}

/* Resident Application Styles */
.resident-app-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 20px;
}

.niwasi-form-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

.niwasi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  color: #1a1a1a;
  font-family: inherit;
  background: #fef9e7;  /* light cream/yellow background */
}

.niwasi-table td {
  border: 1px solid #1a1a1a;
  padding: 8px 10px;
  vertical-align: top;
  line-height: 1.6;
  background: #fef9e7;  /* same cream on all cells */
}

.niwasi-col-header td {
  background: #fef9e7;
  font-weight: 600;
  text-align: center;
  vertical-align: middle;
  font-size: 0.8rem;
  color: #1a1a1a;
}

/* Bold text in header orange */
.niwasi-col-header td strong {
  color: #F97316;
}

/* Italic text in header orange */
.niwasi-col-header td em {
  color: #F97316;
  font-style: italic;
}

.niwasi-empty-row td {
  height: 80px;
  vertical-align: top;
}

@media print {
  header, footer, nav, button {
    display: none !important;
  }
  .niwasi-table {
    font-size: 0.7rem;
  }
}

/* Niwasi Sabha Styles */
.niwasi-sabha-content {
  background: #fff8e1;
  min-height: 100vh;
  padding: 40px 0;
}

.niwasi-sabha-container {
  margin: 0 auto;
  padding: 60px 40px;
}

.niwasi-sabha-heading {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1a3a6b;
  margin-bottom: 24px;
  text-align: center;
}

.niwasi-sabha-text {
  line-height: 1.8;
}

.niwasi-sabha-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: #1a3a6b;
  text-align: justify;
  margin-bottom: 24px;
}

/* Sabha Two Column Styles */
.sabha-two-col {
  display: flex;
  align-items: stretch;
  width: 100%;
  max-width: 100%;
  margin: 0;
}

.sabha-left-col {
  width: 35%;
  background: #f5e6c8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 30px;
  text-align: center;
}

.sabha-left-heading {
  color: #1a3a6b;
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}

.sabha-right-col {
  width: 65%;
  background: #f0e6d2;;
  padding: 30px 40px;
}

.sabha-right-heading {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.sabha-right-col p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.sabha-right-col ul {
  padding-left: 20px;
  margin-bottom: 12px;
}

.sabha-right-col ul li {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 6px;
}

/* Blue background section */
.sabha-blue-bg .sabha-left-col {
  background: #f0e6d2;
}

.sabha-blue-bg .sabha-right-col {
  background: #f5e6c8;
}

/* Sabha Two Column Responsive Mobile Styles */
@media (max-width: 768px) {
  .sabha-two-col {
    flex-direction: column;
  }
  
  .sabha-left-col,
  .sabha-right-col {
    width: 100%;
  }
  
  .sabha-left-col {
    padding: 30px 20px;
  }
  
  .sabha-right-col {
    padding: 25px 20px;
  }
  
  .sabha-left-heading {
    font-size: 1.2rem;
    line-height: 1.5;
  }
  
  .sabha-right-heading {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  .sabha-right-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 8px;
  }
  
  .sabha-right-col ul li {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 4px;
  }
}

/* Sabha Udyami Section Styles */
.sabha-udyami-section {

  padding: 40px 60px;
  width: 100%;
  box-sizing: border-box;
}

.sabha-udyami-heading {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1a1a1a;
  text-align: center;
  margin-bottom: 16px;
}

.sabha-udyami-intro {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 30px;
  text-align: justify;
}

.sabha-udyami-row {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #d4b483;
}

.sabha-udyami-label {
  width: 200px;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #1a73e8;
  line-height: 1.6;
}

.sabha-udyami-detail {
  flex: 1;
}

.sabha-udyami-detail p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 8px;
  text-align: justify;
}

/* Sabha Udyami Responsive Mobile Styles */
@media (max-width: 768px) {
  .sabha-udyami-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .sabha-udyami-label {
    width: 100%;
  }
  
  .sabha-udyami-section {
    padding: 30px 20px;
  }
}

/* Testimonial Section Styles */
.testimonial-tag {
  display: inline-block;
  background: #00bcd4;
  color: #1a1a1a;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 8px 20px;
  border-radius: 20px;
  margin: 30px 0 20px 40px;
}

.testimonial-section {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  padding: 30px 40px 60px;
  background: white;
  margin: 0 20px;
  border-radius: 12px;
}

.testimonial-left {
  width: 280px;
  flex-shrink: 0;
}

.testimonial-main-heading {
  font-size: 2rem;
  font-weight: 800;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.3;
}

.testimonial-description {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 20px;
}

.testimonial-view-all {
  color: #F97316;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  font-style: italic;
}

.testimonial-cards-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 10px;
}

.testimonial-cards {
  display: flex;
  gap: 16px;
  transition: transform 0.4s ease;
  overflow: hidden;
}

.testimonial-card {
  min-width: 220px;
  background: white;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
}

/* Owl Carousel specific fixes */
.owl-carousel .testimonial-card {
  margin-right: 16px;
}

.owl-carousel .owl-item {
  display: flex;
  align-items: stretch;
}

.testimonial-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.testimonial-card-body {
  background: #FFD700;
  padding: 16px;
}

.testimonial-card-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.testimonial-card-body p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.testimonial-read-more {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  font-style: italic;
  text-decoration: none;
}

/* Owl Carousel Navigation Buttons */
.owl-nav button.owl-prev,
.owl-nav button.owl-next {
  background: white !important;
  border: 2px solid #ccc !important;
  border-radius: 50% !important;
  width: 36px !important;
  height: 36px !important;
  font-size: 1.4rem !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #1a1a1a !important;
}

.owl-nav button.owl-prev:hover,
.owl-nav button.owl-next:hover {
  background: #F97316 !important;
  color: white !important;
  border-color: #F97316 !important;
}

/* Remove old arrow CSS */
.testimonial-arrow { display: none; }

.testimonial-cards-wrapper {
  flex: 1;
  min-width: 0;      /* CRITICAL — prevents overflow in flexbox */
  overflow: hidden;
  position: relative;
}

.latest-impact {
  width: 100%;
  overflow: hidden;
}

.impact-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: white;
  overflow: hidden;
}

.impact-thumb {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: top center;
  display: block;
  flex-shrink: 0;
}

.impact-slidetxt {
  background: #FFD700;
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.impact-slidetxt h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.impact-slidetxt p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #1a1a1a;
  margin-bottom: 12px;
  flex: 1;
}

.impact-rmore {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  font-style: italic;
  text-decoration: none;
}

.swiper-slide {
  width: auto !important;
  flex-shrink: 0;
}

.swiper-button-next,
.swiper-button-prev {
  top: 50% !important;
  transform: translateY(-50%) !important;
  margin-top: 0 !important;
}

.swiper-wrapper {
  display: flex !important;
  align-items: stretch !important;
}

.swiper-button-next,
.swiper-button-prev {
  color: #F97316 !important;
  background: white;
  width: 36px !important;
  height: 36px !important;
  border-radius: 50%;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 14px !important;
  font-weight: 900;
}

/* Login Page Styles */
.login-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5e6c8;
  padding: 20px;
}

.login-card {
  background: white;
  border-radius: 12px;
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.login-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #5c2d0a;
  text-align: center;
  margin-bottom: 30px;
  font-family: 'Noto Serif Devanagari', serif;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.login-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.login-field label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a1a;
  font-family: 'Noto Serif Devanagari', serif;
}

.login-field input {
  padding: 12px 16px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Noto Serif Devanagari', serif;
  outline: none;
  transition: border 0.3s;
}

.login-field input:focus {
  border-color: #F97316;
  box-shadow: 0 0 0 3px rgba(249,115,22,0.15);
}

.login-btn {
  width: 100%;
  padding: 14px;
  background: #F97316;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Noto Serif Devanagari', serif;
  transition: background 0.3s;
  margin-top: 10px;
}

.login-btn:hover {
  background: #e06010;
}

/* Login Responsive Mobile Styles */
@media (max-width: 768px) {
  .login-card {
    padding: 30px 20px;
  }
}

/* Testimonial Responsive Mobile Styles */
@media (max-width: 768px) {
  .testimonial-section {
    flex-direction: column;
    margin: 0;
    padding: 20px;
  }
  
  .testimonial-left {
    width: 100%;
  }
  
  .testimonial-card {
    min-width: 180px;
  }
  
  .testimonial-tag {
    margin: 20px 0 15px 20px;
  }
  
  .testimonial-main-heading {
    font-size: 1.6rem;
  }
  
  .testimonial-description {
    font-size: 0.85rem;
  }
}

/* Niwasi Sabha Responsive Mobile Styles */
@media (max-width: 768px) {
  .niwasi-sabha-container {
    padding: 30px 20px;
    margin: 0 15px;
  }
  
  .niwasi-sabha-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
  }
  
  .niwasi-sabha-text p {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }
}

/* Resident Application Responsive Mobile Styles */
@media (max-width: 768px) {
  .niwasi-table {
    font-size: 0.75rem;
  }
  
  .niwasi-table td {
    padding: 5px;
  }
}

/* Training Responsive Mobile Styles */
@media (max-width: 768px) {
  .train-image-grid {
    grid-template-columns: 1fr;
  }
  
  .train-content {
    padding: 30px 20px;
  }
  
  .train-content h1 {
    font-size: 2rem;
  }
  
  .train-flow {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .train-box {
    width: 100%;
  }
  
  .train-arrow {
    transform: rotate(90deg);
    margin: 8px 0;
  }
  
  .train-day-grid {
    grid-template-columns: 1fr;
  }
}

/* Mulya Responsive Mobile Styles */
@media (max-width: 768px) {
  .mulya-item {
    flex-direction: column;
    gap: 10px;
  }
  
  .mulya-btn {
    width: 100%;
    text-align: center;
  }
  
  .mulya-content {
    padding: 30px 20px;
  }
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .abhiyaan-content {
    padding: 30px 20px;
  }
  
  .abhiyaan-slide img {
    max-height: 300px;
  }
}

/* Remove all gaps below hero */
.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.6s ease-in-out, visibility 0.6s ease-in-out;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;  /* active slide sets the height */
}

/* Left side padding fix */
.slide-left {
  width: 45%;
  padding: 30px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow: visible;
}

/* Right side full bleed */
.slide-right {
  width: 55%;
  flex-shrink: 0;
  overflow: hidden;
  display: flex;
  align-items: stretch;
}

.slide-right img,
.placeholder-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  display: block;
}

.placeholder-box {
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 0;
  display: flex;
  align-items: stretch;
}

/* Slide specific object-position */
#slide1 .slide-right img {
  object-position: center 30%;
}

#slide4 .placeholder-box img {
  object-position: center top;
}

#slide5 .placeholder-box img {
  object-position: center top;
}

