
:root {
  --bg-unified: #080c14;
  --card-bg: rgba(15, 23, 42, 0.65);
  --card-bg-hover: rgba(24, 35, 60, 0.85);
  
  --border-color: rgba(255, 255, 255, 0.08);
  --border-accent: rgba(52, 211, 153, 0.35);
  
  --text-main: #f1f5f9;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  
  --primary-accent: #34d399;   /* Emerald */
  --secondary-accent: #38bdf8; /* Sky Blue */
  --glow-accent: rgba(52, 211, 153, 0.25);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.unified-body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-unified) !important;
  background-image: none !important;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Typography & Headings */
h1, h2, h3, .hero h1, .section-title {
  font-family: var(--font-heading);
  letter-spacing: -0.3px;
}

.section-title {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  background: linear-gradient(135deg, #ffffff 40%, var(--primary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.light-title {
  background: linear-gradient(135deg, #ffffff 40%, var(--secondary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.intro-copy {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary-accent);
  line-height: 1.6;
}

p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.section-space {
  padding: 90px 0;
  position: relative;
  background-color: transparent;
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.navbar {
  padding: 18px 0;
  background: rgba(8, 12, 20, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(8, 12, 20, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
  border-bottom: 1px solid var(--border-accent);
}

.navbar-toggler {
  border: 1px solid var(--border-color);
  color: var(--primary-accent);
  font-size: 1.5rem;
  padding: 4px 10px;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-nav {
  gap: 6px;
}

.nav-link {
  color: var(--text-muted);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 14px !important;
  transition: all 0.25s ease;
  border-radius: 8px;
}

.nav-link:hover, .nav-link.active {
  color: var(--primary-accent);
  background: rgba(52, 211, 153, 0.08);
}

.nav-cta {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: #ffffff !important;
  font-weight: 700;
  border-radius: 30px;
  padding: 8px 22px !important;
  box-shadow: 0 4px 15px var(--glow-accent);
  transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(52, 211, 153, 0.4);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
    min-height: 88vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;

    background:
        radial-gradient(
            circle at 50% 30%,
            rgba(52, 211, 153, 0.08) 0%,
            rgba(56, 189, 248, 0.04) 40%,
            transparent 70%
        );

    padding-top: 120px;
    padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, var(--bg-unified) 95%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-logo {
  width: min(480px, 80vw);
  height: auto;
  margin-bottom: 10px;
  filter: drop-shadow(0 0 15px rgba(52, 211, 153, 0.3));
}

.hero h1 {
  font-size: clamp(1.5rem, 5.2vw, 3.5rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 40px;
  background: linear-gradient(135deg, #ffffff 10%, #e2e8f0 40%, var(--primary-accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 650px;
  margin: 0 auto 25px;
  line-height: 1.7;
}

.hero-details {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 35px;
  color: var(--text-main);
  font-weight: 600;
  font-size: 0.95rem;
  flex-wrap: wrap;
}

.hero-details span {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  padding: 8px 20px;
  border-radius: 30px;
  backdrop-filter: blur(12px);
}

.hero-details i {
  color: var(--primary-accent);
  margin-right: 8px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.btn-primary-brand {
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  color: #040914;
  border: none;
  box-shadow: 0 4px 20px var(--glow-accent);
}

.btn-primary-brand:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(52, 211, 153, 0.4);
  color: #040914;
}

.btn-outline-brand {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  color: #ffffff;
}

.btn-outline-brand:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-accent);
  color: #ffffff;
  transform: translateY(-3px);
}

/* ==========================================================================
   Image Frames & Graphics
   ========================================================================== */
.image-frame {
  position: relative;
}

.image-frame:before {
  content: '';
  position: absolute;
  inset: -10px;
  background: linear-gradient(135deg, var(--primary-accent), var(--secondary-accent));
  border-radius: 24px;
  opacity: 0.15;
  filter: blur(20px);
}

.image-frame img, .join-image img, .discussion-img {
  position: relative;
  width: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  object-fit: cover;
  transition: transform 0.5s ease, border-color 0.5s ease;
}

.image-frame img {
  height: 420px;
}

.image-frame:hover img, .join-image:hover img, .discussion-img:hover {
  transform: scale(1.015);
  border-color: var(--border-accent);
}

.image-tag {
  position: absolute;
  right: 20px;
  top: 20px;
  background: rgba(8, 12, 20, 0.9);
  border: 1px solid var(--border-accent);
  color: var(--primary-accent);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.7rem;
  letter-spacing: 1.5px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

/* ==========================================================================
   Objectives Section Cards
   ========================================================================== */
.objective-card {
  height: 100%;
  padding: 30px 24px;
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  transition: all 0.35s ease;
}

.objective-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.objective-card i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  margin-bottom: 20px;
  border-radius: 16px;
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: var(--primary-accent);
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.objective-card:hover i {
  background: var(--primary-accent);
  color: #040914;
  box-shadow: 0 0 20px var(--glow-accent);
}

.objective-card p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--text-main);
}

.objective-wide {
  padding: 25px 30px;
  display: flex;
  gap: 20px;
  align-items: center;
  text-align: left;
}

.objective-wide i {
  margin-bottom: 0;
  flex-shrink: 0;
}

/* ==========================================================================
   Why Join Section
   ========================================================================== */
.join-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.join-points > div {
  padding: 20px;
  border-radius: 16px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
}

.join-points > div:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-4px);
}

.join-points i {
  color: var(--primary-accent);
  font-size: 1.4rem;
}

.join-points h3 {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 700;
  margin: 10px 0 6px;
}

.join-points p {
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0;
}

.join-image {
  position: relative;
}

.join-image img {
  height: 460px;
}

.quote-card {
  position: absolute;
  left: -20px;
  bottom: 25px;
  background: rgba(15, 23, 42, 0.92);
  border: 1px solid var(--border-accent);
  color: #ffffff;
  max-width: 310px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  line-height: 1.5;
  padding: 22px;
  border-radius: 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* ==========================================================================
   Highlights Section
   ========================================================================== */
.highlight-card {
  height: 100%;
  padding: 32px;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  transition: all 0.35s ease;
}

.highlight-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
}

.card-icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(56, 189, 248, 0.1);
  border: 1px solid rgba(56, 189, 248, 0.25);
  color: var(--secondary-accent);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}

.highlight-card p {
  font-size: 0.88rem;
  margin: 0;
  color: var(--text-muted);
}

.award-banner {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.9), rgba(52, 211, 153, 0.12));
  border: 1px solid var(--border-accent);
  padding: 38px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  border-radius: 20px;
  backdrop-filter: blur(12px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.award-banner h3 {
  font-size: 1.6rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.award-banner p {
  max-width: 760px;
  margin: 0;
  color: var(--text-muted);
}

.award-banner > i {
  font-size: 4.5rem;
  color: var(--primary-accent);
  filter: drop-shadow(0 0 15px rgba(52, 211, 153, 0.3));
}

/* ==========================================================================
   Stats Section
   ========================================================================== */
.stats {
  padding: 50px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: rgba(15, 23, 42, 0.3);
}

.stat > div {
  height: 100%;
  padding: 24px 10px;
  border-radius: 18px;
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  transition: all 0.35s ease;
}

.stat > div:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

.stat strong {
  display: inline-block;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1;
}

.stat sup {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--primary-accent);
}

.stat span {
  color: var(--text-muted);
  font-weight: 600;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 12px;
  display: block;
}

/* ==========================================================================
   Discussions Section
   ========================================================================== */
.discussion-img {
  height: 430px;
}

.topic-list article {
  padding: 18px 20px;
  margin-bottom: 10px;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transition: all 0.3s ease;
}

.topic-list h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.25s ease;
}

.topic-list h3:after {
  content: '+';
  font-size: 1.2rem;
  color: var(--primary-accent);
  transition: transform 0.3s ease;
}

.topic-list article.active h3:after {
  content: '−';
}

.topic-list p {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.65;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.topic-list article:hover {
  border-color: var(--border-accent);
}

.topic-list article.active h3 {
  color: var(--primary-accent);
}

.topic-list article.active p {
  max-height: 140px;
  opacity: 1;
  margin-top: 10px;
}

/* ==========================================================================
   Who Should Attend Section
   ========================================================================== */
.attend-list {
  padding: 0;
  margin: 0;
  list-style: none;
}

.attend-list li {
  padding: 12px 0 12px 32px;
  border-bottom: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text-main);
  position: relative;
}

.attend-list li:before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--primary-accent);
  font-size: 0.8rem;
}

/* ==========================================================================
   Expected Outcomes
   ========================================================================== */
.outcomes-lead {
  font-weight: 600;
  color: var(--primary-accent);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.outcomes .row > div > div {
  height: 100%;
  padding: 24px;
  border-radius: 16px;
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  font-weight: 500;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-main);
  transition: all 0.35s ease;
}

.outcomes .row > div > div:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-5px);
}

/* ==========================================================================
   Past Partners & Banks
   ========================================================================== */
.section-subtitle {
  max-width: 700px;
  margin: 12px auto 0;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.partner-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: 14px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  transition: all 0.35s ease;
}

.partner-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-color: var(--primary-accent);
}

.partner-card img {
  max-width: 100%;
  max-height: 55px;
  object-fit: contain;
}

.partnerSlide, .bankSlide {
  padding: 10px 50px 50px;
}

.partnerSlide .swiper-button-next,
.partnerSlide .swiper-button-prev,
.bankSlide .swiper-button-next,
.bankSlide .swiper-button-prev {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.9);
  border: 1px solid var(--border-accent);
  color: var(--primary-accent);
  transition: all 0.3s ease;
}

.partnerSlide .swiper-button-next:after,
.partnerSlide .swiper-button-prev:after,
.bankSlide .swiper-button-next:after,
.bankSlide .swiper-button-prev:after {
  font-size: 14px;
  font-weight: bold;
}

.partnerSlide .swiper-button-next:hover,
.partnerSlide .swiper-button-prev:hover,
.bankSlide .swiper-button-next:hover,
.bankSlide .swiper-button-prev:hover {
  background: var(--primary-accent);
  color: #040914;
  box-shadow: 0 0 15px var(--glow-accent);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.text-white-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 35px;
}

.contact-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 30px;
  transition: all 0.35s ease;
}

.contact-card:hover {
  background: var(--card-bg-hover);
  border-color: var(--border-accent);
  transform: translateY(-6px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.contact-card span {
  display: block;
  color: var(--primary-accent);
  font-size: 0.78rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 18px;
}

.contact-card a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 2;
  transition: all 0.3s ease;
}

.contact-card a i {
  color: var(--primary-accent);
  font-size: 1rem;
}

.contact-card a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Footer
   ========================================================================== */
footer {
  background-color: rgba(4, 7, 13, 0.95);
  padding: 25px 0;
  border-top: 1px solid var(--border-color);
}

footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-dim);
  font-size: 0.8rem;
}

footer img {
  width: 110px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

/* ==========================================================================
   Animations & Reveals
   ========================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.hero-animate {
  opacity: 0;
  transform: translateY(15px);
  animation: heroIn 0.7s forwards ease-out;
}

.hero-animate:nth-child(1) { animation-delay: 0.1s; }
.hero-animate:nth-child(2) { animation-delay: 0.25s; }
.hero-animate:nth-child(3) { animation-delay: 0.4s; }
.hero-animate:nth-child(4) { animation-delay: 0.55s; }
.hero-animate:nth-child(5) { animation-delay: 0.7s; }

@keyframes heroIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ==========================================================================
   Responsive Styles
   ========================================================================== */
@media (max-width: 991px) {
  .navbar-collapse {
    padding: 15px 0;
    background: rgba(8, 12, 20, 0.98);
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid var(--border-color);
  }
  
  .navbar-nav {
    align-items: flex-start;
    padding: 0 15px;
  }
  
  .nav-cta {
    margin-top: 10px;
    display: inline-block;
  }
  
  .hero-section {
    min-height: 700px;
  }
  
  .section-space {
    padding: 65px 0;
  }
  
  .quote-card {
    left: 10px;
    right: 10px;
    max-width: none;
    bottom: 10px;
  }
}

@media (max-width: 575px) {
  .hero h1 {
    font-size: 2.2rem;
  }
  
  .hero-sub {
    font-size: 0.92rem;
  }
  
  .hero-details {
    gap: 10px;
    font-size: 0.8rem;
  }
  
  .join-points {
    grid-template-columns: 1fr;
  }
  
  .award-banner {
    padding: 25px;
    flex-direction: column;
    align-items: flex-start;
  }
  
  .award-banner > i {
    font-size: 3.5rem;
  }
  
  .objective-wide {
    flex-direction: column;
    text-align: center;
  }
  
  .partner-card {
    height: 85px;
  }
}











/* ==========================================================================
   OUR PARTNERS
   ========================================================================== */
/* ==========================================================================
   OUR PARTNERS SECTION
   ========================================================================== */

.our-partners {
    position: relative;
    padding: 90px 0;

    background:
        radial-gradient(
            circle at 50% 40%,
            rgba(52, 211, 153, 0.055) 0%,
            transparent 55%
        );

    overflow: hidden;
}


/* ==========================================================================
   SECTION HEADING
   ========================================================================== */

.our-partners .section-head {
    margin-bottom: 45px;
    text-align: center;
}

.our-partners .section-title {
    margin-bottom: 10px;
}

.our-partners .section-subtitle {
    max-width: 650px;

    margin: 0 auto;

    color: var(--text-muted);

    font-size: 0.95rem;
    line-height: 1.7;
}


/* ==========================================================================
   PARTNER ROWS
   ========================================================================== */

.partners-row {
    display: flex;

    justify-content: center;
    align-items: stretch;

    gap: 10px;

    margin-bottom: 45px;
}

.partners-row:last-child {
    margin-bottom: 0;
}


/* Two partners in a row */

.partners-row-two {
    display: grid;

    grid-template-columns:
        repeat(2, minmax(0, 1fr));

    gap: 30px;
}


/* One centered partner */

.partners-row-one {
    display: flex;

    justify-content: center;
}

.partners-row-one .our-partner-card {
    width: calc(50% - 15px);
}


/* ==========================================================================
   PARTNER CARD
   ========================================================================== */

.our-partner-card {
    width: 100%;

    display: flex;

    flex-direction: column;

    align-items: center;

    text-align: center;
}


/* ==========================================================================
   PARTNER TITLE
   ========================================================================== */

.our-partner-title {
    position: relative;

    display: inline-block;

    margin-bottom: 10px;

    color: var(--primary-accent);

    font-family: var(--font-heading);

    font-size: 0.85rem;

    font-weight: 700;

    letter-spacing: 1.6px;

    line-height: 2.3;

    text-transform: uppercase;

    text-align: center;
}


/* Small accent line */

.our-partner-title::after {
    content: "";

    display: block;

    width: 24px;
    height: 2px;

    margin: 6px auto 0;

    border-radius: 10px;

    background:
        linear-gradient(
            90deg,
            var(--primary-accent),
            var(--secondary-accent)
        );
}


/* ==========================================================================
   WHITE IMAGE BOX
   ========================================================================== */

.our-partner-logo {
    position: relative;

    /*
     * Box automatically wraps around the image.
     * No large empty container.
     */
    width: fit-content;
    height: fit-content;

    /*
     * Only 4px space around image.
     */
    padding: 4px;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #ffffff;

    border: 1px solid var(--border-accent);

    border-radius: 10px;

    box-shadow:
        0 5px 14px rgba(0, 0, 0, 0.12);

    overflow: hidden;

    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease,
        border-color 0.3s ease;
}


/* ==========================================================================
   PARTNER IMAGE
   ========================================================================== */

.our-partner-logo img {
    display: block;

    /*
     * Large logo size.
     * The white box follows this size.
     */
    width: 200px;
    height: 90px;

    max-width: none;
    max-height: none;

    object-fit: contain;

    object-position: center;

    transition:
        transform 0.3s ease;
}


/* ==========================================================================
   HOVER EFFECT
   ========================================================================== */

.our-partner-card:hover .our-partner-logo {
    transform: translateY(-3px);

    border-color: var(--primary-accent);

    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.18);
}

.our-partner-card:hover .our-partner-logo img {
    transform: scale(1.03);
}


/* ==========================================================================
   TABLET
   ========================================================================== */

@media (max-width: 767px) {

    .our-partners {
        padding: 70px 0;
    }

    .our-partners .section-head {
        margin-bottom: 35px;
    }

    /*
     * Two-column rows become one column.
     */
    .partners-row-two {
        grid-template-columns: 1fr;

        gap: 22px;
    }

    /*
     * Associate Partner becomes full width.
     */
    .partners-row-one .our-partner-card {
        width: 100%;
    }

    .partners-row {
        gap: 22px;

        margin-bottom: 22px;
    }

    /*
     * Slightly smaller logo on tablet.
     */
    .our-partner-logo img {
        width: 200px;
        height: 100px;
    }

    .our-partner-logo {
        padding: 3px;
    }
}


/* ==========================================================================
   MOBILE
   ========================================================================== */

@media (max-width: 575px) {

    .our-partners {
        padding: 60px 0;
    }

    .our-partner-title {
        font-size: 0.68rem;

        letter-spacing: 1.3px;

        margin-bottom: 8px;
    }

    .our-partner-title::after {
        width: 20px;

        margin-top: 5px;
    }

    /*
     * Mobile logo size.
     */
    .our-partner-logo img {
        width: 170px;
        height: 85px;
    }

    .our-partner-logo {
        padding: 3px;

        border-radius: 9px;
    }
}