/* Import Nunito font */
@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap');

/* General Body */
body {
  font-family: 'Nunito', sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* HERO SECTION */
.hero-section {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  background-size: cover;
  background-position: center;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-content .sub-title {
  color: #fff;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.hero-content .title {
  color: #fff;
  font-size: 2.4rem;
  font-weight: 700;
}

.hero-buttons .btn-hero {
  background-color: #d8ff6f;
  color: #000;
  font-weight: bold;
  margin-right: 10px;
  padding: 10px 20px;
  border-radius: 8px;
  transition: 0.3s ease;
  text-transform: uppercase;
}

.btn-hero:hover {
  background-color: #c6eb62;
  color: #000;
}

.hero-logo {
  max-width: 180px;
  height: auto;
  display: block;
  margin-left: 0;
  opacity: 1 !important;
  animation: none !important;
  transition: none !important;
}

@media (max-width: 768px) {
  .hero-logo {
    max-width: 140px;
    margin-left: 0;
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ABOUT SECTION */
.about-section {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  color: #000000;
  padding: 60px 0;
}

.section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: #ffffff; /* white for all section titles */
}

.section-subtitle {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #000000;
}

.theme-highlight {
  background-color: rgba(255, 255, 255, 0.2);
  padding: 4px 10px;
  border-radius: 6px;
  font-weight: 600;
  color: #000000;
}

/* About Cards */
.about-card {
  background-color: #358cf9;
  border: 3px solid #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  backdrop-filter: blur(6px);
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  color: #ffffff;
}

.about-card h5,
.about-card p {
  color: #ffffff;
}

.about-card:hover {
  background-color: #4d9efb;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

/* HIGHLIGHTS SECTION */
.highlights-section {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  padding: 60px 0;
  color: #ffffff;
}

.highlight-card {
  background-color: #d8ff6f;
  border: 2px solid #ffffff;
  border-radius: 12px;
  padding: 22px 24px;
  transition: transform 0.3s ease, background-color 0.3s ease;
  opacity: 0;
  transform: translateY(40px);
  color: #000000;
}

.highlight-card h5,
.highlight-card p {
  color: #000000;
}

.highlight-card:hover {
  background-color: #c6eb62;
  transform: translateY(-5px);
}

/* LEADING DISCUSSIONS SECTION */
.discussions-section {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  padding: 60px 0;
}

.discussions-section .section-title {
  color: #ffffff !important;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 30px;
  text-align: center;
}

.discussion-box {
  background-color: #358cf9;
  color: #f5f5f5;
  border-radius: 20px;
  padding: 25px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 1.05rem;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  transform: scale(0.9);
  opacity: 0;
}

.discussion-box:hover {
  background-color: #4a9dfc;
  transform: scale(1.05);
}

.icon-style {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #d8ff6f;
  display: block;
}

/* SECTORS SECTION */
.sectors-section {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  padding: 60px 0;
  color: #ffffff;
}

.sectors-section .section-title {
  font-size: 2.4rem;
  font-weight: 700;
  text-align: center;
  color: #ffffff;
}

.sector-box {
  background-color: #d8ff6f;
  color: #000000;
  padding: 25px 20px;
  border-radius: 16px;
  font-size: 1.2rem;
  font-weight: 600;
  transition: transform 0.3s ease, background-color 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

/* PARTNER SECTION */ 
#partners {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  padding: 80px 0;
}

#partners h2 {
  color: #ffffff !important;
}

.partner-category {
  color: #ffffff !important;
  font-weight: bold;
  margin-bottom: 15px;
}

.partner-box {
  display: inline-block;
  padding: 1px;
  border: 3px solid #ffffff;
  border-radius: 10px;
}

.partner-logo {
  width: 100%;
  max-width: 210px;
  height: auto;
}


/* CONTACT SECTION */
#contact {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  padding: 80px 0;
}

#contact h2 {
  color: #ffffff !important;
}

.contact-card {
  background-color: #d8ff6f;
  border: 2px solid #358cf9;
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.contact-card:hover {
  background-color: #ffffff;
  transform: scale(1.05);
}

.contact-title {
  font-size: 22px;
  font-weight: bold;
  color: #358cf9;
  margin-bottom: 15px;
}

.contact-name {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  margin-bottom: 15px;
}

.contact-card i {
  color: #358cf9;
  margin-right: 10px;
  font-size: 18px;
}

.contact-card a {
  color: #000;
  font-size: 18px;
  text-decoration: none;
}

.contact-card a:hover {
  text-decoration: underline;
}

/* Animations */
.animated {
  animation-fill-mode: forwards;
  animation-duration: 1.2s;
  animation-timing-function: ease-out;
  opacity: 0;
}

.fadeInUp {
  animation-name: fadeInUp;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* === Rotating border around lendlogo === */


.hero-logo {
  position: relative;
  z-index: 2;
}

/* === Floating animation for banner image === */
.hero-banner-img {
  animation: floatImage 2s ease-in-out infinite;
}

/* === Keyframes === */
@keyframes rotate-border {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes floatImage {
  0%   { transform: translateY(0px); }
  50%  { transform: translateY(-10px); }
  100% { transform: translateY(0px); }
}

/* PAST SPEAKERS SECTION */
/* PAST SPEAKER CARD */
.past-speakers-section {
  padding: 60px 0;
  text-align: center;
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
}

.spearker-card {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #fff;
  max-width: 220px;
}

.spearker-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.spearker-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: #fff;
}

.spearker-card p {
  font-size: 0.85rem;
  color: #f0f0f0;
  line-height: 1.4;
}

.swiper-slide {
  display: flex;
  justify-content: center;
}

.partners-swiper-section {
  background: linear-gradient(135deg, #358cf9, #d8ff6f);
  padding: 60px 0;
}

.partners-swiper-section .section-title {
  font-size: 2.5rem;
  color: #fff;
  margin-bottom: 40px;
  font-weight: 700;
}

.partners-swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px;
  background-color: rgba(255, 255, 255, 0.05); /* semi-transparent */
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.08); /* reduced shadow */
  transition: transform 0.3s;
}

.partners-swiper .swiper-slide img {
  max-width: 210px;
  max-height: 105px;
  object-fit: contain;
}
