/* Activities Section */
.section-title {
    color: #FF4500;
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
}

.activity-card {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  border: 2px solid #007bff; /* Blue border */
  box-shadow: 0 0 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 300px;
}

.activity-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 0 20px rgba(0, 123, 255, 0.2);
}

.activity-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
}

.activity-icon img {
    width: 120%;
    height: 120%;
    object-fit: contain;
}

.activity-title {
    color:#007bff;/* #FF4500;*/
    font-size: 1.25rem;
    margin-bottom: 0;
}
/* Glowing Bootstrap Icon Style */
/* Blue 3D Glowing Icon */
.activity-icon i {
  font-size: 8rem;
  color: #007bff;
  text-shadow: 0 0 8px rgba(0, 123, 255, 0.5),
               0 0 16px rgba(0, 123, 255, 0.4),
               0 0 24px rgba(0, 123, 255, 0.2);
  transition: transform 0.3s ease;
}

.activity-card:hover .activity-icon i {
  transform: scale(1.1);
  text-shadow: 0 0 10px rgba(0, 123, 255, 0.7),
               0 0 20px rgba(0, 123, 255, 0.5),
               0 0 30px rgba(0, 123, 255, 0.3);
}

@media (max-width: 768px) {
    .activity-card {
        margin-bottom: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
}

/* Welcome Section Styles */
.welcome-title {
    color: #FF4500;
    font-size: 2.5rem;
    font-weight: bold;
    position: relative;
}

.welcome-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 2rem;
}

.btn-outline-orange {
    color: #FF4500;
    border: 2px solid #FF4500;
    padding: 8px 25px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-outline-orange:hover {
    background-color: #FF4500;
    color: #fff;
}

@media (max-width: 768px) {
    .welcome-title {
        font-size: 2rem;
    }
    
    .welcome-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Campaign Section Styles */
.campaign-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.campaign-image:hover {
    transform: scale(1.02);
}

.campaign-title {
    color: #FF4500;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.campaign-text {
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .campaign-image {
        height: 300px;
        margin-bottom: 2rem;
    }

    .campaign-content {
        text-align: center;
    }

    .campaign-title {
        font-size: 1.5rem;
    }

    .campaign-text {
        font-size: 1rem;
        line-height: 1.6;
    }
}

/* Team Section Styles */
/* .team-card {
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  overflow: hidden;
  padding: 20px;
  transition: 0.4s ease;
  height: 100%;
  border: 2px solid transparent;
}

.team-card:hover {
  box-shadow: 0 0 25px rgba(255, 69, 0, 0.6);
  border-color: #FF4500;
  transform: translateY(-5px);
}

.team-image img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 10px;
}

.team-card h4 {
  font-size: 1.2rem;
  color: #333;
  margin-bottom: 0.3rem;
}

.team-card .designation {
  color: #FF4500;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.team-card .contact {
  font-size: 0.95rem;
  color: #555;
} */
/* Team ID Card Styles */
.teamSwiper {
  min-height: 430px;
  padding-top: 30px;
  padding-bottom: 30px;
}
  
.teamSwiper .swiper-wrapper {
  align-items: center;
}
 .team-id-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 30px 20px 25px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: 0.3s ease;
  border: 1px solid #dcdcdc;
  max-width: 280px;
  min-height: 320px;
  margin: auto;
  overflow: hidden;
}

.team-id-card:hover {
  box-shadow: 0 0 25px rgba(0, 123, 255, 0.4);
  transform: translateY(-6px);
  border-color: #007bff;
}

/* Top clip-style badge like ID card */
.clip-badge {
  width: 45px;
  height: 25px;
  background: #007bff;
  border-radius: 0 0 8px 8px;
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

/* Circular photo style */
.team-photo img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  object-position: top;
  border-radius: 50%;
  border: 5px solid #ffffff;
  box-shadow: 0 0 0 4px #007bff;
  background: #fff;
  margin-top: 20px;
}

/* Name style */
.team-name {
  font-size: 1.1rem;
  font-weight: 700;
  color: #007bff;
  margin-top: 15px;
  margin-bottom: 5px;
}

/* Designation style */
.team-role {
  font-size: 0.95rem;
  color: #333333;
  margin-bottom: 10px;
  font-weight: 500;
}

/* Contact number (green badge style) */
.team-contact {
  display: inline-block;
  background: #28a745;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 5px;
}

/* certificate section */
.certificate-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 210 / 297; /* A4 ratio */
  object-fit: contain;
  border: 4px solid #FF4500;
  border-radius: 8px;
  transition: transform 0.3s ease box-shadow 0.3s ease;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.certificate-item img:hover {
  transform: scale(1.03);
  box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

#certModal img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}
