/* ============================================================
   PLANNER 2026 — custom.css
   Primary color: #095859  |  Accent: #82b440  |  Dark: #1F1F25
   ============================================================ */

:root {
  --color-primary: #095859;
  --color-primary-light: #0d7273;
  --color-primary-dark: #063d3e;
  --color-primary-50: rgba(9, 88, 89, 0.08);
  --color-primary-15: rgba(9, 88, 89, 0.15);
  --color-accent: #82b440;
  --color-accent-dark: #6a9433;
  --color-secondary: #1f1f25;
  --color-body: #5d666f;
  --color-heading: #1c2539;
  --color-title: #141416;
  --color-white: #fff;
  --color-light-bg: #f5f9f9;
  --color-border: #d4e9e9;
  --transition: 0.3s;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 12px rgba(9, 88, 89, 0.1);
  --shadow-md: 0 6px 30px rgba(9, 88, 89, 0.15);
  --shadow-lg: 0 16px 48px rgba(9, 88, 89, 0.2);
}

/* ============================================================
   GLOBAL RESETS & BASE
   ============================================================ */
p {
  margin-bottom: 15px;
  color: #010101;
}

.rts-btn {
  border: 1px solid transparent;
}

/* .rts-btn.btn-primary::before {
  background: var(--color-white);
} */

.rts-btn i {
  margin-right: 5px;
}

.rts-btn:hover {
  color: var(--color-primary) !important;
  border: 1px solid var(--color-primary);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  font-family: "DM Sans", sans-serif;
  color: var(--color-body);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Red Hat Display", sans-serif;
  color: var(--color-heading);
}

a {
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.rts-section-gap {
  padding: 50px 0;
}

/* ============================================================
   HEADER TOP BAR
   ============================================================ */
.header-top-area-wrapper {
  background-color: var(--color-primary);
}

.header-top-one-wrapper .left .mail:last-child::after {
  content: none;
}

.header-top-area-wrapper .container-fluid,
.header-main .container-fluid {
  padding: 0 100px;
}

/* ============================================================
   HEADER MAIN
   ============================================================ */
.thumbnail {
  height: 100px;
}

.thumbnail a img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

.header-one .nav-area {
  margin-right: 20px;
}

.nav-area ul {
  gap: 38px;
}

.has-dropdown::after {
  right: -15px;
}

.header-main-one-wrapper {
  gap: 40px;
  display: flex;
  align-items: center;
}

.header-main-one-wrapper .main-header {
  flex: 1;
  justify-content: space-between;
}

.nav-area ul li.main-nav {
  padding: 42px 0;
}

/* Nav active / hover — primary color */
.header-one .nav-area ul li.main-nav>a:hover,
.header-one .nav-area ul li.main-nav>a.active {
  color: var(--color-primary) !important;
}

/* Submenu border accent */
.submenu li a:hover {
  color: var(--color-primary) !important;
  padding-left: 18px !important;
}

/* ============================================================
   BANNER
   ============================================================ */
.rts-banner-area-two {
  height: 580px !important;
  background-image: url("../images/banner2.png");
  background-size: cover;
  background-position: left;
  display: flex;
  align-items: center;
  position: relative;
}

.rts-banner-area-two::before {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(135deg,
      rgba(9, 88, 89, 0.82) 0%,
      rgba(9, 88, 89, 0.55) 50%,
      rgba(9, 61, 62, 0.7) 100%); */
  /* 
  background: linear-gradient(135deg,
      rgba(9, 88, 89, 0.82) 0,
      rgba(9, 88, 89, 0.3) 25%,
      rgba(9, 61, 62, 0.7) 100%); */

  background: linear-gradient(135deg,
      rgba(9, 88, 89, 0.4) 0%,
      rgba(9, 88, 89, 0.2) 40%,
      rgba(9, 61, 62, 0.3) 100%);
  ;
  z-index: 1;
}

.rts-banner-area-two .container {
  position: relative;
  z-index: 2;
}

/* Banner content */
.planner-banner-content {
  padding: 20px 0;
  max-width: 680px;
}

.banner-pre-title {
  display: inline-block;
  color: var(--color-accent);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  border-left: 3px solid var(--color-accent);
  padding-left: 12px;
}

.banner-main-title {
  font-size: 72px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.banner-main-title span {
  color: var(--color-accent);
}

.banner-sub-title {
  font-size: 22px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 36px;
}

.banner-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-banner-primary {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
  box-shadow: 0 4px 20px rgba(130, 180, 64, 0.35);
}

.btn-banner-primary:hover {
  background-color: var(--color-accent-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(130, 180, 64, 0.45);
}

.btn-banner-outline {
  background: transparent;
  color: var(--color-white);
  padding: 13px 32px;
  border-radius: var(--radius);
  border: 2px solid rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: 0.3s;
}

.btn-banner-outline:hover {
  background: var(--color-white);
  color: var(--color-primary);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

/* Swiper nav */
.mySwiper-banner-two .swiper-button-next,
.mySwiper-banner-two .swiper-button-prev {
  background-color: var(--color-primary-dark);
  border: 2px solid var(--color-accent);
}

.mySwiper-banner-two .swiper-button-next:hover,
.mySwiper-banner-two .swiper-button-prev:hover {
  background-color: var(--color-accent);
}

.mySwiper-banner-two .swiper-button-next i,
.mySwiper-banner-two .swiper-button-prev i {
  font-size: 22px;
  color: var(--color-white);
}

/* ============================================================
   DATES STRIP
   ============================================================ */
.dates-strip-section {
  background-color: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(9, 88, 89, 0.1);
  position: relative;
  z-index: 5;
}

.dates-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
}

.date-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 28px 24px;
  flex: 1;
  min-width: 200px;
  transition: 0.3s;
}

.date-item:hover {
  background-color: var(--color-primary-50);
}

.date-icon {
  width: 48px;
  height: 48px;
  background-color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.date-icon i {
  font-size: 20px;
  color: var(--color-white);
}

.date-info {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.date-label {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-primary);
}

.date-val {
  font-size: 15px;
  font-weight: 600;
  color: var(--color-heading);
}

.date-val.strike {
  text-decoration: line-through;
  color: #999;
  font-size: 13px;
}

.date-val.new-date {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-ext {
  background-color: #e8f5e9;
  color: #2e7d32;
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.date-divider {
  width: 1px;
  height: 60px;
  background-color: var(--color-border);
  flex-shrink: 0;
}

/* ============================================================
   SECTION COMMON LABELS & TITLES
   ============================================================ */
.section-pre-label {
  display: inline-block;
  color: var(--color-primary);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 5px;
  position: relative;
  padding-left: 32px;
}

.section-pre-label::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 2px;
  background-color: var(--color-accent);
}

.section-title {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-heading);
  line-height: 1.2;
  margin-bottom: 0;
}

.section-title em {
  font-style: normal;
  color: var(--color-primary);
}

.section-title-white {
  font-size: 42px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.2;
  margin-bottom: 0;
}

/* ============================================================
   ABOUT / WELCOME SECTION
   ============================================================ */
.planner-about-section {
  background-color: var(--color-white);
}

/* Image block */
.about-image-block {
  position: relative;
}

.about-img-main {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-main img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.about-img-main:hover img {
  transform: scale(1.03);
}

.about-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius);
  padding: 18px 22px;
  text-align: center;
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.badge-year {
  display: block;
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  color: var(--color-white);
}

.badge-edition {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 4px;
}

.sub-themes-badge {
  left: -20px;
  right: auto;
}

.about-img-float {
  position: absolute;
  top: 20px;
  left: -16px;
  background-color: var(--color-white);
  border-radius: var(--radius);
  padding: 12px 16px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
  max-width: 260px;
  border-left: 3px solid var(--color-primary);
}

.about-img-float i {
  font-size: 22px;
  color: var(--color-primary);
  flex-shrink: 0;
}

.about-img-float span {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-heading);
  line-height: 1.4;
}

.home-about-content-block {
  padding: 20px 10px 20px 30px;
  font-size: 30px;
}

.home-about-content-block h3 {
  text-align: center;
}

/* About content */
.about-content-block {
  padding: 20px 10px 20px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-date-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary-50);
  color: var(--color-primary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 30px;
  width: fit-content;
  margin-bottom: 5px;
}

.section-date-tag i {
  color: var(--color-primary);
}

.section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-body);
  margin: 0;
}

.section-desc strong {
  color: var(--color-primary);
}

/* Sub-theme list */
.subtheme-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.subtheme-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-heading);
  line-height: 1.5;
  margin-bottom: 5px;
  margin-top: 5px;
}

.subtheme-list li i {
  color: var(--color-primary);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

/* Primary button */
.btn-primary-planner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 10px 20px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 14px;
  width: fit-content;
  transition: 0.3s;
  box-shadow: 0 4px 16px rgba(9, 88, 89, 0.25);
}

.btn-primary-planner:hover,
.btn-primary-planner:focus {
  background-color: var(--color-primary-dark);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(9, 88, 89, 0.35);
}

/* mt utility */
.mt--60 {
  margin-top: 60px;
}

/* ============================================================
   DOWNLOAD SECTION
   ============================================================ */
.planner-download-section {
  background: linear-gradient(135deg,
      var(--color-primary) 0%,
      var(--color-primary-dark) 100%);
  position: relative;
  overflow: hidden;
}

.planner-download-section::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.planner-download-section::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.planner-download-section .section-pre-label {
  color: var(--color-accent);
}

.planner-download-section .section-pre-label::before {
  background-color: var(--color-accent);
}

.download-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  padding: 28px 16px;
  text-align: center;
  transition: 0.3s;
  position: relative;
  z-index: 1;
  cursor: pointer;
}

.download-card:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: var(--color-accent);
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.download-icon {
  width: 60px;
  height: 60px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

.download-card:hover .download-icon {
  background: var(--color-white);
}

.download-icon i {
  font-size: 22px;
  color: var(--color-white);
  transition: 0.3s;
}

.download-card:hover .download-icon i {
  color: var(--color-accent);
}

.download-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-white);
  line-height: 1.4;
}

.swiper-button-next {
  left: unset;
  right: 15px !important;
}

.swiper-button-prev {
  right: unset;
  left: 15px !important;
}

/* ============================================================
   PAST EVENTS
   ============================================================ */
.past-events-section {
  background-color: var(--color-light-bg);
}

.past-events-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.past-event-pill {
  display: inline-flex;
  align-items: center;
  padding: 12px 24px;
  border-radius: 40px;
  border: 2px solid var(--color-border);
  background-color: var(--color-white);
  color: var(--color-body);
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.past-event-pill:hover,
.past-event-pill.active {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: var(--color-white);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(9, 88, 89, 0.25);
}

/* ============================================================
   ORGANIZED BY / COMMITTEE CARDS
   ============================================================ */
.organized-section {
  background-color: var(--color-white);
}

.org-card {
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%;
  transition: 0.3s;
  box-shadow: var(--shadow-sm);
}

.org-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-primary-15);
}

.org-card-header {
  background-color: var(--color-primary);
  padding: 18px 22px;
}

.org-card-title {
  color: var(--color-white);
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}

.org-card-body {
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.title-style-three .title {
  font-size: 40px;
}

.org-detail {
  display: flex;
  align-items: flex-start;
  gap: 5px;
  font-size: 14px;
  color: var(--color-heading);
  margin: 0;
  line-height: 1.5;
}

.org-card-body .org-detail:first-child {
  font-size: 16px;
  font-weight: 600;
}

.org-card-body .org-detail:first-child i {
  font-size: 16px;
  font-weight: 600;
}

.org-detail i {
  color: var(--color-primary);
  font-size: 14px;
  margin-top: 3px;
  flex-shrink: 0;
  width: 16px;
}

.org-logos {
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.org-logos img {
  max-height: 80px;
  width: auto;
  object-fit: contain;
  filter: none;
  transition: 0.3s;
}

.org-logos img:hover {
  filter: drop-shadow(0 2px 8px rgba(9, 88, 89, 0.25));
}

/* ============================================================
   FOOTER — primary color tinting
   ============================================================ */
.rts-footer-area .rts-btn.btn-primary.btn-white {
  background-color: var(--color-primary) !important;
}

.rts-footer-area .rts-btn.btn-primary.btn-white:hover {
  background-color: var(--color-primary-dark) !important;
}

.rts-footer-area .wized-title .title {
  color: var(--color-white);
}

.rts-footer-area .single-opening .time {
  color: var(--color-accent);
}

.rts-footer-area .links li a:hover {
  color: var(--color-accent);
}

.rts-copyright-area {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ============================================================
   PROGRESS BAR — primary color
   ============================================================ */
.progress-wrap::after {
  color: var(--color-primary);
}

.progress-wrap svg.progress-circle path {
  stroke: var(--color-primary);
}

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

/* 1600px */
@media (max-width: 1600px) {
  .rts-section-gap {
    padding: 50px 0;
  }

  .swiper-button-next {
    left: unset;
    right: 15px !important;
  }

  .swiper-button-prev {
    right: unset;
    left: 15px !important;
  }

  .header-top-area-wrapper .container-fluid,
  .header-main .container-fluid {
    padding: 0 50px;
  }

  .thumbnail {
    height: 86px;
  }

  .nav-area ul {
    gap: 28px;
  }

  .header-main-one-wrapper {
    gap: 36px;
  }

  .nav-area ul li.main-nav {
    padding: 34px 0;
  }

  .banner-main-title {
    font-size: 58px;
  }

  .section-title,
  .section-title-white {
    font-size: 36px;
  }

  .button-area .rts-btn {
    height: 54px;
    padding: 12px 28px;
  }
}

/* 1250px */
@media (max-width: 1250px) {

  .header-top-area-wrapper .container-fluid,
  .header-main .container-fluid {
    padding: 0 16px;
  }

  .banner-main-title {
    font-size: 48px;
  }
}

/* 1199px */
@media (max-width: 1199px) {
  .rts-section-gap {
    padding: 45px 0;
  }

  .header-main-one-wrapper {
    justify-content: space-between;
  }

  .header-main-one-wrapper .main-header {
    flex: unset;
  }

  .rts-banner-area-two {
    height: 480px !important;
  }

  .banner-main-title {
    font-size: 44px;
  }

  .banner-sub-title {
    font-size: 18px;
  }

  .about-content-block {
    padding: 20px 0;
  }

  .about-img-badge {
    bottom: -12px;
    right: -12px;
  }

  .about-img-float {
    left: -8px;
  }

  .dates-strip-inner {
    flex-wrap: wrap;
  }

  .date-divider {
    display: none;
  }

  .date-item {
    min-width: 45%;
  }

  .button-area .rts-btn {
    height: 52px;
    padding: 11px 27px;
  }
}

/* 991px */
@media (max-width: 991px) {
  .rts-section-gap {
    padding: 40px 0;
  }

  .header-main-one-wrapper {
    padding: 5px 0 !important;
  }

  .rts-section-gap {
    padding: 60px 0;
  }

  .rts-banner-area-two {
    height: 420px !important;
  }

  .banner-main-title {
    font-size: 38px;
  }

  .planner-banner-content {
    max-width: 100%;
  }

  .about-img-main img {
    height: 320px;
  }

  .about-img-badge {
    display: none;
  }

  .about-img-float {
    display: none;
  }

  .about-content-block {
    padding: 30px 0 0;
  }

  .section-title,
  .section-title-white {
    font-size: 30px;
  }

  .org-card {
    margin-bottom: 0;
  }

  .date-item {
    min-width: 100%;
    border-bottom: 1px solid var(--color-border);
  }

  .date-item:last-child {
    border-bottom: none;
  }

  .button-area .rts-btn {
    height: 50px;
    padding: 10px 26px;

  }
}

/* 767px */
@media (max-width: 767px) {
  .rts-section-gap {
    padding: 35px 0;
  }

  .rts-banner-area-two {
    height: 380px !important;
  }

  .banner-main-title {
    font-size: 32px;
  }

  .banner-sub-title {
    font-size: 16px;
  }

  .banner-pre-title {
    font-size: 12px;
  }

  .btn-banner-primary,
  .btn-banner-outline {
    padding: 11px 22px;
    font-size: 14px;
  }

  .section-title,
  .section-title-white {
    font-size: 26px;
  }

  .past-events-grid {
    gap: 10px;
  }

  .past-event-pill {
    padding: 10px 18px;
    font-size: 13px;
    border-radius: 20px;
  }

  .download-card {
    padding: 20px 12px;
  }

  .org-card-body {
    padding: 16px;
  }

  .dates-strip-inner {
    padding: 0;
  }

  .date-item {
    padding: 20px 16px;
  }

  .button-area .rts-btn {
    height: 48px;
    padding: 8px 20px;
    border-radius: 10px;
    font-size: 14px;
  }

  #search,
  #menu-btn {
    height: 48px;
    min-width: 48px;
    border-radius: 10px;
    margin-left: 15px;
  }
}

@media (max-width: 575px) {
  .rts-section-gap {
    padding: 30px 0;
  }

  .past-event-pill {
    padding: 8px 16px;
    font-size: 12px;
    border-radius: 15px;
  }
}

/* 480px */
@media (max-width: 480px) {
  .banner-main-title {
    font-size: 26px;
  }

  .banner-actions {
    flex-direction: column;
    gap: 10px;
  }

  .btn-banner-primary,
  .btn-banner-outline {
    width: 100%;
    justify-content: center;
  }

  .about-img-main img {
    height: 240px;
  }

  .section-title,
  .section-title-white {
    font-size: 22px;
  }

  .section-pre-label {
    font-size: 11px;
  }
}

/* ============================================================
   BANNER COUNTDOWN V2 (MODERN DESIGN)
   ============================================================ */

.banner-countdown-v2 {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  width: 100%;
  max-width: 600px;
  z-index: 3;
  padding: 0 15px;
}

/* Each box */
.count-box {
  background: linear-gradient(135deg,
      rgba(255, 255, 255, 0.15),
      rgba(255, 255, 255, 0.05));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: var(--radius);
  text-align: center;
  padding: 16px 8px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

/* subtle glow */
.count-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      transparent,
      rgba(255, 255, 255, 0.2),
      transparent);
  opacity: 0;
  transition: 0.4s;
}

.count-box:hover::before {
  opacity: 1;
}

/* number */
.count-box span {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--color-white);
  line-height: 1;
}

/* label */
.count-box small {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

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

/* Tablet */
@media (max-width: 991px) {
  .banner-countdown-v2 {
    max-width: 500px;
    gap: 14px;
  }

  .footer-two .rts-copyright-area {
    padding: 15px 0;
  }

  .count-box span {
    font-size: 28px !important;
  }

  .mySwiper-banner-two .swiper-button-next,
  .mySwiper-banner-two .swiper-button-prev {
    width: 50px;
    height: 50px;
  }

  .mySwiper-banner-two .swiper-button-next i,
  .mySwiper-banner-two .swiper-button-prev i {
    font-size: 20px;
  }

  .count-box {
    padding: 10px 6px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .banner-countdown-v2 {
    /* grid-template-columns: repeat(2, 1fr); */
    max-width: 320px;
    bottom: 20px;
    gap: 10px;
  }

  .count-box {
    padding: 10px 6px !important;
  }

  .count-box span {
    font-size: 24px !important;
  }

  .count-box small {
    font-size: 10px !important;
    margin-top: 0px !important;
  }
}

/* Extra small */
@media (max-width: 400px) {
  .count-box span {
    font-size: 20px;
  }
}

@media only screen and (max-width: 575px) {
  .header-main-one-wrapper .thumbnail a img {
    max-width: 200px;
  }

  /* .footer-two .rts-copyright-area{
        padding: 15px 0;
    } */
  .footer-two .rts-copyright-area p {
    font-size: 14px;
  }

  .header-main-one-wrapper {
    padding: 0px !important;
  }

  .side-bar {
    right: -102%;
  }
}

.mySwiper-banner-two .swiper-button-prev {
  left: calc(100% - 50px);
}

.mySwiper-banner-two .swiper-button-next {
  right: 50px;
}

@media (max-width: 1199px) {
  .count-box {
    padding: 14px 7px;
  }

  .count-box span {
    font-size: 30px;
  }
}

@media (max-width: 767px) {

  .mySwiper-banner-two .swiper-button-next,
  .mySwiper-banner-two .swiper-button-prev {
    display: flex;
  }
}

/* Inner Pages CSS Start */

/* About Us page css start */
/* banner Section CSS Start */
.inner_banner {
  position: relative;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.inner_banner::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: linear-gradient(135deg,
      rgba(9, 88, 89, 0.82) 0%,
      rgba(9, 88, 89, 0.55) 50%,
      rgba(9, 61, 62, 0.7) 100%);
  height: 100%;
  width: 100%;
  z-index: 0;
  pointer-events: none;
}

.about_banner {
  background-image: url("../images/about_banner.png");
}

.inner_banner_content {
  position: relative;
  padding: 80px 0;
}

.inner_banner_content h1 {
  position: relative;
  color: var(--color-white);
}

.inner_banner_content ul {
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 20px;
  list-style: none;
}

.inner_banner_content ul li {
  color: var(--color-white);
  font-size: 20px;
}

.inner_banner_content ul li a:hover {
  text-decoration: underline;
  color: var(--color-white);
}

.card-5 {
  width: 20%;
}

@media (max-width: 1600px) {
  .inner_banner_content {
    padding: 75px 0;
  }
}

@media (max-width: 1199px) {
  .inner_banner_content {
    padding: 70px 0;
  }
}

@media (max-width: 991px) {
  .inner_banner_content {
    padding: 60px 0;
  }

  .inner_banner_content h1 {
    margin-bottom: 10px;
  }

  .inner_banner_content ul li {
    font-size: 19px;
  }
}

@media (max-width: 767px) {
  .inner_banner_content {
    padding: 55px 0;
  }

  .inner_banner_content ul li {
    font-size: 18px;
  }
}

@media (max-width: 575px) {
  .inner_banner_content {
    padding: 55px 0;
  }

  .inner_banner_content h1 {
    margin-bottom: 0px;
  }

  .inner_banner_content ul {
    gap: 15px;
  }

  .inner_banner_content ul li {
    font-size: 16px;
  }
}

/* banner Section CSS End */

/* About Section Start */
.rts-blog-area {
  padding: 60px 0;
}

.rts-blog-wrapper {
  padding: 20px;
}

.rts-blog-left-image,
.blog-thumb {
  width: 100%;
  height: 100%;
}

.blog-thumb {
  margin-right: 0;
}

.blog-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

.about_wrapper .rts-blog-wrapper:nth-child(even) .row {
  flex-direction: row-reverse;
}

.rts-blog-wrapper .rts-blog-right-content {
  max-width: unset;
}

.rts-blog-wrapper .rts-blog-right-content p {
  margin-bottom: 10px;
}

.rts-blog-wrapper .rts-blog-right-content p:last-child {
  margin-bottom: 0;
}

.rts-blog-wrapper .rts-blog-right-content .subtitle {
  color: var(--color-primary);
  margin-bottom: 10px;
}

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

@media (max-width: 1199px) {
  .rts-blog-wrapper .rts-blog-right-content .link-btn {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .blog-thumb {
    max-height: 300px;
    margin-bottom: 20px;
  }

  .rts-blog-right-content.ml--20 {
    margin-left: 0;
  }

  .rts-blog-wrapper.mt--40 {
    margin-top: 30px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  address,
  p,
  pre,
  blockquote,
  menu,
  ol,
  ul,
  table,
  hr {
    margin-bottom: 15px;
  }

  .rts-blog-wrapper .rts-blog-right-content .link-btn {
    font-size: 16px;
  }
}

@media (max-width: 767px) {
  .blog-thumb {
    max-height: 250px;
    margin-bottom: 20px;
  }

  .rts-blog-wrapper.mt--40 {
    margin-top: 25px;
  }
}

@media (max-width: 575px) {
  .blog-thumb {
    max-height: unset;
    height: auto;
    margin-bottom: 20px;
  }

  .rts-blog-wrapper.mt--40 {
    margin-top: 20px;
  }

  .rts-blog-wrapper {
    padding: 15px;
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  .h1,
  .h2,
  .h3,
  .h4,
  .h5,
  .h6,
  address,
  p,
  pre,
  blockquote,
  menu,
  ol,
  ul,
  table,
  hr {
    margin-bottom: 10px;
  }

  p {
    margin: 0 0 15px;
    font-size: 14px;
    line-height: 24px;
  }

  .rts-blog-wrapper .rts-blog-right-content .link-btn {
    font-size: 15px;
  }
}

/* About Section End */
/* About Us page css end */

/* Registration Page CSS Start */

/* Registration Section CSS Start */
.registration_banner {
  background-image: url('../images/registration_banner.png');
}

.why-choose-us-three-content-left .why-choose-feature {
  border-bottom: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 30px;
  table-layout: auto;
}

table th:first-child,
table td:first-child {
  width: 60%;
}

table th,
table td {
  padding: 10px 15px;
  text-align: left;
  color: var(--color-title);
  border: 1px solid #ddd;
  font-size: 14px;
  line-height: 1.4;
}

table th {
  background: var(--color-primary);
  color: #fff;
  font-weight: 600;
  text-transform: capitalize;
}

table tr:nth-child(even) {
  background: var(--color-primary-50);
}

table tr:hover {
  background: var(--color-primary-15);
  transition: 0.3s;
}

.table_title {
  background: var(--color-primary-15);
  padding: 10px;
  font-weight: bold;
  border-left: 4px solid var(--color-heading);
  margin-bottom: 10px;
  font-size: 24px;
  color: var(--color-primary);
}

.note {
  font-size: 14px;
  color: #555;
  margin-top: -15px;
  margin-bottom: 20px;
}

.pay_through {
  margin: 0;
  padding: 0;
  list-style: none;
  margin-bottom: 20px;
}

@media (max-width: 1600px) {
  .rts-btn {
    height: 52px;
    padding: 12px 26px;
  }

  .table_title {
    font-size: 23px;
  }
}

@media (max-width: 1199px) {
  .rts-btn {
    height: 50px;
    padding: 11px 24px;
  }

  .table_title {
    font-size: 22px;
  }

  .why-choose-us-three-content-left .why-choose-feature {
    padding-bottom: 35px !important;
  }
}

@media (max-width: 991px) {
  .rts-btn {
    height: 46px;
    padding: 10px 22px;
  }

  .table_title {
    font-size: 21px;
  }

  table {
    margin-bottom: 25px;
  }

  .why-choose-us-three-content-left .why-choose-feature {
    padding-bottom: 30px !important;
  }
}

@media (max-width: 767px) {
  .why-choose-us-three-content-left .why-choose-feature {
    flex-direction: row;
    gap: 15px;
  }

  .rts-btn {
    height: 42px;
    padding: 8px 20px;
  }

  .table_title {
    font-size: 20px;
  }

  .why-choose-us-three-content-left .why-choose-feature {
    padding-bottom: 25px !important;
  }
}

@media (max-width: 575px) {
  .why-choose-us-three-content-left .why-choose-feature {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .rts-btn {
    height: 40px;
    padding: 5px 15px;
    font-size: 14px;
    line-height: 1;
  }

  .table_title {
    font-size: 18px;
    padding: 5px 10px;
    border-width: 2px;
  }

  table {
    margin-bottom: 20px;
  }

  .why-choose-us-three-content-left .why-choose-feature {
    padding-bottom: 20px !important;
  }

  table th:first-child,
  table td:first-child {
    width: 50%;
  }

  .why-choose-us-area .row {
    overflow: scroll;
  }

  table {
    width: 100%;
    padding: 8px 15px;
    overflow-x: auto;
  }

  table th,
  table td {
    padding: 7px 10px;
  }
}

/* Registration Section CSS End */

/* Registration Page CSS Start */

/* Author Guideline Page CSS Start */
/* Banner Section CSS Start */
.a_guideline_banner {
  background-image: url('../images/author_guideline.png');
}

/* Banner Section CSS End */
/* Guideline Section CSS Start */
.education-skill-wrapper .single-skill {
  /* padding: 15px 20px;
  border: 1px solid #F1F1F1;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  background: #fff; */
  padding: 15px 20px;
  border: 1px solid #F1F1F1;
  width: 100%;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  background: #fff;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.education-skill-wrapper .number-area {
  left: -15px;
  top: -15px;
}

.education-skill-wrapper .number-area p {
  margin-left: auto;
  margin-top: auto;
  margin-right: 15px;
  margin-bottom: 10px;
}

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

@media (max-width: 1199px) {
  .education-skill-wrapper .single-skill {
    padding: 13px 18px;
  }

  .mb--40 {
    margin-bottom: 35px;
  }

  .mb--30 {
    margin-bottom: 25px;
  }
}

@media (max-width: 991px) {
  .education-skill-wrapper .single-skill {
    padding: 12px 17px;
  }

  .mb--40 {
    margin-bottom: 30px;
  }
}

@media (max-width: 767px) {
  .education-skill-wrapper .single-skill {
    padding: 10px 15px;
  }

  .mb--40 {
    margin-bottom: 25px;
  }

  .mb--30 {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .education-skill-wrapper .single-skill {
    padding: 8px 12px;
  }

  .mb--40 {
    margin-bottom: 20px;
  }

  .mb--30 {
    margin-bottom: 15px;
  }
}

/* Guideline Section CSS End */
/* Author Guideline Page CSS End */

/* Paper Submission Page Start */
.Paper_sub_banner {
  background-image: url('../images/paper_submission.png');
}

.theme_banner {
  background-image: url('../images/theme_banner.png');
}

.single-blog-card-6.list .inner-content {
  padding: 20px;
}

.single-blog-card-6 .inner-content .disc {
  color: var(--color-title) !important;
}

@media (max-width: 1600px) {
  .single-blog-card-6.list .inner-content {
    padding: 18px;
  }
}

@media (max-width: 1199px) {
  .single-blog-card-6.list .inner-content {
    padding: 16px;
  }
}

@media (max-width: 991px) {
  .single-blog-card-6.list .inner-content {
    padding: 15px;
  }

  .single-blog-card-6 .inner-content p.disc {
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .single-blog-card-6.list .inner-content {
    padding: 13px;
  }
}

@media (max-width: 575px) {
  .single-blog-card-6.list .inner-content {
    padding: 10px;
  }

  .single-blog-card-6 .inner-content p.disc {
    font-size: 14px;
  }
}

/* Paper Submission Page End */

/* Theme Page CSS Start */
.rts-blog-item-wrapper .single-blog-item .blog-content {
  border: 1px solid #E4E7EE;
  border-radius: 10px;
  padding: 25px;
  flex-basis: 100%;
}

.single-blog-item,
.blog-content {
  height: 100%;
}

.theme_icon {
  width: 60px;
  height: 60px;
  background-color: #6a9433;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
  border-radius: 10px;
}

.theme_icon i {
  color: var(--color-white);
  font-size: 30px;
}

.rts-blog-item-wrapper .single-blog-item .blog-meta {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 0;
}

.rts-blog-item-wrapper .single-blog-item .title {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.rts-blog-item-wrapper .single-blog-item .blog-meta span {
  align-items: baseline;
}

.rts-blog-wrapper .rts-blog-left-image .blog-thumb img {
  object-fit: fill;
}

@media (max-width: 1600px) {
  .theme_icon {
    width: 56px;
    height: 56px;
  }

  .rts-blog-item-wrapper .single-blog-item .title {
    font-size: 25px;
  }

  .theme_icon i {
    font-size: 28px;
  }
}

@media (max-width: 1199px) {
  .rts-blog-item-wrapper .single-blog-item .blog-content {
    padding: 20px;
  }

  .theme_icon {
    width: 52px;
    height: 52px;
  }

  .theme_icon i {
    font-size: 26px;
  }

  .rts-blog-item-wrapper .single-blog-item .title {
    font-size: 24px;
  }

  .rts-blog-item-wrapper .single-blog-item .blog-meta span {
    font-size: 17px;
  }
}

@media (max-width: 991px) {
  .theme_icon {
    width: 52px;
    height: 52px;
  }

  .theme_icon i {
    font-size: 26px;
  }

  .rts-blog-item-wrapper .single-blog-item .title {
    font-size: 22px;
  }

  .rts-blog-item-wrapper .single-blog-item .blog-meta span {
    font-size: 16px;
    gap: 8px;
  }

  .rts-blog-item-wrapper .single-blog-item .blog-content {
    padding: 18px;
  }
}

@media (max-width: 767px) {
  .theme_icon {
    width: 48px;
    height: 48px;
  }

  .theme_icon i {
    font-size: 24px;
  }

  .rts-blog-item-wrapper .single-blog-item .title {
    font-size: 21px;
  }

  .rts-blog-item-wrapper .single-blog-item .blog-meta span {
    font-size: 15px;
    gap: 7px;
  }
}

@media (max-width: 575px) {
  .theme_icon {
    width: 44px;
    height: 44px;
  }

  .theme_icon i {
    font-size: 22px;
  }

  .rts-blog-item-wrapper .single-blog-item .title {
    font-size: 20px;
  }

  .rts-blog-item-wrapper .single-blog-item .blog-meta span {
    font-size: 14px;
    gap: 5px;
  }

  .rts-blog-item-wrapper .single-blog-item .blog-content {
    padding: 15px;
  }
}

/* Theme Page CSS End */

/* Coming Soon Page CSS Start */
.coming_soon_banner {
  background-image: url('../images/coming-soon-banner.png');
}

.logo_section {
  margin: 40px 0;
}

.small_logo {
  width: 200px;
  height: 200px;
  margin: 0 auto;
}

.rts-why-choose-area {
  position: relative;
  background-image: url("../images/bgimage.png");
}

.thumbnail-why-choose-8 {
  width: 40%;
}

.thumbnail-why-choose-8 img {
  width: 100%;
  height: auto;
}

@media (max-width: 1199px) {
  .small_logo {
    width: 180px;
    height: 180px;
  }

  .thumbnail-why-choose-8 {
    width: 60%;
  }
}

@media (max-width: 991px) {
  .small_logo {
    width: 170px;
    height: 170px;
  }

  .title-style-one.mb--30 {
    margin-bottom: 25px;
  }
}

@media (max-width: 767px) {
  .thumbnail-why-choose-8 {
    margin-bottom: 30px;
    width: 100%;
  }

  .why-choose-area-right-content-8.pl--50 {
    padding-left: 0;
    text-align: center;
  }

  .logo_section {
    margin: 35px 0;
  }

  .small_logo {
    width: 160px;
    height: 160px;
  }

  .title-style-one.mb--30 {
    margin-bottom: 20px;
  }
}

@media (max-width: 575px) {
  .logo_section {
    margin: 30px 0;
  }

  .small_logo {
    width: 150px;
    height: 150px;
  }

  .title-style-one.mb--30 {
    margin-bottom: 15px;
  }
}

/* Coming Soon Page CSS End */
/* Citation Style And referencing guide page CSS Start */
.cit_sty_ref_gui_guide {
  background-image: url('../images/citation-style-referencing-guide-banner.png');
}

.business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon {
  position: absolute;
  left: -30px;
  top: 30px;
  transform: unset;
  height: 60px;
  width: 60px;
  background-color: var(--color-primary);
  padding: 10px;
}

.business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon img {
  position: static;
  transform: unset;
  filter: brightness(0) invert(1);
}

.featuremain-wrapper {
  box-shadow: 0px 2px 20px rgba(13, 114, 115, 0.1);
  transform-origin: unset;
}

.featuremain-wrapper h5 {
  margin-bottom: 0px;
  color: var(--color-primary);
}

.featuremain-wrapper .disc {
  margin-bottom: 0px;
}

.featuremain-wrapper span {
  display: inline-block;
  background-color: var(--color-primary);
  color: var(--color-white);
  margin: 10px 0;
  padding: 5px 10px;
}

.business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper:hover {
  transform: unset;
}

.business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .multi_author {
  margin-bottom: 10px;
}

@media (max-width: 1600px) {
  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper {
    padding: 30px 60px 30px 45px;
    margin-bottom: 20px;
  }

  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon {
    left: -28px;
    top: 28px;
    height: 56px;
    width: 56px;
  }
}

@media (max-width: 1199px) {
  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper {
    padding: 20px 44px 20px 44px;
  }

  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon {
    left: -22px;
    top: 22px;
    height: 50px;
    width: 50px;
  }
}

@media (max-width: 991px) {
  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper {
    padding: 20px 40px 20px 40px;
  }

  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon {
    left: -20px;
    top: 20px;
    height: 44px;
    width: 44px;
  }

  .featuremain-wrapper span {
    margin: 7px 0;
    padding: 4px 8px;
    font-size: 15px;
  }
}

@media (max-width: 767px) {
  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper {
    padding: 15px 36px 15px 36px;
  }

  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon {
    left: -15px;
    top: 15px;
    height: 40px;
    width: 40px;
  }

  .featuremain-wrapper span {
    margin: 6px 0;
    padding: 3px 7px;
  }
}

@media (max-width: 575px) {
  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper {
    padding: 15px;
    margin-bottom: 10px;
  }

  .business-solution-area-right-content .featuremain-wrapper .single-feature-wrapper .author_icon {
    position: relative;
    left: unset;
    top: unset;
    height: 36px;
    width: 36px;
    margin-bottom: 5px;
    padding: 5px;
  }

  .featuremain-wrapper span {
    margin: 5px 0;
    padding: 2px 6px;
    font-size: 14px;
  }
}

.side-bar {
  padding: 40px 25px;
}

/* Inner Pages CSS End */

/* Google Translate Styling */
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}

body {
  top: 0px !important;
}

#google_translate_element {
  display: inline-block;
  vertical-align: middle;
}

#google_translate_element div {
  display: inline !important;
}

.goog-te-gadget-simple {
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  cursor: pointer !important;
  white-space: nowrap !important;
}

/* Target the specific generated structure */
.goog-te-gadget-simple span {
  display: inline-flex !important;
  align-items: center !important;
}

.goog-te-gadget-simple a.VIpgJd-ZVi9od-xl07Ob-lTBxed {
  display: inline-flex !important;
  align-items: center !important;
  text-decoration: none !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 500 !important;
}

.goog-te-gadget-simple a.VIpgJd-ZVi9od-xl07Ob-lTBxed span {
  color: #fff !important;
  padding-right: 0 !important;
}

/* Hide the vertical separator span */
.goog-te-gadget-simple a.VIpgJd-ZVi9od-xl07Ob-lTBxed span[style*="border-left"] {
  display: none !important;
}

/* Style the arrow specifically */
.goog-te-gadget-simple a.VIpgJd-ZVi9od-xl07Ob-lTBxed span[aria-hidden="true"] {
  display: inline-block !important;
  margin-left: 8px !important;
  color: #fff !important;
  font-size: 10px !important;
  border-left: none !important;
}

/* Clean up extra images and icons */
.goog-te-gadget-simple img,
.goog-te-gadget-icon {
  display: none !important;
}

/* Hide Google branding */
.goog-te-gadget {
  font-size: 0 !important;
  color: transparent !important;
}

/* Organiser Leadership Cards */
.org-leader-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 102, 102, 0.1);
  overflow: hidden;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.org-leader-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 102, 102, 0.12);
}

.org-leader-header {
  background: var(--color-primary);
  padding: 12px;
  text-align: center;
}

.org-leader-title {
  color: #fff;
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.org-leader-body {
  padding: 15px;
  text-align: center;
}

.org-logo-wrap {
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.org-inst-logo {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.org-inst-name {
  font-size: 15px;
  font-weight: 600;
  color: #333;
  margin: 0;
}

.org-photo-wrap {
  width: 140px;
  height: 140px;
  margin: 0 auto 15px;
  border-radius: 50%;
  border: 3px solid var(--color-primary);
  padding: 5px;
  overflow: hidden;
}

.org-person-photo {
  width: 100%;
  height: 100%;
  object-fit: inherit;
  border-radius: 50%;
}

.org-person-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 5px;
}

.org-person-desc {
  font-size: 13px;
  color: #666;
  margin: 0;
}

@media (max-width: 991px) {
  .org-leader-card.no-header {
    border-top: 4px solid var(--color-primary);
  }

  .org-logo-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-around !important;
    width: 100% !important;
    padding: 10px;
  }

  .org-inst-logo-inline {
    max-width: 45%;
    max-height: 80px;
    object-fit: contain;
  }

  .logo-sep {
    width: 1px;
    height: 60px;
    background: rgba(0, 102, 102, 0.1);
  }
}

/* Committee Page CSS Start */
/* Banner CSS Start */
.committee_banner {
  background-image: url('../images/committee-banner.png');
}

/* Banner CSS End */

/* Committee section Start */
.committee_wrapper .single-about-skill-inner {
  margin-bottom: 20px;
}

.committee_wrapper .single-about-skill-inner:last-child {
  margin-bottom: 0;
}

.committee_wrapper .single-about-skill-inner .single-skill {
  padding: 8px 15px;
}

.committee_wrapper .single-about-skill-inner .single-skill p {
  font-size: 15px;
}

.committee_wrapper .single-about-skill-inner .single-skill i {
  color: var(--color-title);
  font-size: 15px;
}

/* Committee section End */
@media (max-width: 991px) {
  .committee_wrapper .single-about-skill-inner .single-skill {
    padding: 8px 12px;
  }

  .committee_wrapper .single-about-skill-inner .single-skill p,
  .committee_wrapper .single-about-skill-inner .single-skill i {
    font-size: 14px;
  }
}

@media (max-width: 575px) {
  .committee_wrapper .single-about-skill-inner .single-skill {
    padding: 6px 10px;
  }

  .committee_wrapper .single-about-skill-inner .single-skill p,
  .committee_wrapper .single-about-skill-inner .single-skill i {
    font-size: 13px;
    line-height: 1.6;
  }
}

/* Committee Page CSS End */

/* Sponsor Page CSS Start */
/* Sponsor Banner CSS */
.sponsor_banner {
  background-image: url('../images/sponsor-banner.png');
}

/* Sponsor Banner CSS */
/* Sponsor Section CSS */

.sponsor_box {
  margin-bottom: 50px;
}

.sponsor {
  border: 1px solid transparent;
  padding: 20px;
  border-radius: 10px;
}

.sponsor.platinum {
  border-color: #E5E4E2;
}

.sponsor.gold {
  border-color: #FFD700;
}

.sponsor.silver {
  border-color: #C0C0C0;
}

.sponsor.bronze {
  border-color: #CD7F32;
}

.sponsor_box .row {
  flex-wrap: wrap;
}

.sponsor_box .row .col-lg-auto {
  width: 20%;
}

.sponsor {
  width: 100%;
  height: 100%;
}

.sponsor a,
.sponsor a img {
  display: block;
  height: 100%;
  width: 100%;
}

.sponsor a img {
  object-fit: contain;
  object-position: center;
  transition: all 0.3s;
}

.sponsor img:hover {
  transform: scale(1.03);
}

@media (max-width: 1600px) {
  .sponsor {
    padding: 18px;
  }
}

@media (max-width: 1199px) {
  .sponsor {
    padding: 16px;
  }

  .sponsor_box .row .col-lg-auto {
    width: 25%;
  }
}

@media (max-width: 991px) {
  .sponsor_box .row .col-lg-auto {
    width: 33.33%;
  }

  .sponsor {
    padding: 14px;
  }
}

@media (max-width: 767px) {
  .sponsor_box .row .col-lg-auto {
    width: 50%;
  }

  .sponsor {
    padding: 12px;
  }
}

@media (max-width: 575px) {
  .sponsor_box .row .col-lg-auto {
    width: 100%;
  }

  .sponsor {
    padding: 10px;
  }
}

/* Partner With Planner2026 */
.bread-td a {
  color: var(--color-primary);
}

.bread-td a:hover {
  text-decoration: underline;
}

.pricing-wrapper-one.home-two {
  border-radius: 16px;
  padding: 30px;
  height: 100%;
}

.pricing-header-start h5 {
  color: var(--color-primary);
}

.pricing-wrapper-one .pricing-body .single-pricing {
  display: flex;
  align-items: baseline;
  margin-bottom: 10px;

}

.pricing-wrapper-one .pricing-body .single-pricing .icon {
  margin-right: 10px;
}

.pricing-wrapper-one .pricing-body .single-pricing .price-details {
  color: var(--color-title);
}

.pricing-wrapper-one .pricing-body {
  padding-top: 20px;
}

@media (max-width: 1600px) {
  .pricing-wrapper-one.home-two {
    padding: 25px;
  }

  .pricing-wrapper-one .pricing-body .single-pricing .price-details {
    font-size: 15px;
  }
}

@media (max-width: 991px) {
  .pricing-wrapper-one.home-two {
    padding: 20px;
  }
}

@media (max-width: 575px) {
  .pricing-wrapper-one.home-two {
    padding: 15px;
  }

  .pricing-wrapper-one .pricing-body .single-pricing .price-details {
    font-size: 14px;
  }
}

/* Partner With Planner2026 */
/* Sponsor Section CSS */
/* Sponsor Page CSS End */