@font-face {
  font-family: "gtwal-light";
  src: url("../fonts/GTWalsheimPro-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "gtwal_regular";
  src: url("../fonts/GTWalsheimProRegular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "gtwal_medium";
  src: url("../fonts/GT-Walsheim-Pro-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "gtwal_bold";
  src: url("../fonts/GTWalsheimProBold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

* {
  margin: 0px;
  box-sizing: border-box;
  font-family: "gtwal_regular";
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin: 0px;
  padding: 0px;
}

a,
a:hover {
  text-decoration: none;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
}

:root {
  --gt-light: "gtwal-light";
  --gt-regular: "gtwal_regular";
  --gt-medium: "gtwal_medium";
  --gt-bold: "gtwal_bold";
  --primary: #df192c;
  --secondery: #1b1b1b;
  --sub-1: #333333;
  --sub-2: #828282;
  --sub-3: #bdbdbd;
  --sub-4: #e0e0e0;
  --white: #ffffff;
  --black: #000000;
}
p {
  font-family: var(--gt-regular);
}
#site-werapper {
  overflow: hidden;
  position: relative;
  max-width: 1900px;
  margin: 0 auto;
  width: 100%;
}
header {
  position: absolute;
  top: 15px;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 20px 0;

  .logo {
    a {
      display: block;
      max-width: 190px;
    }
  }

  .right {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;

    /* Target ONLY the main menu, not sub-menus */
    .main-menu {
      display: flex;
      align-items: center;
      gap: 15px;
      margin: 0;
      padding: 0;
      list-style: none;

      /* Target ONLY top-level list items */
      > li {
        position: relative; /* Crucial for dropdown positioning */

        &.current-menu-item > a {
          color: var(--primary);
          font-family: var(--gt-medium);
          border-bottom: 2px solid var(--primary);
        }

        > a {
          font-family: var(--gt-regular);
          font-size: 17px;
          color: var(--white);
          transition: 0.3s ease-in-out;
          padding-bottom: 4px;
          border-bottom: 2px solid transparent;
          
          &:hover {
            color: var(--primary);
            border-bottom: 2px solid var(--primary);
          }
        }

        /* Adds a little downward arrow to items with dropdowns */
        &.menu-item-has-children > a::after {
          content: '\f107'; /* FontAwesome angle-down */
          font-family: 'Font Awesome 6 Free';
          font-weight: 900;
          margin-left: 6px;
          font-size: 14px;
        }

        /* --- DESKTOP DROPDOWN STYLES --- */
        .sub-menu {
          position: absolute;
          top: 100%;
          left: 0;
          background: #fff; /* Dropdown background color */
          min-width: 220px;
          padding: 10px 0;
          margin: 0;
          list-style: none;
          box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
          border-radius: 5px;
          opacity: 0;
          visibility: hidden;
          transform: translateY(15px);
          transition: all 0.3s ease-in-out;
          z-index: 1000;

          li {
            width: 100%;

            a {
              display: block;
              padding: 10px 20px;
              color: var(--black, #000);
              font-family: var(--gt-regular);
              font-size: 15px;
              transition: 0.3s;
              border-bottom: none; /* overrides main menu border */

              &:hover {
                background: rgba(0, 0, 0, 0.03);
                color: var(--primary);
                padding-left: 25px; /* Nice little hover effect */
              }
            }
          }
        }

        /* Show dropdown on hover */
        &:hover .sub-menu {
          opacity: 1;
          visibility: visible;
          transform: translateY(0);
        }
      }
    }
  }
}

/* --- MOBILE OFFCANVAS STYLES --- */
.offcanvas {
  .main-menu {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0;
    margin: 0;
    list-style: none;

    > li {
      &.current-menu-item > a {
        color: var(--primary);
        font-family: var(--gt-medium);
        border-bottom: 2px solid var(--primary);
      }

      > a {
        font-family: var(--gt-regular);
        font-size: 17px;
        width: 100%;
        display: flex;
        justify-content: space-between; /* Pushes the arrow to the right */
        align-items: center;
        color: var(--black);
        transition: 0.3s ease-in-out;
        padding-bottom: 4px;
        border-bottom: 2px solid transparent;

        &:hover {
          color: var(--primary);
          border-bottom: 2px solid var(--primary);
        }
      }

      &.menu-item-has-children > a::after {
        content: '\f107';
        font-family: 'Font Awesome 6 Free';
        font-weight: 900;
        transition: 0.3s;
      }
      
      /* Rotate arrow when active on mobile */
      &.active > a::after {
        transform: rotate(180deg);
      }

      /* --- MOBILE DROPDOWN STYLES --- */
      .sub-menu {
        display: none; /* Hidden by default on mobile */
        flex-direction: column;
        gap: 5px;
        padding-left: 15px;
        margin-top: 10px;
        list-style: none;

        li a {
          font-size: 15px;
          color: var(--black);
          padding: 8px 0;
          display: block;
          border: none;

          &:hover {
            color: var(--primary);
          }
        }
      }
    }
  }

  .pri-btn {
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 10px;
  }
}

.off-btn {
  background: #fff;
  line-height: 100%;
  padding: 10px;
}
.pri-btn {
  display: flex;
  width: max-content;
  padding: 4px 6px 4px 14px;
  background-color: var(--primary);
  border-radius: 40px;
  border: 2px solid var(--primary);
  color: var(--white);
  font-family: var(--gt-regular);
  font-size: 16px;
  line-height: 100%;
  transition: 0.3s ease-in-out;
  align-items: center;
  gap: 10px;

  span {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;

    i {
      color: var(--primary);
      transition: all 0.3s ease-in-out;
      transform: rotate(-40deg);
    }
  }

  &:hover {
    color: var(--white);
    background-color: var(--secondery);
    border: 2px solid var(--white);

    span {
      i {
        transform: rotate(0deg);
      }
    }
  }

  &.big {
    padding: 4px 4px 4px 20px;
    gap: 20px;

    span {
      width: 35px;
      height: 35px;

      i {
        font-size: 20px;
      }
    }
  }
}

.banner-area {
  position: relative;
  &::before {
    background: #000000;
    background: linear-gradient(
      90deg,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 0.78) 16%,
      rgba(0, 0, 0, 0.71) 32%,
      rgba(0, 0, 0, 0) 100%
    );
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    z-index: 1;
  }
  .banner-image {
    width: 100%;
    height: 700px;
    object-fit: cover;
  }

  .container {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
  }

  .left {
    h1 {
      font-size: 60px;
      color: var(--white);
      font-family: var(--gt-bold);
      line-height: 100%;
      margin-bottom: 20px;
    }

    ul {
      padding-left: 20px;
      display: flex;
      flex-direction: column;
      gap: 0px;
      margin-bottom: 20px;

      li {
        list-style: disc;
        font-size: 18px;
        font-family: var(--gt-regular);
        color: var(--white);
      }
    }
  }
}

.main-heading {
  font-size: 60px;
  font-family: var(--gt-regular);
  color: var(--secondery);

  b {
    font-family: var(--gt-bold);
  }

  span {
    width: 10px;
    height: 10px;
    border-radius: 20px;
    display: inline-block;
    background-color: var(--white);
  }

  &.white {
    color: var(--white);
  }
}

.section-top {
  width: 80%;
  margin: 0px auto;

  p {
    font-size: 18px;
    color: var(--white);
    font-family: var(--gt-light);
    text-align: center;
    opacity: 0.8;

    &.black {
      color: var(--secondery);
    }
  }
}

.bg-pri {
  background-color: var(--primary);
}

.comn-padding {
  padding: 70px 0px;
}

.sec-setion {
  position: relative;
  border-radius: 20px 20px 0 0;
  background-color: var(--white);
  .container {
    position: relative;
    z-index: 10;
  }
}
.fourth-section {
  background-color: #fff;
}
.sec-setion::before,
.fourth-section::before,
.leadership-section::before {
  position: absolute;
  bottom: 0px;
  left: 0px;
  background: url(../images/section-bg.webp);
  content: "";
  width: 100%;
  height: 300px;
  z-index: 1;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.number-slider {
  .inner {
    padding: 10px;

    .item {
      box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
      border-radius: 10px;
      padding: 30px 14px 20px;
      min-height: 150px;
      background-color: var(--white);

      h3,
      h3 span {
        font-size: 34px;
        color: var(--primary);
        font-family: var(--gt-bold);
        text-align: center;
      }

      p {
        text-align: center;
        font-size: 18px;
        color: var(--secondery);
      }
    }
  }
}

.learn-btn {
  border-radius: 10px;
  border: 2px solid var(--white);
  padding: 5px 16px;
  font-size: 18px;
  color: var(--white);
  background: transparent;
  transition: 0.3s ease-in-out;

  &:hover {
    color: var(--white);
  }
}

.network-slider {
  .inner {
    padding: 0px 14px 14px;

    .item {
      overflow: hidden;
      border-radius: 14px;
      position: relative;
      transition: all 0.3s ease-in-out;

      img {
        width: 100%;
        height: 390px;
        object-fit: contain;
        position: relative;
        background: #fff;
      }

      .learn-btn {
        display: none;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        position: absolute;
        transition: 0.3s ease-in-out;
      }

      &:hover {
        &::before {
          top: 0px;
          left: 0px;
          bottom: 0px;
          right: 0px;
          background-color: #000000;
          opacity: 0.6;
          content: "";
          position: absolute;
          transition: 0.4s ease-in-out;
          z-index: 2;
        }

        .learn-btn {
          display: block;
          z-index: 3;
        }
      }
    }
  }
}
.about-hero.about-hero-large.pogram {
   .about-hero-bg {
    filter: brightness(0.75);
    top: -290px;
  }
}
.minus {
  margin-bottom: -480px;
  position: relative;
  z-index: 10;

  hr {
    height: 1px;
    opacity: 0.6;
    margin-top: 60px;
  }
}

.fourth-section {
  padding-top: 440px;
}
.sixth-section {
  background-color: var(--white);
  padding: 80px 0px 0px;
  .action {
    margin-bottom: 90px;
  }
  hr {
    margin: 0px 0px 0px 0px;
  }
}
.leadership-section {
  background-color: var(--white);
  border-radius: 0 0 20px 20px;
}

.event-card {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  max-height: 430px;
  height: 100%;
  margin-bottom: 20px;
  transition: 0.3s ease-in-out;
  &::before {
    top: 0px;
    left: 0px;
    bottom: 0px;
    right: 0px;
    content: "";
    position: absolute;
    background: linear-gradient(
      0deg,
      rgba(0, 0, 0, 0.71) 0%,
      rgba(0, 0, 0, 0.44) 74%,
      rgba(0, 0, 0, 0.3) 100%
    );
    z-index: 2;
  }

  img {
    width: 100%;
    object-fit: cover;
    height: 100%;
    transition: 0.4s ease-in-out;
  }

  .date {
    position: absolute;
    top: 0px;
    right: 20px;
    padding: 10px 10px 10px;
    background-color: var(--primary);
    z-index: 2;

    .date-number {
      font-size: 34px;
      text-align: center;
      color: var(--white);
      font-family: var(--gt-bold);
      margin-bottom: 0px;
      line-height: 100%;
    }

    .date-month {
      font-size: 18px;
      text-align: center;
      color: var(--white);
      font-family: var(--gt-medium);
      margin-top: 0px;
    }
  }

  .content {
    position: absolute;
    bottom: 20px;
    left: 0px;
    width: 100%;
    padding: 10px 14px 0px;
    z-index: 2;

    h3 {
      font-size: 22px;
      color: var(--white);
      font-family: var(--gt-bold);
      margin-bottom: 10px;
    }

    p {
      font-size: 16px;
      color: var(--white);
      line-height: 120%;
      font-family: var(--gt-light);
      margin-bottom: 14px;
      opacity: 0.9;
    }

    .pri-btn {
      padding: 3px 3px 3px 10px;
      font-size: 15px;

      span {
        width: 25px;
        height: 25px;

        i {
          font-size: 16px;
        }
      }
    }
  }
  &:hover {
    img {
      transform: scale(1.1);
    }
  }
}

.fourth-section {
  position: relative;

  .container {
    position: relative;
    z-index: 10;
  }
}

.testimonials-section {
  background-color: var(--primary);
  padding: 60px 0px;

  .review-slider {
    .inner {
      padding: 0px 30px;

      .testi-card {
        transform: scale(0.9);
      }

      &.inner.slick-slide.slick-center .testi-card {
        transform: scale(1);
      }
    }
  }

  .action {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 28px;

    button {
      width: 40px;
      height: 40px;
      background-color: var(--white);
      border: none;
      border-radius: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }
}

.testi-card {
  background-color: var(--white);
  border-radius: 10px;

  overflow: hidden;
  transition: 0.4s ease-in-out;
  .testi-pic {
        height: 100%;
      object-fit: cover;
  }
  .content {
    padding: 40px;
    height: 100%;
    align-items: center;
    justify-content: center;
    display: flex;
    flex-direction: column;

    .coma {
      margin-bottom: 20px;
      width: 60px;
      margin-right: auto;
    }

    p {
      font-size: 15px;
      color: var(--secondery);
      font-family: var(--gt-regular);
      line-height: 120%;
    }

    .author {
      margin-top: 20px;
      width: 100%;

      .name {
        font-size: 22px;
        color: var(--secondery);
        font-family: var(--gt-bold);
        margin-bottom: 6px;
      }

      .deg {
        font-size: 18px;
        color: var(--secondery);
        font-family: var(--gt-medium);
        opacity: 0.8;
      }
    }
  }
}

.leadership-section {
  position: relative;
  z-index: 10;
}

.leadership-section .container {
  position: relative;
  z-index: 10;
}

.custom-tabs {
  gap: 20px;
}

.custom-tabs .nav-link {
  border: 1px solid var(--secondery);
  color: var(--secondery);
  border-radius: 10px;
  padding: 12px 30px;
  font-family: var(--gt-bold);
  font-size: 18px;
  background-color: transparent;
  transition: 0.3s ease-in-out;
  min-width: 250px;
}

.custom-tabs .nav-link.active,
.custom-tabs .nav-link:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
}

.team-card {
  text-align: center;
  margin-bottom: 30px;
  display: block;
}

.team-card .img-box {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 15px;
  background-color: #c0c0c0;
  aspect-ratio: 1.35 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card .img-box .user-icon {
  font-size: 100px;
  color: #c0c0c0;
  position: absolute;
}

.team-card .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: relative;
  z-index: 1;
  object-position: top;
}

.team-card h3 {
  font-family: var(--gt-bold);
  font-size: 20px;
  color: var(--secondery);
  margin-bottom: 5px;
}

.team-card p {
  font-family: var(--gt-medium);
  font-size: 16px;
  color: var(--secondery);
}
.team-card {
  .linkedin {
    font-size: 28px;
    color: #0A66C2;
  }
}
.site-footer {
  background-color: var(--secondery);
  padding: 60px 0 30px;
  color: var(--white);
}

.site-footer .footer-logo img {
  max-width: 200px;
}

.site-footer .footer-widget h4 {
  font-family: var(--gt-bold);
  font-size: 18px;
  margin-bottom: 20px;
  color: var(--white);
}

.site-footer .footer-widget p {
  font-family: var(--gt-light);
  font-size: 16px;
  color: var(--white);
  line-height: 1.4;
  margin-bottom: 20px;
  opacity: 0.8;
}

.site-footer .social-links {
  display: flex;
  gap: 4px;
  align-items: center;
}

.site-footer .social-links li a {
  width: 30px;
  height: 30px;
  background-color: var(--white);
  color: var(--secondery);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  font-size: 18px;
  transition: 0.3s ease-in-out;
}

.site-footer .social-links li a:hover {
  background-color: var(--primary);
  color: var(--white);
}

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

.site-footer .footer-links li a {
  font-family: var(--gt-regular);
  font-size: 16px;
  color: var(--white);
  transition: 0.3s ease-in-out;
  opacity: 0.8;
}

.site-footer .footer-links li a:hover {
  color: var(--primary);
}

.site-footer .contact-info li {
  font-family: var(--gt-regular);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 5px;
  line-height: 1.4;
  display: flex;
  gap: 10px;
  opacity: 0.8;
}

.site-footer .contact-info li a {
  color: var(--white);
  transition: 0.3s ease-in-out;
}

.site-footer .contact-info li a:hover {
  color: var(--primary);
}

.site-footer .border-left-widget {
  border-left: 1px solid rgba(255, 255, 255, 0.4);
  height: 100%;
}
.charter-member {
  /* .team-card .img-box .user-icon {
    color: #fff;
  } */
}
.site-footer .footer-bottom {
  margin-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  padding-top: 25px;
}

.site-footer .footer-bottom p {
  font-family: var(--gt-regular);
  font-size: 14px;
  color: var(--white);
  margin: 0;
  opacity: 0.8;
}

.site-footer .footer-bottom-links {
  display: flex;
  gap: 5px;
}

.site-footer .footer-bottom-links li {
  position: relative;
  display: flex;
  align-items: center;
}

.site-footer .footer-bottom-links li:not(:last-child)::after {
  content: "|";
  color: var(--white);
  margin-left: 10px;
  margin-right: 5px;
}

.site-footer .footer-bottom-links li a {
  font-family: var(--gt-regular);
  font-size: 14px;
  color: var(--white);
  transition: 0.3s ease-in-out;
  opacity: 0.8;
}

.site-footer .footer-bottom-links li a:hover {
  color: var(--primary);
}
.main-content {
  padding: 0px 20px;
  background: #1b1b1b;
}
.site-footer .center-link {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.about-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.about-hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 2;
}
.about-hero-content {
  position: relative;
  z-index: 3;
}
.about-hero-content h1 {
  color: var(--white);
  font-family: var(--gt-bold);
  font-size: 50px;
  letter-spacing: 2px;
  margin-bottom: 5px;
}
.about-hero-content .divider {
  width: 40px;
  height: 3px;
  background-color: var(--white);
  margin: 0 auto 15px;
}
.about-hero-content p {
  color: var(--white);
  font-family: var(--gt-medium);
  font-size: 16px;
}
.about-page-section {
  background-color: var(--white);
}

/* Redesigned About Page Styles */
.about-hero-large {
  height: 400px;
}
.about-hero-large .about-hero-bg {
  filter: brightness(0.45);
  position: absolute;
  inset: 0;
  object-fit: cover;
}
.about-hero-content {
  position: relative;
  z-index: 3;
  color: var(--white);
  padding:50px 0 0px ;
  max-width: 900px;
  margin: 0 auto;
  text-align: left;
}
.about-hero-content h1 {
  font-size: 48px;
  font-family: var(--gt-bold);
  margin-bottom: 12px;
  text-align: center;
}
.about-hero-content .lead {
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 12px;
}
.about-hero-content .breadcrumb {
  color: rgba(255, 255, 255, 0.8);
  font-family: var(--gt-medium);
}

.about-leftbar {
  background: transparent;
}
.about-heading {
  font-size: 28px;
  color: var(--sub-1);
}
.lead-paragraph {
  font-size: 18px;
  color: var(--sub-1);
  line-height: 1.7;
}
.about-image img {
  border-radius: 10px;
}
.about-cards {
  margin-top: 18px;
}
.about-card {
  background: #fff;
  padding: 18px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(13, 13, 13, 0.06);
  width: 100%;
}
.about-card h4 {
  font-family: var(--gt-bold);
  margin-bottom: 8px;
  font-size: 20px;
  color: var(--secondery);
}
.about-stats {
  margin-top: 18px;
}
.about-stats .stat {
  background: #f7f7f7;
  padding: 18px;
  border-radius: 10px;
  text-align: center;
  flex: 1;
}
.about-stats .num {
  font-size: 28px;
  font-family: var(--gt-bold);
  color: var(--primary);
}
.about-stats .label {
  font-size: 14px;
  color: var(--sub-2);
}

.timeline {
  margin-top: 18px;
  border-left: 3px solid var(--sub-4);
  padding-left: 14px;
}
.timeline-item {
  margin-bottom: 12px;
  color: var(--sub-1);
}

.about-sidebar-box {
  padding: 30px;
  border-radius: 12px;
}
.sticky-sidebar {
  position: sticky;
  top: 110px;
}
.about-sidebar-box .box-heading {
  font-size: 20px;
  margin-bottom: 8px;
}
.about-sidebar-box p {
  font-size: 15px;
  opacity: 0.95;
}
.about-sidebar-box .cta .pri-btn.big {
  display: inline-flex;
  margin-top: 8px;
}


.about-heading {
  font-family: var(--gt-bold);
  color: var(--sub-1);
  font-size: 32px;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}
.about-heading .heading-line {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
}
.about-text-content p {
  font-family: var(--gt-light);
  color: var(--sub-1);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.about-text-content h3 {
  font-family: var(--gt-regular);
  color: var(--sub-1);
  font-size: 24px;
  margin-top: 35px;
  margin-bottom: 15px;
}
.about-sidebar-box {
  padding: 40px 30px;
}
.about-sidebar-box .box-heading {
  font-family: var(--gt-bold);
  font-size: 28px;
  margin-bottom: 20px;
}
.about-sidebar-box p {
  font-family: var(--gt-regular);
  font-size: 18px;
  line-height: 1.5;
}
/* Pre Footer CTA */
.pre-footer-cta {
  padding: 30px 0;
}
.pre-footer-cta h2 {
  font-family: var(--gt-bold);
  font-size: 32px;
}
.pre-footer-cta .btn-cta {
  border: 1px solid var(--white);
  padding: 10px 30px;
  font-family: var(--gt-bold);
  transition: 0.3s;
}
.pre-footer-cta .btn-cta:hover {
  background-color: var(--white);
  color: var(--primary) !important;
}

.single-event-content-section {
    padding: 60px 0;
    background-color: var(--white);
    h3, h4, h5 , h6 {
        font-family: var(--gt-bold);
        color: var(--secondery);
        margin-bottom: 14px;
    }
    ul {
        list-style: disc;
        padding-left: 20px;
        margin-bottom: 20px;

        li {
            font-family: var(--gt-regular);
            color: var(--sub-1);
            font-size: 16px;
            list-style: disc;
            line-height: 1.6;
            margin-bottom: 10px;
        }
    }
}

/* 1. Left Content Styling (Matches "Our Story") */
.single-event-content-section h3 , h4 {
    font-family: var(--gt-bold);
    font-size: 28px;
    color: var(--secondery);
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 3px solid var(--primary); /* The red underline */
    padding-bottom: 5px;
}

.event-description {
    font-family: var(--gt-regular);
    color: var(--sub-1);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.event-description p {
    margin-bottom: 15px;
}

.event-featured-image img {
    border-radius: 8px;
    width: 100%;
    height: auto;
}

/* 2. Sidebar Styling */

.sidebar-card {
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 20px;
}

/* Red Card (Matches "Mission") */
.sidebar-card.primary-card {
    background-color: var(--primary);
    color: var(--white);
}

.sidebar-card.primary-card h3 {
    font-family: var(--gt-bold);
    font-size: 24px;
    margin-bottom: 20px;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: 10px;
}

.info-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-family: var(--gt-medium);
    font-size: 14px;
    opacity: 0.8;
}

.info-item .value {
    font-family: var(--gt-bold);
    font-size: 18px;
}

/* White Card (Matches "Stats") */
.sidebar-card.white-card {
    background-color: var(--white);
    border: 1px solid var(--sub-4);
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    text-align: center;
}

.stat-box {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--sub-4);
}

.stat-box:last-of-type {
    border-bottom: none;
}

.stat-box h3 {
    font-family: var(--gt-bold);
    color: var(--primary);
    font-size: 20px;
    margin-bottom: 5px;
}

.stat-box p {
    font-family: var(--gt-medium);
    color: var(--sub-2);
    font-size: 14px;
    margin: 0;
}

/* Sidebar Button */
.sidebar-btn {
    display: inline-block;
    background-color: var(--primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    font-family: var(--gt-medium);
    text-decoration: none;
    transition: 0.3s;
    width: 100%;
    text-align: center;
}

.sidebar-btn:hover {
    background-color: var(--secondery);
    color: var(--white);
}
.partners-section {
  background-color: var(--white);
}

.partners-section .section-top p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 20px;
  border-radius: 12px;
  background-color: #f9f9f9;
  transition: all 0.3s ease;
  height: 100%;
}

.partner-card:hover {
  background-color: #f0f0f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.partner-logo-box {
  width: 100%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  overflow: hidden;
}

.partner-logo-box img {
  max-width: 90%;
  max-height: 90%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.partner-name {
  font-size: 16px;
  font-weight: 500;
  color: var(--primary);
  margin: 8px 0 0;
}

.partner-card:hover .partner-name {
  color: var(--secondery);
}

/* Contact Us Section */
.contact-us-section {
  background-color: var(--white);
  .pri-btn {
    padding: 10px 20px;
      font-size: 18px;
      margin-top: 20px;
  }
}

.contact-us-section .section-top p {
  font-size: 16px;
  color: #666;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form-wrapper,
.contact-info-wrapper {
  background-color: #f9f9f9;
  padding: 30px;
  border-radius: 12px;
}

.form-title {
  font-size: 24px;
  font-family: var(--gt-bold);
  color: var(--secondery);
  margin-bottom: 25px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--gt-medium);
  font-size: 14px;
  color: var(--secondery);
  margin-bottom: 8px;
  font-weight: 500;
}

.form-control {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: var(--gt-regular);
  font-size: 15px;
  color: var(--secondery);
  background-color: var(--white);
  transition: all 0.3s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(223, 25, 44, 0.1);
}

.form-control::placeholder {
  color: var(--sub-3);
}

.contact-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: var(--gt-regular);
}

.info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #e0e0e0;
}

.info-item:last-of-type {
  border-bottom: none;
}

.info-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  border-radius: 10px;
  background-color: rgba(223, 25, 44, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
}

.info-content h4 {
  font-family: var(--gt-bold);
  font-size: 18px;
  color: var(--secondery);
  margin-bottom: 8px;
}

.info-content p {
  font-family: var(--gt-regular);
  font-size: 15px;
  color: var(--sub-2);
  line-height: 1.6;
  margin: 0;
}

.info-content a {
  color: var(--primary);
  text-decoration: none;
  transition: 0.3s ease;
}

.info-content a:hover {
  color: var(--secondery);
  text-decoration: underline;
}

.map-container {
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
  display: block;
}

/* Membership Section */
.membership-section {
  background-color: var(--white);
}

.membership-content {
  padding-right: 30px;
}

.membership-intro {
  font-family: var(--gt-bold);
  font-size: 18px;
  color: var(--secondery);
  line-height: 1.8;
  margin-bottom: 30px;
}

.membership-title {
  font-family: var(--gt-bold);
  font-size: 28px;
  color: var(--secondery);
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--primary);
  display: inline-block;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefits-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit-icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  margin-top: 2px;
}

.benefit-text {
  font-family: var(--gt-regular);
  font-size: 15px;
  color: var(--sub-1);
  line-height: 1.6;
}

.membership-image {
  text-align: center;
}

.membership-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}
.spekers-section {
  .team-card h3 {
      font-size: 15px;
  }
  .team-card p {
      font-size: 13px;
      color: var(--secondery);
  }
}
.event-iframe {
  width: 100%;
  height: 540px;
}

/* Contact Form 7 Styles */
.wpcf7-form {
  width: 100%;
}

.wpcf7-form label {
  display: block;
  font-family: var(--gt-medium);
  font-size: 14px;
  color: var(--secondery);
  margin-bottom: 8px;
  font-weight: 500;
}

.wpcf7-form .form-control {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--sub-4);
  border-radius: 8px;
  font-family: var(--gt-regular);
  font-size: 15px;
  color: var(--sub-1);
  background-color: var(--white);
  transition: all 0.3s ease;
}

.wpcf7-form .form-control:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(223, 25, 44, 0.1);
}

.wpcf7-form .form-control::placeholder {
  color: var(--sub-3);
}

.wpcf7-form textarea.form-control {
  resize: vertical;
  min-height: 120px;
  font-family: var(--gt-regular);
}

.wpcf7-form .btn-primary {
  background-color: var(--primary);
  border-color: var(--primary);
  color: var(--white);
  font-family: var(--gt-medium);
  font-size: 16px;
  padding: 12px 30px;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-weight: 500;
}

.wpcf7-form .btn-primary:hover {
  background-color: var(--secondery);
  border-color: var(--secondery);
  color: var(--white);
}































@media (max-width: 1440px) {
}

@media (max-width: 1199px) {
  .event-card {
    img {
      width: 100%;
    }
  }
  .event-card {
    img {
      width: 100%;
    }
  }
}

@media (max-width: 991px) {
  .banner-area {
    & .left {
      h1 {
        font-size: 40px;
        color: var(--white);
        font-family: var(--gt-bold);
        line-height: 100%;
        margin-bottom: 16px;
      }
    }
  }
  .main-heading {
    font-size: 40px;
    font-family: var(--gt-regular);
    color: var(--secondery);
  }
  .comn-padding {
    padding: 50px 0px;
  }
  .section-top {
    width: 100%;
  }
  .network-slider {
    & .inner {
      & .item {
        img {
          height: 300px;
        }
      }
    }
  }

  .sixth-section {
    padding-top: 40px;
  }
  .testimonials-section {
    .action {
      gap: 10px;
      margin-top: 10;
    }
  }
  .testimonials-section {
    & .review-slider {
      .inner {
        padding: 0px 10px;
      }
    }
  }
  .testi-card {
    .content {
      padding: 20px;
    }
    .col-lg-5 img {
      height: 340px;
      object-fit: cover;
      object-position: top center;
    }
  }
  .site-footer .center-link {
    display: flex;
    flex-direction: column;
    align-items: start;
  }

  .site-footer .border-left-widget {
    border-left: unset;
    height: unset;
  }
  .site-footer .footer-widget {
    margin-bottom: 30px;
  }
  .footer-logo img {
    margin: unset !important;
  }

   .about-hero-content {
    text-align: center;
    padding: 60px 0px 0px;
  }
  .about-hero-large {
        height: 280px;
    }
  .about-hero-content h1 {
    font-size: 30px;
  }
  .about-card {
    width: 100%;
  }
  .about-stats {
    flex-direction: column;
  }
  .sticky-sidebar {
    position: relative;
    top: auto;
  }
    .membership-section {
    padding: 50px 0;
  }

  .membership-content {
    padding-right: 0;
    margin-bottom: 30px;
  }

  .membership-image {
    margin-top: 20px;
  }

  .membership-title {
    font-size: 24px;
  }

  .membership-intro {
    font-size: 16px;
  }







}

@media (max-width: 767px) {
  .event-card {
    max-height: 345px;
  }
  .sixth-section {
    .action {
      margin-bottom: 40px;
    }
  }
  .minus {
    margin-bottom: -370px;
  }
  .fourth-section {
    padding-top: 355px;
  }
  .network-slider {
    & .inner {
      & .item {
        box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
        img {
          height: 390px;
        }
      }
    }
  }
  .section-top {
    p {
      font-size: 15px;
    }
  }
  .main-content {
    padding: 0px 0px;
    background: #1b1b1b;
  }
  .event-card {
    img {
      width: 100%;
    }
  }
  .banner-area {
    .banner-image {
      width: 100%;
      height: 500px;
      object-fit: cover;
    }
  }
  .banner-area {
    .container {
      top: 60%;
    }
  }
  .banner-area {
    & .left {
      h1 {
        font-size: 36px;
        br {
          display: none;
        }
      }
    }
  }
  .testimonials-section {
    background-color: var(--primary);
    padding: 30px 0px;
  }
  .custom-tabs .nav-link {
    min-width: 100%;
  }
    .single-event-content-section h3 , h4 {
        font-size: 24px;
    }
    .sidebar-card {
        padding: 20px;
    }
  .partner-card {
    padding: 16px;
  }

  .partner-logo-box {
    height: 100px;
  }

  .partner-name {
    font-size: 14px;
  }
.contact-form-wrapper,
  .contact-info-wrapper {
    padding: 20px;
  }

  .form-title {
    font-size: 20px;
    margin-bottom: 20px;
  }

  .info-item {
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }

  .info-icon {
    width: 45px;
    height: 45px;
    font-size: 20px;
  }

  .info-content h4 {
    font-size: 16px;
  }

  .map-container {
    margin-top: 20px;
  }




















}

@media (max-width: 576px) {
  .event-card {
    max-height: 405px;
  }
  .team-card h3 {
    font-size: 17px;
  }
  .team-card {
    margin-bottom: 12px;
  }
  .main-heading {
    font-size: 32px;
    br {
      display: none;
    }
  }
  .testi-card {
    .col-lg-5 img {
      height: 280px;
    }
  }
  .third-section {
    .main-heading {
      font-size: 22px;
    }
  }
  .number-slider {
    & .inner {
      .item {
        padding: 30px 14px 20px;
        min-height: 120px;
        h3,
        h3 span {
          font-size: 26px;
        }
        p {
          font-size: 16px;
        }
      }
    }
  }
  .footer-bottom {
    p {
      text-align: center;
    }
  }
  .site-footer .footer-bottom-links {
    justify-content: center;
  }
  .banner-area {
    & .left {
      h1 {
        font-size: 29px;
      }
      ul {
        li {
          list-style: disc;
          font-size: 16px;
          font-family: var(--gt-regular);
          color: var(--white);
        }
      }
    }
  }
  .banner-area {
    .banner-image {
      height: 401px;
    }
  }
  .pri-btn {
    &.big {
      padding: 4px 4px 4px 10px;
      gap: 11px;
      font-size: 16px;
    }
  }
  .partner-card {
    padding: 12px;
  }

  .partner-logo-box {
    height: 80px;
  }

  .partner-name {
    font-size: 13px;
  }
  .contact-form-wrapper,
  .contact-info-wrapper {
    padding: 16px;
  }

  .form-title {
    font-size: 18px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: 14px;
  }

  .info-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }

  .info-content h4 {
    font-size: 15px;
  }

  .info-content p {
    font-size: 14px;
  }
  .membership-title {
    font-size: 20px;
  }

  .membership-intro {
    font-size: 14px;
  }

  .benefits-list {
    gap: 14px;
  }

  .benefit-icon {
    width: 26px;
    height: 26px;
    font-size: 12px;
  }

  .benefit-text {
    font-size: 13px;
  }
  .membership-content {
    padding-right: 0;
  }

  .membership-title {
    font-size: 22px;
  }

  .membership-intro {
    font-size: 15px;
    margin-bottom: 20px;
  }

  .benefits-list {
    gap: 16px;
    margin-bottom: 25px;
  }

  .benefit-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }

  .benefit-text {
    font-size: 14px;
  }
.single-event-content-section {
  h5 {
        font-size: 18px;
    }
    .text-secondary {
      font-size: 14px;
    }
  }
  .theme-color {
    color: #df192c;
  }
.team-card p {
    font-size: 14px;
}

}
