 .carousel-inner {
   background-image: url('../images/bg3.jpg');
 }

 #eventsSection {
   margin-bottom: 80px;

 }

 .event-card {
   background-image: url('../images/bg2.jpg');
   text-align: center;
   border-radius: 16px;
   box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
   cursor: pointer;
   transition: transform 0.3s ease, box-shadow 0.3s ease;

 }

 .event-card:hover {
   transform: translateY(-5px);
   box-shadow: 0 12px 30px rgba(0, 0, 0, .15);
 }

 .event-card img {

   width: 100%;
   height: 160px;
   object-fit: cover;
   border-radius: 12px;
 }

 .speaker-card {
   background: #f8fbff;
   padding: 14px 18px;
   border-radius: 14px;
   box-shadow: 0 6px 15px rgba(0, 0, 0, .1);
   display: inline-flex;
   align-items: center;
   gap: 12px;
 }

 .speaker-card img {
   width: 70px;
   height: 70px;
   border-radius: 50%;
   object-fit: cover;
   background: #ddd;
 }

 .day-badge {
   display: inline-block;
   background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
   color: white;
   padding: 6px 16px;
   border-radius: 20px;
   font-size: 0.85rem;
   font-weight: 600;
 }

 .carousel-indicators button {
   background-color: #667eea;
 }

 .team-title {
   font-family: "Poppins", sans-serif;
   font-size: 14px;
   font-weight: 600;
   color: #f3faf3f6;
 }

 .team-members {
   font-family: "Inter", sans-serif;
   font-size: 13px;
   line-height: 1.4;
   color: white;
 }

 @media (max-width: 768px) {
   .carousel-control-prev {
     left: 10px;

   }

   .carousel-control-next {
     right: 10px;
   }
 }

 #eventsSection carousel-inner {
   background-image: url('../images/bg2.jpg');
 }