body {
    font-family: poppins, sans-serif !important;
}

.custom-navbar {
    background-color: rgba(55, 48, 133, 1);
}

/* Logo */
.custom-navbar .custom-navbar__logo {
    max-height: 42px;
}


/* nav link css */
a.nav-link{
    font-size: 12px;
    font-weight: 600 !important;
    line-height: 100%;}
/* Join button */
.custom-navbar .custom-navbar__join-btn {
    background-color: rgba(223, 44, 111, 1);
    color: #ffffff;
    padding: 10px 24px 10px 24px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 0px;
    border: none;
}
 .custom-navbar .custom-navbar__sign-btn{
    padding: 10px 24px 10px 24px;
    border-bottom: 2px solid;
    font-size: 12px;}
.custom-navbar .custom-navbar__join-btn:hover {
    background-color: #d81b60;
}

/* Hamburger icon color */


/* Footer css */

/* Newsletter section */
.site-footer__newsletter {
    background: linear-gradient(
        90deg,
        #613DD9 0%,
        #613DD9 95%,
        #613DD9 100%
    );
    position: relative;
}


/* Email input */
.site-footer-start .site-footer__input {
    border-radius: 4px 0 0 4px;
    border: none;
    padding: 14px;
    /* font-size: 12px; */
    color: black !important;
    font-weight: 800;
}

/* Subscribe button */
.site-footer-start .site-footer__subscribe-btn {
    background-color: #DF2C6F;
    color: #ffffff;
    border-radius: 0 4px 4px 0;
    padding: 0 18px;
    border: none;
    font-weight: 600;
}

.site-footer-start .site-footer__subscribe-btn:hover {
    background-color: #DF2C6F;
}

/* Footer links */
/* Footer base */
.site-footer {
    background-color: #373085;
    padding: 80px 0 30px;
    position: relative;
    overflow: hidden;
}

/* Logo */
.logo-img {
    max-height: 42px;
    margin-bottom: 18px;
}

/* Text */
.footer-text {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    max-width: 320px;
    line-height: 1.6;
}

/* Headings */
.footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

/* Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 13px;
    color: white;
    text-decoration: none;
    font-weight: 400;
}

.footer-links a:hover {
    color: #ffffff;
}

/* Bottom section */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 20px;
}

/* LinkedIn pill */
.linkedin-btn {
      color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
}

.linkedin-btn:hover {
    background-color: #ff2d78;
}

/* Copyright */
.copyright {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

/* Right arc decoration */
.footer-arc-img {
    position: absolute;
    right: 0;
    bottom: 0;
    /* width: 420px;       */
    max-width: 50vw;    
    height: auto;
    pointer-events: none;
    z-index: 0;
}

.site-footer .container {
    position: relative;
    z-index: 2;
}


/* new css */
img.logo-img {
    max-height: 43px;
}

h2.heading-footer {
    font-size: 48px;
}
p.sub-text-footer{
    font-size: 14px;
    font-weight: 400;
    color: white;
    max-width: 330px;
}

/* 
new css */
/* Card container */
.program-card {
  background: #F4F4F4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

/* Images */
.program-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}


/* Card content */
.program-card .card-body {
  padding: 1.40rem;
  display: flex;
  flex-direction: column;
  height: 100%;
  border-right: 10px solid #6C54BC;
}

/* Headings */
.program-card h3 {
  font-size: 24px;
  font-weight: 600;
  color: #373085;
  margin-bottom: 0.75rem;
}

/* Paragraphs */
.program-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #1A1A1A;
  flex-grow: 1;
  font-weight: 500;
}

/* Custom button */
.btn-primary-custom {
  background-color: #DF2C6F !important;
  color: #fff !important;
  border-radius: 0px !important;
  padding: 0.55rem 1.25rem !important;
  font-size: 12px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  border: none !important;
  width: fit-content !important;
  font-weight: 700 !important;
}

.btn-primary-custom:hover {
  background-color: #DF2C6F;
  color: #fff;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .program-card img {
    height: 180px;
  }

  .program-card h3 {
    font-size: 1.2rem;
  }
}


/* uo css */
/* Parent section */
.uo-articles {
  background-color: #FFFFFF;
}

/* Card */
.uo-articles .uo-article-card {
  background: #F4F4F4;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Image wrapper */
.uo-articles .uo-article-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.uo-articles .uo-article-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

/* Body */
.uo-articles .uo-article-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Date */
.uo-articles .uo-article-date {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: #1A1A1A;
  margin-bottom: 0.5rem;
  font-weight: 400;
}

/* Title */
.uo-articles .uo-article-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.35;
  color: #373085;
  margin-bottom: 1.25rem;
}

/* Link */
.uo-articles .uo-article-link {
  margin-top: auto;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #DF2C6F;
  text-decoration: none;
  font-weight: 600;
}

.uo-articles .uo-article-link:hover {
  text-decoration: underline;
}

/* Responsive tweaks */
@media (max-width: 576px) {
  .uo-articles .uo-article-image {
    height: auto;
  }

  .uo-articles .uo-article-image img {
    height: auto;
    object-fit: contain;
  }
}


/* Testimonials css */

.testimonial-section {
  background: linear-gradient(90deg, #F4F4F4 50%, #DF2C6F 50%);
  padding: 120px 0;
  overflow: hidden;
}

/* LEFT SIDE */
.testimonial-section .testimonial-left h2 {
  font-size: 48px;
  font-weight: 700;
  color: #DF2C6F;
}

.testimonial-section .testimonial-left h2 span {
  color: #373085;
}

.testimonial-section .testimonial-left .btn {
  background: #DF2C6F;
  border: none;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 12px;
  border-radius: 0px;
  text-transform: uppercase;
}

/* RIGHT SIDE */
.testimonial-section .testimonial-slider-wrapper {
  position: relative;
  overflow: hidden;
}

/* SLIDER */
.testimonial-section .testimonial-slider {
  display: flex;
  transition: transform 0.5s ease;
}

/* CARD */
.testimonial-section .testimonial-card {
  flex: 0 0 60%;
  padding: 15px;
}

.testimonial-section .card-inner {
  background: #fff;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  height:100%
}

.testimonial-section .card-inner img {
  width: 55px;
  height: 55px;
  border-radius: 50%;
}

.testimonial-section .card-inner h6 {
    margin: 0;
    font-weight: 600;
    font-size: 20px;
    color: #373085;}

.testimonial-section .card-inner small {
    color: #1A1A1A;
    font-weight: 300;
    font-size: 14px;
}

.testimonial-section .card-inner p {
    font-size: 14.44px;
    color: #1A1A1A;
    font-weight: 400;
    text-align: center;
}

/* NAV BUTTONS */
.testimonial-section .testimonial-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
      justify-content: center;

}

.testimonial-section .nav-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 18px;
  cursor: pointer;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonial-section {
    background: #DF2C6F;
  }

  .testimonial-section .testimonial-card {
    flex: 0 0 100%;
  }

  .testimonial-section .testimonial-left {
    margin-bottom: 40px;
    color: #fff;
  }

  .testimonial-section .testimonial-left h2,
  .testimonial-section .testimonial-left h2 span {
    color: #fff;
  }
}


.testimonial-section .testimonial-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 6%;
  margin-top: -20px; 
}

.testimonial-section .testimonial-left h2 {
  line-height: 1.15;
  margin-bottom: 24px;
}

.testimonial-section .testimonial-left .btn {
  align-self: flex-start;
}

@media (max-width: 1199px) {
  .testimonial-section .testimonial-left {
    margin-top: -40px;
  }
}

/* ===== MOBILE RESET ===== */
/*@media (max-width: 991px) {
  .testimonial-section .testimonial-left {
    margin-top: 0;
    padding-left: 0;
  }
}*/
@media (max-width: 480px) {
  .testimonial-section .testimonial-left h2,
  .testimonial-section .testimonial-left h2 span {
    text-align: center;}
}


.advisory-board-section {
    position: relative;
    background-color: #ffffff;
    overflow: hidden;
}

/* Header */
.advisory-board-section .advisory-title {
    font-size: 40px;
    font-weight: 700;
    color: #373085;
;
}

.advisory-board-section .advisory-title span {
    color: #DF2C6F;
}

.advisory-board-section .advisory-subtitle {
    font-size: 20px;
    color: #1A1A1A;
    max-width: 620px;
    line-height: 1.6;
}


/* ==============================
   Responsive Tweaks
================================ */
@media (max-width: 768px) {
    .advisory-board-section .advisory-title {
        font-size: 32px;
    }

    .advisory-board-section .advisory-arc {
        width: 200px;
        opacity: 0.6;
    }
}

@media (max-width: 576px) {
    .advisory-board-section .advisory-avatar {
        width: 95px;
        height: 95px;
    }
}


/* ===== Parent Wrapper ===== */
.speaker-card-wrapper {
  /* max-width: 1200px;
  margin: 0 auto; */
}

/* ===== Card ===== */
.speaker-card {
  background: #FAFAFA;
  border-radius: 16px;
  padding: 30px 25px;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* ===== Profile Ring ===== */
.profile-ring {
position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: linear-gradient(54deg, #DF2C6F, #fff);
    padding: 18px;
}

.profile-img {
      width: 100%;
    height: 100%;
    border-radius: 50% !important;
    object-fit: cover;
    background: #fff;;
}

/* ===== LinkedIn Icon ===== */
.linkedin-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  background: #5a4fdc;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Text Styles ===== */
.speaker-name {
  font-weight: 700;
  color: #373085;
  margin-bottom: 12px;
}

.speaker-desc {
    font-size: 15px;
    color: #1A1A1A;
    line-height: 1.6;
    font-weight: 400;
    margin-bottom: 10px;
}

.speaker-quote {
  font-style: italic;
  font-weight: 600;
  color: #DF2C6F;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 576px) {
  .profile-ring {
    width: 140px;
    height: 140px;
  }

  .speaker-card {
    padding: 25px 20px;
  }
}
.footer-arc-img {
    position: absolute;
    right: 0;
    bottom: 0;
    /* width: 420px; */
    max-width: 50vw;
    height: auto;
    pointer-events: none;
    z-index: 0;}






    

/* awards 2026 */
/* Parent wrapper */
/* .awards-section {
  background-color: #f8f9fc;
} */

/* Card base */
.awards-section .award-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 28px 22px;
  border-radius: 6px;
  color: #ffffff;
  text-align: left;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

/* Brand text */
.awards-section .award-card__brand {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

/* Title */
.awards-section .award-card__title {

    font-size: 20px;
    font-weight: bold;
    line-height: 18px;
    margin: auto;
    max-width: 200px;
    padding-top: 30px;
    padding-bottom: 20px;
    text-transform: uppercase;
}

/* Description */
.awards-section .award-card__text {
     font-size: 12px;
    line-height: 1.6;
}

/* Button */
.awards-section .award-card__btn {
margin-top: 25px;
    padding: 10px 18px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
}

.awards-section .award-card__btn:hover {
  background-color: #ffffff;
  color: #000000;
}

/* Gradient variations */
.awards-section .award-card--pink {
  background: linear-gradient(180deg, #ff4f9a, #d81b60);
}

.awards-section .award-card--purple {
  background: linear-gradient(180deg, #7b6bd6, #5e50c7);
}

.awards-section .award-card--indigo {
  background: linear-gradient(180deg, #3d3b7a, #2b295e);
}

.awards-section .award-card--blue {
  background: linear-gradient(180deg, #355c9b, #274b87);
}

/* Responsive tweaks */
@media (max-width: 575px) {
  .awards-section .award-card {
    text-align: center;
  }

  .awards-section .award-card__brand {
    text-align: center;
  }
}


.award-card__content img {
    width: 100px;
    margin: auto;
    height: 35px;
}
.award-card__content {
    text-align: center;
}



/* Parent wrapper */
/* ======================================
   CRITERIA SECTION (Cards 5–8)
====================================== */
.criteria-section {
  margin-top: 40px;
}

/* ======================================
   Base Card with Background Image
====================================== */
.criteria-section .criteria-card--bg {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 420px;
  padding: 24px 20px;
  border-radius: 6px;
  overflow: hidden;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  color: #ffffff;
}




/* ======================================
   Ensure content stays above overlay
====================================== */
.criteria-section .criteria-card--bg > * {
  position: relative;
  z-index: 2;
}

/* ======================================
   Background Images
====================================== */
.criteria-section .criteria-card--img1 {
  background-image: url("https://staging.uniteunderone.com/wp-content/uploads/2025/12/frame-1.png");
  /* background-image: url("https://staging.uniteunderone.com/wp-content/uploads/2025/12/frame-3.png"); */
}

.criteria-section .criteria-card--img2 {
  background-image: url("https://staging.uniteunderone.com/wp-content/uploads/2025/12/frame-2.png");
}

.criteria-section .criteria-card--img3 {
  background-image: url("https://staging.uniteunderone.com/wp-content/uploads/2025/12/frame-3.png");
}

.criteria-section .criteria-card--img4 {
  background-image: url("https://staging.uniteunderone.com/wp-content/uploads/2025/12/frame-4.png");
}

/* ======================================
   Title Styling
====================================== */
.criteria-section .criteria-card--bg .criteria-card__title {
font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 12px;
    text-transform: uppercase;
    margin: auto;
    text-align: center;
}

/* ======================================
   Text Styling
====================================== */
.criteria-section .criteria-card--bg .criteria-card__text {
  font-size: 12px;
  line-height: 1.6;
  margin-bottom: 18px;
  font-weight: 400;
  text-align: center;

}

/* ======================================
   Button Styling
====================================== */
.criteria-section .criteria-card--bg .criteria-card__btn {
    margin-top: auto;
    padding: 10px 22px;
    font-size: 12px;
    font-weight: 600;
    background-color: #DF2C6F;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 0px;
    text-align: center;
}

.criteria-section .criteria-card--bg .criteria-card__btn:hover {
  background-color: #f2f2f2;
  color: #DF2C6F;
}

/* ======================================
   Responsive (Mobile)
====================================== */
@media (max-width: 575px) {
  .criteria-section .criteria-card--bg {
    min-height: 360px;
    padding: 20px 16px;
  }

  .criteria-section .criteria-card--bg .criteria-card__title {
    font-size: 15px;
  }

  .criteria-section .criteria-card--bg .criteria-card__text {
    font-size: 12px;
  }
}


.award-card__content .third-section {
    width: 200px;
    height: 200px;
}


.awards-section .third-section-title {
 font-size: 20px;
    font-weight: bold;
    line-height: 18px;
    margin: auto;
    max-width: 200px;
    padding-top: 30px;
    padding-bottom: 20px;
    text-transform: uppercase;
    color: #373085;
}
.awards-section .third-section-btn{
    margin-top: 25px;
    padding: 10px 18px;
    border: 1px solid #ffffff;
    border-radius: 6px;
    color: #ffffff;
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    text-align: center;
    transition: all 0.3s ease;
    background: #DF2C6F;
}


.awards-section .third-section-text {
    font-size: 12px;
    line-height: 1.6;
    color: #1A1A1A;
}