/* HERO SECTION */
.ies-hero {
  padding: 120px 0 80px;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* MAP BACKGROUND */
.ies-map-bg {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(#dcdcdc 1px, transparent 1px);
  background-size: 8px 8px;
  opacity: 0.5;
  z-index: 0;
}

.ies-hero .container {
  position: relative;
  z-index: 2;
}

/* INFO CARD */
.ies-info-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.15);
  animation: floatSlow 6s ease-in-out infinite;
}

@keyframes floatSlow {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.ies-badge {
  font-size: 13px;
  font-weight: 600;
  color: #777;
}

.ies-info-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
}

.ies-info-text {
  font-size: 15px;
  color: #666;
}

/* EVENTS CARD */
.ies-events-card {
  background: #fff;
  border-radius: 24px;
  padding: 26px;
  margin-top: 24px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.ies-events-card p {
  margin-bottom: 10px;
  transition: 0.3s;
}

.ies-events-card p:hover {
  transform: translateX(6px);
  color: #e59d02;
}

/* RIGHT CONTENT */
.ies-right-content {
  padding-left: 60px;
}

/* TITLE */
.ies-title {
  font-size: clamp(44px, 6vw, 86px);
  font-weight: 900;
  line-height: 1.05;
}

.ies-title span {
  color: #e59d02;
}

/* DESCRIPTION */
.ies-desc {
  max-width: 560px;
  font-size: 18px;
  color: #555;
}

/* STATS */
.ies-stats {
  display: flex;
  gap: 40px;
  font-size: 24px;
  font-weight: 800;
}

.ies-stats small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: #666;
}

/* BUTTON SHADOW */
.btn-warning {
  box-shadow: 0 15px 35px rgba(229,157,2,0.4);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .ies-right-content {
    padding-left: 0;
  }

  .ies-stats {
    gap: 20px;
    font-size: 20px;
  }
}



/* form */
.nomination-section {
  background: #f7f9fc;
}

/* CARD */
.nomination-card {
  background: #ffffff;
  padding: 35px;
  border-radius: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  animation: fadeUp 0.8s ease;
}

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

/* TITLE */
.nomination-card h3 {
  font-weight: 800;
}

/* INPUTS */
.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 14px;
  border: 1px solid #d0d7e2;
  transition: 0.3s;
}

.form-control:focus,
.form-select:focus {
  border-color: #e59d02;
  box-shadow: 0 0 0 4px rgba(229,157,2,0.15);
}

/* LABEL */
.form-label {
  font-weight: 600;
}

/* BUTTON */
.btn-success {
  background: linear-gradient(135deg, #1cc88a, #17a673);
  border: none;
  box-shadow: 0 10px 30px rgba(28,200,138,0.4);
  transition: 0.3s;
}

.btn-success:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(28,200,138,0.5);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .nomination-card {
    padding: 25px;
  }
}

/* third section */

/* SECTION */
.why-attend-section {
  background: #ffffff;
}

/* TITLE */
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 900;
}

/* CARD */
.why-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 30px;
  height: 100%;
  box-shadow: 
    0 15px 40px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: 0.4s ease;
  transform-style: preserve-3d;
}

/* ICON */
.why-card i {
  font-size: 42px;
  color: #e59d02;
  margin-bottom: 15px;
  display: inline-block;
  transition: 0.4s;
}

/* TITLE */
.why-card h5 {
  font-weight: 700;
  margin-bottom: 10px;
}

/* TEXT */
.why-card p {
  color: #555;
  font-size: 15px;
}

/* HOVER â€“ 3D EFFECT */
.why-card:hover {
  transform: translateY(-12px) rotateX(6deg);
  box-shadow: 0 30px 70px rgba(0,0,0,0.18);
}

.why-card:hover i {
  transform: scale(1.2) rotate(5deg);
}

/* BUTTON */
.btn-warning {
  box-shadow: 0 15px 35px rgba(229,157,2,0.4);
  transition: 0.3s;
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 45px rgba(229,157,2,0.5);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .why-card {
    padding: 24px;
  }
}

/* fourth */
.events-record-section {
  background: #f8fafc;
}

/* TITLE */
.record-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
}

.record-subtitle {
  font-size: 18px;
  color: #666;
}

/* CARD */
.record-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
  transition: 0.4s ease;
  position: relative;
}

.record-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.18);
}

/* ICON */
.card-icon {
  width: 42px;
  height: 42px;
  background: #f4c10f;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.card-icon i {
  color: #000;
  font-size: 20px;
}

/* TEXT */
.record-card h5 {
  font-weight: 700;
}

.record-card p {
  color: #555;
  font-size: 15px;
}

/* PLACEHOLDERS */
.india-map-placeholder,
.teacher-image-placeholder {
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eaeaea, #f5f5f5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-weight: 600;
  margin-top: 20px;
}

/* WIDE CARD */
.wide-card {
  padding: 35px;
}

/* BUTTON */
.btn-warning {
  box-shadow: 0 12px 30px rgba(229,157,2,0.4);
  transition: 0.3s;
}

.btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(229,157,2,0.5);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .record-card {
    padding: 24px;
  }

  .india-map-placeholder,
  .teacher-image-placeholder {
    height: 180px;
  }
}
.india-map-wrapper {
  margin-top: 20px;
  background: #f5f7fa;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.india-map-img {
  width: 100%;
  max-width: 300px;
  height: auto;
  transition: transform 0.6s ease;
}

/* Subtle hover zoom */
.record-card:hover .india-map-img {
  transform: scale(1.05);
}

.teacher-image-wrapper {
  margin-top: 20px;
  background: linear-gradient(135deg, #f7f7f7, #ffffff);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.6);
}

/* IMAGE */
.teacher-img {
  width: 100%;
  max-width: 500px;
  height: auto;
  border-radius: 14px;
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

/* HOVER ACTIVITY */
.record-card:hover .teacher-img {
  transform: scale(1.05) translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

/* fourth */
/* SECTION */
.benefits-section {
  background: linear-gradient(180deg, #ffffff, #f9fbff);
}

/* TITLE */
.benefits-title {
  font-size: clamp(32px, 4vw, 44px);
  font-weight: 900;
}

/* CARD */
.benefit-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  height: 100%;
  box-shadow:
    0 20px 60px rgba(0,0,0,0.12),
    inset 0 1px 0 rgba(255,255,255,0.6);
  transition: all 0.45s ease;
  transform-style: preserve-3d;
  text-align: left;
}

/* 3D HOVER EFFECT */
.benefit-card:hover {
  transform: translateY(-14px) rotateX(5deg);
  box-shadow: 0 35px 90px rgba(0,0,0,0.2);
}

/* ICON */
.benefit-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f4c10f, #ffdd57);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: 0 10px 25px rgba(244,193,15,0.45);
}

.benefit-icon i {
  font-size: 26px;
  color: #000;
  transition: 0.4s ease;
}

/* ICON ACTIVITY */
.benefit-card:hover .benefit-icon i {
  transform: scale(1.2) rotate(8deg);
}

/* TEXT */
.benefit-card h5 {
  font-weight: 800;
  margin-bottom: 10px;
}

.benefit-card p {
  color: #555;
  font-size: 15px;
  line-height: 1.6;
}

/* BUTTON */
.btn-warning {
  background: linear-gradient(135deg, #f4c10f, #ffb703);
  border: none;
  box-shadow: 0 15px 35px rgba(244,193,15,0.45);
  transition: 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(244,193,15,0.6);
}

/* RESPONSIVE */
@media (max-width: 576px) {
  .benefit-card {
    padding: 26px;
  }
}


/* fifth section */

/* SECTION BACKGROUND */
.celebration-section {
  background: #000;
  color: #fff;
}

/* IMAGE CARD */
.celebration-image-card {
  border-radius: 22px;
  overflow: hidden;
  box-shadow:
    0 25px 70px rgba(0,0,0,0.7);
  transform-style: preserve-3d;
  transition: 0.5s ease;
}

.celebration-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

/* IMAGE HOVER 3D */
.celebration-image-card:hover {
  transform: translateY(-12px) rotateY(6deg);
}

.celebration-image-card:hover img {
  transform: scale(1.05);
}

/* CONTENT */
.celebration-content h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.3;
}

.celebration-content h2 span {
  color: #f4c10f;
}

/* TEXT */
.celebration-content p {
  font-size: 16px;
  color: #ccc;
  max-width: 520px;
}

/* BUTTON */
.btn-warning {
  background: linear-gradient(135deg, #f4c10f, #ffb703);
  border: none;
  box-shadow: 0 15px 35px rgba(244,193,15,0.5);
  transition: 0.3s ease;
}

.btn-warning:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(244,193,15,0.7);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .celebration-content {
    text-align: center;
  }

  .celebration-content p {
    margin: auto;
  }
}


/* slider */
.past-events-section {
  background: #fff;
}

/* SWIPER */
.pastEventSwiper {
  padding: 40px 0;
}

/* SLIDE */
.swiper-slide {
  display: flex;
  justify-content: center;
}

/* VIDEO CARD */
.video-card {
  position: relative;
  width: 700px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0,0,0,0.3);
  cursor: pointer;
  transition: 0.4s ease;
}

.video-card img {
  width: 100%;
  display: block;
}

/* PLAY BUTTON */
.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: #fff;
  border-radius: 50%;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.4);
}

/* SCALE EFFECT */
.swiper-slide-active .video-card {
  transform: scale(1.05);
}

.swiper-slide-prev .video-card,
.swiper-slide-next .video-card {
  transform: scale(0.85);
  opacity: 0.7;
}

/* MODAL */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-modal-content {
  position: relative;
  width: 80%;
  max-width: 800px;
}

.video-modal iframe {
  width: 100%;
  height: 450px;
}

.close-video {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 32px;
  color: #fff;
  cursor: pointer;
}

/* RESPONSIVE */
@media(max-width:768px){
  .video-card {
    width: 100%;
  }

  .video-modal iframe {
    height: 300px;
  }
}



/* gallery */


/* footer */
/* FOOTER BASE */
.ies-footer {
  background: #0f0f0f;
  color: #fff;
  border-radius: 24px 24px 0 0;
  padding: 50px 0 30px;
}

/* TOP */
.footer-top h3 {
  font-weight: 800;
}

.footer-top p {
  color: #ccc;
}

/* OPTIONS */
.footer-options h6 {
  font-weight: 700;
}

.footer-options p {
  font-size: 14px;
  color: #ccc;
}

.footer-options .contact {
  font-size: 13px;
}

/* DIVIDER */
.divider {
  width: 1px;
  height: 80px;
  background: #444;
  margin: 20px auto;
}

/* BUTTON */
.btn-warning {
  background: linear-gradient(135deg, #f4c10f, #ffb703);
  border: none;
  box-shadow: 0 15px 35px rgba(244,193,15,0.45);
  transition: 0.3s;
}

.btn-warning:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 50px rgba(244,193,15,0.6);
}

/* DIVIDER LINE */
.footer-divider {
  border-color: #333;
  margin: 40px 0;
}

/* LOGO */
.footer-logo h2 {
  font-weight: 900;
  letter-spacing: 2px;
}

/* SOCIAL */
.social-icons a {
  color: #fff;
  margin: 0 8px;
  font-size: 18px;
  transition: 0.3s;
}

.social-icons a:hover {
  color: #f4c10f;
  transform: translateY(-3px);
}

/* LINKS */
.footer-bottom a {
  color: #ccc;
  font-size: 13px;
  margin-left: 12px;
  text-decoration: none;
  transition: 0.3s;
}

.footer-bottom a:hover {
  color: #f4c10f;
}

/* COPYRIGHT */
.footer-copy {
  color: #777;
  font-size: 12px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .divider {
    display: none;
  }

  .footer-options {
    text-align: center !important;
  }
}
.highlight-card,
.organizer-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  height: 100%;
}

.ies-content-section h1 {
  font-size: clamp(28px, 4vw, 42px);
}

.ies-theme ul li {
  margin-bottom: 8px;
}

/* map with form */
/* FORM CARD */
.nomination-card {
  background: #fff;
  padding: 30px;
  border-radius: 16px;
  box-shadow: 0 15px 45px rgba(0,0,0,0.1);
}

/* MAP CARD */
.india-map-card {
  background: linear-gradient(135deg, #ffffff, #f8f8f8);
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.12);
}

/* MAP WRAPPER */
.india-map-wrapper {
  position: relative;
  display: inline-block;
  margin-top: 20px;
}

/* MAP IMAGE */
.india-map-img {
  max-width: 100%;
  height: auto;
  transition: transform 0.6s ease;
}

/* HOVER ZOOM */
.india-map-wrapper:hover .india-map-img {
  transform: scale(1.05);
}

/* PULSE EFFECT */
.map-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  background: #f4c10f;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 2s infinite;
}

/* PULSE ANIMATION */
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(244,193,15,0.6);
  }
  70% {
    box-shadow: 0 0 0 25px rgba(244,193,15,0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(244,193,15,0);
  }
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .india-map-card {
    margin-top: 30px;
  }
}


.social-float {
  position: fixed;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  transform: scale(1.1);
}

/* Colors */
.whatsapp { background: #25D366; }
.instagram { background: #E1306C; }
.linkedin { background: #0077B5; }


/* logo */



.img-box,
.guest-card img,
.speaker-img img,
.teacher-img,
.celebration-image-card img,
.india-map-img,
.video-thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;       
  object-fit: cover;        
  border-radius: 14px;      
  background: #f5f5f5;

  padding: 8px;             
  box-shadow: 
    inset 0 0 0 1px #e5e5e5,
    0 8px 20px rgba(0,0,0,0.08);

  transition: 0.3s ease;
}



.img-box:hover,
.guest-card img:hover,
.speaker-img img:hover,
.teacher-img:hover,
.celebration-image-card img:hover,
.video-thumb img:hover {
  transform: scale(1.03);
  box-shadow:
    inset 0 0 0 1px #ddd,
    0 12px 30px rgba(0,0,0,0.12);
}
/* guest box */
.guest-card,
.speaker-card,
.celebration-image-card,
.teacher-image-wrapper,
.india-map-wrapper,
.video-thumb {
  overflow: hidden;
  border-radius: 16px;
}
/* video */
.video-thumb img {
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}
/* map */
.india-map-img {
  background: #fff;
  padding: 14px;
  border-radius: 18px;
}
/* cheif guest */




.guest-card {
  position: relative;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  height: 100%;
}



.guest-card img {
  width: 100%;
  height: 320px;              
  object-fit: cover;          
  object-position: center top;
  display: block;
}



.guest-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 14px 16px;

  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.1)
  );

  color: #fff;
}

.guest-info h6 {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
}

.guest-info small {
  font-size: 13px;
  opacity: 0.9;
}



.guest-card img {
  transition: transform 0.4s ease;
}

.guest-card:hover img {
  transform: scale(1.05);
}


@media (max-width: 576px) {
  .guest-card img {
    height: 260px;
  }
}
/* guest heading */
.chief-guests-section {
  padding-top: 70px;
  padding-bottom: 70px;
}
.chief-guests-section .section-title {
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  text-align: center;
  color: #0f172a;              /* deep professional navy */
  letter-spacing: 0.6px;
  margin-bottom: 18px;
  position: relative;
}
.chief-guests-section .section-title::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 14px auto 0;

  background: linear-gradient(
    90deg,
    rgba(245,158,11,0.2),
    rgba(245,158,11,1),
    rgba(245,158,11,0.2)
  );

  border-radius: 10px;
}
.guest-info h6 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.guest-info small {
  font-size: 13px;
  font-weight: 500;
  opacity: 0.9;
}
.chief-guests-section .btn-warning {
  display: inline-block;
  margin-top: 40px;

  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  border: none;
  color: #111;
  font-weight: 600;
  padding: 12px 34px;
  border-radius: 50px;

  box-shadow: 0 10px 25px rgba(245,158,11,0.35);
  transition: all 0.3s ease;
}

.chief-guests-section .btn-warning:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 35px rgba(245,158,11,0.45);
}
@media (max-width: 576px) {
  .chief-guests-section .section-title {
    font-size: 28px;
  }

  .guest-info h6 {
    font-size: 16px;
  }
}


/* past speakers */


.past-speakers-section {
  background: #f8fafc;
  padding: 60px 0;
}



.past-speakers-section h2 {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: 0.5px;
  color: #1f2937;
  position: relative;
  display: inline-block;
  margin-bottom: 40px;
}

.past-speakers-section h2::after {
  content: "";
  width: 70px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  display: block;
  margin: 12px auto 0;
  border-radius: 4px;
}


.speaker-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.35s ease;
  text-align: center;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.speaker-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}



.speaker-img {
  width: 100%;
  height: 240px;
  margin-bottom: 16px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
}

.speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}



.speaker-card h6 {
  font-size: 18px;
  font-weight: 700;
  margin: 8px 0 6px;
  color: #111827;
  letter-spacing: 0.3px;
}

.speaker-card small {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.4;
}



.speakerSwiper .swiper-button-next,
.speakerSwiper .swiper-button-prev {
  color: #f59e0b;
  transition: 0.3s ease;
  margin-top: -69px;
}

.speakerSwiper .swiper-button-next:hover,
.speakerSwiper .swiper-button-prev:hover {
  color: #d97706;
}



@media (max-width: 992px) {
  .speaker-img {
    height: 220px;
  }
}

@media (max-width: 768px) {
  .speaker-img {
    height: 200px;
  }

  .speaker-card h6 {
    font-size: 16px;
  }

  .speaker-card small {
    font-size: 13px;
  }
}

@media (max-width: 480px) {
  .speaker-img {
    height: 190px;
  }
}



.speaker-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.35s ease;
  text-align: center;

  height: 380px;                 /* FIXED CARD HEIGHT */
  display: flex;
  flex-direction: column;
}

.speaker-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.15);
}



.speaker-img {
  width: 100%;
  height: 220px;                 
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 10px;
}

.speaker-img img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  object-position: top;
}



.speaker-content {
  flex: 1;                       
  overflow-y: auto;              
  padding: 6px 4px;
}

/* Optional: nice thin scrollbar */
.speaker-content::-webkit-scrollbar {
  width: 4px;
}

.speaker-content::-webkit-scrollbar-thumb {
  background: #fbbf24;
  border-radius: 10px;
}



.speaker-content h6 {
  font-size: 17px;
  font-weight: 700;
  margin: 6px 0 4px;
  color: #111827;
}

.speaker-content small {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  line-height: 1.4;
}



@media (max-width: 768px) {
  .speaker-card {
    height: 360px;
  }

  .speaker-img {
    height: 200px;
  }
}


/* who can apply */


.ies-events-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  border: 1px solid #f1f5f9;
}

/* TITLE */
.ies-card-title {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 24px;
  position: relative;
  display: inline-block;
}

.ies-card-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  display: block;
  margin: 10px auto 0;
  border-radius: 4px;
}

/* LIST */
.ies-apply-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 14px;
  line-height: 1.4;
}



/* HOVER EFFECT */
.ies-apply-list p:hover {
  color: #111827;
}



@media (max-width: 768px) {
  .ies-events-card {
    padding: 22px 18px;
  }

  .ies-card-title {
    font-size: 18px;
  }

  .ies-apply-list p {
    font-size: 14px;
  }
}

/* event */


.ies-logo strong {
  font-size: 34px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #111827;
}

.ies-logo small {
  font-size: 14px;
  font-weight: 600;
  color: #6b7280;
}

/* UPCOMING EVENT BOX */
.ies-upcoming {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #111827;
  box-shadow: 0 10px 25px rgba(245,158,11,0.3);
}

/* DATE */
.ies-date {
  display: block;
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
}

/* LOCATION */
.ies-location {
  display: block;
  font-size: 14px;
  font-weight: 600;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .ies-logo strong {
    font-size: 28px;
  }

  .ies-upcoming {
    padding: 10px 14px;
  }

  .ies-date {
    font-size: 14px;
  }

  .ies-location {
    font-size: 13px;
  }
}

/* logo imge set */
/* ===============================
   ORGANIZERS SECTION
================================ */

.ies-organizers {
  background: #f8fafc;
}

/* CARD */
.organizer-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 20px;
  transition: 0.35s ease;
  height: 100%;
}

.organizer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* IMAGE */
.organizer-img {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.organizer-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
}

/* CONTENT */
.organizer-content h5 {
  font-size: 20px;
  font-weight: 800;
  color: #111827;
  margin-bottom: 6px;
}

.organizer-content p {
  font-size: 15px;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

/* ===============================
   RESPONSIVE
================================ */

@media (max-width: 768px) {
  .organizer-card {
    flex-direction: column;
    text-align: center;
  }

  .organizer-img {
    width: 80px;
    height: 80px;
  }
}
