

/* Section Borders Removed & Clean Layout */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}
/* General Section Styles (No Gaps Between Sections) */
section {
  margin: 0 !important;
  padding: 0 !important;
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box;
}

.team-bg,
.services-section,
.about-full-bg {
  border-radius: 0 !important;
  position: relative;
  overflow: hidden;
  padding: 0 !important;
  margin: 0 !important;
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw !important;
  margin-right: -50vw !important;
  box-sizing: border-box;
}

/* Equal Background Ratio + Color */
.team-bg { background: #f3f7fa; }
.services-section { background: #e3f2fd; }
.about-full-bg { background: #ffe4ec; }

/* Equal Background Icon Layout */
.team-bg-icons,
.services-bg-icons,
.about-bg-icons {
  position: absolute;
  left: 0; top: 0;
  width: 100%; height: 100%;
  z-index: 1;
  pointer-events: none;
}

.team-bg-icons i,
.services-bg-icons i,
.about-bg-icons i {
  position: absolute;
  font-size: 6.5rem;
  opacity: 0.18;
}

/* Section-wise Icon Color */
.team-bg-icons i { color: #b2dfdb; }
.services-bg-icons i { color: #bbdefb; }
.about-bg-icons i { color: #f8bbd0; }

/* Consistent Icon Positions */
.team-bg-icons i:nth-child(1),
.services-bg-icons i:nth-child(1),
.about-bg-icons i:nth-child(1) { left: 5%; top: 12%; }

.team-bg-icons i:nth-child(2),
.services-bg-icons i:nth-child(2),
.about-bg-icons i:nth-child(2) { right: 8%; top: 40%; }

.team-bg-icons i:nth-child(3),
.services-bg-icons i:nth-child(3),
.about-bg-icons i:nth-child(3) { left: 40%; bottom: 10%; }

.team-bg-icons i:nth-child(4),
.services-bg-icons i:nth-child(4),
.about-bg-icons i:nth-child(4) { right: 15%; bottom: 8%; }

/* Divider */
.section-divider {
  display: none; /* no visual divider */
}

/* ===== Equal Height Project Cards ===== */
.services-section .project-card {
  height: 380px !important;        /* All cards equal height */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
  background-color: #fffef9;
  padding: 25px 20px;
  transition: all 0.25s ease-in-out;
}

/* Hover lift */
.services-section .project-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}

/* Icon styling */
.services-section .icon-wrapper {
  font-size: 2rem;
  color: #198754;
  background: #e9f7ef;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

/* Text */
.services-section .project-card p {
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 6px;
  text-align: center;
  line-height: 1.4;
}


/* Small Centered Buttons */
.project-card .btn {
  margin-top: auto;
  align-self: center;
  display: inline-block;
  padding: 6px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
  width: auto;
}


/* About Image */
.about-img {
  max-width: 220px;
  width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  border-radius: 18px;
}

/* Hero Carousel */
#hero-carousel .carousel-item img {
  aspect-ratio: 1/1.1;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  object-fit: cover;
  margin: 0 auto;
  max-width: 92%;
  background: #f8f6f2;
  transition: box-shadow 0.3s, transform 0.3s;
}
#hero-carousel .carousel-item img:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,0.22);
  transform: scale(1.03);
}


/* Gallery */
.gallery-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.3s;
}
.gallery-img:hover {
  transform: scale(1.05);
}

/* ===== Upcoming Events Section ===== */
.upcoming-events {
  background: #f9f6ef; /* light cream tone for consistency */
}

.event-row {
  align-items: stretch;
}

.event-img {
  width: 100%;
  height: 420px;           /* ✅ bigger image */
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.event-details {
  background: #fff;
  min-height: 260px;       /* ✅ smaller text box */
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
}

.event-details:hover {
  transform: translateY(-4px);
}

.event-title {
  color: #198754;
  font-size: 1.25rem;
  line-height: 1.4;
}

.event-meta small {
  font-size: 0.85rem;
}

/* Responsive Tweaks */
@media (max-width: 768px) {
  .event-img {
    height: 300px;
  }
  .event-details {
    min-height: auto;
    margin-top: 10px;
  }
}


/* ====== Footer Styling ====== */
.site-footer {
  background: linear-gradient(135deg, #F4ECDF 0%, #E8E0D1 100%);
  color: #222;
  padding-top: 30px;
  padding-bottom: 10px;
  border: none;
  font-family: "Poppins", sans-serif;
}

.footer-logo {
  max-width: 250px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.footer-tagline {
  font-size: 0.8rem;
  color: #032716;
  opacity: 0.9;
  font-style: italic;
  margin-top: 8px;
  margin-bottom: 0px;
}

.footer-heading {
  color: #198754;
  font-size: 1.1rem;
}

.footer-links li {
  margin-bottom: 6px; /* ✅ tighter spacing */
}

.footer-links a {
  color: #222;
  font-size: 0.9rem;
  padding: 2px 0;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
}

.footer-links a:hover {
  color: #198754;
  transform: translateX(3px);
}

.social-link {
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: #f59c00 !important;
  transform: scale(1.1);
}

.footer-bottom {
  border-top: 1px solid #ccc;
  padding-top: 15px;
}

.footer-bottom a {
  color: #198754;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}



/* General Styles */
body {
  background-color: #f4f8fb;
  font-family: 'Segoe UI', sans-serif;
}

.team-section {
  padding: 60px 0;
}
.team-title {
  font-weight: bold;
  margin-bottom: 10px;
}
.member-card {
  background: #fff;
  border-radius: 15px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin: 15px;
  transition: transform 0.3s ease;
}
.member-card:hover {
  transform: translateY(-5px);
}
.member-img {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 15px;
}

/* Icons & Sections */
.icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #ffb300;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
}





  

.contact-section h6 {
  text-transform: uppercase;
  color: #198754;
  font-weight: bold;
  letter-spacing: 1.2px;
}

.contact-section .icon-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 1.2rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-section .form-control:focus {
  border-color: #198754;
  box-shadow: 0 4px 12px rgba(25, 135, 84, 0.15);
}

.contact-section .btn-success {
  background: linear-gradient(90deg, #28a745, #198754);
  border: none;
  transition: all 0.3s ease;
}

.contact-section .btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(25,135,84,0.2);
}

/* About Us Enhancements */
.about-section-pink {
  background: linear-gradient(135deg, #fff6fa 0%, #ffe4ec 100%);
  border-radius: 24px;
  box-shadow: 0 4px 24px rgba(248, 187, 208, 0.10);
  overflow: hidden;
}
.text-pink { color: #e91e63 !important; }
.about-bg-icons i { transition: transform 0.3s; }
.about-section-pink:hover .about-bg-icons i {
  transform: scale(1.1) rotate(-8deg);
}
.about-checkpoint { font-weight: bold; }
.project-card .btn-sm {
  width: auto;
  padding: 6px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
}
