/* style.css */

body {
  margin: 0;
  font-family: Arial, sans-serif;
  background-image: linear-gradient(
    to right,
    rgb(243, 210, 144),
    rgb(244, 242, 237),
    rgb(195, 251, 195)
  );
  color: #000000;
  cursor: grab;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.4rem;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.3px;
}

header {
  background: url("https://via.placeholder.com/1200x400") no-repeat center
    center/cover;
  color: white;
}

.card {
  transition: transform 0.3s ease-in-out;
}

.card:hover {
  transform: scale(1.05);
}

footer {
  background-color: #0056b3;
}

.nav-item {
  padding: 0 6px;
}

.hero {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  text-align: center;
  background: linear-gradient(135deg, #ff9800, #ff5722);
  position: relative;
  overflow: hidden;
}
.slider {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  animation: slideAnimation 10s infinite;
}
@keyframes slideAnimation {
  0% {
    background-image: url("img/hero1.jpg");
  }
  33% {
    background-image: url("img/hero2.jpg");
  }
  66% {
    background-image: url("img/hero3.jpg");
  }
  100% {
    background-image: url("img/logo.jpg");
  }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  padding: 20px;
}
.hero-content h1 {
  font-size: 48px;
  margin-bottom: 10px;
  color: #ffffff;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}
.hero-content p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #ffffff;
}
.cta-button {
  background-color: #ffffff;
  padding: 12px 24px;
  text-decoration: none;
  color: #ff5722;
  font-weight: bold;
  border-radius: 5px;
  transition: 0.3s;
}
.cta-button:hover {
  background-color: #f0f0f0;
}

.logo img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  margin: 0 12px 0 0;
  border: 2px solid #f39c12;
  transition: all 0.3s ease;
  object-fit: cover;
}

.logo img:hover {
  transform: scale(1.05);
  border-color: #e67e22;
}

.navbar.navbar-custom {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 8px 0;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Ensure navbar items are visible */
.navbar-custom .navbar-nav .nav-link {
  color: #333 !important;
  font-weight: 500;
  transition: all 0.25s ease;
  font-size: 0.9rem;
  padding: 6px 12px;
  border-radius: 30px;
}

.navbar-custom .navbar-nav .nav-link:hover {
  color: #e67e22 !important;
  background: rgba(230, 126, 34, 0.08);
  transform: translateY(-1px);
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-left: 15px;
}

/* Prevent content from being hidden behind the navbar */
body {
  padding-top: 80px;
}

/* ========== HERO CARD - DECREASED HEIGHT & NO IMAGE CUTTING ========== */
.carousel {
  margin-top: -10px;
}

.carousel-item {
  padding: 25px 0 40px 0;
  background: transparent;
  height: auto;
  min-height: auto;
}

.carousel-inner {
  padding: 0;
}

.hero-card {
  display: flex;
  flex-wrap: wrap;
  background: white;
  border-radius: 32px;
  overflow: hidden;
  box-shadow:
    0 30px 60px -20px rgba(0, 0, 0, 0.35),
    0 0 0 1px rgba(243, 156, 18, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
  max-width: 1300px;
  margin: 0 auto;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  min-height: 555px;
}

.hero-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 40px 70px -25px rgba(0, 0, 0, 0.4),
    0 0 0 1px rgba(243, 156, 18, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

/* Image adapts to content size - NO CUTTING */
.hero-card-image {
  flex: 7;
  min-height: 550px;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 0.5s ease;
  width: 100%;
  background-color: #f5f0e8;
}

.hero-card:hover .hero-card-image {
  transform: scale(1.02);
}

.hero-card-content {
  flex: 3;
  padding: 55px 40px;
  background: linear-gradient(135deg, #fff8f0, #fffef5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

/* Add subtle gradient overlay on content side */
.hero-card-content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 0% 50%,
    rgba(230, 126, 34, 0.03),
    transparent
  );
  pointer-events: none;
}

.hero-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #c0392b;
  margin-bottom: 18px;
  font-family: "Playfair Display", "Georgia", serif;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #e67e22;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 30px;
  line-height: 1.6;
  font-style: italic;
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  padding: 10px 26px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  width: fit-content;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
}

.hero-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

/* Carousel Controls - Positioned outside card */
.carousel-control-prev,
.carousel-control-next {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.85;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  z-index: 10;
}

.carousel-control-prev {
  left: 15px;
}

.carousel-control-next {
  right: 15px;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
  background: #e67e22;
}

.carousel-control-prev:hover .carousel-control-prev-icon,
.carousel-control-next:hover .carousel-control-next-icon {
  filter: brightness(0) invert(1);
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(0.4);
  width: 20px;
  height: 20px;
}

.carousel-indicators {
  bottom: -25px;
}

.carousel-indicators button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #e67e22;
  opacity: 0.4;
  margin: 0 6px;
  transition: all 0.3s ease;
}

.carousel-indicators button.active {
  opacity: 1;
  background-color: #e67e22;
  transform: scale(1.2);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1200px) {
  .hero-card {
    max-width: 95%;
    margin: 0 auto;
    min-height: 500px;
  }

  .hero-card-image {
    min-height: 450px;
    background-size: contain;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.1rem;
  }

  .hero-card-content {
    padding: 38px 30px;
  }
}

@media (max-width: 992px) {
  .hero-card {
    flex-direction: column;
    margin: 0 20px;
    border-radius: 28px;
    min-height: auto;
  }

  .hero-card-image {
    flex: auto;
    min-height: 380px;
    background-size: contain;
  }

  .hero-card-content {
    flex: auto;
    padding: 32px 28px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.9rem;
  }

  .nav-buttons {
    margin-left: 0;
    margin-top: 12px;
    justify-content: center;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 60px;
  }

  .logo img {
    width: 45px;
    height: 45px;
    margin: 0 10px 0 0;
  }

  .carousel {
    margin-top: -10px;
  }

  .carousel-item {
    padding: 18px 0 35px 0;
  }

  .hero-card-image {
    min-height: 260px;
    background-size: contain;
  }

  .hero-card-content {
    padding: 25px 22px;
  }

  .hero-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .hero-badge {
    padding: 6px 18px;
    font-size: 0.75rem;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 36px;
    height: 36px;
  }

  .carousel-control-prev {
    left: 5px;
  }

  .carousel-control-next {
    right: 5px;
  }
}

@media (max-width: 576px) {
  .hero-card {
    margin: 0 12px;
    border-radius: 24px;
  }

  .hero-card-image {
    min-height: 200px;
    background-size: contain;
  }

  .hero-card-content {
    padding: 20px 18px;
  }

  .hero-title {
    font-size: 1.3rem;
  }

  .hero-subtitle {
    font-size: 0.85rem;
  }

  .hero-description {
    font-size: 0.75rem;
    margin-bottom: 15px;
  }

  .hero-badge {
    padding: 5px 14px;
    font-size: 0.7rem;
  }

  .nav-buttons {
    gap: 8px;
  }

  .carousel-control-prev,
  .carousel-control-next {
    width: 32px;
    height: 32px;
  }
}

/* Our Initiatives Section - Modern Redesign */
.initiatives {
  padding: 80px 0;
  background: linear-gradient(145deg, #fefaf5 0%, #fff5e8 100%);
  position: relative;
  overflow: hidden;
}

.initiatives::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.05), transparent);
  border-radius: 50%;
  z-index: 0;
}

.initiatives::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.04), transparent);
  border-radius: 50%;
  z-index: 0;
}

.initiatives .container {
  position: relative;
  z-index: 1;
}

.initiatives h2 {
  text-align: center;
  margin-bottom: 50px;
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", "Georgia", serif;
  position: relative;
  display: inline-block;
  width: 100%;
}

.initiatives h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  border-radius: 4px;
}

/* Gallery Grid */
.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 20px;
}

/* Image Cards */
.image {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  flex: 1 1 calc(33.33% - 25px);
  box-shadow: 0 15px 30px -12px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  cursor: pointer;
}

.image:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(230, 126, 34, 0.25);
}

.image img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image:hover img {
  transform: scale(1.08);
}

/* Overlay Styling - Modern */
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(192, 57, 43, 0.85),
    rgba(230, 126, 34, 0.85)
  );
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: all 0.4s ease;
  padding: 20px;
  text-align: center;
  backdrop-filter: blur(4px);
}

.image:hover .overlay {
  opacity: 1;
}

.overlay h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 12px;
  font-family: "Playfair Display", "Georgia", serif;
  letter-spacing: 1px;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.image:hover .overlay h3 {
  transform: translateY(0);
}

.overlay p {
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
  max-width: 90%;
  margin: 0 auto;
  transform: translateY(20px);
  transition: transform 0.3s ease 0.05s;
  font-style: italic;
}

.image:hover .overlay p {
  transform: translateY(0);
}

/* Decorative Quote Icon in Overlay */
.overlay::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 20px;
  font-size: 4rem;
  opacity: 0.2;
  font-family: "Georgia", serif;
  color: white;
}

.overlay::after {
  content: '"';
  position: absolute;
  bottom: 15px;
  right: 20px;
  font-size: 4rem;
  opacity: 0.2;
  font-family: "Georgia", serif;
  color: white;
}

/* Category Badge (optional - adds small label on image before hover) */
.image::before {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  color: white;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Different badge for each image (can be customized) */
.image:nth-child(1)::before {
  content: "👶 Child Care";
  background: linear-gradient(135deg, #e67e22, #f39c12);
  opacity: 0.9;
}
.image:nth-child(2)::before {
  content: "📚 Education";
  background: linear-gradient(135deg, #e67e22, #f39c12);
  opacity: 0.9;
}
.image:nth-child(3)::before {
  content: "🏥 Health Care";
  background: linear-gradient(135deg, #e67e22, #f39c12);
  opacity: 0.9;
}
.image:nth-child(4)::before {
  content: "🤝 Social";
  background: linear-gradient(135deg, #e67e22, #f39c12);
  opacity: 0.9;
}
.image:nth-child(5)::before {
  content: "🐾 Animal Welfare";
  background: linear-gradient(135deg, #e67e22, #f39c12);
  opacity: 0.9;
}
.image:nth-child(6)::before {
  content: "💪 Empowerment";
  background: linear-gradient(135deg, #e67e22, #f39c12);
  opacity: 0.9;
}

.image:hover::before {
  opacity: 0;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .image img {
    height: 260px;
  }

  .overlay h3 {
    font-size: 1.4rem;
  }

  .overlay p {
    font-size: 0.85rem;
  }
}

@media (max-width: 992px) {
  .initiatives {
    padding: 60px 0;
  }

  .initiatives h2 {
    font-size: 2.5rem;
  }

  .gallery {
    gap: 20px;
  }

  .image {
    flex: 1 1 calc(33.33% - 20px);
  }

  .image img {
    height: 240px;
  }

  .overlay h3 {
    font-size: 1.3rem;
  }

  .overlay p {
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .initiatives {
    padding: 50px 0;
  }

  .initiatives h2 {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .initiatives h2::after {
    width: 60px;
    height: 3px;
    bottom: -12px;
  }

  .gallery {
    gap: 18px;
  }

  .image {
    flex: 1 1 calc(50% - 18px);
  }

  .image img {
    height: 220px;
  }

  .overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }

  .overlay p {
    font-size: 0.75rem;
  }

  .overlay::before,
  .overlay::after {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .initiatives {
    padding: 40px 0;
  }

  .initiatives h2 {
    font-size: 1.9rem;
  }

  .gallery {
    gap: 15px;
  }

  .image {
    flex: 1 1 100%;
  }

  .image img {
    height: 220px;
  }

  .overlay h3 {
    font-size: 1.3rem;
  }

  .overlay p {
    font-size: 0.85rem;
  }

  .overlay::before,
  .overlay::after {
    display: none;
  }
}

/* Optional: Add animation when images come into view */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.image:nth-child(1) {
  animation-delay: 0.1s;
}
.image:nth-child(2) {
  animation-delay: 0.2s;
}
.image:nth-child(3) {
  animation-delay: 0.3s;
}
.image:nth-child(4) {
  animation-delay: 0.4s;
}
.image:nth-child(5) {
  animation-delay: 0.5s;
}
.image:nth-child(6) {
  animation-delay: 0.6s;
}

/* Contact Section - Modern Redesign */
.contact-section-modern {
  padding: 80px 0;
  background: linear-gradient(145deg, #ffffff 0%, #fefaf5 100%);
  position: relative;
  overflow: hidden;
}

.contact-section-modern::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.06), transparent);
  border-radius: 50%;
  z-index: 0;
}

.contact-section-modern::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.05), transparent);
  border-radius: 50%;
  z-index: 0;
}

.contact-wrapper {
  position: relative;
  z-index: 1;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: 50px;
}

.contact-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", "Georgia", serif;
  margin-bottom: 10px;
}

.contact-subtitle {
  font-size: 1.1rem;
  color: #e67e22;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.header-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  margin: 0 auto 20px;
  border-radius: 4px;
}

.contact-description {
  color: #6a5a4a;
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Contact Content Row */
.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.contact-info-card {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.1);
  transition: all 0.3s ease;
}

.contact-info-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -15px rgba(230, 126, 34, 0.12);
  border-color: rgba(230, 126, 34, 0.2);
}

.map-card {
  flex: 1;
  background: white;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.1);
  transition: all 0.3s ease;
}

.map-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 45px -15px rgba(230, 126, 34, 0.12);
  border-color: rgba(230, 126, 34, 0.2);
}

/* Info Header */
.info-header,
.map-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(230, 126, 34, 0.1);
}

.info-header i,
.map-header i {
  font-size: 1.8rem;
  color: #e67e22;
  background: linear-gradient(135deg, #fff8f0, #ffffff);
  padding: 12px;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.info-header h3,
.map-header h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #c0392b;
  font-family: "Playfair Display", "Georgia", serif;
  margin: 0;
}

/* Info Items */
.info-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 12px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 126, 34, 0.05);
}

.info-item:hover {
  transform: translateX(8px);
  border-color: rgba(230, 126, 34, 0.15);
  background: linear-gradient(135deg, #fff8f0, #ffffff);
}

.info-icon {
  min-width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(230, 126, 34, 0.2);
}

.info-icon i {
  font-size: 1.2rem;
  color: white;
}

.info-text {
  flex: 1;
}

.info-text strong {
  display: block;
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 700;
}

.info-text span {
  color: #6a5a4a;
  font-size: 0.9rem;
  line-height: 1.5;
  word-break: break-word;
}

/* Social Connect */
.social-connect {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 1px solid rgba(230, 126, 34, 0.1);
  text-align: center;
}

.social-connect p {
  color: #6a5a4a;
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-link {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #e67e22;
  font-size: 1.2rem;
  text-decoration: none;
  border: 1px solid rgba(230, 126, 34, 0.15);
}

.social-link:hover {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(230, 126, 34, 0.3);
}

/* Map Wrapper */
.map-wrapper {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.1);
}

.map-footer {
  text-align: center;
  padding-top: 15px;
}

.map-footer p {
  color: #6a5a4a;
  font-size: 0.85rem;
  margin: 0;
}

.map-footer i {
  color: #e67e22;
  margin-right: 8px;
}

/* Responsive Design */
@media (max-width: 992px) {
  .contact-section-modern {
    padding: 60px 0;
  }

  .contact-header h2 {
    font-size: 2.5rem;
  }

  .contact-info-card,
  .map-card {
    padding: 28px;
  }

  .info-header h3,
  .map-header h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  .contact-section-modern {
    padding: 50px 0;
  }

  .contact-header h2 {
    font-size: 2.2rem;
  }

  .contact-content {
    flex-direction: column;
    gap: 25px;
  }

  .contact-info-card,
  .map-card {
    padding: 25px;
  }

  .info-item {
    padding: 10px;
  }

  .info-icon {
    min-width: 40px;
    height: 40px;
  }

  .info-icon i {
    font-size: 1rem;
  }

  .info-text strong {
    font-size: 0.85rem;
  }

  .info-text span {
    font-size: 0.85rem;
  }

  .map-wrapper iframe {
    height: 250px;
  }
}

@media (max-width: 576px) {
  .contact-section-modern {
    padding: 40px 0;
  }

  .contact-header h2 {
    font-size: 1.9rem;
  }

  .contact-subtitle {
    font-size: 0.9rem;
  }

  .contact-description {
    font-size: 0.85rem;
  }

  .contact-info-card,
  .map-card {
    padding: 20px;
  }

  .info-header i,
  .map-header i {
    font-size: 1.4rem;
    padding: 10px;
  }

  .info-header h3,
  .map-header h3 {
    font-size: 1.3rem;
  }

  .info-item {
    gap: 12px;
  }

  .social-link {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .map-wrapper iframe {
    height: 200px;
  }
}

/* Animation for contact cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-info-card,
.map-card {
  animation: fadeInUp 0.5s ease-out forwards;
  opacity: 0;
}

.contact-info-card {
  animation-delay: 0.1s;
}

.map-card {
  animation-delay: 0.2s;
}

/* Footer Section - Modern Redesign */
.footer {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  color: #ffffff;
  padding: 60px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
}

.footer::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: radial-gradient(
    ellipse at bottom,
    rgba(230, 126, 34, 0.1),
    transparent
  );
  pointer-events: none;
}

.footer-content {
  position: relative;
  z-index: 1;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 50px;
}

.footer-col {
  flex: 1;
  min-width: 250px;
}

/* Footer Logo Section */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.footer-logo-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid #f39c12;
  object-fit: cover;
}

.footer-logo h5 {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin: 0;
  font-family: "Playfair Display", "Georgia", serif;
}

.footer-description {
  color: #b8b8b8;
  line-height: 1.6;
  margin-bottom: 25px;
  font-size: 0.9rem;
}

/* Social Icons */
.footer-social {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: #ffffff;
  font-size: 1.2rem;
  text-decoration: none;
}

.social-icon:hover {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
  color: white;
}

/* Footer Headings */
.footer-col h5 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
  color: #f39c12;
}

.footer-col h5::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  border-radius: 3px;
}

/* Footer Links */
.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #b8b8b8;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
}

.footer-links a i {
  font-size: 0.7rem;
  transition: transform 0.3s ease;
}

.footer-links a:hover {
  color: #f39c12;
  transform: translateX(5px);
}

.footer-links a:hover i {
  transform: translateX(3px);
}

/* Footer Contact */
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact li {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.footer-contact li i {
  min-width: 35px;
  height: 35px;
  background: rgba(243, 156, 18, 0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f39c12;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.footer-contact li:hover i {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  transform: scale(1.05);
}

.footer-contact li div {
  flex: 1;
}

.footer-contact li span {
  display: block;
  font-size: 0.7rem;
  color: #8a8a8a;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.footer-contact li a,
.footer-contact li p {
  color: #ffffff;
  text-decoration: none;
  font-size: 0.85rem;
  line-height: 1.5;
  margin: 0;
  transition: color 0.3s ease;
}

.footer-contact li a:hover {
  color: #f39c12;
}

/* Newsletter Section */
.footer-newsletter {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 35px 40px;
  margin-bottom: 40px;
  text-align: center;
  border: 1px solid rgba(243, 156, 18, 0.2);
}

.footer-newsletter h5 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: #f39c12;
}

.footer-newsletter p {
  color: #b8b8b8;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  gap: 10px;
}

.newsletter-form input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 0.9rem;
  outline: none;
  transition: all 0.3s ease;
}

.newsletter-form input::placeholder {
  color: #8a8a8a;
}

.newsletter-form input:focus {
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 5px rgba(243, 156, 18, 0.5);
}

.newsletter-form button {
  padding: 12px 25px;
  border: none;
  border-radius: 50px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.4);
}

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 25px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-bottom p {
  color: #8a8a8a;
  font-size: 0.85rem;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  gap: 25px;
}

.footer-bottom-links a {
  color: #8a8a8a;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
  color: #f39c12;
}

/* Responsive Design */
@media (max-width: 992px) {
  .footer {
    padding: 50px 0 0;
  }

  .footer-row {
    gap: 30px;
  }

  .footer-col {
    min-width: 220px;
  }

  .footer-newsletter {
    padding: 30px 25px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 40px 0 0;
  }

  .footer-row {
    flex-direction: column;
    gap: 35px;
  }

  .footer-col {
    text-align: center;
  }

  .footer-logo {
    justify-content: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-col h5::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .footer-links a {
    justify-content: center;
  }

  .footer-contact li {
    justify-content: center;
  }

  .newsletter-form {
    flex-direction: column;
    max-width: 100%;
  }

  .newsletter-form input,
  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .footer {
    padding: 30px 0 0;
  }

  .footer-logo-img {
    width: 45px;
    height: 45px;
  }

  .footer-logo h5 {
    font-size: 1.3rem;
  }

  .footer-description {
    font-size: 0.85rem;
  }

  .footer-col h5 {
    font-size: 1.1rem;
  }

  .footer-newsletter {
    padding: 25px 20px;
  }

  .footer-newsletter h5 {
    font-size: 1.2rem;
  }

  .newsletter-form input,
  .newsletter-form button {
    padding: 10px 16px;
    font-size: 0.85rem;
  }

  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 0.75rem;
  }

  .footer-bottom-links {
    gap: 15px;
  }
}

/* Card styling (preserved from original) */
.card {
  background-image: linear-gradient(
    to bottom right,
    rgb(180, 197, 243),
    rgb(223, 183, 242)
  );
}

/* About Us Section - Complete Redesign */
.about-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #ffffff 0%, #fefaf5 100%);
  position: relative;
  overflow: hidden;
}

.about-section::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.06), transparent);
  border-radius: 50%;
  z-index: 0;
}

.about-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.05), transparent);
  border-radius: 50%;
  z-index: 0;
}

.about-section .container {
  position: relative;
  z-index: 1;
}

/* Row Alignment - Fix for side by side equal height */
.row.about-content {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  margin: 0 -15px;
}

.row.about-content > [class*="col-"] {
  display: flex;
  flex-direction: column;
  padding: 0 15px;
}

/* Left Column - Content Area */
.row.about-content .col-lg-6:first-child {
  display: flex;
  flex-direction: column;
}

/* Right Column - Image Area */
.row.about-content .col-lg-6:last-child {
  display: flex;
  flex-direction: column;
}

/* About Header */
.about-header {
  margin-bottom: 30px;
}

.about-header h2 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", "Georgia", serif;
  margin-bottom: 10px;
}

.about-subtitle {
  color: #6a5a4a;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
}

/* Tabs Styling */
.nav-tabs {
  border-bottom: none;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.nav-tabs .nav-link {
  background: rgba(230, 126, 34, 0.08);
  border: none;
  font-weight: 600;
  color: #6a5a4a;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-family: "Inter", "Poppins", sans-serif;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.nav-tabs .nav-link i {
  font-size: 1rem;
}

.nav-tabs .nav-link:hover {
  color: #e67e22;
  background: rgba(230, 126, 34, 0.15);
  transform: translateY(-2px);
}

.nav-tabs .nav-link.active {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  box-shadow: 0 6px 18px rgba(230, 126, 34, 0.3);
}

/* Tab Content - Takes full height */
.tab-content {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(230, 126, 34, 0.1);
  transition: all 0.3s ease;
  flex: 1;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 550px;
}

.tab-content:hover {
  box-shadow: 0 25px 45px -15px rgba(230, 126, 34, 0.12);
}

/* Tab Panes - Fill available space */
.tab-pane {
  height: 100%;
  display: flex;
  flex-direction: column;
  animation: fadeInUp 0.4s ease-out;
  flex: 1;
}

/* Founder Section */
.founder-intro {
  margin-bottom: 25px;
}

.founder-intro h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #c0392b;
  font-family: "Playfair Display", "Georgia", serif;
  margin-bottom: 8px;
}

.founder-quote {
  font-style: italic;
  color: #e67e22;
  font-weight: 500;
  margin-bottom: 15px;
  border-left: 3px solid #e67e22;
  padding-left: 15px;
}

.traits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  margin-top: 20px;
  flex: 1;
}

.trait-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 126, 34, 0.08);
}

.trait-item:hover {
  transform: translateX(5px);
  border-color: rgba(230, 126, 34, 0.2);
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.08);
}

.trait-icon {
  font-size: 1.8rem;
  min-width: 45px;
}

.trait-info {
  flex: 1;
}

.trait-info strong {
  display: block;
  color: #c0392b;
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.trait-info span {
  font-size: 0.8rem;
  color: #6a5a4a;
  line-height: 1.4;
}

/* Mission Section */
.mission-header,
.vision-header {
  margin-bottom: 20px;
}

.mission-header h3,
.vision-header h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #c0392b;
  font-family: "Playfair Display", "Georgia", serif;
  margin-bottom: 15px;
}

.mission-grid,
.vision-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 10px 0;
  flex: 1;
}

.mission-card,
.vision-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 12px 15px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(230, 126, 34, 0.08);
}

.mission-card:hover,
.vision-card:hover {
  transform: translateX(8px);
  border-color: rgba(230, 126, 34, 0.25);
  background: linear-gradient(135deg, #fff8f0, #ffffff);
}

.mission-icon,
.vision-icon {
  font-size: 2rem;
  min-width: 55px;
  text-align: center;
}

.mission-content,
.vision-content {
  flex: 1;
}

.mission-content strong,
.vision-content strong {
  display: block;
  color: #c0392b;
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.mission-content span,
.vision-content span {
  font-size: 0.85rem;
  color: #6a5a4a;
  line-height: 1.4;
}

.mission-footer,
.vision-footer {
  margin-top: 20px;
  padding: 15px;
  background: linear-gradient(135deg, #fff8f0, #ffffff);
  border-radius: 16px;
  text-align: center;
  border: 1px solid rgba(230, 126, 34, 0.1);
}

.mission-footer p,
.vision-footer p {
  color: #c0392b;
  font-weight: 500;
  margin: 0;
}

/* Image Card Styling - Fixed on Right with equal height */
.about-image-card {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(145deg, #ffffff, #fefaf5);
  border-radius: 28px;
  box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(230, 126, 34, 0.12);
  transition: all 0.4s ease;
  overflow: hidden;
  min-height: 550px;
  flex: 1;
}

.about-image-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 50px -18px rgba(230, 126, 34, 0.2);
  border-color: rgba(230, 126, 34, 0.25);
}

.image-wrapper {
  position: relative;
  width: 85%;
  max-width: 380px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.2);
}

.founder-image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.5s ease;
  border-radius: 20px;
}

.about-image-card:hover .founder-image {
  transform: scale(1.03);
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  padding: 20px;
  text-align: center;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.about-image-card:hover .image-overlay {
  transform: translateY(0);
}

.overlay-content i {
  color: #f39c12;
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.overlay-content p {
  color: white;
  font-size: 0.85rem;
  margin: 0;
  font-style: italic;
}

.image-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
}

.decoration-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.08), transparent);
}

.decoration-circle-small {
  position: absolute;
  bottom: -30px;
  left: -30px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.06), transparent);
}

/* Animation for tab panes */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Ensure columns are equal height on all screen sizes */
@media (min-width: 992px) {
  .row.about-content {
    display: flex;
  }

  .row.about-content .col-lg-6 {
    display: flex;
    flex-direction: column;
  }

  .tab-content,
  .about-image-card {
    flex: 1;
  }
}

/* Responsive Design */
@media (max-width: 991px) {
  .about-section {
    padding: 60px 0;
  }

  .row.about-content {
    flex-direction: column;
    gap: 30px;
  }

  .traits-grid {
    grid-template-columns: 1fr;
  }

  .image-wrapper {
    width: 70%;
    margin: 30px auto;
  }

  .tab-content,
  .about-image-card {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .about-header {
    text-align: center;
  }

  .about-header h2 {
    font-size: 2.2rem;
  }

  .nav-tabs {
    justify-content: center;
  }

  .tab-content {
    padding: 20px;
  }

  .image-wrapper {
    width: 60%;
    margin: 30px auto;
  }

  .decoration-circle,
  .decoration-circle-small {
    display: none;
  }
}

@media (max-width: 576px) {
  .about-section {
    padding: 40px 0;
  }

  .about-header h2 {
    font-size: 1.8rem;
  }

  .nav-tabs .nav-link {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .tab-content {
    padding: 18px;
  }

  .trait-item {
    padding: 10px;
  }

  .trait-icon {
    font-size: 1.5rem;
    min-width: 38px;
  }

  .mission-card,
  .vision-card {
    padding: 10px 12px;
  }

  .mission-icon,
  .vision-icon {
    font-size: 1.5rem;
    min-width: 45px;
  }

  .image-wrapper {
    width: 85%;
    margin: 20px auto;
  }
}

/* FAQ Section - Modern Redesign - FIX FOR DOUBLE ARROW */
.faq-section {
  padding: 80px 0;
  background: linear-gradient(145deg, #ffffff 0%, #fefaf5 100%);
  position: relative;
  overflow: hidden;
}

.faq-section::before {
  content: "";
  position: absolute;
  top: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.05), transparent);
  border-radius: 50%;
  z-index: 0;
}

.faq-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.04), transparent);
  border-radius: 50%;
  z-index: 0;
}

/* FAQ Header */
.faq-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.faq-header-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
}

.faq-header-icon i {
  font-size: 2.5rem;
  color: white;
}

.faq-header h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-family: "Playfair Display", "Georgia", serif;
  margin-bottom: 15px;
}

.header-decoration {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #e67e22, #f39c12);
  margin: 0 auto 20px;
  border-radius: 4px;
}

.faq-header p {
  color: #6a5a4a;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* FAQ Content */
.faq-content {
  position: relative;
  z-index: 1;
}

/* Accordion Items */
.accordion-item {
  background: white;
  border: none;
  border-radius: 20px !important;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px -10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  overflow: hidden;
}

.accordion-item:hover {
  box-shadow: 0 15px 35px -12px rgba(230, 126, 34, 0.15);
  transform: translateY(-2px);
}

/* CRITICAL FIX: Remove Bootstrap's default arrow */
.accordion-button::after {
  display: none !important;
}

.accordion-button {
  background: white;
  padding: 20px 25px;
  font-weight: 600;
  font-size: 1rem;
  color: #2c3e2f;
  border-radius: 20px !important;
  display: flex;
  align-items: center;
  gap: 15px;
  box-shadow: none;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  color: #c0392b;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.faq-number {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.9rem;
  color: #e67e22;
  border: 1px solid rgba(230, 126, 34, 0.2);
}

.accordion-button:not(.collapsed) .faq-number {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  border-color: transparent;
}

.faq-question {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
}

.faq-icon {
  font-size: 1.2rem;
  color: #e67e22;
}

.accordion-button:not(.collapsed) .faq-icon {
  color: #c0392b;
}

/* Custom Arrow - Only one arrow now */
.accordion-arrow {
  font-size: 0.9rem;
  color: #e67e22;
  transition: transform 0.3s ease;
  margin-left: auto;
}

.accordion-button:not(.collapsed) .accordion-arrow {
  transform: rotate(180deg);
}

.accordion-body {
  padding: 20px 25px 25px;
  background: linear-gradient(135deg, #fefaf5, #ffffff);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.accordion-body p {
  color: #5a4a3a;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}

/* Donation List */
.donation-list {
  list-style: none;
  padding: 0;
  margin: 15px 0 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.donation-list li {
  flex: 1;
  min-width: 180px;
  padding: 10px 15px;
  background: white;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: #5a4a3a;
  border: 1px solid rgba(230, 126, 34, 0.1);
  transition: all 0.3s ease;
}

.donation-list li:hover {
  transform: translateX(5px);
  border-color: rgba(230, 126, 34, 0.3);
  background: linear-gradient(135deg, #fff8f0, #ffffff);
}

.donation-list li i {
  width: 25px;
  color: #e67e22;
  font-size: 1rem;
}

/* Contact Card */
.contact-card {
  background: linear-gradient(135deg, #ffffff, #fefaf5);
  border-radius: 24px;
  padding: 40px 30px;
  margin-top: 40px;
  text-align: center;
  border: 1px solid rgba(230, 126, 34, 0.15);
  box-shadow: 0 15px 35px -12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(230, 126, 34, 0.15);
  border-color: rgba(230, 126, 34, 0.25);
}

.contact-card-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.25);
}

.contact-card-icon i {
  font-size: 2rem;
  color: white;
}

.contact-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #c0392b;
  margin-bottom: 12px;
  font-family: "Playfair Display", "Georgia", serif;
}

.contact-card p {
  color: #6a5a4a;
  max-width: 450px;
  margin: 0 auto 25px;
  line-height: 1.6;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
  color: white;
  background: linear-gradient(135deg, #c0392b, #e67e22);
}

/* Responsive Design */
@media (max-width: 992px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header h1 {
    font-size: 2.5rem;
  }

  .accordion-button {
    padding: 18px 20px;
  }

  .donation-list li {
    min-width: 160px;
  }
}

@media (max-width: 768px) {
  .faq-section {
    padding: 50px 0;
  }

  .faq-header h1 {
    font-size: 2rem;
  }

  .faq-header p {
    font-size: 1rem;
  }

  .faq-header-icon {
    width: 65px;
    height: 65px;
  }

  .faq-header-icon i {
    font-size: 2rem;
  }

  .accordion-button {
    padding: 15px 18px;
    flex-wrap: wrap;
  }

  .faq-number {
    width: 35px;
    height: 35px;
    font-size: 0.8rem;
  }

  .faq-question span {
    font-size: 0.9rem;
  }

  .donation-list {
    flex-direction: column;
    gap: 10px;
  }

  .donation-list li {
    min-width: auto;
  }

  .contact-card {
    padding: 30px 20px;
  }

  .contact-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 40px 0;
  }

  .faq-header h1 {
    font-size: 1.7rem;
  }

  .faq-header p {
    font-size: 0.9rem;
  }

  .header-decoration {
    width: 60px;
    height: 3px;
  }

  .accordion-button {
    padding: 12px 15px;
  }

  .faq-number {
    width: 30px;
    height: 30px;
    font-size: 0.7rem;
  }

  .faq-question {
    gap: 8px;
  }

  .faq-icon {
    font-size: 1rem;
  }

  .faq-question span {
    font-size: 0.85rem;
  }

  .accordion-body {
    padding: 15px 18px;
  }

  .accordion-body p {
    font-size: 0.85rem;
  }

  .contact-card {
    padding: 25px 18px;
  }

  .contact-card-icon {
    width: 55px;
    height: 55px;
  }

  .contact-card-icon i {
    font-size: 1.5rem;
  }

  .contact-btn {
    padding: 10px 22px;
    font-size: 0.85rem;
  }
}

/* Animation for FAQ items */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.accordion-item {
  animation: fadeInUp 0.4s ease-out forwards;
  opacity: 0;
}

.accordion-item:nth-child(1) {
  animation-delay: 0.1s;
}
.accordion-item:nth-child(2) {
  animation-delay: 0.2s;
}
.accordion-item:nth-child(3) {
  animation-delay: 0.3s;
}
.accordion-item:nth-child(4) {
  animation-delay: 0.4s;
}
.accordion-item:nth-child(5) {
  animation-delay: 0.5s;
}

.donate {
  padding: 0.5rem 2.5rem 0.5rem 2.5rem;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  background-image: linear-gradient(
    to right,
    rgb(252, 116, 5),
    rgb(255, 254, 251),
    rgb(4, 250, 4)
  );
  color: black;
  font-weight: bolder;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  position: relative;
  transition: all 0.5s ease-in-out;
  text-transform: uppercase;
  height: 50px;
  cursor: pointer;
  overflow: visible;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.donate:hover {
  background-image: linear-gradient(
    to right,
    rgb(248, 236, 3),
    rgb(245, 2, 209),
    rgb(1, 46, 247)
  );
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.donate::before {
  content: "🙏";
  position: relative;
  left: 0;
  top: 0;
  transform: none;
  opacity: 1;
  font-size: 1.1rem;
  transition: all 0.3s ease-in-out;
  display: inline-block;
  margin-right: 6px;
}

.donate:hover::before {
  content: "❤️";
  opacity: 1;
  left: 0;
  transform: scale(1.1);
  font-size: 1.2rem;
  top: 0;
  animation: heartbeat 0.5s ease-in-out;
}

.donate:active::before {
  content: "💝";
}

@keyframes heartbeat {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}

.volunteer {
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #04843b, #06a84c);
  min-width: 100px;
  border: none;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(4, 132, 59, 0.3);
  box-sizing: border-box;
  padding: 12px 24px;
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  margin-left: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.volunteer:hover {
  background: linear-gradient(135deg, #06a84c, #04843b);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(4, 132, 59, 0.4);
  opacity: 1;
}

.volunteer::before {
  content: "🤝";
  font-size: 1rem;
  margin-right: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.volunteer:hover::before {
  transform: scale(1.2) rotate(10deg);
  animation: shake 0.4s ease-in-out;
}

@keyframes shake {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(15deg);
  }
  50% {
    transform: rotate(-10deg);
  }
  75% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

.volunteer::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
  pointer-events: none;
}

.volunteer:active::after {
  width: 200px;
  height: 200px;
  opacity: 0;
  transition: 0s;
}

.volunteer .animation {
  display: none;
}

@keyframes ripple {
  0% {
    box-shadow:
      0 0 0 0 rgba(255, 255, 255, 0.3),
      0 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 0 20px rgba(255, 255, 255, 0.1);
  }
  100% {
    box-shadow:
      0 0 0 10px rgba(255, 255, 255, 0.2),
      0 0 0 20px rgba(255, 255, 255, 0.1),
      0 0 0 30px rgba(255, 255, 255, 0);
  }
}

:root {
  --primary: #e67e22;
  --secondary: #f39c12;
  --accent1: #c0392b;
  --accent2: #27ae60;
  --dark: #2c3e2f;
  --light: #fef8e8;
  --white: #ffffff;
}

.projects-section {
  background: linear-gradient(145deg, #fef5e8 0%, #fff0e0 100%);
  font-family: "Inter", "Poppins", sans-serif;
  padding: 60px 0;
  position: relative;
  overflow: visible;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-heading h2 {
  font-size: 2.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  font-family: "Playfair Display", "Georgia", serif;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
  border-radius: 3px;
}

.section-heading p {
  color: #5a4a3a;
  font-size: 1.1rem;
  max-width: 650px;
  margin: 18px auto 0;
  line-height: 1.5;
  font-weight: 500;
}

/* Project Cards - All content visible */
.project-card {
  background: rgba(255, 255, 255, 0.96);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.12);
  transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  height: 100%;
  position: relative;
  z-index: 2;
  border: 1px solid rgba(230, 126, 34, 0.1);
  display: flex;
  flex-direction: column;
}

.project-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 40px -15px rgba(230, 126, 34, 0.25);
  border-color: rgba(230, 126, 34, 0.2);
}

.project-img {
  height: 220px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

.project-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.project-card:hover .project-img img {
  transform: scale(1.05);
}

/* Overlay gradient on image */
.project-img::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.project-card:hover .project-img::after {
  opacity: 1;
}

.project-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  height: 60px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.12);
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 2px solid rgba(230, 126, 34, 0.2);
  padding: 8px;
  flex-shrink: 0;
}

.project-logo img {
  width: 100%;
  height: auto;
  border-radius: 50%;
  object-fit: contain;
}

.project-card:hover .project-logo {
  transform: scale(1.05) rotate(3deg);
  border-color: #e67e22;
  box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

.project-content {
  padding: 22px 22px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.project-content h3 {
  color: #c0392b;
  font-weight: 800;
  margin-bottom: 10px;
  font-size: 1.5rem;
  font-family: "Playfair Display", "Georgia", serif;
  letter-spacing: -0.3px;
  line-height: 1.3;
}

.project-content p {
  color: #5a4a3a;
  margin-bottom: 20px;
  line-height: 1.55;
  font-size: 0.9rem;
  flex: 1;
}

.project-btn {
  display: inline-block;
  padding: 10px 28px;
  background: linear-gradient(135deg, #e67e22, #f39c12);
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
  box-shadow: 0 3px 10px rgba(230, 126, 34, 0.25);
  align-self: flex-start;
  cursor: pointer;
}

.project-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #c0392b, #e67e22);
  transition: all 0.35s ease;
  z-index: -1;
}

.project-btn:hover:before {
  left: 0;
}

.project-btn:hover {
  box-shadow: 0 5px 15px rgba(230, 126, 34, 0.35);
  transform: translateY(-2px);
}

/* Animated background elements */
.bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: 1;
  pointer-events: none;
}

.bg-elements div {
  position: absolute;
  border-radius: 50%;
  background: rgba(230, 126, 34, 0.05);
  animation: float 20s infinite ease-in-out;
}

.bg-elements div:nth-child(1) {
  width: 100px;
  height: 100px;
  top: 15%;
  left: 5%;
  animation-delay: 0s;
  background: radial-gradient(circle, rgba(230, 126, 34, 0.07), transparent);
}

.bg-elements div:nth-child(2) {
  width: 150px;
  height: 150px;
  top: 70%;
  left: 85%;
  animation-delay: -3s;
  background: radial-gradient(circle, rgba(243, 156, 18, 0.05), transparent);
}

.bg-elements div:nth-child(3) {
  width: 80px;
  height: 80px;
  top: 30%;
  right: 8%;
  animation-delay: -6s;
  background: radial-gradient(circle, rgba(192, 57, 43, 0.04), transparent);
}

.bg-elements div:nth-child(4) {
  width: 120px;
  height: 120px;
  bottom: 10%;
  left: 10%;
  animation-delay: -9s;
  background: radial-gradient(circle, rgba(39, 174, 96, 0.03), transparent);
}

/* Animations */
@keyframes pulse {
  0% {
    text-shadow: 0 0 0px rgba(230, 126, 34, 0);
  }
  50% {
    text-shadow: 0 0 12px rgba(230, 126, 34, 0.2);
  }
  100% {
    text-shadow: 0 0 0px rgba(230, 126, 34, 0);
  }
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0.3;
  }
  50% {
    transform: translateY(-25px) rotate(180deg);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) rotate(360deg);
    opacity: 0.3;
  }
}

/* Media Queries - All content visible */
@media (max-width: 1200px) {
  .projects-section {
    padding: 50px 0;
  }

  .section-heading h2 {
    font-size: 2.5rem;
  }

  .project-img {
    height: 200px;
  }

  .project-logo {
    width: 55px;
    height: 55px;
  }

  .project-content {
    padding: 20px 20px 24px;
  }

  .project-content h3 {
    font-size: 1.4rem;
  }
}

@media (max-width: 992px) {
  .section-heading h2 {
    font-size: 2.3rem;
  }

  .section-heading p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .project-content h3 {
    font-size: 1.35rem;
  }

  .project-img {
    height: 190px;
  }

  .project-btn {
    padding: 9px 24px;
    font-size: 0.75rem;
  }
}

@media (max-width: 768px) {
  .projects-section {
    padding: 40px 0;
  }

  .section-heading {
    margin-bottom: 35px;
  }

  .section-heading h2 {
    font-size: 2rem;
  }

  .section-heading p {
    font-size: 0.95rem;
    margin: 15px auto 0;
  }

  .section-heading h2::after {
    width: 55px;
    height: 3px;
    bottom: -8px;
  }

  .project-card {
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .project-img {
    height: 180px;
  }

  .project-content {
    padding: 18px 18px 22px;
  }

  .project-content h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
  }

  .project-content p {
    font-size: 0.85rem;
    margin-bottom: 18px;
  }

  .project-btn {
    padding: 8px 22px;
    font-size: 0.7rem;
  }

  .project-logo {
    width: 50px;
    height: 50px;
    top: 12px;
    right: 12px;
    padding: 6px;
  }
}

@media (max-width: 576px) {
  .projects-section {
    padding: 30px 0;
  }

  .section-heading {
    margin-bottom: 28px;
  }

  .section-heading h2 {
    font-size: 1.7rem;
  }

  .section-heading p {
    font-size: 0.85rem;
    line-height: 1.45;
  }

  .section-heading h2::after {
    width: 50px;
    height: 2px;
  }

  .project-img {
    height: 160px;
  }

  .project-content {
    padding: 15px 15px 18px;
  }

  .project-content h3 {
    font-size: 1.2rem;
  }

  .project-content p {
    font-size: 0.8rem;
    margin-bottom: 15px;
  }

  .project-btn {
    padding: 7px 18px;
    font-size: 0.65rem;
    letter-spacing: 0.5px;
  }

  .project-logo {
    width: 45px;
    height: 45px;
    top: 10px;
    right: 10px;
    padding: 5px;
  }

  /* Ensure row has no overflow */
  .row {
    margin-left: -10px;
    margin-right: -10px;
  }

  .col-lg-6,
  .col-md-6 {
    padding-left: 10px;
    padding-right: 10px;
  }
}

/* Fresh Color Theme - Enhanced */
.recent-activities {
  padding: 60px 0 80px 0;
  background: linear-gradient(145deg, #fef8e8 0%, #fef5e8 100%);
  margin-top: 20px;
  position: relative;
  overflow: hidden;
}

.recent-activities::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(230, 126, 34, 0.08) 0%,
    transparent 70%
  );
  top: -250px;
  right: -250px;
  z-index: 0;
}

.recent-activities::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(243, 156, 18, 0.06) 0%,
    transparent 70%
  );
  bottom: -200px;
  left: -200px;
  z-index: 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.section-title h2 {
  font-size: 3.2rem;
  font-weight: 800;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #c0392b, #e67e22, #f39c12);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: none;
  font-family: "Playfair Display", "Georgia", serif;
}

.section-title p {
  font-size: 1.2rem;
  color: #5a4a3a;
  max-width: 750px;
  margin: 0 auto;
  line-height: 1.6;
}

.title-decoration {
  height: 4px;
  width: 80px;
  background: linear-gradient(90deg, #e67e22, #f39c12, #e67e22);
  margin: 15px auto 20px auto;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(230, 126, 34, 0.3);
}

/* Video Section - Enhanced */
.video-section {
  background: linear-gradient(145deg, #ffffff, #fffaf0);
  border-radius: 28px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  padding: 25px;
  margin-bottom: 30px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(230, 126, 34, 0.15);
  height: 100%;
}

.video-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -18px rgba(230, 126, 34, 0.25);
  border-color: rgba(230, 126, 34, 0.3);
}

.video-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(230, 126, 34, 0.12);
}

.video-icon {
  background: linear-gradient(135deg, #e67e22, #f39c12);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 10px 25px rgba(230, 126, 34, 0.3);
  transition: all 0.3s ease;
}

.video-section:hover .video-icon {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(230, 126, 34, 0.4);
}

.video-icon i {
  font-size: 28px;
  color: white;
}

.video-title h3 {
  color: #2c3e2f;
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-family: "Playfair Display", "Georgia", serif;
}

.video-title p {
  color: #6a5a4a;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.video-container {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: #1a1a2e;
  box-shadow: 0 15px 30px -10px rgba(0, 0, 0, 0.25);
}

#activityVideo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: opacity 0.3s;
}

.control-buttons {
  display: flex;
  gap: 10px;
}

.control-btn {
  background: rgba(255, 255, 255, 0.95);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: #e67e22;
}

.control-btn:hover {
  background: #e67e22;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(230, 126, 34, 0.4);
}

.control-btn i {
  font-size: 18px;
}

.video-status {
  color: white;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.7);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  backdrop-filter: blur(4px);
}

/* Photos Section - Enhanced */
.photos-section {
  background: linear-gradient(145deg, #ffffff, #fffaf0);
  border-radius: 28px;
  box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.15);
  padding: 25px;
  position: relative;
  z-index: 1;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  border: 1px solid rgba(230, 126, 34, 0.15);
  height: 100%;
}

.photos-section:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 50px -18px rgba(243, 156, 18, 0.25);
  border-color: rgba(243, 156, 18, 0.3);
}

.photos-header {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 2px solid rgba(243, 156, 18, 0.12);
}

.photos-icon {
  background: linear-gradient(135deg, #f39c12, #e67e22);
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 18px;
  box-shadow: 0 10px 25px rgba(243, 156, 18, 0.3);
  transition: all 0.3s ease;
}

.photos-section:hover .photos-icon {
  transform: scale(1.05);
  box-shadow: 0 15px 30px rgba(243, 156, 18, 0.4);
}

.photos-icon i {
  font-size: 28px;
  color: white;
}

.photos-title h3 {
  color: #2c3e2f;
  font-weight: 800;
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-family: "Playfair Display", "Georgia", serif;
}

.photos-title p {
  color: #6a5a4a;
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.photo-item {
  border-radius: 16px;
  overflow: hidden;
  height: 165px;
  position: relative;
  cursor: pointer;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.photo-item:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 20px 30px -12px rgba(0, 0, 0, 0.25);
}

.photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.photo-item:hover img {
  transform: scale(1.1);
}

.photo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  color: white;
  padding: 10px;
  transform: translateY(100%);
  transition: transform 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.photo-item:hover .photo-overlay {
  transform: translateY(0);
}

.photo-overlay h6 {
  font-size: 0.8rem;
  margin: 0;
  font-weight: 600;
  color: white;
  text-align: center;
  letter-spacing: 0.5px;
}

/* Responsive - Enhanced */
@media (max-width: 1200px) {
  .recent-activities {
    padding: 50px 0 70px 0;
  }

  #activityVideo {
    height: 300px;
  }

  .photo-item {
    height: 150px;
  }

  .section-title h2 {
    font-size: 2.8rem;
  }

  .section-title {
    margin-bottom: 45px;
  }
}

@media (max-width: 992px) {
  .recent-activities {
    padding: 45px 0 60px 0;
    margin-top: 15px;
  }

  .section-title h2 {
    font-size: 2.5rem;
  }

  .section-title p {
    font-size: 1.1rem;
    padding: 0 20px;
  }

  .section-title {
    margin-bottom: 40px;
  }

  #activityVideo {
    height: 280px;
  }

  .photo-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }

  .photo-item {
    height: 135px;
  }

  .video-icon,
  .photos-icon {
    width: 55px;
    height: 55px;
  }

  .video-icon i,
  .photos-icon i {
    font-size: 24px;
  }

  .video-title h3,
  .photos-title h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 768px) {
  .recent-activities {
    padding: 40px 0 50px 0;
    margin-top: 10px;
  }

  .section-title {
    margin-bottom: 35px;
  }

  .section-title h2 {
    font-size: 2.2rem;
  }

  .section-title p {
    font-size: 1rem;
    padding: 0 15px;
  }

  .title-decoration {
    margin: 12px auto 15px auto;
  }

  .video-header,
  .photos-header {
    flex-direction: column;
    text-align: center;
  }

  .video-icon,
  .photos-icon {
    margin-right: 0;
    margin-bottom: 12px;
  }

  .video-section,
  .photos-section {
    padding: 20px;
  }

  #activityVideo {
    height: 240px;
  }

  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .photo-item {
    height: 160px;
  }

  .control-buttons {
    gap: 8px;
  }

  .control-btn {
    width: 40px;
    height: 40px;
  }

  .video-status {
    font-size: 0.7rem;
    padding: 5px 12px;
  }
}

@media (max-width: 576px) {
  .recent-activities {
    padding: 30px 0 40px 0;
    margin-top: 5px;
  }

  .section-title {
    margin-bottom: 30px;
  }

  .section-title h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
  }

  .section-title p {
    font-size: 0.9rem;
  }

  .title-decoration {
    width: 60px;
    height: 3px;
    margin: 10px auto 15px auto;
  }

  .video-section,
  .photos-section {
    padding: 18px;
  }

  .video-icon,
  .photos-icon {
    width: 50px;
    height: 50px;
  }

  .video-icon i,
  .photos-icon i {
    font-size: 22px;
  }

  .video-title h3,
  .photos-title h3 {
    font-size: 1.2rem;
  }

  .video-title p,
  .photos-title p {
    font-size: 0.8rem;
  }

  #activityVideo {
    height: 200px;
  }

  .video-controls {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .control-buttons {
    width: 100%;
    justify-content: center;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .photo-item {
    height: 200px;
  }

  .photo-overlay h6 {
    font-size: 0.75rem;
  }
}

/* ========== IMPROVED SCROLLBAR & SCROLLABLE SECTIONS ========== */

/* Custom Scrollbar for the entire page */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1e7db;
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 10px;
    border: 2px solid #f1e7db;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c0392b, #e67e22);
}

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

/* Improve scrolling for gallery sections */
.gallery,
.photo-grid,
.traits-grid,
.mission-grid,
.vision-grid {
    scroll-margin-top: 100px;
}

/* Add smooth transitions for all interactive elements */
* {
    -webkit-tap-highlight-color: transparent;
}

/* Improve card hover effects for better scroll experience */
.project-card,
.image,
.video-section,
.photos-section,
.contact-info-card,
.map-card,
.accordion-item {
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Add loading animation for sections */
@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: sectionFadeIn 0.6s ease-out forwards;
}

/* Stagger animation for gallery items */
.image:nth-child(1) { animation-delay: 0.05s; }
.image:nth-child(2) { animation-delay: 0.1s; }
.image:nth-child(3) { animation-delay: 0.15s; }
.image:nth-child(4) { animation-delay: 0.2s; }
.image:nth-child(5) { animation-delay: 0.25s; }
.image:nth-child(6) { animation-delay: 0.3s; }

/* Improve scroll-padding for fixed navbar */
html {
    scroll-padding-top: 90px;
}

/* Add focus styles for better accessibility */
a:focus-visible,
button:focus-visible,
.accordion-button:focus-visible {
    outline: 2px solid #e67e22;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Improve loading state for images */
img {
    loading: lazy;
    background-color: #f5f0e8;
}

img:not([src]) {
    opacity: 0;
}

/* Add shimmer loading effect for images */
.image img,
.project-img img,
.photo-item img {
    transition: opacity 0.3s ease;
}

/* Improve accordion scroll behavior */
.accordion-collapse {
    transition: height 0.35s ease;
}

/* Add scroll indicator for long content */
.scroll-indicator {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, #e67e22, #f39c12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.scroll-indicator.show {
    opacity: 1;
    visibility: visible;
}

.scroll-indicator:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 18px rgba(230, 126, 34, 0.4);
}

.scroll-indicator i {
    color: white;
    font-size: 1.2rem;
}

/* Improve parallax scrolling effect on hero */
.hero-card-image {
    transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

/* Add gradient fade at bottom of scrollable content */
.tab-content::after {
    content: '';
    position: sticky;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content:hover::after {
    opacity: 0;
}

/* Improve mobile touch scrolling */
@media (max-width: 768px) {
    .gallery,
    .photo-grid {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Improve scrollbar on mobile */
    ::-webkit-scrollbar {
        width: 6px;
    }
    
    /* Reduce scroll-padding on mobile */
    html {
        scroll-padding-top: 70px;
    }
}

/* Add active section highlight for navigation (optional) */
section {
    scroll-margin-top: 100px;
}

/* Improve link hover effects */
a {
    transition: all 0.25s ease;
}

/* Add subtle hover lift for all cards */
.card-hover-lift {
    transition: transform 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1), box-shadow 0.3s ease;
}

.card-hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.15);
}