:root {
  --primary: #ec3333;
  --dark: #1b0000;
  --light: #ffffff;
  --gray: #f4f4f4;
  --main-color: #1b0000;
  --secound-color: #992222;

  /* Added from new footer design */
  --btn-icon-bg-color: #191d24;
  --btn-icon-border-color: rgba(255, 255, 255, 0.3);
  --btn-icon-shadow-color: rgba(255, 255, 255, 0.5);
  --btn-social-bg-color: transparent;
  --btn-social-border-color: transparent;
  --footer-border-color: #191d24;
  --link-color: rgba(255, 255, 255, 0.5);
  --link-hover-color: rgba(255, 255, 255, 1);
  --link-active-color: rgba(255, 255, 255, 1);
  --bg-color: #010314;
  --desc-copyright-color: #69758c;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Montserrat', sans-serif;
}



body {
  font-size: 16px;
  color: #222;
  background-color: #fff;
}

header.site-main-header {
  background: var(--dark);
  color: var(--light);
  padding: 0 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 9999;
  left: 0;
  right: 0;
}

body section:first-child {
  margin-top: 55px;
}

.header-cta-button.btn {
  font-weight: 600;
  padding: 8px 12px;
}

header ul li {
  display: inline;
  list-style: none;
}

header nav a {
  color: var(--light);
  margin: 0 15px;
  text-decoration: none;
  font-size: 16px;
}

/* Base nav menu style */
.main-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 25px;
  align-items: center;
}

/* Top-level menu items */
.main-menu>li {
  position: relative;
  transition: all 0.3s ease-in-out;
}

.main-menu>li:hover>a {
  color: var(--primary);
  text-decoration: none;
}

/* Submenu base */
.main-menu li ul {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: #1b0000;
  padding: 10px 0;
  list-style: none;
  display: none;
  z-index: 9999;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

/* Submenu links */
.main-menu li ul li a {
  color: white;
  padding: 10px 20px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
}

.sub-menu-toggle {
  display: none;
  /* Hide the toggle by default */
}

.main-menu li.menu-item-has-children::after {
  content: " ▼";
  /* Add a down arrow for dropdown indication */
  font-size: 0.8em;
  margin-left: 5px;
  color: #fff;
  /* Match the primary color */
  transition: all 0.3s ease-in-out;
}

.main-menu>li:hover>a::after {
  color: var(--primary);
  /* Change color on hover */
}

/* Hover to show submenu */
.main-menu li:hover>ul {
  display: block;
}

/* Submenu hover */
.main-menu li ul li a:hover {
  background: #ec3333;
}

/* Optional: make "Book Tickets" look like a button */
.main-menu li.header-cta-button a {
  background: #ec3333;
  color: white;
  padding: 8px 14px;
  border-radius: 5px;
  font-weight: bold;
}

.advertisement-section {
  padding: 20px;
  background: #ffffff;
}

.advertisement-section a.banner-image {
  display: block;
}

.advertisement-section a.banner-image img {
  width: 100%;
}



.banner {
  height: 80vh;
  display: flex;
  align-items: center;
  color: var(--light);
  justify-content: flex-start;
  position: relative;
  margin-top: 90px;
  padding: 0 200px;
}

.background-video .hero-background {
  object-fit: cover;
  background-size: cover;
  opacity: 1;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0px;
  top: 0px;
  display: block;
  z-index: -1;
}

.banner-content {
  background-color: rgba(27, 0, 0, 0.5);
  padding: 30px;
  border-radius: 12px;
  max-width: 681px;
  backdrop-filter: blur(30px);
  position: relative;
}

.banner-content .hero-buttons {
  display: flex;
  gap: 10px;
}

.banner-content h2 {
  /*   color: white; */
  font-size: 52px;
  position: absolute;
  transform: translate(0, -90%);
  margin: 0;
}

.banner-content .first {
  color: transparent;
  -webkit-text-stroke: 2px #ec3333;
  text-shadow: 0 0 3px #FFF, 0 0 6px #fff, 0 0 6px #ec3333, 0 0 7px #ec3333, 0 0 12px #ec3333, 0 0 14px #ec3333, 0 0 22px #ec3333;
}

.banner-content .second {
  color: #ec3333;
  -webkit-text-stroke: 2px #ec3333;
  animation: waves 4s ease-in-out infinite;
}

@keyframes waves {

  0%,
  100% {
    clip-path: polygon(0% 45%,
        16% 44%,
        33% 50%,
        54% 60%,
        70% 61%,
        84% 59%,
        100% 52%,
        100% 100%,
        0% 100%);
  }

  50% {
    clip-path: polygon(0% 60%,
        15% 65%,
        34% 66%,
        51% 62%,
        67% 50%,
        84% 45%,
        100% 46%,
        100% 100%,
        0% 100%);
  }
}

/* .banner h1 {
  font-size: 3rem;
  opacity: 0;
  color: var(--primary);
} */

.banner h1 {
  font-size: 80px;
  font-weight: 700;
  text-transform: uppercase;
  color: #1b0000;
  text-align: left;
  letter-spacing: 5px;
  text-shadow:
    0 0 5px #ec3333,
    0 0 10px #ec3333,
    0 0 20px #1b0000,
    0 0 40px #1b0000;
  background: linear-gradient(90deg, #ec3333, #ff1e42);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.banner p {
  margin: 15px 0;
  font-size: 24px;
  line-height: 38px;
}


.hero-buttons .intro-btn {
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 12px 20px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  /* Ensures margins work */
  font-size: medium;
}

.btn.round-btn {
  border-radius: 50px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  margin: 0;
}


.stats {
  display: flex;
  justify-content: space-evenly;
  flex-wrap: wrap;
  background: var(--light);
  text-align: center;
  padding: 50px;
  background: #f9f9f9;
}

.stat {
  padding: 20px;
  background: var(--dark);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.stat h2 {
  color: var(--primary);
  font-size: 2rem;
  font-weight: 700;
}

.stat p {
  color: var(--light);
  font-size: 18px;
  font-weight: 600;
}

.about {
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  padding-top: 40px;
  background: #ffffff;
}

.about .text {
  width: 45%;
}

.about .text .link-button {
  display: flex;
  margin-bottom: 20px;
  width: 100%;
  gap: 20px;
}

.about .video {
  width: 40%;
}

.about .video iframe {
  width: 100%;
  height: 100%;
}

.about h2 {
  color: var(--primary);
  margin-bottom: 30px;
  position: relative;
  font-size: xx-large;
}

.about h2::after {
  content: "";
  position: absolute;
  background: var(--dark);
  height: 2px;
  width: 20%;
  left: 0;
  bottom: -15px;
}

h2 span.highlighted-text {
  color: var(--primary);
}

.about p {
  font-size: 18px;
  margin-bottom: 20px;
  line-height: 26px;
}

.about-testimonial {
  align-items: center;
  justify-content: center;
  width: 1300px;
}

.about-testimonial {
  position: relative;

}

.new_about {
  background-color: #fff;
  padding: 40px 0;
  background-position: bottom 30% left;
  background-repeat: no-repeat;
  background-size: 35%;
}

.new_about .about_wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 20px;
  max-width: 1440px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.new_about .section-title {
  text-align: left;
  margin: 0;
  font-size: 18px;
  color: #333;
}

.new_about .about_container {
  width: 40%;
  margin: 0 auto;
}

.new_about .about_container.align-left {
  width: 60%;
}

.new_about .about_container .about-content {
  display: flex;
  flex-direction: column;
}

.new_about .about_container .about-content .main-title h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.new_about .about_container .about-content .description p {
  margin: 0;
  font-size: 18px;
  margin-bottom: 20px;
}


.new_about .image_container {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.new_about .image_container a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.new_about .image_container a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 20px;
  top: 3px;
  border-right: 2px solid;
  border-radius: 200px;
  padding: 0;
}

.new_about .image-wrapper {
  position: relative;
  width: 100%;
  height: 600px;
  border-radius: 200px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.new_about .image-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.35);
  border-radius: 200px;
  z-index: 1;
}

.new_about .image_container img.cover-image {
  width: 80%;
  height: 100%;
  object-fit: contain;
  position: relative;
  z-index: 0;
  margin: 0 auto;
}

.new_about .image_container img.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
}

.new_about .link-button {
  display: flex;
  gap: 20px;
}

.new_about .about-testimonial-new {
  text-align: center;
  margin-top: 30px;
  padding: 20px;
  box-shadow: 0 0 8px 5px rgba(0, 0, 0, 0.1);
  border: #fff;
  border-radius: 20px;
  width: 70%;
  margin: 30px auto 0;
}

.new_about .about-testimonial-new .testimonial-name {
  font-size: 18px;
}

.divider-line {
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  margin: 15px auto;
  border-radius: 3px;
}

.speakers {
  background: var(--light);
  padding: 40px 0;
  text-align: center;
  display: flex;
  align-items: center;
  flex-direction: column;
}

.speakers h2 {
  color: var(--primary);
  margin-bottom: 30px;
  font-size: xx-large;
  font-weight: 600;
}

.speaker-grid {
  display: flex;
  gap: 20px;
  max-width: 1060px;
  padding: 0 20px;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.speaker {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  width: 200px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.speaker img {
  width: 100%;
  padding-bottom: 5px;
  border-radius: 10px;
}

.speaker-button {
  margin-top: 30px;
  border-radius: 50px !important;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  background: var(--primary);
  color: var(--light);
  border: none;
  padding: 12px 20px;
  font-weight: bold;
  cursor: pointer;
  text-transform: uppercase;
  display: inline-block;
  /* Ensures margins work */
  font-size: medium;
}


.speaker_wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 20px 20px 30px;
}

.speaker_container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  padding: 20px;
}

.speaker_container:first-child {
  padding-bottom: 10px;
}

.speaker_container .section_title h2 {
  text-align: center;
  color: var(--primary);
  font-size: 32px;
  font-weight: 700;
}

.speaker_container .speakers_grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 20px;
  align-items: center;
  max-width: 85%;
}

.speaker_container .speakers_grid .speaker_post {
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border-radius: 20px;
}

.speaker_container .speakers_grid .speaker_post img {
  border-radius: 20px;
  width: 100%;
}

.speaker_container .speakers_grid .speaker_post .speaker_image {
  width: 100%;
  /* border-radius: 50%; */
}

.speaker_container .speakers_grid .speaker_post .speaker_info {
  position: absolute;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  bottom: 0;
  padding: 10px 0;
  color: #fff;
  align-items: center;
  background-color: #00000070;
  backdrop-filter: blur(10px);
  border-radius: 0 0 20px 20px;
}

.speaker_container .speakers_grid .speaker_post .speaker_info h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 0;
}

.speaker_container .speakers_grid .speaker_post .speaker_info p {
  font-size: 16px;
  margin-top: 10px;
  text-align: center;
}

.speaker_button a {
  margin-top: 30px;
  border-radius: 50px !important;
  text-decoration: none;
  background: var(--primary);
  color: var(--light);
  padding: 12px 20px;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 16px;
  line-height: 20px;
}


.container {
  width: 80%;
  margin: auto;
}

.feature-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40vh;
  /* Full viewport height */
  background-color: #f9f9f9;
}

.feature-section .grid-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 40px;
  max-width: 1360px;
  padding: 20px;
}

.feature-section .feature-block {
  border: 1px solid #ddd;
  padding: 0 30px;
  text-align: center;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  background-color: #1b0000;
  transition: transform 0.2s ease;
  width: 210px;
  height: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.feature-section .feature-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.feature-section .feature-block img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  margin-bottom: 10px;
}


.feature-section .feature-block p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #ffffff;
}

.testimonial-section {
  padding: 40px 20px;
  background: #f9f9f9;
  position: relative;
  overflow: hidden;
}

.testimonial-section.ticket-testimonial {
  padding: 40px 20px 30px;
}

.testimonial-section .container-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.testimonial-section .testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 40px 30px;
  margin: 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.testimonial-section .testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-section .testimonial-quote-symbol::before {
  content: "❝";
  position: absolute;
  top: -110px;
  left: -30px;
  font-size: 150px;
  color: rgba(236, 51, 51, 0.08);
  z-index: 1;
}

.testimonial-section .testimonial-content {
  position: relative;
  z-index: 1;
}

.testimonial-section .testimonial-text {
  font-size: 18px;
  line-height: 1.7;
  color: #444;
  margin-bottom: 25px;
  font-style: italic;
}

.testimonial-section .testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.testimonial-section .testimonial-user-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #ec3333;
}

.testimonial-section .testimonial-user-name {
  font-size: 18px;
  font-weight: 700;
  color: #1b0000;
  margin: 0;
}

.testimonial-section .testimonial-user-title {
  font-size: 14px;
  color: #666;
  margin: 3px 0 0;
}

.slick-prev,
.slick-next {
  color: #8d0202 !important;
  font-size: 2rem;
  z-index: 1;
  transition: all 0.3s ease;
  background: transparent !important;
}

.slick-arrow::before,
.slick-arrow::after {
  content: none !important;
}

.slick-prev:hover,
.slick-next:hover {
  color: #8d0202 !important;
}


/* endtestimonails */
@keyframes slides {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-100%);
  }
}

.parent-container {
  display: flex;
  justify-content: center;
  /* centers horizontally */
  align-items: center;
  /* centers vertically */
  padding-top: 40px;
  padding-bottom: 40px;


}

.Clogo {
  height: 80px;
}

.partnership {
  font-size: 32px;
  /* big font size */
  color: red;
  /* red color */
  text-align: center;
  /* center horizontally */
  background: white;
  /* optional spacing above and below */

}

.partnership h2 {
  padding-top: 40px;
}

.partnership .logo_client {
  font-size: 32px;
  /* big font size */
  color: red;
  /* red color */
  text-align: center;
  /* center horizontally */
  margin: 20px 0;
  /* optional spacing above and below */

}

.partnership .logo_items {
  display: inline-block;
  animation: 35s slides infinite linear;
  white-space: nowrap;
}

.partnership .logo_items img {
  height: 100px;
  display: inline-block;
  /* Key fix */
  margin: 0 30px;
  /* Optional spacing between logos */
  vertical-align: middle;
  /* Align logos properly */
}

.logos {
  overflow: hidden;
  padding: 30px 0px;
  white-space: nowrap;
  position: relative;
  padding-bottom: 40px;
}

.logos:before,
.logos:after {
  position: absolute;
  top: 0;
  content: '';
  width: 250px;
  height: 100%;
  z-index: 2;
}

.logos:before {
  left: 0;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logos:after {
  right: 0;
  background: linear-gradient(to right, rgba(255, 255, 255, 0), rgb(255, 255, 255));
}

.logo_items {
  display: inline-block;
  animation: 40s slides infinite linear;
}

.logos:hover .logo_items {
  animation-play-state: paused;
}

.logo_items img {
  height: 100px;
}

/*cta section */

.newsletter {
  background: linear-gradient(135deg, #f9f9f9, #ffffff);
  padding: 40px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.newsletter .newsletter-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
  gap: 30px;
  flex-direction: column;
}

.newsletter .newsletter-info {
  flex: 1;
  color: #000;
}

.newsletter .newsletter-illustration {
  max-width: 300px;
  margin-bottom: 25px;
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }

  100% {
    transform: translateY(0);
  }
}

.newsletter .newsletter-info .cta_title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  color: #000;
}

.newsletter .newsletter-info .cta_sub_title {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.9);
  line-height: 1.6;
}

/* Right Form */
.newsletter .newsletter-form {
  width: 100%;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.newsletter .newsletter-form .cf7-form-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.newsletter .newsletter-form .cf7-form-wrapper .cf7-half {
  width: 49%;
}

.newsletter .newsletter-form .cf7-form-wrapper .cf7-full {
  width: 100%;
}

/* Form Elements */
.newsletter .newsletter-form input,
.newsletter .newsletter-form select,
.newsletter .newsletter-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.search-no-results .search-form input[type="search"] {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.newsletter .newsletter-form input:focus,
.newsletter .newsletter-form select:focus,
.newsletter .newsletter-form textarea:focus,
.search-no-results .search-form input[type="search"]:focus {
  border-color: #e63232;
  box-shadow: 0 0 0 3px rgba(230, 50, 50, 0.2);
  outline: none;
}

.newsletter .newsletter-form input[type="submit"],
.newsletter .newsletter-form button,
.search-no-results .search-form input[type="submit"] {
  background: linear-gradient(135deg, #e63232, #ff6a6a);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 30px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease, box-shadow 0.3s ease;
}

.newsletter .newsletter-form input[type="submit"]:hover,
.newsletter .newsletter-form button:hover,
.search-no-results .search-form input[type="submit"]:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(230, 50, 50, 0.4);
}

.newsletter .newsletter-form textarea {
  height: 150px;
}

.newsletter .newsletter-form .wpcf7-submit {
  margin: 0 !important;
}

.newsletter .newsletter-form .wpcf7-spinner {
  display: none;
}

.advertisement-section {
  padding: 20px;
}

.advertisement-section a.banner-image {
  display: block;
}

.advertisement-section a.banner-image img {
  width: 100%;
}

.bg-grey {
  background-color: #f9f9f9 !important;
  padding: 30px 0 !important;
}

/****************************************************** About Page ******************************************************/

/* ABOUT PAGE */

.about-hero {
  background-size: cover;
  background-position: center;
  height: 30vh;
  position: relative;
  margin-top: 90px;
}

.about-hero .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.about-hero .hero-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: white;
}

.about-hero .hero-container {
  text-align: center;
}

.about-hero h2 {
  font-size: 3rem;
  margin: 0;
  padding: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.about-hero .down-arrow {
  position: absolute;
  bottom: 5vh;
  /* Positions arrow near bottom responsively */
  left: 50%;
  transform: translateX(-50%);
  /* Centers horizontally */
  width: 0;
  height: 30px;
  border: 2px solid transparent;
  border-radius: 2px;
  animation: jumpInfinite 1.5s infinite;
  cursor: pointer;
}

.about-hero .down-arrow::after {
  content: "";
  position: absolute;
  top: 12px;
  left: -9px;
  width: 18px;
  height: 18px;
  border-bottom: 4px solid rgb(255, 255, 255);
  border-right: 4px solid rgb(255, 255, 255);
  border-radius: 4px;
  transform: rotate(45deg);
}

.about-hero .buttons {
  margin-top: 30px;
}

@keyframes jumpInfinite {
  0% {
    transform: translate(-50%, 0);
  }

  50% {
    transform: translate(-50%, 20px);
  }

  100% {
    transform: translate(-50%, 0);
  }
}

.about-stats .stats-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.about-stats .stat-2 {
  padding: 20px;
  background: var(--dark);
  border-radius: 4%;
  width: 200px;
  height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}

.about-stats .stat-2 {
  flex: 1 1 150px;
  text-align: center;
  min-width: 120px;
}

.about-stats .stat-2 .icon {
  margin-bottom: 0.5rem;
  color: #ffffff;
  transition: transform 0.3s ease;
}

.about-stats .stat-2:hover .icon {
  transform: scale(1.1);
}

.about-stats .odometer {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 0.3rem;
  color: aliceblue;
}

.about-stats .type {
  font-size: 0.95rem;
  color: #ffffff;
}

.about-intro {
  background-color: #f9f9f9;
  padding: 50px 0;
}

.about-intro .intro-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1440px;
  margin: 0 auto;
}

.about-intro .intro-container {
  width: 100%;
  box-sizing: border-box;
}

.intro-btn {
  background-color: #ec3333;
  color: #fff;
  text-decoration: none;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 6px;
  transition: background-color 0.3s ease;
  margin-top: 20px;
}


.intro-btn:hover {
  background-color: #a81f1f;
}

.section-title {
  text-align: center;
  font-size: 38px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ec3333;
}

.about-intro .intro-description {
  text-align: center;
  font-size: 18px;
  line-height: 1.6;
}

.about-intro .point-main-title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
}

.accordion .point-title {
  font-size: 20px;
  font-weight: 500;
  padding: 10px;
  cursor: pointer;
  color: #ec3333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion .point-title::after {
  content: "";
  display: inline-block;
  margin-left: 10px;
  border: solid transparent;
  border-width: 5px 5px 0;
  border-top-color: #ec3333;
  transform: rotate(0deg);
  transition: transform 0.3s ease;
}

.accordion .point-title.active::after {
  transform: rotate(180deg);
}

.accordion .point-description {
  padding: 20px;
  border-top: 1px solid #ccc;
  font-size: 18px;
  line-height: 1.5;
  display: none;
  background-color: #fff;
}

.about-intro .intro-cta {
  text-align: center;
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about-intro .intro-cta p {
  font-size: 18px;
  line-height: 1.6;
}

.pillars-section {
  padding: 50px 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.pillars-header {
  text-align: center;
  margin-bottom: 40px;
}

.pillars-header h2 {
  font-size: 38px;
  font-weight: 700;
  color: #ec3333;
  margin-bottom: 20px;
}

.pillars-header p {
  color: #630606;
  font-size: 21px;
  font-weight: 300;
  padding-top: 10px;
}

.pillars-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.pillars-card {
  background: #180000;
  color: #ffffff;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  opacity: 1;
  /* remove fade if not needed */
  transform: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillars-card:hover {
  transform: scale(1.05);
}

.pillars-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05), transparent 70%);
  transform: rotate(25deg);
  z-index: 0;
}

.pillars-card-content {
  position: relative;
  z-index: 1;
  padding: 50px 0px 50px 0px;
}

.pillars-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  background: linear-gradient(45deg, #ff6b6b, #4ecdc4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: flex;
  align-items: center;
  justify-content: center;
}


.pillars-card h3 {
  margin-top: 0;
  font-size: 1.6rem;
  color: #ffffff;
  text-align: center;
}

.pillars-card p {
  font-size: 0.95rem;
  color: #cfd8dc;
  line-height: 1.5;
}

.pillars-card-icon img {
  width: 120px;
  height: 100px;
  object-fit: contain;
  display: block;
  margin: 0 auto;

}

.founder-section {
  padding: 30px 20px 60px;
  background-color: #f9f9f9;
  background-size: 10%;
  background-position: bottom right;
  text-align: center;
  background-repeat: no-repeat;
}

.founder-section .founder-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.founder-section .section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  text-align: left;
  position: relative;
}

.founder-section .section-content::before {
  content: "";
  position: absolute;
  top: -110px;
  right: -525px;
  width: 100%;
  height: 100%;
  background-image: url(https://digipixeldemo.com/pendulumsummit//wp-content/uploads/2025/07/agency_figure.png);
  background-size: 60%;
  background-position: center;
  z-index: 1;
  rotate: 232deg;
  background-repeat: no-repeat;
}

.founder-section .founder-image {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 40%;
}

.founder-section .founder-image img {
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

.founder-section .founder-info {
  flex: 2;
  padding: 0 40px;
  position: relative;
  background-color: transparent;
}

.founder-section .founder-info p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin: 0 0 20px;
}

.founder-section .founder-info img {
  margin-bottom: 20px;
}

.our-collab {
  padding: 50px 20px;
  background-color: #fff;
}

.our-collab .collab-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.our-collab .collab-container.main-content {
  margin-bottom: 60px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.our-collab .collab-container .section-content {
  width: 65%;
}

.our-collab .collab-container .section-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  max-width: 800px;
  margin: 0 auto;
}

.our-collab .collab-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px;
}

.our-collab .logo {
  border: 1px solid #ccc;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 5px 15px rgba(255, 80, 30, 0.1);
  transition: transform 0.3s ease;
  width: 31%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.our-collab .logo:hover {
  transform: translateY(-5px);
}

.learning_section {
  padding: 40px 20px 60px;
  background-color: #f9f9f9;
}

.learning_section .learning-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.learning_section .section-title {
  margin-bottom: 30px;
}

.learning_section .learning-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.learning_section .learning-container.video-content {
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.learning_section .learning-container.video-content .youtube-video {
  margin-bottom: 20px;
  width: 40%;
}

.learning_section .learning-container.video-content .content {
  width: 58%;
}

.learning_section .learning-container.video-content .content p {
  margin-bottom: 20px;
}

.learning_section .youtube-video iframe {
  width: 100%;
  height: 360px;
  border-radius: 10px;
}

.learning_section .content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
}

.learning_section .description {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  text-align: center;
  margin-top: 20px;
}

.learning_section .description p {
  margin-bottom: 20px;
}

.gallery-section {
  padding: 50px 20px 60px;
  background-color: #fff;
}

.gallery-section .gallery-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.gallery-section .gallery-container {
  text-align: center;
}

.gallery-section .home-link {
  margin-bottom: 30px;
}

.gallery-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: center;
}

.gallery-section .gallery-item img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.gallery-section .gallery-item img:hover {
  transform: scale(1.02);
}


/****************************************************** Speakers Page ******************************************************/

.about-hero.speakers-hero {
  background-size: cover;
  background-position: top;
  height: 30vh;
  position: relative;
}

.speakers-list {
  padding: 40px 20px;
}

.speakers-list .list-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.speakers-list .list-wrapper .section-title {
  margin-top: 10px;
}

.speakers-list .speaker_container {
  padding: 0;
}

.speakers-list .speaker_container .speakers_grid {
  max-width: 100%;
  grid-template-columns: repeat(5, 1fr);
}


.speaker-cta {
  background-color: #f9f9f9;
  padding: 40px 20px;
}

.speakers-cta .cta-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 30px;
}

.speakers-cta .cta-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.speakers-cta .cta-container.youtube-container {
  flex-direction: row;
  justify-content: space-between;
}

.speakers-cta .cta-container.youtube-container .youtube-video {
  width: 49%;
  margin-right: 20px;
}

.speakers-cta .cta-container.youtube-container .youtube-video iframe {
  width: 100%;
}

.speakers-cta .cta-container.youtube-container .cta-content {
  width: 49%;
}

.speakers-cta .cta-container.youtube-container .cta-content p {
  font-size: 18px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.speakers-cta .cta-container.youtube-container .cta-content .form-group p {
  margin: 0;
}

.speakers-cta .cta-container.youtube-container .cta-content .cta-form form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.speakers-cta .cta-container.youtube-container .cta-content .cta-form .form-group {
  width: 49%;
}

.speakers-cta .cta-container.youtube-container .cta-content .cta-form .form-group input {
  width: 100%;
  font-size: 18px;
  padding: 5px 15px;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.speakers-cta .cta-container.youtube-container .cta-content .cta-form .form-group .cta-button {
  display: inline-block;
  padding: 6px 10px;
  background-color: #ec3333;
  color: #fff;
  border-radius: 6px;
  width: auto;
  text-decoration: none;
  font-weight: 400;
  transition: background-color 0.3s ease;
  margin-top: 20px;
  font-size: 18px;
}


/****************************************************** Contact Us Page ******************************************************/

.contact-hero a,
.contact-details .details-wrapper .details-container a {
  color: var(--primary);
}

/* 

.contact-hero p {
  font-size: 18px;
  color: #000;
}

.contact-hero h1 {
  font-size: 3rem;
  color: #000;
  margin: 0;
  padding: 20px 0;
  font-weight: 600;
}

.contact-hero .hero-wrapper {
  flex-direction: row;
  max-width: 1440px;
  margin: 0 auto;
  justify-content: space-evenly;
}

.contact-hero .hero-wrapper .hero-container {
  text-align: left;
}

.contact-hero .hero-wrapper .hero-container .contact-image img {
  border: 4px solid #fff;
  box-shadow: 0 0 10px 3px #fff;
  border-radius: 200px;
} */

/* .contact-hero .overlay {
  background-color: rgba(255, 255, 255, 0.4);
} */

.contact-details .details-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 60px;
}

.contact-details .details-wrapper .details-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}

.contact-details .details-wrapper .details-container .section-title {
  margin-bottom: 10px;
  line-height: 38px;
}

.contact-details .details-wrapper .details-container .social-devider {
  width: 70%;
  height: 3px;
  background-color: #000;
}

.contact-details .details-wrapper .details-container .social-icons {
  display: flex;
  flex-direction: row;
  gap: 10px;
}

.contact-details .details-wrapper .details-container .social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.contact-details .details-wrapper .details-container .social-icons a.facebook-icon {
  background-color: #3b5998;
}

.contact-details .details-wrapper .details-container .social-icons a.twitter-icon {
  background-color: #1da1f2;
}

.contact-details .details-wrapper .details-container .social-icons a.youtube-icon {
  background-color: #cd201f;
}

.contact-details .details-wrapper .details-container .social-icons a.instagram-icon {
  background-color: #262626;
}

.contact-details .details-wrapper .details-container .addresses-details {
  display: flex;
  justify-content: space-around;
  width: 100%;
  padding: 40px;
}

.contact-details .details-wrapper .details-container .addresses-details .address {
  text-align: center;
  padding: 20px;
  color: #fff;
  background: #0c0c0c;
  width: 270px;
  height: 270px;
  display: flex;
  flex-direction: column;
  border-radius: 20px;
  justify-content: center;
  align-items: center;
}

.contact-details .details-wrapper .details-container .addresses-details .address a {
  color: #fff;
}

.contact-details .details-wrapper .details-container.addresses {
  flex-direction: column;
}

.contact-details .details-wrapper .details-container .addresses-details .address .icon i {
  font-size: 60px;
}

.contact-details .details-wrapper .details-container.addresses p {
  font-size: 22px;
}

.contact-details .details-wrapper .details-container .addresses-details .address h4 {
  font-size: 28px;
  font-weight: 600;
  margin-top: 10px;
}

.contact-details .details-wrapper .details-container .addresses-details .address h4 span {
  font-size: 18px;
  font-weight: 400;
}

/****************************************************** Comman Page ******************************************************/

.page-content .content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0;
}

.page-content .content-wrapper .contant-container {
  font-size: 18px;
}

.page-content .content-wrapper p {
  margin-bottom: 20px;
}


.page-content .content-wrapper a {
  color: var(--primary);
}


.page-content .content-wrapper ul {
  list-style-type: disc;
  margin: 15px 0 15px 25px;
}

/****************************************************** PartnerShip Page ******************************************************/

.founder-section.partner-oppertunities .section-content::before {
  top: -240px;
}

.gallery-section.attended-company {
  margin: 50px 0;
  padding-bottom: 0;
  padding-top: 0;
}

.gallery-section.prev-partner .gallery-item a,
.gallery-section.attended-company .gallery-item a {
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-section.prev-partner {
  padding-top: 50px;
}

.gallery-section.prev-partner .gallery-grid,
.gallery-section.attended-company .gallery-grid {
  grid-template-columns: repeat(5, 1fr);
  margin-top: 30px;
}

.gallery-section.prev-partner .gallery-item img,
.gallery-section.attended-company .gallery-item img {
  height: auto;
  width: auto;
}


#partner-testimonial .testimonial-wrapper {
  max-width: 1200px;
  margin: 20px auto;
  padding: 20px;
  border-radius: 30px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 10px 5px #ccc;
  background-color: #fff;
  gap: 20px;
}

#partner-testimonial .testimonial-wrapper .testimonial-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
}

#partner-testimonial .testimonial-wrapper .testimonial-container .user-image {
  width: 5%;
}

#partner-testimonial .testimonial-wrapper .testimonial-container .user-name h3 {
  font-size: 28px;
  font-weight: 600;
}

#partner-testimonial .testimonial-wrapper .testimonial-container .user-name p {
  font-size: 18px;
}

#partner-testimonial .testimonial-wrapper .testimonial-container .content {
  font-weight: 600;
}

.partnership-sec.home-partnership {
  padding: 80px 20px;
  background: #fff;
}

.partnership-sec.home-partnership.partner-page {
  padding: 40px 20px;
}

.partnership-sec.home-partnership .details-wrapper {
  max-width: 1510px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 30px;
  align-items: center;
}

/* Main Partner */
.partnership-sec.home-partnership .main-partner-box {
  background: #ff1616b0;
  padding: 40px;
  display: flex;
  border-radius: 20px;
  color: #fff;
  flex-direction: column;
  align-items: center;
}

.partnership-sec.home-partnership .main-partner-box h2 {
  font-size: 34px;
  margin-bottom: 20px;
}

.partnership-sec.home-partnership .main-logo img {
  max-width: 180px;
}

/* Event Partners */
.partnership-sec.home-partnership .event-partner-box h2 {
  font-size: 22px;
  margin-bottom: 30px;
  position: relative;
  font-weight: bold;
}

.partnership-sec.home-partnership .event-partner-box h2::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #e63232;
  position: absolute;
  left: 0;
  bottom: -10px;
  border-radius: 2px;
}

.partnership-sec.home-partnership .partner-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 25px;
}

.partnership-sec.home-partnership.partner-page .partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 25px;
}

.partnership-sec.home-partnership .partner-card {
  background: #fff;
  border-radius: 15px;
  padding: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.partnership-sec.home-partnership .partner-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 6px 20px rgba(230, 50, 50, 0.25);
}

.partnership-sec.home-partnership .partner-card img {
  border-radius: 15px;
}

#partnerss .partnerss-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 30px;
  justify-content: space-between;
  align-items: center;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info .partner-info-box {
  width: 48%;
  display: flex;
  flex-direction: row;
  box-shadow: 0 0 10px 3px #cdcdcd;
  border-radius: 30px;
  align-items: center;
  min-height: 337px;
  position: relative;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info .partner-info-box .image {
  width: 30%;
  display: flex;
  justify-content: center;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info .partner-info-box .image img {
  width: 60%;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info .partner-info-box .content {
  text-align: left;
  padding: 20px;
  background-color: #1B0000;
  color: #fff;
  border-radius: 0 30px 30px 0;
  width: 70%;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: absolute;
  right: 0;
  justify-content: center;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info .partner-info-box .content h3 {
  font-size: 28px;
  font-weight: 600;
  color: #BC2526;
  margin-bottom: 10px;
}

#partnerss .partnerss-wrapper .partnerss-container .partners-info .partner-info-box .content p {
  font-size: 18px;
  margin-bottom: 5px;
}

/****************************************************** Blog Post Page ******************************************************/


.new_blog {
  padding: 60px 20px;
  background: #f7f7f7;
  font-family: 'Segoe UI', sans-serif;
}

.blog_wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.blogs_grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
}

.blog_post {
  overflow: hidden;
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog_post:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.blog_image {
  position: relative;
  overflow: hidden;
  height: 200px;
}

.blog_image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.blog_post:hover .blog_image img {
  transform: scale(1.1);
}

.blog_info {
  padding: 20px;
}

.blog_date {
  font-size: 14px;
  color: #ec3333;
  margin-bottom: 10px;
  opacity: 0.8;
}

.blog_info h2 {
  font-size: 20px;
  margin: 0;
  color: #1b0000;
  line-height: 1.4;
  transition: color 0.3s ease;
}

.blog_post:hover .blog_info h2 {
  color: #ec3333;
}

.blog_info a {
  text-decoration: none;
}

/****************************************************** Single Post Page ******************************************************/

.about-hero.single-blog {
  height: 20vh;
}

.about-hero.single-blog .overlay {
  background-color: rgba(236, 51, 51, 0.7);
}

.single-post .founder-section .section-content::before {
  content: none;
}

.single-content .content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0;
}

.single-content .content-wrapper .contant-container {
  font-size: 18px;
}

.single-content .content-wrapper p {
  font-size: 18px;
  margin-bottom: 20px;
}


.single-content .content-wrapper a {
  color: var(--primary);
  font-size: 18px;
}


ul {
  list-style-type: disc !important;
  font-size: 18px !important;
  margin: 15px 0 15px 25px !important;
}

ol {
  list-style: auto !important;
  padding-left: 25px !important;
}

header ul {
  margin: 0 !important;
}

.single-content .content-wrapper h3 {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 10px;
}


.upcoming-event {
  background: linear-gradient(135deg, #fff 0%, #fbeaea 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.upcoming-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  max-width: 1300px;
  margin: 0 auto;
  align-items: center;
}

.upcoming-container {
  flex: 1 1 500px;
  min-width: 300px;
}

.upcoming-event .image-sec img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}

.upcoming-event .section-title {
  text-align: left;
}

.upcoming-event .section-content {
  font-size: 18px;
  color: #333;
}

.upcoming-event .section-content p {
  margin-bottom: 20px;
}

.upcoming-event .section-content strong {
  color: #000;
  font-weight: 600;
}

.upcoming-event .section-content a {
  color: #ec3333;
  text-decoration: underline;
  transition: color 0.3s;
}

.upcoming-event .section-content a:hover {
  color: #1b0000;
}

.single-post .blog_link {
  font-size: 14px;
  color: #ec3333;
  opacity: 0.8;
}

.single-post .founder-section {
  padding: 60px 20px;
}


/****************************************************** Workshop Page ******************************************************/

.workshops-content {
  position: relative;
  background-color: #c12828;
  overflow: hidden;
  padding: 80px 0;
  color: #fff;
  z-index: 0;
}

.workshops-content .workshop-wrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.workshops-content .workshop-container {
  flex: 1 1 48%;
  padding: 20px;
  position: relative;
  z-index: 3;
}

.workshops-content .section-title h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #fff;
  text-align: left;
  position: relative;
  z-index: 3;
}

.workshops-content .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin-top: 10px;
}

.workshops-content .section-content {
  font-size: 18px;
  position: relative;
  z-index: 3;
}

.workshops-content .section-content p {
  margin-bottom: 20px;
}

.workshops-content .section-content a {
  color: #fff;
  text-decoration: underline;
}

.workshops-content .workshop-image {
  position: relative;
  z-index: 4;
}

.workshops-content .workshop-image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.workshops-content::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 60%;
  height: 100%;
  background-color: #fff;
  clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 10% 100%);
  z-index: 1;
}

.bespoke-workshops {
  padding: 50px 0;
  position: relative;
}

.bespoke-workshops .workshop-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.bespoke-workshops .workshop-wrapper .workshop-container {
  font-size: 16px;
}

.bespoke-workshops .workshop-wrapper .workshop-container h3 {
  font-size: 30px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bespoke-workshops .workshop-wrapper .workshop-container h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
}

.bespoke-workshops .workshop-wrapper .workshop-container p {
  margin-bottom: 20px;
  line-height: 2;
}

.workshop-gallery {
  padding: 50px 0;
}

.forwho-section {
  background-color: #ffffff;
  padding: 30px 20px 50px;
  color: #000;
  text-align: center;
  font-size: 16px;
  position: relative;
}

.forwho-section .section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.content-boxes {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.content-box {
  background: #1B0000;
  border: 1px solid #ececec;
  border-radius: 20px;
  padding: 30px 20px;
  width: 100%;
  max-width: 440px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-box .image {
  margin-bottom: 20px;
}

.content-box .image img {
  width: 150px;
  height: auto;
  display: inline-block;
}

.title-content h3 {
  color: #ec3333;
  font-size: 24px;
  margin-bottom: 15px;
  font-weight: 600;
}

.title-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
}

.workshop-video {
  padding: 0 0 50px;
}

.workshop-video .video-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.workshop-video .video-wrapper .video-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 80vh;
}

.welcom-section {
  padding: 50px 20px;
  background: #fff;
}

.welcom-section .welcome-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.welcom-section .welcom-container .sub-text h4 {
  font-size: 20px;
  text-align: center;
  color: #444;
  font-weight: 500;
}

.welcom-section .welcom-container:nth-child(2) {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  justify-content: space-between;
}

.welcom-section .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  width: 500px;
}

.welcom-section .content {
  flex: 1;
  min-width: 300px;
}

.welcom-section .content p {
  margin-bottom: 20px;
  line-height: 1.7;
  color: #333;
}

.welcom-section .welcom-container:nth-child(3) {
  text-align: center;
}

.welcom-section .cta-text h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #000;
}

.welcom-section .cta-button {
  margin-top: 50px;
}

.welcom-section .content ul {
  list-style: none !important;
  padding: 0;
  margin: 0 !important;
}

.welcom-section .content ul li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 28px;
  font-size: 16px;
}

.welcom-section .content ul i {
  position: absolute;
  left: 0;
  top: 2px;
  color: #c12828;
  /* Pendulum red or any color you prefer */
  font-size: 18px;
}

.develop-skills {
  background: #fff;
  padding: 80px 20px;
}

.develop-skills .skills-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.develop-skills .skill-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.develop-skills .masonary-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  width: 100%;
}

.develop-skills .image {
  overflow: hidden;
  border-radius: 12px;
  background-color: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 0 0 transparent;
}

.develop-skills .image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  transition: transform 0.3s ease;
}

.develop-skills .image:hover img {
  transform: scale(1.05);
}

.fetured-section {
  padding: 80px 20px;
  background: #fff;
  text-align: center;
}

.fetured-section .fetured-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}


.fetured-section .fetured-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.fetured-section .content-box {
  background: #fff;
  border: 1px solid #eee;
  padding: 30px 20px;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.fetured-section .content-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

.fetured-section .content-box .image img {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.fetured-section .content-box:hover .image img {
  transform: scale(1.1);
}

.fetured-section .title h4 {
  font-size: 16px;
  font-weight: 500;
  color: #000;
  margin: 0;
}

/****************************************************** Single Speakers Page ******************************************************/

.speaker-content {
  background: linear-gradient(360deg, #f9f9f9 0%, #ffffff 100%);
  padding: 100px 20px;
  position: relative;
}

.speaker-content .content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.speaker-content .content-container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 40px;
}

.speaker-content .fetured-image {
  flex: 1 1 300px;
  max-width: 350px;
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-20px);
  transition: transform 0.3s ease;
}

.speaker-content .fetured-image:hover {
  transform: translateY(-10px);
}

.speaker-content .fetured-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.speaker-content .content {
  flex: 2 1 600px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.speaker-content .content h2 {
  font-size: 36px;
  color: #c12828;
  margin-bottom: 20px;
  font-weight: bold;
}

.speaker-content .content p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 20px;
  color: #333;
}

.speaker-content .content ul {
  margin-top: 20px;
  list-style-type: disc;
  padding-left: 20px;
}

.speaker-content .content ul li {
  margin-bottom: 12px;
  line-height: 1.6;
}

.speaker-content .buy-button {
  text-align: center;
  margin-top: 50px;
}

.single-speaker .speakers-list {
  background: radial-gradient(circle at bottom, #ffe6e6, #ffffff);
}

.single-speaker .new-speaker-section {
  background: radial-gradient(circle at top, #ffe6e6, #ffffff);
  padding: 100px 20px;
  overflow: hidden;
}

.single-speaker .new-speaker-section .speaker-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  text-align: center;
}

.single-speaker .new-speaker-section .speaker-top {
  position: relative;
  margin-bottom: 60px;
}

.single-speaker .new-speaker-section .speaker-image {
  display: inline-block;
  width: 200px;
  height: 200px;
  padding: 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, #c12828, #e26d6d);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.single-speaker .new-speaker-section .speaker-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  border: 4px solid #fff;
}

.single-speaker .new-speaker-section .speaker-bottom {
  background: #fff;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.single-speaker .new-speaker-section .speaker-description h2 {
  font-size: 32px;
  color: #c12828;
  margin-bottom: 20px;
  font-weight: 700;
}

.single-speaker .new-speaker-section .speaker-description {
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

.single-speaker .new-speaker-section .speaker-description ul {
  text-align: left;
  margin-top: 30px;
  padding-left: 20px;
}

.single-speaker .new-speaker-section .speaker-description ul li {
  margin-bottom: 12px;
}

.single-speaker .new-speaker-section .speaker-cta {
  margin-top: 40px;
  padding: 0;
  background: none;
}

.single-speaker .new-speaker-section .speaker-content {
  padding: 0;
  background: none;
}

.single-speaker .new-speaker-section .intro-btn {
  display: inline-block;
  background-color: #c12828;
  color: #fff;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.single-speaker .new-speaker-section .intro-btn:hover {
  background-color: #a51f1f;
  transform: translateY(-2px);
}


/****************************************************** 2025 Agenda Page ******************************************************/

.new-agenda {
  padding: 40px 0 50px;
  background-color: #f9f9f9;
}

.new-agenda .agenda-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.new-agenda .agenda-wrapper .agenda-container {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  position: relative;
}

.new-agenda .agenda-wrapper .agenda-container .image {
  width: 50%;
  position: sticky;
  top: 100px;
}

.new-agenda .agenda-wrapper .agenda-container .image img {
  width: 100%;
  border-radius: 10px;
}

.new-agenda .agenda-wrapper .agenda-container .accordion {
  width: 50%;
}

.schedule-page .content-container {
  padding: 20px 30px 1px;
  box-shadow: 0 0 10px 3px #00000042;
  border-radius: 30px;
  background-color: #1b0000;
  color: #fff;
}

.new-agenda .agenda-container .accordion .point-description p {
  font-size: 16px;
}

.new-agenda .agenda-container .accordion .point-description h4 {
  font-weight: 600;
  font-size: 20px;
  margin-bottom: 15px;
}

/****************************************************** Event Information Page ******************************************************/

.founder-section.event-info-content .section-content::before {
  content: none;
}

.founder-section.event-info-content .founder-info img {
  margin-bottom: 5px;
}

.founder-section.event-info-content {
  padding: 60px 20px 60px;
}

.founder-section.event-info-content .founder-image {
  width: 50%;
}

.partnership-sec.event-info {
  background-color: #fff;
  margin-bottom: 0;
}

.schedule-section {
  padding: 30px 0 50px;
  background-color: #f9f9f9;
}

.schedule-section .shedule-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.schedule-section .shedule-wrapper .shedule-container {
  display: flex;
  justify-content: center;
}

.schedule-section .shedule-wrapper .shedule-container img {
  border-radius: 10px;
  width: 70%;
  box-shadow: 0 0 10px 5px #00000045;
}

.our_speakers {
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #1b0000, #ec3333);
}

.our_speakers .speaker-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.our_speakers .section-title h2 {
  text-align: center;
  font-size: 40px;
  color: #fff;
  margin-bottom: 50px;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.our_speakers .speakers {
  display: grid;
  background-color: #ffffff00;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  justify-items: center;
  padding: 0;
}

.our_speakers .speaker-info {
  width: 100%;
  perspective: 1000px;
  position: relative;
  height: 264px;
}

.our_speakers .flipbox-front-container,
.our_speakers .flipbox-back-container {
  width: 100%;
  height: 100%;
  position: absolute;
  border-radius: 15px;
  overflow: hidden;
  backface-visibility: hidden;
  transition: transform 0.6s ease;
}

.our_speakers .flipbox-front-container {
  background: #fff;
  color: #000;
  transform: rotateY(0deg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.our_speakers .flipbox-front-container img {
  width: 100%;
  height: 88%;
  object-fit: cover;
  border-bottom: 2px solid #eee;
}

.our_speakers .speaker-name {
  font-size: 16px;
  font-weight: 600;
  padding: 10px;
  text-align: center;
  background-color: #fff;
  width: 100%;
}

.our_speakers .flipbox-back-container {
  background-color: #ec3333;
  transform: rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.our_speakers .flipbox-back-container img {
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
}

.our_speakers .speaker-info:hover .flipbox-front-container {
  transform: rotateY(180deg);
}

.our_speakers .speaker-info:hover .flipbox-back-container {
  transform: rotateY(360deg);
}

.tab-buttons {
  list-style: none;
  display: flex;
  flex-wrap: nowrap;
  padding: 0;
  margin: 0 !important;
  border-bottom: 2px solid #f2707047;
  justify-content: space-between;
  gap: 5px;
}

.tab-buttons li {
  text-align: center;
  padding: 10px 15px;
  width: 100%;
  cursor: pointer;
  border: 1px solid #ccc;
  border-bottom: none;
  background: #fff;
  border-radius: 5px 5px 0 0;
  color: #000;
  font-weight: bold;
  list-style: none !important;
  margin: 0 !important;
}

.tab-buttons li.active {
  background: #ec3333;
  color: #fff;
  border-color: #ec3333;
}

.tab-content {
  display: none;
  padding: 15px;
  border: 1px solid #ccc;
  background: #f2707047;
  border-top: 0;
  color: #000;
  font-size: 16px;
  border-radius: 0 0 5px 5px;
}

.tab-content-section .tab-content .d-flex {
  display: flex;
}

.tab-content-section .tab-content ul {
  width: 100%;
}

.tab-content.active {
  display: block;
}

.partnership-sec.exhibitors-section .addresses-details {
  flex-wrap: wrap;
}

.partnership-sec.exhibitors-section .address {
  width: 16%;
}

/* .tab-content-section {
  margin: 50px 0;
} */

.tab-content-section .content-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.stats.event-info {
  background: #fff;
}

.videos-section {
  background: #F9F9F9;
  /* subtle red-black gradient */
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.video-wrapper {
  max-width: 1440px;
  width: 100%;
  display: grid;
}

.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 20px;
}

.video iframe,
.voice-recorder iframe {
  width: 100%;
  height: 200px;
  border: none;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.video iframe:hover,
.voice-recorder iframe:hover {
  transform: scale(1.02);
}

.voice-recorder {
  margin-top: 20px;
}

.founder-section.cpd-section {
  background-color: #fff;
}

.gallery-section.ceo-dinner-section {
  background-color: #f9f9f9;
}

.gallery-section.ceo-dinner-section .gallery-item {
  margin: 0 10px;
}

.gallery-section.ceo-dinner-section .gallery-item img {
  height: 300px;
}

.gallery-section.after-dark-section .gallery-item,
.gallery-section.testimonial-section .gallery-item {
  margin: 0 10px;
}

.gallery-section.after-dark-section .gallery-item img {
  height: 300px;
}

.gallery-section.testimonial-section .gallery-item img {
  height: 300px;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-content ul li::before {
  content: "";
  position: absolute;
  width: 25px;
  height: 25px;
  left: -35px;
  top: -2px;
  background-image: url(http://192.168.0.107/pendulumsummit/wp-content/uploads/2025/08/svgviewer-png-output-14.png);
  background-size: 80%;
  background-repeat: no-repeat;
  background-position: center;
}

.new_blog.event-info {
  background-color: #fff;
  padding: 30px 20px 40px;
}

.new_blog.event-info .section-title {
  margin-bottom: 30px;
}

.gallery-section.ceo-dinner-section .gallery-wrapper {
  display: flex;
  gap: 50px;
  flex-direction: column;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content {
  font-size: 16px;
  color: #000;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  margin: 25px 0 20px;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-content {
  display: flex;
  text-align: left;
  gap: 50px;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-content div {
  width: 50%;
  margin: 0px !important;
  padding: 30px;
  border-radius: 30px;
  box-shadow: 0 0 10px 3px #0000003b;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-content ul {
  list-style: none !important;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-content ul li {
  margin: 7px 0;
  font-size: 16px;
  position: relative;
  line-height: 22px;
}

.gallery-section.ceo-dinner-section .gallery-container .section-content .sub-content ul li strong {
  font-weight: 600;
}

.gallery-section.after-dark-section .gallery-wrapper {
  display: flex;
  gap: 50px;
  flex-direction: column;
}

.after-dark-section .section-content ul {
  list-style: none !important;
  padding: 20px;
  width: 100%;
  margin: 0 0 20px !important;
  border-radius: 50px;
  background-color: #1B0000;
}

.after-dark-section .section-content ul li {
  display: inline;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  padding: 0 30px;
}

.after-dark-section .section-content ul li:not(:last-child) {
  border-right: 1px solid #fff;
}

.about-hero.accommodation_partner {
  height: auto;
  padding: 60px;
  background-attachment: fixed;
}

.about-hero.accommodation_partner .overlay {
  background-color: rgba(0, 0, 0, 0.75);
}

.about-hero.accommodation_partner .hero-container ul {
  text-align: left;
}

.accommodation_partner .hero-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.accommodation_partner .hero-wrapper h2 {
  padding-top: 0;
}

.accommodation_partner .hero-wrapper .hero-container p {
  margin: 0 auto 20px;
  max-width: 1100px;

}

.about-intro.event-info .intro-container {
  display: flex;
  justify-content: center;
}

.about-intro.event-info .intro-container .intro-points {
  width: 50%;
  padding-top: 20px;
  padding-bottom: 20px;
  box-shadow: none;
  border-radius: 0;
}

.about-intro.event-info .intro-container .intro-points.left {
  padding-right: 25px;
}

.about-intro.event-info .intro-container .intro-points.right {
  padding-left: 25px;
  border-left: 1px solid;
}

.about-intro.event-info .accordion .point-title {
  padding: 10px 20px;
  background-color: #B00000;
  color: #fff;
}

.about-intro.event-info .accordion .point-title::after {
  border-top-color: #fff;
}


/* Section background */
.event-overview-section {
  background: #f9f9f9;
  padding: 40px 20px 50px;
  display: flex;
  justify-content: center;
  align-items: center;
}



/* Container */
.event-overview-section .container {
  max-width: 800px;
  width: 100%;
  text-align: center;
}

/* Title */
/* Title */
.event-overview-section .section-title {
  font-size: 36px;
  font-weight: 700;
  width: 100%;
  color: #111;
  margin-bottom: 8px;
  position: relative;
  display: inline-block;
}

.event-overview-section .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #ec3333;
  margin: 12px auto 0;
  border-radius: 3px;
}

/* Subtitle / Content */
.event-overview-section .section-content p {
  font-size: 16px;
  color: #666;
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.2px;
}

.event-overview-section .section-title,
.event-overview-section .section-content {
  text-align: center;
}


.event-overview-section .event-form {
  background: #fff;
  padding: 40px;
  border-radius: 16px;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.08);
  text-align: left;
  transition: all 0.3s ease;
}

.event-overview-section .event-form:hover {
  transform: translateY(-3px);
  box-shadow: 0px 12px 35px rgba(0, 0, 0, 0.12);
}

/* Form Rows */
.event-overview-section .event-form .form-row p {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}

.event-overview-section .event-form .form-row p br {
  display: none;
}

.event-overview-section .event-form .form-row p span {
  width: 50%;
}

.event-overview-section .event-form .form-row p span.wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}

.event-overview-section .event-form .form-row.single p span {
  width: 100%;
}

.event-overview-section .event-form .form-row.single p,
.event-overview-section .event-form .form-row.checkbox-group p,
.event-overview-section .event-form .form-row.submit-button p {
  display: block;
}

.event-overview-section .event-form .form-row.single p span,
.event-overview-section .event-form .form-row.checkbox-group p span,
.event-overview-section .event-form .form-row.submit-button p span {
  width: auto;
}

/* Inputs */
.event-overview-section .event-form input[type="text"],
.event-overview-section .event-form input[type="email"],
.event-overview-section .event-form input[type="tel"],
.event-overview-section .event-form textarea,
.event-overview-section .event-form select,
.search-no-results .search-form input[type="text"] {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 15px;
  background: #fdfdfd;
  transition: border 0.3s ease, box-shadow 0.3s ease;
}

.event-overview-section .event-form textarea {
  height: 150px;
}

.event-overview-section .event-form textarea:focus-visible {
  outline: none;
}

.event-overview-section .event-form input:focus,
.event-overview-section .event-form textarea:focus {
  border-color: #ec3333;
  box-shadow: 0 0 6px rgba(236, 51, 51, 0.2);
  outline: none;
}

.event-overview-section .event-form .checkbox-group {
  margin-bottom: 25px;
}

.event-overview-section .event-form .checkbox-label {
  display: block;
  font-weight: 600;
  margin-bottom: 12px;
  color: #333;
}

.event-overview-section .event-form .wpcf7-list-item {
  display: inline-block;
  margin: 6px;
}

.event-overview-section .event-form .wpcf7-list-item label span {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 25px;
  padding: 8px 18px;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-overview-section .event-form .wpcf7-list-item input[type="checkbox"] {
  display: none;
}

.event-overview-section .event-form .wpcf7-list-item input[type="checkbox"]:checked+span {
  background: #ec3333;
  color: #fff;
  border-color: #ec3333;
  font-weight: 500;
  box-shadow: 0 4px 12px rgba(236, 51, 51, 0.2);
}

.event-overview-section .event-form input[type="submit"] {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, #ec3333, #ff4b4b);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.event-overview-section .event-form input[type="submit"]:hover {
  background: linear-gradient(135deg, #d52c2c, #ff3838);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(236, 51, 51, 0.25);
}

/****************************************************** CEO Dinner Page ******************************************************/

.ceo-dinner-content .section-content .sub-content,
.ceo-dinner-content .image-contnet {
  margin-top: 30px;
}

.ceo-dinner-content .gallery-container>div a {
  display: flex;
  justify-content: center;
}

.ceo-dinner-content .gallery-container img {
  width: 70%;
  border-radius: 20px;
}

/******************************************* Reasons to Attend Pendulum Page ******************************************************/


.founder-section.reason-to-attend .section-content::before {
  content: none;
}

.single-content.reason-to-attend-content {
  position: relative;
  padding: 0px 20px;
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  overflow: hidden;
}


.single-content.reason-to-attend-content::before,
.single-content.reason-to-attend-content::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 0;
}

.single-content.reason-to-attend-content::before {
  width: 400px;
  height: 400px;
  background: rgba(236, 51, 51, 0.06);
  top: -150px;
  left: -150px;
}

.single-content.reason-to-attend-content::after {
  width: 300px;
  height: 300px;
  background: #f9f9f9;
  bottom: -120px;
  right: -120px;
}


.reason-to-attend-content .section-title h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1b0000;
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.reason-to-attend-content .section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: #ec3333;
  margin: 10px auto 0;
  border-radius: 2px;
}

.reason-to-attend-content .content h3 {
  font-size: 1.4rem;
  color: #ec3333;
  margin-bottom: 15px;
}


.reason-to-attend-content .content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
}


.reason-to-attend-content .image-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  align-items: center;
  gap: 25px;
}

.reason-to-attend-content .image-content .image img {
  max-width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-reason {
  background-color: #f9f9f9;
  padding: 30px 0;
}

.testimonial-reason .testimonial-reason-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.testimonial-reason .slide-col {
  position: relative;
  width: 1000px;
  margin: 20px auto;
  height: 400px;
}

.testimonial-reason .hero {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
}

.testimonial-reason .hero img {
  height: 100%;
  border-radius: 10px;
  width: 320px;
  object-fit: cover;
  pointer-events: none;
  user-select: none;
}

.testimonial-reason .content {
  position: absolute;
  left: 0;
  top: 10%;
  width: 720px;
  height: auto;
  color: #4d4352;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  border-radius: 10px;
  padding: 45px;
  z-index: 2;
  user-select: none;
}

.testimonial-reason .content p {
  font-size: 18px;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

.reason-social-section {
  background: #ec3333;
  padding: 10px 0;
  text-align: center;
}

.reason-social-section .social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.reason-social-section .social__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: #fff;
  font-size: 22px;
  color: #333;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.reason-social-section .social__item a::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: rgba(255, 255, 255, 0.3);
  transition: all 0.4s ease;
}

.reason-social-section .social__item a:hover::before {
  left: 0;
}

.reason-social-section .social__item a:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.reason-social-section .fa-facebook-f {
  color: #1877f2;
}

.reason-social-section .fa-twitter {
  color: #1da1f2;
}

.reason-social-section .fa-youtube {
  color: #ff0000;
}

.reason-social-section .fa-linkedin {
  color: #0077b5;
}

.reason-social-section .fa-instagram {
  color: #e1306c;
}

/************************************** Destination Dublin Page *******************************************************/


.hotel-info {
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  padding: 80px 20px;
}

.hotel-info .section-wrapper {
  max-width: 1200px;
  margin: auto;
}

.hotel-info .hotel-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.hotel-info .hotel-image {
  position: relative;
}

.hotel-info .hotel-image img {
  width: 100%;
  height: auto;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.hotel-info .hotel-content {
  background: #fff;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.hotel-info .sub-title {
  color: #c30000;
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.hotel-info .main-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.hotel-info .hotel-description p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 15px;
  color: #555;
}

.hotel-info .highlight {
  background: #fff4f4;
  border-left: 4px solid #c30000;
  padding: 10px 15px;
  margin-bottom: 20px;
  font-size: 14px;
}

.hotel-info .contact-info p {
  font-size: 14px;
  margin-bottom: 5px;
}

.hotel-info .contact-info a {
  color: #c30000;
  text-decoration: none;
}

.hotel-info .hotel-feature h4 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px;
}

.hotel-info .hotel-feature ul {
  padding-left: 20px;
  margin-bottom: 25px;
  list-style-type: none !important;
}

.hotel-info .hotel-feature ul li {
  margin-bottom: 8px;
  position: relative;
}

.hotel-info .hotel-feature ul li::before {
  content: "✓";
  position: absolute;
  left: -20px;
  color: #c30000;
}

.hotel-info .intro-btn {
  display: inline-block;
  background: #c30000;
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 14px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.hotel-info .intro-btn:hover {
  background: #a00000;
  transform: translateY(-2px);
}


.video-gallery {
  position: relative;
  padding: 25px 20px 50px;
  background: #fff;
}

.video-gallery .section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.video-gallery .gallery-content {
  margin: 0 auto 40px;
  max-width: 800px;
}

.video-gallery .gallery-slide {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: transform 0.3s ease;
}

.video-gallery .gallery-slide:hover {
  transform: scale(1.02);
}

.video-gallery .gallery-slide .image-wrapper {
  position: relative;
  padding-top: 40%;
  background-size: cover;
  background-position: center;
}

.video-gallery .gallery-slide .play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70px;
  height: 70px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease;
}

.video-gallery .gallery-slide:hover .play-button {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-gallery .thumb-image {
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  flex-shrink: 0;
  margin-right: 30px;
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  width: auto !important;
}

.video-gallery .thumb-image img {
  display: block;
  width: 200px;
  height: 100px;
  object-fit: cover;
}

.video-gallery .thumb-image.slick-current {
  border-color: #c8102e;
}

.video-gallery .slider-thumb .slick-track {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.video-gallery .slider .slick-prev:before,
.video-gallery .slider-vertical .slick-next:before {
  display: none;
}

.video-gallery .slider .slick-prev,
.video-gallery .slider .slick-next {
  width: 28px;
  height: 28px;
  border-style: solid;
  margin: 10px;
  display: inline-block;
  margin: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 10;
  cursor: pointer;
}

.video-gallery .slider .slick-prev:before,
.video-gallery .slider .slick-next:before {
  display: none;
}

.video-gallery .slider .slick-prev {
  border-width: 14px 14px 14px 0px;
  border-color: transparent #000;
  left: -45px;
  right: auto;
}

.video-gallery .slider .slick-next {
  border-width: 14px 0px 14px 14px;
  border-color: transparent #000;
  right: -45px;
  left: auto;
}

.video-gallery .slider .slick-prev:hover,
.video-gallery .slider .slick-next:hover {
  border-color: transparent #ffd200;
}

.video-gallery .slider .slick-prev.slick-disabled,
.video-gallery .slider .slick-next.slick-disabled,
.video-gallery .slider .slick-prev.slick-disabled:hover,
.video-gallery .slider .slick-next.slick-disabled:hover {
  opacity: 0.1;
  cursor: default;
  border-color: transparent #000000;
}

.founder-section.hidden-before .section-content::before {
  content: none;
}

/************************************** Give Back Page *******************************************************/

.quote-section {
  position: relative;
  padding: 100px 20px;
  background: linear-gradient(135deg, #ec3333, #1b0000);
  overflow: hidden;
}

.section-wrapper {
  max-width: 1440px;
  margin: 0 auto;
}

.quote-section .quote-container {
  position: relative;
  max-width: 900px;
  margin: auto;
  padding: 50px 40px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
  text-align: left;
  z-index: 2;
}

.quote-section .quote-container::before {
  content: "❝";
  position: absolute;
  top: -40px;
  left: -10px;
  font-size: 150px;
  color: rgba(236, 51, 51, 0.08);
  z-index: 1;
}

.quote-section .quote-text {
  font-size: 22px;
  font-weight: 500;
  line-height: 1.6;
  color: #333;
  margin-bottom: 25px;
  position: relative;
  z-index: 2;
}

.quote-section .user-details {
  font-size: 14px;
  font-weight: bold;
  color: #ec3333;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.quote-section .user-details::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, #ec3333, #007bff, #ec3333);
  background-size: 200% 100%;
  animation: gradientMove 3s infinite;
  border-radius: 2px;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.give-back-content {
  padding: 30px 20px 50px;
  position: relative;
  background: linear-gradient(135deg, #fff 0%, #f8f8f8 100%);
  overflow: hidden;
}

.give-back-content::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: rgba(236, 51, 51, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.give-back-content .section-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.give-back-content .section-title h2 {
  font-size: 32px;
  color: #ec3333;
  border-bottom: 3px solid #ec3333;
  display: inline-block;
  padding-bottom: 8px;
  margin-bottom: 30px;
}

.give-back-content .giveback-container .content p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 18px;
}

.give-back-content .quoted-text {
  margin-top: 30px;
  background: #fff;
  padding: 30px;
  border-left: 5px solid #ec3333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  position: relative;
}

.give-back-content .quoted-text i {
  color: #ec3333;
  font-size: 26px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.give-back-content .quoted-text .quote-text {
  font-size: 18px;
  font-weight: 500;
  margin-left: 40px;
  color: #000;
}

.give-back-content .cta-content {
  text-align: center;
  background: linear-gradient(135deg, #ec3333, #b80000);
  color: #fff;
  padding: 40px 20px;
  border-radius: 12px;
  margin-top: 50px;
  box-shadow: 0 8px 30px rgba(236, 51, 51, 0.3);
}

.give-back-content .cta-content i {
  font-size: 40px;
  margin-bottom: 10px;
  display: block;
}

.give-back-content .cta-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.give-back-content .cta-button {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #ec3333;
  font-weight: bold;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.give-back-content .cta-button:hover {
  background: #f8f8f8;
}

.price-section {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1b0000, #3a0f0f);
  color: #fff;
  position: relative;
}

.price-section .section-wrapper {
  max-width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.price-section .toggle-wrapper {
  display: flex;
  justify-content: center;
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  overflow: hidden;
  max-width: 400px;
  margin: 0 auto 40px;
}

.price-section .toggle-wrapper input {
  display: none;
}

.price-section .toggle-wrapper label {
  flex: 1;
  padding: 12px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  color: #fff;
  margin: 0;
  z-index: 1;
}

.price-section .toggle-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #ec3333;
  border-radius: 50px;
  transition: all 0.3s ease;
  z-index: 0;
}

#group:checked~.toggle-slider {
  left: 50%;
}

.price-section .packages-wrap {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: nowrap;
  align-items: flex-start;
}

/* .price-section .group-packages .ticket-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 15px;
  padding: 30px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
} */

.price-section .ticket-card {
  background: #f9fafa;
  backdrop-filter: blur(10px);
  border-radius: 15px;
  width: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.price-section .ticket-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
}

/* .price-section .group-packages .card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #ec3333, #ff6b6b);
  border-radius: 50%;
  display: flex;
  align-items: center;
  margin: 0 auto 20px;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
} */

.price-section .card-icon {
  display: none;
}

.price-section .price {
  font-size: 20px;
  font-weight: 400;
  margin: 0;
}

.price-section .group-packages .price {
  font-size: 24px;
  font-weight: 400;
  text-align: right;
  margin: 0;
}

.price-section .ticket-title h3 {
  font-size: 20px;
  font-weight: 700;
}

.price-section .group-packages .ticket-title h3 {
  width: 99%;
}

.price-section .ticket-card ul {
  list-style: none;
  padding: 0;
  text-align: left;
  list-style-type: none !important;
  margin: 0 0 20px !important;
}

.price-section .ticket-card ul li {
  margin-bottom: 8px;
  font-size: 14px;
  text-align: center;
  padding: 5px;
  position: relative;
  color: #000;
}

.price-section .ticket-card ul li:not(:last-child) {
  border-bottom: 1px solid rgba(0, 0, 0, 0.5);
}

/* .price-section .ticket-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: #00ff99;
} */

.price-section .btn-primary {
  display: inline-block;
  background: #ec3333;
  color: #fff;
  padding: 10px 25px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.price-section .btn-primary:hover {
  background: #b32424;
}

.price-section .group-packages {
  display: none;
}

.section-wrapper.contact-us-text {
  padding: 20px 0;
}

.contact-us-text p {
  font-size: 16px;
  display: block;
  width: 100%;
  text-align: center;
}

.ticket-page-content {
  background: #fff;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.ticket-page-content::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(236, 51, 51, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.ticket-page-content::after {
  content: "";
  position: absolute;
  bottom: -50px;
  left: -50px;
  width: 250px;
  height: 250px;
  background: rgba(27, 0, 0, 0.05);
  border-radius: 50%;
  z-index: 0;
}

.ticket-page-content .section-wrapper {
  max-width: 1200px;
  margin: auto;
  position: relative;
  z-index: 1;
}

.ticket-page-content .ticket-page-container {
  background: #fff;
  padding: 30px;
  margin-bottom: 30px;
  border-radius: 12px;
  box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ticket-page-content .ticket-page-container:hover {
  transform: translateY(-5px);
  box-shadow: 0px 8px 25px rgba(0, 0, 0, 0.08);
}

.ticket-page-content .ticket-page-container .title h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #1b0000;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
}

.ticket-page-content .ticket-page-container .title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 3px;
  background: #ec3333;
  border-radius: 3px;
}

.ticket-page-content .ticket-page-container .content p {
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}

.price-section .package-type {
  font-size: 14px;
  font-weight: 400;
}


.delegates-section {
  position: relative;
  background: url(https://pendulumsummit.com/wp-content/uploads/2022/08/5cab45098850e779e41b86ee.jpg-v3.png) right/contain no-repeat;
  color: #fff;
  padding: 200px 20px;
  overflow: hidden;
}

.delegates-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top left, rgb(67 17 17) 45%, transparent 65%);
}

.delegates-section .section-wrapper {
  max-width: 1440px;
  margin: auto;
  position: relative;
  z-index: 2;
}

.delegates-section .section-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  position: relative;
  color: #fff;
  display: inline-block;
}

.delegates-section .section-title h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #fff;
  margin-top: 8px;
}

.delegates-section .section-content p {
  font-size: 18px;
  line-height: 28px;
  max-width: 650px;
  color: #fff;
}

.stats.our_delegates {
  max-width: 1440px;
  margin: auto;
  background: #fff;
}

.quotation-section {
  background: #fff;
  padding: 50px 20px;
  display: flex;
  justify-content: center;
}

/* .quotation-section .quotation-card {
  background: #fff;
  max-width: 900px;
  padding: 50px 40px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
}

.quotation-section .quotation-card::before {
  content: "“";
  font-size: 5rem;
  color: rgba(0, 0, 0, 0.05);
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: serif;
}

.quotation-section .quotation-text {
  font-size: 1.3rem;
  line-height: 1.8;
  font-style: italic;
  color: #333;
  margin-bottom: 40px;
} */

.quotation-section .author-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-top: 15px;
  gap: 15px;
}

.quotation-section .author-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  /* gold border */
}

.quotation-section .author-info h4 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: bold;
  color: #111;
}

.quotation-section .author-info span {
  display: block;
  font-size: 0.9rem;
  color: #777;
}

/* Subtle hover elegance */
.quotation-section .quotation-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  transition: all 0.3s ease;
}

.overseas-section {
  position: relative;
  background: url('https://pendulumsummit.com/wp-content/uploads/2017/09/world-map-1.jpg') no-repeat center/cover;
  padding: 80px 20px;
  color: #fff;
}

.overseas-section .overseas-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}

.overseas-section .section-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.overseas-section .section-title {
  text-align: center;
  margin-bottom: 50px;
  color: #fff;
}

.overseas-section .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.overseas-section .section-title .divider {
  width: 80px;
  height: 3px;
  background: #ec3333;
  margin: 15px auto 0;
  border-radius: 3px;
}

.overseas-section .overseas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}

.overseas-section .overseas-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.overseas-section .circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: conic-gradient(#d02b2c 0%, #333 0%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 22px;
  font-weight: bold;
  margin-bottom: 15px;
  transition: background 1s ease;
  box-shadow: 0 0 15px rgba(236, 51, 51, 0.5);
}

.overseas-section .counter {
  position: absolute;
}

.overseas-section .overseas-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.position-company {
  background: linear-gradient(135deg, #0c0c14 0%, #15151f 100%);
  padding: 60px 20px;
  color: #fff;
}

.position-company .section-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.position-company .position-company-container {
  flex: 1;
  min-width: 320px;
}

.position-company .section-title h2 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 25px;
  border-left: 5px solid #ec3333;
  padding-left: 12px;
}

.position-company .section-content {
  margin-bottom: 20px;
}

.position-company .label-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 500;
}

.position-company .blox-border-bar {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  height: 14px;
  overflow: hidden;
}

.position-company .blox-border-progress-bar {
  height: 100%;
  background: linear-gradient(90deg, #ec3333, #ff4b4b);
  border-radius: 50px;
  width: 0;
  transition: width 1.4s ease-in-out;
}

/* Triggered when in view */
.position-company .blox-border-progress-bar.aos-animate {
  transition: width 1.4s ease-in-out;
}

.stats.our_delegates .stat {
  padding: 30px;
  background: var(--dark);
  width: auto;
  height: auto;
  border-radius: 14px;
  position: relative;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
}

.stats.our_delegates .stat:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 110%;
  background: #000;
  right: -70px;
}

.stats.our_delegates .stat .stats-icon {
  width: 75px;
  height: 100%;
}

.stats.our_delegates .stat .stats-icon .dashicons {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
}

.stats.our_delegates .stat .stats-icon .dashicons:before {
  font-size: 70px;
}


.quotation-section .quoted-text {
  background: #fff;
  padding: 30px;
  border-left: 5px solid #ec3333;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  position: relative;
}

.quotation-section .quoted-text i {
  color: #ec3333;
  font-size: 26px;
  position: absolute;
  top: 20px;
  left: 20px;
}

.quotation-section .quoted-text .quote-text {
  font-size: 18px;
  font-weight: 500;
  margin-left: 40px;
  color: #000;
}

.overseas-section.new {
  position: relative;
  background: url('https://pendulumsummit.com/wp-content/uploads/2017/09/world-map-1.jpg') no-repeat center/cover;
  padding: 120px 20px;
  color: #222;
}

.overseas-section.new .section-wrapper {
  position: relative;
  max-width: 1200px;
  margin: auto;
  z-index: 2;
}

.overseas-section.new .section-title {
  text-align: center;
  margin-bottom: 50px;
}

.overseas-section.new .section-title h2 {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  color: #2c2c2c;
}

.overseas-section.new .divider {
  width: 80px;
  height: 3px;
  background: #444;
  margin: 15px auto 0;
  border-radius: 3px;
}

.overseas-section.new .overseas-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.overseas-section.new .overseas-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 19%;
}

.overseas-section.new .gauge {
  position: relative;
  width: 100%;
  height: 100px;
}

.overseas-section.new .gauge svg {
  width: 100%;
  height: 100%;
}

.overseas-section.new .gauge .track {
  fill: none;
  stroke: #ddd;
  stroke-width: 4;
}

.overseas-section.new .gauge .progress {
  fill: none;
  stroke: #d02b2c;
  stroke-width: 4;
  stroke-dasharray: 126;
  stroke-dashoffset: 126;
  transition: stroke-dashoffset 1.5s ease;
}

.overseas-section.new .gauge .percent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -30%);
  font-size: 22px;
  font-weight: 600;
  color: #333;
}

.overseas-section.new .overseas-item img {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  margin-top: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.price-section .ticket-header {
  display: flex;
  gap: 20px;
  padding: 20px;
  align-items: center;
  margin-bottom: 10px;
  border-radius: 15px 15px 0 0;
}

.price-section .group-packages .ticket-header {
  padding: 30px;
}

.price-section .group-packages .ticket-header .ticket-title .details {
  text-align: left;
}

.price-section .ticket-body {
  padding: 0 20px 20px;
}

.price-section .ticket-title {
  display: flex;
  gap: 5px;
  flex-direction: row;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}

.quotation-section .section-wrapper {
  max-width: 1200px;
}

.single-content.reason-to-attend-content .content-wrapper {
  max-width: 1000px;
}

.accordion .point:first-child .point-title {
  border-radius: 10px 10px 0 0;
}

.accordion .point:last-child .point-title {
  border-radius: 0 0 10px 10px;
}

.accordion .point:not(:first-child) .point-title {
  border-top: 1px solid #ccc;
}

.accordion {
  border-radius: 10px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

.partnership-sec.event-info .details-wrapper .details-container .addresses-details {
  display: flex;
  justify-content: space-around;
  width: 100%;
}

.partnership-sec.event-info .details-wrapper .details-container .addresses-details .address {
  text-align: center;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.partnership-sec.event-info .details-wrapper .details-container .addresses-details .address a {
  display: flex;
  justify-content: center;
}

.partnership-sec.event-info .details-wrapper .details-container .addresses-details .address:not(:last-child)::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 50%;
  background-color: #ccc;
  right: 0;
}

.partnership-sec.event-info .details-wrapper .details-container .addresses-details .address img {
  width: 70%;
  object-fit: contain;
}


.partnership-sec.event-info.partners-section .details-wrapper .details-container .addresses-details .address img {
  width: 100%;
}


/* .partnership-sec.event-info .details-wrapper .details-container.addresses {
  flex-direction: column;
  margin: 20px 0;
} */

.partnership-sec.event-info .details-wrapper {
  max-width: 1440px;
  margin: 0 auto;
  padding: 40px 0px;
}

.about-hero.accommodation_partner {
  margin: 0;
}




















































/*footer css*/
.footer {
  background-color: #1b0000;
  color: var(--light);
  padding-top: 40px;
  padding-bottom: 10px;
  font-family: Arial, sans-serif;
}

.footer__column {
  width: 20%;
  min-width: 200px;
}

.footer__container {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__logo .logo.primary {
  width: 180px;
  height: 40px;
  background: url(https://cdn.worldvectorlogo.com/logos/codepen.svg) no-repeat center/contain;
  display: block;
  margin-bottom: 20px;
}

/* Social Icons */
.social {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* or center */
  gap: 4px;
  /* tighter spacing */
  padding-left: 20px;
  padding-top: 20px;
  margin: 0;
}

.social__item {
  list-style: none;
  margin: 0;
  padding: 0;
}

.btn.social {
  width: 40px;
  /* reduced size */
  height: 40px;
  border-radius: 50%;
  background-color: var(--btn-social-bg-color, #333);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--btn-social-border-color, #555);
  margin: 0;
  /* prevent spacing */
  padding: 0;
  transition: all 0.3s ease;
}

.btn.social .icon {
  width: 24px;
  /* slightly smaller icon */
  height: 24px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: transform 0.3s ease;
}


/* Social Icons Background Images */
.icon.twitter {
  background-image: url(https://ig-launch.test-project.pp.ua/img/twitter.svg);
}

.icon.youtube {
  background-image: url(https://ig-launch.test-project.pp.ua/img/youtube.svg);
}

.icon.telegram {
  background-image: url(https://ig-launch.test-project.pp.ua/img/telegram.svg);
}

.icon.whatsapp {
  background-image: url(https://ig-launch.test-project.pp.ua/img/whatsapp.svg);
}

/* Search */
.footer__search {
  flex: 1 1 100%;
  /* Full width on its own line */
  display: flex;
  justify-content: center;
  margin-top: 10px;
}

.footer__search-wrapper {
  position: relative;
  width: 100%;
  max-width: 600px;
  padding-bottom: 20px;
}

.footer__search-input {
  width: 100%;
  padding: 10px 45px 10px 15px;
  /* leave room for icon on right */
  border-radius: 4px;
  border: none !important;
  font-size: 14px;
}

.search-icon-btn {
  position: absolute;
  top: 38%;
  right: 10px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  border: none !important;
  background: url('https://cdn-icons-png.flaticon.com/512/622/622669.png') no-repeat center/contain;
  cursor: pointer;
  background-color: transparent !important;
}

/* Footer Lists */
.footer__title {
  font-size: 28px;
  margin-bottom: 15px;
  text-align: left;
  /* Align title to left */
}

.footer__lists-wrapper {
  display: flex;
  gap: 80px;
  justify-content: flex-start;
  /* Align lists to left */
  flex-wrap: wrap;
  border: none;
}

.footer__list,
.footer-links {
  display: block;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer__item,
.footer-links li {
  margin-bottom: 10px;
}

.footer__link,
.footer-links a {
  display: block;
  color: #ccc;
  text-decoration: none;
  padding: 0;
  transition: color 0.3s ease;
  font-size: 16px;
  margin-bottom: 10px;
}

.footer__link:hover,
.footer-links a:hover,
.footer__item.active .footer__link {
  color: var(--link-hover-color, #f90);
}

/* Contact & search */
.contact_list {
  font-size: 28px;
  margin-bottom: 15px;
}

.footer__contact p {
  margin: 6px 0;
  font-size: 14px;
}

.footer__search-form {
  margin-top: 20px;
  max-width: 280px;
  border: none !important;
}

/* Copyright */
.footer__copyright {
  text-align: center;
  margin-top: 30px;
  border-top: 1px solid #fff;
  padding-top: 10px;
  font-size: 14px;
  color: #fff;
}

/* Responsive */

.header-icons {
  display: flex;
  align-items: center;
  gap: 18px;
  /* space between search and social icons */
}

.header-icons .social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
  /* space between social icons */
}

.header-icons i {
  font-size: 20px;
  transition: transform 0.2s ease;
}

.search-toggle i {
  color: #fff;
  margin-right: 25px;
}

.search-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

.search-overlay.active {
  display: flex;
}

.search-box {
  position: unset;
  width: 90%;
  text-align: center;
}

.search-box form {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.search-box input {
  width: 100%;
  height: 60px;
  /* input size */
  font-size: 42px;

  text-align: center;
  /* center text + placeholder */
  padding: 0 15px;

  border: none;
  border-bottom: 2px solid #333;
  border-radius: 0;
  background: transparent;

  outline: none;
  box-shadow: none;

  caret-color: white;
  /* cursor (blink) color */
  color: white;
}

/* Bigger blinking cursor */
.search-box input::selection {
  background: rgba(255, 255, 255, 0.3);
  /* optional highlight color */
}

.search-box input {
  caret-color: white;
  /* cursor color */
}

/* Style placeholder */
.search-box input::placeholder {
  color: #999;
  font-size: 42px;
  text-align: center;
}


.search-box input:focus {
  color: white !important;
}

.search-box input::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
  display: none;
}



.search-box button {
  background: #e00;
  border: none;
  padding: 15px 20px;
  color: #fff;
  font-size: 18px;
  border-radius: 5px;
  cursor: pointer;
}

.search-close {
  position: absolute;
  top: 30px;
  right: 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}

.founder-section.blog-section .founder-container {
  display: flex;
  align-items: stretch;
  /* 🔑 makes both columns same height */
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.founder-section.blog-section .founder-image {
  flex: 0 0 40%;
  /* 40% width */
}

.founder-section.blog-section .founder-image img {
  width: 100%;
  height: 100%;
  /* 🔑 fill height of parent */
  object-fit: cover;
  /* crop instead of white space */
  display: block;
}

.founder-section.blog-section .founder-info {
  flex: 0 0 60%;
  /* 60% width */
  padding: 40px;
  /* add space inside text */
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.why-training {
  position: relative;
  background: #0d0d0d;
  color: #fff;
  padding: 80px 20px;
  overflow: hidden;
}

/* Diagonal background overlay */
.why-training::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 100%;
  height: 150%;
  background: linear-gradient(135deg, #ec3333 0%, #1b0000 60%);
  clip-path: polygon(0 0, 100% 0, 100% 65%, 0 85%);
  z-index: 0;
}

/* Wrapper with flex layout */
.why-training .section-wrapper {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
}

/* Left side (title + text) */
.why-training .training-text {
  flex: 1 1 500px;
}

.why-training .training-text h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.why-training .training-text p {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 15px;
}

/* Highlight box for second paragraph */
.training-text p:last-child {
  background: rgba(255, 255, 255, 0.08);
  border-left: 5px solid #fff;
  padding: 15px;
  border-radius: 5px;
}

/* Right side decorative panel */
.why-training .training-graphic {
  flex: 1 1 400px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 30px;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
}


.professional-content {
  background: linear-gradient(135deg, #f9f9f9 0%, #ffffff 100%);
  padding: 60px 20px;
  position: relative;
  z-index: 1;
}

.professional-content .section-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

.professional-content .content p {
  font-size: 1rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 15px;
}

.professional-content .content strong {
  color: #1b0000;
}

.professional-content .image img {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.professional-content .image img:hover {
  transform: scale(1.02);
}

.wpcf7-spinner {
  display: none !important;
}

.search-no-results {
  margin-bottom: 30px;
}

.search-result-wrapper {
  max-width: 1440px;
  margin: 60px auto;
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.search-result-wrapper .search-result-row {
  background: #fff;
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.search-result-wrapper .search-result-row:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.search-result-wrapper .result-inner {
  display: flex;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
}

.search-result-wrapper .result-thumb {
  flex: 0 0 320px;
  height: 220px;
  overflow: hidden;
}

.search-result-wrapper .result-thumb img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.search-result-wrapper .result-inner:hover .result-thumb img {
  transform: scale(1.08);
}

.search-result-wrapper .result-details {
  flex: 1;
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.search-result-wrapper .result-title {
  font-size: 26px;
  font-weight: 700;
  margin: 0 0 15px;
  color: #1b0000;
  /* dark red/black */
}

.search-result-wrapper .result-excerpt {
  font-size: 17px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 20px;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-result-wrapper .read-more {
  font-weight: 600;
  font-size: 15px;
  color: #ec3333;
  margin-top: auto;
}

.search-result-count {
  width: 100%;
  max-width: 100%;
  margin: 0;
  text-align: center;
  padding: 10px 0;
  background: #1b0000;
  color: white;
  font-weight: 800;
}

/* Popup container */
.pendulum-popup {
  background: #fff;
  padding: 40px 30px;
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  border-radius: 6px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Title */
.pendulum-popup .popup-title {
  font-size: 26px;
  font-weight: 700;
  color: #a30000; /* brand red */
  margin-bottom: 10px;
}

/* Subtitle */
.pendulum-popup .popup-subtitle {
  font-size: 15px;
  color: #444;
  margin-bottom: 20px;
}

/* Contact Form 7 styling */
.pendulum-popup .wpcf7-form p {
  margin: 0 0 15px;
}

.pendulum-popup input[type="text"],
.pendulum-popup input[type="email"],
.pendulum-popup input[type="tel"],
.pendulum-popup textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 14px;
  transition: all 0.3s ease;
}

.pendulum-popup input[type="text"]:focus,
.pendulum-popup input[type="email"]:focus,
.pendulum-popup input[type="tel"]:focus,
.pendulum-popup textarea:focus {
  border-color: #a30000;
  outline: none;
}

.pendulum-popup textarea{
	height:100px;
}

/* Submit Button */
.pendulum-popup input[type="submit"] {
  background: #a30000;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  border: none;
  padding: 12px 25px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.pendulum-popup input[type="submit"]:hover {
  background: #7a0000;
}

.pendulum-popup .popup-form-wrapper .wpcf7-form br{
	display:none;
}

.pendulum-popup .popup-form-wrapper .wpcf7-form .two-row{
	display:flex;
	gap:10px;
}

.sg-popup-content{
	box-shadow:none !important;
}

.sgpb-popup-close-button-1{
	bottom:unset !important;
	top:9px !important;
}

.sgpb-theme-1-content{
	border-bottom-width:0 !important;
}