* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background-color: rgb(230, 224, 224) !important;
    color: white !important;
    font-family: 'Poppins', sans-serif !important;
}


@keyframes popup {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

h1 {
    font-size: 60px;
    font-weight: bold;
    background: linear-gradient(to right, #ff9a3c, #ff7300, #ff4500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: center;
    display: inline-block;
    animation: popup 1s ease-in-out forwards !important;
    opacity: 0;
}
.intern-group {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 40px;
}
.team-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.single-team-items {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.single-team-items:hover {
    transform: translateY(-5px);
}

.team-image {
    position: relative;
}

.team-image img {
    width: 100%;
    height: auto;
    display: block;
}

.social-profile {
    position: absolute;
    bottom: 10px;
    left: 10px;
}

.social-profile ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    gap: 10px;
}

.social-profile ul li a {
    color: #333;
    font-size: 16px;
    transition: color 0.3s ease;
}

.social-profile ul li a:hover {
    color: #007bff;
}

.team-content {
    padding: 15px;
}

.team-content h3 {
    margin: 10px 0 5px;
}

.team-content p {
    margin: 0;
    color: #666;
}

.intern-card {
  width: calc(25% - 15px); /* Adjust based on your layout */
  background: #f4f4f4;
  padding: 10px;
  text-align: center;
  border-radius: 8px;
}


.chairman-card {
    width: 350px;    /* ✅ Not too big */
    max-width: 100%; /* ✅ Responsive for small screens */
    margin: 0 auto;  /* ✅ Center the card */
}
/* Fade-in Animation */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
