/* Container: center and flex align */
.the-logo-own {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  text-align: center;
	display: none !important;
}

/* Responsive logo image */
.the-logo-own img {
  width: 100%;
  max-width: 220px;
  height: auto;
}

/* Tablet view */
@media (max-width: 768px) {
  .the-logo-own img {
    max-width: 160px;
  }
}

/* Mobile view */
@media (max-width: 480px) {
  .the-logo-own img {
    max-width: 130px;
  }
}

/* Hide default site branding and Elementor logo if needed */
.site-branding,
.elementor-widget-site-logo {
  display: none !important;
}

.the-logo{
	display: none !important;
}

.igcda-section {
  font-family: Arial, sans-serif;
  padding: 20px;
  line-height: 1.6;
}
.igcda-section h2 {
  color: #000;
  margin-top: 20px;
}
.igcda-section ul {
  list-style-type: disc;
  margin-left: 20px;
}

.igcda-activities {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease-out forwards;
  animation-delay: 0.3s;
}

.igcda-activities h2,
.igcda-activities h3,
.igcda-activities ul {
  opacity: 0;
  animation: fadeIn 1s ease-in forwards;
}

.igcda-activities h2 { animation-delay: 0.5s; }
.igcda-activities h3 { animation-delay: 0.7s; }
.igcda-activities ul { animation-delay: 0.9s; }

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 20px;
}

@media (max-width: 900px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}

.gallery-item img {
  width: 100%;
  height: 250px; /* Adjust as needed */
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}
