@import url("https://fonts.googleapis.com/css2?family=Jersey+15&family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Shadows+Into+Light&display=swap");

.ms-wk .ms-slide .ms-slide-layers {
  left: -119px !important;
  max-width: 1201px !important;
}

.inner {
  font-family: "Poppins", sans-serif;
}

.inner .subtitle {
  font-weight: 600;
  /* Adjust weight as needed */
  font-size: 1.8rem;
  /* Adjust size as desired */
}

.inner .title.tagline {
  font-weight: 700;
  /* Adjust weight for the title */
  font-size: 2.2rem;
  /* Adjust size as desired */
}

.gdlr-page-title-container {
  font-family: "Poppins", sans-serif;
}

.gdlr-page-title {
  font-family: "Poppins", sans-serif;
}

.gdlr-page-caption {
  font-family: "Poppins", sans-serif;
}

.delegate-hero-content {
  font-family: "Poppins", sans-serif;
}

.delegate-hero-content h2 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  /* Optional: Adjust weight if needed */
}

.delegate-hero-content p {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  /* Optional: Adjust weight if needed */
}

.poppins-thin {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", serif;
  font-weight: 900;
  font-style: italic;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  background-color: white;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: fixed;
  /* Sticks to the top */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: top 0.3s ease-in-out;
}

.hidden-nav {
  top: -100px;
  /* Moves navbar out of view */
}

.logo {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo img {
  height: 95px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-links a {
  font-size: 11px;
  text-transform: uppercase;
  padding: 0px 0px 38px 0px;
  margin: 0px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #8e8e8e;
}

/* Underline effect */
.nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #c32026;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 90%;
}

/* Active state */
.nav-links a.active {
  color: #c32026;
}

/* Dropdown styles */
.dropdown {
  position: relative;
}

.dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: white;
  min-width: 200px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  z-index: 99;
  border-radius: 4px;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown-content a {
  display: block;
  padding: 12px 20px;
  color: #333;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.dropdown-content a:hover {
  background-color: #f8f8f8;
  color: #c32026;
}

.menu-btn {
  display: none;
  cursor: pointer;
  font-size: 24px;
}

@media screen and (max-width: 1025px) {
  .header {
    padding: 7px 12px;
  }

  .menu-btn {
    display: flex;
  }

  /* new add */
  .nav-links {
    display: none;
    position: absolute;
    top: 81px;
    left: 0;
    right: 0;
    background-color: white;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    display: none;
    padding-left: 20px;
  }

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

  .gdlr-ticket-item .gdlr-ticket-head-title {
    font-size: 12px;
  }
}

/* home hero slider */
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&family=Roboto+Slab:wght@200;400&display=swap");

body {
  margin: 0;
  padding: 0;
  background-color: #000;
  font-family: "Montserrat", sans-serif;
}

.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.carousel-cell {
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(to bottom, rgb(25 25 25 / 0%), rgb(0 0 0 / 48%));
}

.inner {
  position: absolute;
  top: 35%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
}

.subtitle {
  font-family: "Poppins", serif;
  font-size: 14px;
  font-weight: 200;
  color: rgba(255, 255, 255, 0.7);
}

.title {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.btn {
  border: 1px solid #fff;
  padding: 12px 18px;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #fff;
  color: #000;
}

/* slider home  */
.second-home-Auditorium-slider-section {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.second-home-Auditorium-swiper {
  width: 100%;
  height: auto;
}

.second-home-Auditorium-swiper-slide img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 10px;
}

.second-home-Auditorium-swiper-button-next,
.second-home-Auditorium-swiper-button-prev {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 50%;
  width: 40px;
  height: 40px;
}

.second-home-Auditorium-swiper-pagination-bullet {
  background: white;
}

/*   
.slider-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
    overflow: hidden;
    position: relative;
}

.slider-title {
    font-size: 36px;
    margin-bottom: 0px;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1;
    letter-spacing: 2px;
    color: #c32026;
	border-color: #292929;
    margin-bottom: 30px;
    margin-left: 5rem;
}

.slider-track {
    display: flex;
    width: calc(250px * 12); 
    animation: slide 35s linear infinite;
}

.slider-track:hover {
    animation-play-state: paused;
}

.slider-img {
    width: 250px !important;
    padding: 10px;
    flex-shrink: 0;
}

.slide-content {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.slide-overlay {
    position: absolute;
    bottom: -100%;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    transition: bottom 0.3s ease;
}

.slide-content:hover .slide-image {
    transform: scale(1.1);
}

.slide-content:hover .slide-overlay {
    bottom: 0;
}

.slide-title {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: bold;
}

.slide-description {
    font-size: 14px;
    opacity: 0.8;
} */
/* 
@keyframes slide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-250px * 6));
    }
}

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

.slider-container::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.slider-container::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

@media (max-width: 768px) {
    .slider-container::before,
    .slider-container::after {
        width: 50px;
    }
} */

/* counter style */
.counter-container {
  background-color: #2a2053;
  color: white;
  padding: 40px 20px;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  /* Allow items to wrap on smaller screens */
  gap: 20px;
  /* Add spacing between elements */
}

.counter-box {
  text-align: center;
  flex: 1;
  min-width: 150px;
  /* Ensure proper layout on smaller screens */
}

.counter {
  color: #fac920;
  font-size: 30px;
  font-weight: bold;
  /*margin-bottom: 10px;*/
}

.counter-label {
  font-size: 20px;
  color: white;
}

/* Hide dividers on small screens */
@media (max-width: 768px) {
  .divider {
    display: none;
  }

  .counter-container {
    flex-direction: row;
    justify-content: center;
  }

  .counter-box {
    min-width: 45%;

    /* Two columns */
  }
}

@media (max-width: 480px) {
  .counter-box {
    min-width: 44%;
    border: 1px solid;
    padding: 1px;
    margin: 1px;
    border-radius: 16%;
    align-items: center;
    /* Single column */
  }

  .counter {
    font-size: 26px;
  }

  .counter-label {
    font-size: 18px;
  }
}

/* image slider  */
:root {
  --dark-green: #9cc675;
  --dark-yellow: #e89a3d;
  --extra-light-brown: #fdf0d7;
  --light-brown: #ecd5ab;
  --dark-brown: #915b40;
}

.home-first-slider-section {
  max-width: 1200px;
  margin: auto;
  padding: 2rem;
}

.home-first-slider-heading {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 2px;
  position: relative;
  display: inline-block;
  margin-bottom: 25px;
  margin-top: 20px;
}

@media (max-width: 425px) {
  .home-first-slider-heading {
    font-size: 32px;
  }
}

.home-first-slider-heading::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

.home-first-slider-text {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1em;
}

.home-first-slider-container {
  position: relative;
  margin: 50px auto;
  padding-bottom: 50px;
  width: 100%;
  height: auto;
}

.home-first-slider-slide img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 425px) {
  .home-first-slider-slide img {
    height: 430px;
  }
}

.home-first-slider-button-prev,
.home-first-slider-button-next {
  color: white;
  background: rgba(0, 0, 0, 0.5);
  padding: 15px;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

.swiper-button-next:after {
  font-size: 16px;
}

.swiper-button-prev:after {
  font-size: 16px;
}

.home-first-slider-pagination .swiper-pagination-bullet {
  background: white;
}

/* Registrations */
.registration-home-registration-section {
  padding: 0px 20px;
  background-color: #f8fafc;
}

.registration-home-container {
  max-width: 1140px;
  margin: 0 auto;
}

.registration-home-section-header {
  text-align: center;
  margin-bottom: 10px;
}

.registration-home-section-header h2 {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 15px;
  position: relative;
}

.registration-home-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

.registration-home-section-header p {
  font-size: 16px;
  padding-top: 43px;
}

.registration-home-registration-cards {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}

.registration-home-reg-card {
  background: white;
  border-radius: 12px;
  width: 300px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

.registration-home-reg-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.registration-home-card-header {
  padding: 24px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.registration-home-icon-container {
  width: 56px;
  height: 56px;
  margin: 0 10px 0 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
}

.registration-home-icon-container svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.registration-home-card-header h3 {
  color: #0f172a;
  font-size: 20px;
  margin: 0;
  font-weight: 600;
}

.registration-home-register-btn {
  display: block;
  text-align: center;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.2s ease;
}

.registration-home-reg-card:nth-child(1) .registration-home-register-btn {
  background-color: #0284c7;
  color: white;
}

.registration-home-reg-card:nth-child(1) .registration-home-register-btn:hover {
  background-color: #0369a1;
}

.registration-home-reg-card:nth-child(2) .registration-home-register-btn {
  background-color: #d97706;
  color: white;
}

.registration-home-reg-card:nth-child(2) .registration-home-register-btn:hover {
  background-color: #b45309;
}

.registration-home-reg-card:nth-child(3) .registration-home-register-btn {
  background-color: #16a34a;
  color: white;
}

.registration-home-reg-card:nth-child(3) .registration-home-register-btn:hover {
  background-color: #c32026;
}

@media screen and (max-width: 768px) {
  .registration-home-registration-section {
    padding: 40px 16px;
  }

  .registration-home-section-header h2 {
    font-size: 28px;
  }

  .registration-home-reg-card {
    width: 100%;
    max-width: 300px;
  }
}

/* btn click open form  */
/* Modal */
/* Modal */
/* Card Styles */
.registration-home-reg-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 20px;
  margin: 20px;
  max-width: 300px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.registration-home-card-header {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}

.registration-home-icon-container {
  width: 40px;
  height: 40px;
  margin-right: 10px;
}

.registration-home-icon-container svg {
  width: 100%;
  height: 100%;
  fill: #007bff;
}

.registration-home-register-btn {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
}

.registration-home-register-btn:hover {
  background-color: #0056b3;
}

.registration-home-register-btn-one {
  display: inline-block;
  padding: 10px 20px;
  background-color: #007bff;
  color: white;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.3s;
  font-size: 16px;
}

.registration-home-register-btn-one:hover {
  color: red;
  background-color: #fac920;
}

/* secon .registration-home */
.home-registrations-sec {
  padding: 60px 20px;
  text-align: center;
  background-color: #f5f5f5;
}

.home-registrations-sec-header {
  margin-bottom: 20px;
}

.home-registrations-sec-header h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 15px;
}

.home-registrations-sec-header p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

.home-registrations-sec-cards-container {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 40px;
  padding: 20px;
}

.home-registrations-sec-card {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  width: 300px;
  transition: transform 0.3s ease;
}

.home-registrations-sec-card:hover {
  transform: translateY(-5px);
}

.home-registrations-sec-card-icon {
  width: 60px;
  height: 60px;
  margin: 0 20px 0 0;
  background-color: #e3f2fd;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-registrations-sec-card-icon img {
  width: 40px;
  height: 40px;
}

.home-registrations-sec-card h3 {
  color: #333;
  font-size: 17px;
  text-transform: uppercase;
  font-weight: bold;
  letter-spacing: 1px;
  margin-bottom: 7px;
}

.home-registrations-sec-card p {
  color: #666;
  font-size: 14px;
  line-height: 1.6;
}

/* Popup Form Styles */
/* Modal */
.home-Registration-sec-modal {
  display: none;
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

/* Modal Content */
.home-Registration-sec-modal-content {
  background: white;
  padding: 30px;
  border-radius: 8px;
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  margin-top: 4rem;
}

/* Close Button */
.home-Registration-sec-close-btn {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
  color: #777;
}

.home-Registration-sec-close-btn:hover {
  color: #333;
}

/* Form Styling */
.home-Registration-sec-modal-title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  color: #333;
}

.home-Registration-sec-label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  color: #555;
}

.home-Registration-sec-input,
.home-Registration-sec-select,
.home-Registration-sec-textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}

.home-Registration-sec-textarea {
  height: 80px;
  resize: none;
}

/* Submit Button */
.home-Registration-sec-submit-btn {
  width: 100%;
  padding: 10px;
  background-color: #4caf50;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
}

.home-Registration-sec-submit-btn:hover {
  background-color: #45a049;
}

/* Responsive Design */
@media (max-width: 500px) {
  .home-Registration-sec-modal-content {
    width: 90%;
  }
}

#formModal {
  display: none;
  /* Ensure modal is hidden on load */
}

/* Registration Card Styling */
.registration-home-reg-card {
  margin: 20px;
  padding: 20px;
  background-color: #f4f4f4;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.registration-home-card-header {
  display: flex;
  align-items: center;
}

.registration-home-icon-container svg {
  width: 30px;
  height: 30px;
}

.registration-home-register-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #c32026;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.registration-home-register-btn-one {
  display: inline-block;
  margin-top: 20px;
  padding: 10px 20px;
  background-color: #c32026;
  color: white;
  border-radius: 5px;
  text-decoration: none;
}

.registration-home-register-btn:hover {
  background-color: #fac920;
}

/* footer */

.footer-icon-font i {
  font-size: 20px;
}

.ms-nav-next,
.ms-nav-prev {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  z-index: 1000 !important;
}

.footer-contact-detail,
.textwidget {
  font-size: 14px;
}

@media (max-width: 770px) {
  .three-colomns-ft {
    width: 25%;
  }
}

@media (max-width: 430px) {
  .registerbtnheader {
    display: none;
  }

  .three-colomns-ft {
    width: 100%;
    margin-top: 10px;
    display: flex !important;
    justify-content: start !important;
  }

  .gdlr-item-ft {
    margin: 0;
    margin-bottom: 0 !important;
  }
}

.textwidget a {
  transition: all 0.3s ease;
  text-decoration: none;
  color: #000;
}

.textwidget a:hover {
  /*padding-left: 10px;*/
  /* Creates a slight shift right on hover */
  color: #c32026;
  /* Replace with your desired hover color */
}

.textwidget a:hover i {
  /*transform: translateX(5px);*/
  /* Makes the arrow icon move slightly right */
  /*transition: transform 0.3s ease;*/
}

.footer-contact-detail {
  font-family: "robot", sans-serif !important;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #000;
}

/* 
.footer-container {
    margin: 70px 70px 0 70px;
} */

@media (max-width: 320px) {
  .footer-container {
    margin: 0px 29px 0 29px;
  }

  .footer-wrapper .widget.gdlr-widget {
    margin-bottom: 0 !important;
  }
}

.flickity-button:focus {
  outline: 0;
  box-shadow: 0 0 0 5px rgb(133, 133, 133) !important;
  background-color: transparent;
  color: #000;
}

.footer-contact-detail:hover {
  padding-left: 10px;
  /* Creates a slight shift right on hover */
  color: #c32026;
  /* Replace with your desired hover color */
}

.footer-icon-font {
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 5px;
}

.footer-icon-font i {
  font-size: 24px;
  /* Adjust size as needed */
  color: #000;
  /* Replace with your icon's default color */
  transition: all 0.3s ease;
}

/* Hover effect - choose one or combine them */

/* Option 1: Scale up and color change */
.footer-icon-font:hover i {
  transform: scale(1.2);
  color: #c32026;
  /* Replace with your desired hover color */
}

/* Option 2: Bounce effect */
.footer-icon-font:hover i {
  animation: bounce 0.5s ease infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }

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

/* Option 3: Rotation effect */
.footer-icon-font:hover i {
  transform: rotate(360deg);
}

/* delegates page style */
@media (max-width: 768px) {
  .Practitioner-responsiv {
    margin-top: 1rem;
  }
}

@media (max-width: 768px) {
  .Practitioner-responsiv-fri {
    margin-top: 1rem;
  }
}

/* hero secton slider */
/* Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}

/*   
  body {
    background-color: #000;
  } */

/* Hero Slider */
.delegate-hero-slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.delegate-hero-carousel {
  width: 100%;
  height: 100vh;
}

.delegate-hero-cell {
  width: 100%;
  height: 99vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* Overlay Effect */
.delegate-hero-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: linear-gradient(
    to bottom,
    rgba(34, 35, 36, 0.5),
    rgba(1, 1, 1, 0.381)
  );
}

/* Content Animations */
.delegate-hero-content {
  position: relative;
  text-align: center;
  color: #fff;
  z-index: 2;
  opacity: 0;
  animation: slide-up 0.7s ease-in-out forwards;
}

.delegate-hero-content h2 {
  font-size: 3rem;
  text-transform: uppercase;
  margin-bottom: 15px;
  color: #fff;
}

/* Animated Divider Line */
.delegate-hero-divider {
  display: inline-block;
  position: relative;
  margin: 10px auto;
  height: 2px;
  width: 60%;
  background-color: #ffffff;
  transform: scaleX(0);
  animation: divider-mask 1s ease-in-out forwards 0.5s;
}

.delegate-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 20px;
  opacity: 0;
  animation: slide-down 0.7s ease-in-out forwards 0.7s;
}

/* Button Animation */
.delegate-hero-btn {
  display: inline-block;
  border: 1px solid #fff;
  padding: 12px 20px;
  text-transform: uppercase;
  font-size: 1rem;
  color: #fff;
  text-decoration: none;
  opacity: 0;
  animation: slide-down 0.7s ease-in-out forwards 0.9s;
  transition: all 0.3s ease;
}

.delegate-hero-btn:hover {
  background: #fff;
  color: #000;
}

/* Navigation Buttons */
.delegate-hero-prev-next {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
}

.delegate-hero-prev-next:hover {
  background: rgba(255, 255, 255, 0.5);
}

.delegate-hero-prev-next .arrow {
  fill: white;
}

/* Dots */
.delegate-hero-dots {
  bottom: 20px;
}

.delegate-hero-dots .dot {
  width: 15px;
  height: 15px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
}

.delegate-hero-dots .dot.is-selected {
  background: #ff0000;
}

/* --------------------------------
     Animations
  -------------------------------- */

/* Slide Up Animation */
@keyframes slide-up {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }

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

/* Slide Down Animation */
@keyframes slide-down {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }

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

/* Divider Animation */
@keyframes divider-mask {
  0% {
    transform: scaleX(0);
  }

  100% {
    transform: scaleX(1);
  }
}

/* open form  */
/* color:  red#fac920, black#212d31, grey#343a40, white#eee  */
* {
  box-sizing: border-box;
}

body {
  /* padding: 1rem; */
  color: #212d31;
}

.contain {
  background-color: #eee;
  max-width: 1170px;
  margin-left: auto;
  margin-right: auto;
  padding: 1em;
}

div.form {
  background-color: #eee;
}

.contact-wrapper {
  margin: auto 0;
}

.submit-btn {
  float: left;
}

.reset-btn {
  float: right;
}

.form-headline:after {
  content: "";
  display: block;
  width: 10%;
  padding-top: 10px;
  border-bottom: 3px solid #fac920;
}

.highlight-text {
  color: #fac920;
}

.hightlight-contact-info {
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
}

.highlight-text-grey {
  font-weight: 500;
}

.email-info {
  margin-top: 20px;
}

::-webkit-input-placeholder {
  /* Chrome */
}

.required-input {
  color: black;
}

@media (min-width: 600px) {
  .contain {
    padding: 0;
  }
}

h3,
ul {
  margin: 0;
}

h3 {
  /*margin-bottom: 1rem;*/
}

.form-input:focus,
textarea:focus {
  outline: 1.5px solid #fac920;
}

.form-input,
textarea {
  width: 100%;
  border: 1px solid #bdbdbd;
  border-radius: 5px;
}

.wrapper-form > * {
  padding: 1em;
}

@media (min-width: 700px) {
  .wrapper-form {
    padding: 2rem 4rem 1rem 4rem;
  }

  .wrapper-form > * {
    padding: 2em 2em;
  }
}

ul {
  list-style: none;
  padding: 0;
}

.contacts {
  color: #212d31;
}

.form {
  background: #fff;
}

form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px;
}

form label {
  display: block;
}

form p {
  margin: 0;
}

.full-width {
  grid-column: 1 / 3;
}

button,
.submit-btn,
.form-input,
textarea {
  padding: 1em;
}

button,
.submit-btn {
  background: transparent;
  border: 1px solid #c32026;
  color: #c32026;
  border-radius: 15px;
  padding: 5px 20px;
  text-transform: uppercase;
}

button:hover,
.submit-btn:hover,
button:focus,
.submit-btn:focus {
  background: #c32026;
  outline: 0;
  color: #eee;
}

.error {
  color: #fac920;
}

/* Basic Description */
.delegate-page.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}

.delegate-page.hero-section {
  display: flex;
  align-items: center;
  gap: 40px;
  min-height: 80vh;
  padding: 40px 20px;
}

@media (max-width: 430px) {
  .delegate-page.hero-section {
    padding: 0;
  }
}

.delegate-page.hero-content {
  flex: 1;
  padding-right: 20px;
}

.delegate-page.hero-images {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.delegate-page.subtitle {
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
  margin-bottom: 20px;
}

.delegate-page.main-title {
  font-size: 48px;
  line-height: 1.2;
  margin-bottom: 30px;
  color: #222;
}

.delegate-page.description {
  color: #666;
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 30px;
  max-width: 600px;
}

.delegate-page.company-type {
  color: #666;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 40px;
}

.delegate-page.hero-images img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

@media (max-width: 968px) {
  .delegate-page.hero-section {
    flex-direction: column;
    text-align: center;
  }

  .delegate-page.hero-content {
    padding-right: 0;
  }

  .delegate-page.description {
    margin: 0 auto 30px auto;
  }

  .delegate-page.main-title {
    font-size: 36px;
  }
}

@media (max-width: 568px) {
  .delegate-page.hero-images {
    grid-template-columns: 1fr;
  }
}

/* <!-- inquiey contact or email --> */
/* Section Styling */
/* Background Section */
.inquiry-section {
  padding: 60px 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Main Container */
.inquiry-container {
  max-width: 900px;
  width: 90%;
  text-align: center;
}

/* Title Styling */
.inquiry-title {
  font-weight: bold;
  color: #c32026;
  margin-bottom: 30px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
  font-size: 36px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 1px;
}

/* Title Underline */
.inquiry-title::after {
  content: "";
  width: 50px;
  height: 4px;
  background: #fac920;
  display: block;
  margin: 8px auto 0;
  border-radius: 2px;
}

/* Contact Info Grid */
.inquiry-contact-info {
  display: flex;
  justify-content: center;
  gap: 25px;
}

/* Contact Card */
.contact-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-top-left-radius: 20px;
  border-bottom-right-radius: 20px;
  text-align: center;
  width: 310px;
  color: #000;
  font-size: 18px;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  justify-content: center;
}

/* Hover Effect */
.contact-card:hover {
  transform: translateY(-8px);
  /*background: rgba(255, 255, 255, 0.2);*/
  box-shadow: 0 10px 25px rgba(255, 51, 102, 0.4);
}

/* Card Glow Effect */
.contact-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, #ff3366, #ff6600);
  opacity: 0;
  transition: opacity 0.3s ease;
}

/* Active Glow on Hover */
.contact-card:hover::before {
  opacity: 0.2;
}

/* Icon Styling */
.icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .inquiry-contact-info {
    flex-direction: column;
    align-items: center;
  }

  .contact-card {
    width: 80%;
  }
}

/* exhibitor page style */
.checkbox-container {
  width: 100%;
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

h3 {
  font-size: 18px;
  /*margin-bottom: 15px;*/
  color: #333;
}

/* Grid Layout */
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px;
}

/* Checkbox Styling */
.checkbox-item {
  display: flex;
  align-items: center;
  background: white;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  border: 1px solid #ccc;
  transition: 0.3s;
}

.checkbox-item input {
  margin-right: 1rem;
}

/* Checked State */
.checkbox-item input[type="checkbox"]:checked + span {
  font-weight: bold;
}

/* Highlight Selected */
.checkbox-item input[type="checkbox"]:checked {
  accent-color: #007bff;
}

/* Hover Effect */
.checkbox-item:hover {
  background: #eaeaea;
}

/* Responsive */
@media (max-width: 600px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}

/* gallary page style */
.gdlr-fluid-video-wrapper-gallary {
  width: 336px !important;
}

@media (max-width: 1030px) {
  .gdlr-fluid-video-wrapper-gallary {
    width: 305px !important;
  }
}

@media (max-width: 770px) {
  .gdlr-fluid-video-wrapper-gallary {
    width: 220px !important;
  }
}

@media (max-width: 430px) {
  .gdlr-fluid-video-wrapper-gallary {
    width: 350px !important;
    height: 200px;
  }
}

@media (max-width: 380px) {
  .gdlr-fluid-video-wrapper-gallary {
    width: 312px !important;
    height: 332px !important;
  }
}

@media (max-width: 320px) {
  .three-custom {
    width: 52% !important;
    height: 208px !important;
  }

  .gdlr-fluid-video-wrapper-gallary {
    width: 258px !important;
    height: 195px !important;
  }
}

/* about us page  */
/* about What is Ayurveda? */
.about-ayur-vaidya-section {
  padding: 33px 20px;
  background-color: #faf5f0;
}

.about-ayur-vaidya-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.about-ayur-vaidya-content-left {
  flex: 1;
  min-width: 300px;
}

.about-ayur-vaidya-content-right {
  flex: 1;
  min-width: 300px;
}

.about-ayur-vaidya-title {
  color: rgb(195, 32, 38);
  font-size: 33px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
  border-color: rgb(41, 41, 41);
}

@media (max-width: 430px) {
  .about-ayur-vaidya-title {
    font-size: 28px;
  }
}

/* 
  .about-ayur-vaidya-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background-color: rgb(195, 32, 38);
    margin-top: 15px;
  } */

.about-ayur-vaidya-description {
  color: #666;
  line-height: 1.8;
  margin-top: 35px;
  font-size: 14px;
}

.about-ayur-vaidya-feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  /* margin-top: 30px;*/
}

.about-ayur-vaidya-feature-item {
  background: white;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.about-ayur-vaidya-feature-icon {
  width: 50px;
  height: 50px;
  background-color: #f3e9e1;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.about-ayur-vaidya-feature-title {
  font-size: 18px;
  color: #4a3427;
  margin-bottom: 10px;
}

.about-ayur-vaidya-feature-text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.about-ayur-vaidya-image-container {
  width: 100%;
  height: 400px;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

.about-ayur-vaidya-image-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-ayur-vaidya-container {
    flex-direction: column;
  }

  .about-ayur-vaidya-content-left,
  .about-ayur-vaidya-content-right {
    width: 100%;
  }

  .about-ayur-vaidya-image-container {
    height: 300px;
  }
}

/* introduction   */
.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 80px 20px;
}

@media screen and (max-width: 430px) {
  .about-container {
    padding: 0 5px 10px;
    /* Small screen padding */
  }

  .about-text {
    padding: 0px 10px 10px 10px;
  }

  .home-first-slider-section {
    padding: 10px;
  }

  .home-registrations-sec-cards-container {
    margin-top: 10px;
    padding: 0;
  }

  .home-first-slider-button-prev,
  .home-first-slider-button-next {
    width: 40px;
    height: 40px;
  }

  .home-first-slider-container {
    margin: 40px auto 10px;
    padding-bottom: 0px;
  }

  .gdlr-speaker-thumbnail {
    display: flex;
    justify-content: center;
  }

  .footer-wrapper .widget.gdlr-widget .footer-logo {
    width: 40%;
  }

  .footer-wrapper .widget.gdlr-widget {
    text-align: center;
  }

  .footer-wrapper .Quick-Links {
    text-align: start !important;
  }

  .footer-widget-3 {
    display: flex;
    justify-content: left !important;
  }

  .copyright-left {
    font-size: 11px;
  }
}

.footer-widget-3 {
  display: flex;
  justify-content: center;
}

.about-header {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.about-header h1 {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.about-header h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text {
  padding: 20px;
}

.about-text h2 {
  color: #fac920;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.about-text p {
  color: #555;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 1.1em;
}

/* Slider Container */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  padding: 20px;
  overflow: hidden;
}

/* Image Slider */
.slider {
  display: flex;
  width: 92%;
  transition: transform 0.5s ease-in-out;
  gap: 10px;
}

.slider img {
  width: 100%;
  flex: 0 0 100%;
  border-radius: 10px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.prev,
.next {
  position: absolute;
  top: 40%;
  transform: translateY(-50%);
  background-color: hsla(0, 0%, 100%, 0.75);
  color: #c32026;
  border: none;
  padding: 10px;
  font-size: 20px;
  border-radius: 10px;
  cursor: pointer;
}

.flickity-button-icon {
  fill: currentColor;
}

.flickity-button:hover {
  background-color: #000;
}

.flickity-button {
  position: absolute;
  background: hsla(0, 0%, 100%, 0.75);
  border: none;
  color: #333;
}

.prev {
  left: 10px;
}

.next {
  right: 10px;
}

.prev:hover,
.next:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets
  .swiper-pagination-bullet {
  display: none !important;
}

/* Dots Navigation */
.dots {
  text-align: center;
  margin-top: 10px;
}

.dot {
  height: 12px;
  width: 12px;
  margin: 0 5px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
}

.flickity-button {
  color: #c32026 !important;
  background-color: #ffffff !important;
}

/* .active {
        background-color: black;
    } */
.highlight-box {
  background: #dcdcdc;
  padding: 30px;
  border-radius: 10px;
  margin-top: 30px;
  border-left: 4px solid #fac920;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }

  .about-header h1 {
    font-size: 28px !important;
  }

  .about-text h2 {
    font-size: 1.5em;
  }
}

/* <!-- event History --> */
.history-section {
  background-image: url("../images/home/event-bg.jpg ");
  /* Add your background image path */
  background-size: cover;
  background-position: bottom;
  background-repeat: no-repeat;
  position: relative;
  padding: 25px 15px;
}

.history-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(220, 220, 220, 0.85);
  /* Reduced opacity background */
  z-index: 1;
}

.history-container {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

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

.history-header h2 {
  color: #c32026;
  font-size: 32px;
  margin-bottom: 0;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.history-header h2::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #fac920;
}

.history-header p {
  color: #444;
  font-size: 1.1em;
  max-width: 700px;
  margin: 15px auto 0;
}

.timeline {
  position: relative;
  margin: 30px auto;
}

.timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #fac920;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}

.timeline-item {
  padding: 8px 30px;
  position: relative;
  width: 50%;
  box-sizing: border-box;
}

.timeline-item-second {
  width: 65%;
}

.timeline-item::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  background-color: white;
  border: 3px solid #fac920;
  border-radius: 50%;
  top: 45%;
  right: -10px;
  z-index: 1;
}

.timeline-item:nth-child(even) {
  left: 50%;
}

.timeline-item:nth-child(odd) {
  left: 0;
}

.timeline-item:nth-child(even)::after {
  left: -10px;
}

.timeline-content {
  padding: 20px;
  background: white;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.timeline-year {
  font-size: 1.6em;
  color: #fac920;
  margin-bottom: 10px;
  font-weight: bold;
}

.timeline-title {
  color: #2c3e50;
  font-size: 1.3em;
  margin-bottom: 10px;
}

.timeline-desc {
  color: #555;
  line-height: 1.5;
  font-size: 0.95em;
}

.timeline-stats {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px dashed #ddd;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 1.4em;
  color: #fac920;
  font-weight: bold;
}

.stat-label {
  color: #555;
  font-size: 1em;
}

@media screen and (max-width: 768px) {
  .timeline::after {
    left: 25px;
  }

  .timeline-item {
    width: 100%;
    padding-left: 50px;
    padding-right: 15px;
  }

  .timeline-item:nth-child(even) {
    left: 0;
  }

  .timeline-item::after {
    left: 15px;
  }

  .timeline-item:nth-child(even)::after {
    left: 15px;
  }

  .timeline-content {
    padding: 15px;
  }
}

/* mission vision  */
.mission-vision-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fff5e6 0%, #fff 100%);
}

.mission-vision-sectioncontainer {
  max-width: 1200px;
  margin: 0 auto;
}

.mission-vision-section-section-header {
  text-align: center;
  margin-bottom: 60px;
}

.mission-vision-section-section-header h2 {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.mission-vision-section-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

.mission-vision-section-section-header p {
  color: #666;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 1rem;
}

.mission-vision-section-cards-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.mission-vision-section-card {
  background: white;
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  position: relative;
  overflow: hidden;
}

.mission-vision-section-card:hover {
  transform: translateY(-5px);
}

.mission-vision-section-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: #fac920;
}

.mission-vision-section-card-icon {
  width: 60px;
  height: 60px;
  background: #fff5e6;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.mission-vision-section-card-icon svg {
  width: 30px;
  height: 30px;
  fill: #fac920;
}

.mission-vision-section-card h3 {
  color: #2c3e50;
  font-size: 1.8em;
  margin-bottom: 20px;
}

.mission-vision-section-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 14px;
}

.mission-vision-section-key-points {
  margin-top: 20px;
}

.mission-vision-section-key-point {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
  color: #555;
  font-size: 14px;
}

.mission-vision-section-key-point::before {
  content: "•";
  color: #fac920;
  font-size: 1.5em;
  margin-right: 10px;
}

@media screen and (max-width: 768px) {
  .mission-vision-section-cards-container {
    grid-template-columns: 1fr;
  }

  .mission-vision-section-card {
    padding: 30px;
  }

  .mission-vision-section-section-header h2 {
    font-size: 28px !important;
  }

  .mission-vision-section-card h3 {
    font-size: 1.5em;
  }
}

@media screen and (max-width: 480px) {
  .mission-vision-section {
    padding: 40px 15px;
  }

  .mission-vision-section-card {
    padding: 20px;
  }
}

/* our vision mission 2 */
.our-mission-vision-mission-vision-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, #fdf5e6 0%, #fff 50%, #fdf5e6 100%);
}

.our-mission-vision-container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-mission-vision-section-header {
  text-align: center;
  margin-bottom: 70px;
  position: relative;
}

.our-mission-vision-section-header h2 {
  color: #2c3e50;
  font-size: 2.8em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.our-mission-vision-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 4px;
  background: linear-gradient(90deg, #fac920, #f1c40f);
  border-radius: 2px;
}

.our-mission-vision-section-header p {
  color: #666;
  font-size: 1.2em;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
}

.our-mission-vision-cards-container {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  perspective: 1000px;
}

.our-mission-vision-card {
  flex: 1;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.our-mission-vision-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(230, 126, 34, 0.2);
}

.our-mission-vision-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 150px;
  height: 150px;
  background: linear-gradient(
    135deg,
    rgba(230, 126, 34, 0.2),
    rgba(241, 196, 15, 0.2)
  );
  border-radius: 50%;
  transform: translate(50%, -50%);
  z-index: 0;
}

.our-mission-vision-card-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #fac920, #f1c40f);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  position: relative;
  transform: rotate(-10deg);
  transition: transform 0.3s ease;
}

.our-mission-vision-card:hover .our-mission-vision-card-icon {
  transform: rotate(0deg);
}

.our-mission-vision-card-icon svg {
  width: 40px;
  height: 40px;
  fill: white;
}

.our-mission-vision-card h3 {
  color: #2c3e50;
  font-size: 2em;
  margin-bottom: 25px;
  position: relative;
}

.our-mission-vision-card p {
  color: #666;
  line-height: 1.8;
  margin-bottom: 30px;
  font-size: 1.1em;
  position: relative;
  z-index: 1;
}

.our-mission-vision-key-points {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.our-mission-vision-key-point {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  padding: 15px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 10px;
  transition: transform 0.3s ease;
}

.our-mission-vision-key-point:hover {
  transform: translateX(10px);
  background: rgba(230, 126, 34, 0.1);
}

.our-mission-vision-key-point::before {
  content: "→";
  color: #fac920;
  font-size: 1.2em;
  margin-right: 15px;
  font-weight: bold;
}

.our-mission-vision-achievement-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
  padding-top: 30px;
  border-top: 2px dashed rgba(230, 126, 34, 0.2);
}

.our-mission-vision-stat-item {
  text-align: center;
}

.our-mission-vision-stat-number {
  font-size: 2em;
  color: #fac920;
  font-weight: bold;
  margin-bottom: 5px;
}

.our-mission-vision-stat-text {
  color: #666;
  font-size: 0.9em;
}

@media screen and (max-width: 968px) {
  .our-mission-vision-cards-container {
    flex-direction: column;
    gap: 30px;
  }

  .our-mission-vision-card {
    padding: 30px;
  }

  .our-mission-vision-section-header h2 {
    font-size: 2.3em;
  }
}

@media screen and (max-width: 480px) {
  .our-mission-vision-mission-vision-section {
    padding: 40px 15px;
  }

  .our-mission-vision-card {
    padding: 25px;
  }

  .our-mission-vision-card h3 {
    font-size: 1.8em;
  }

  .our-mission-vision-achievement-stats {
    flex-direction: column;
    gap: 20px;
  }
}

/* <!-- our partner --> */
.our-about-par-partners-section {
  padding: 0 80px 20px;
  background: #fff;
}

.our-about-par-container {
  max-width: 1200px;
  margin: 0 auto;
}

.our-about-par-section-header {
  text-align: center;
  /*margin-bottom: 60px;*/
  padding-top: 25px;
}

.our-about-par-section-header h2 {
  margin-top: 15px;
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  /*text-transform: uppercase;*/
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.our-about-par-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

.contact-information-header h2 ::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

/* Top Logos Section */
.our-about-par-logo-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 15px;
}

.our-partners-text {
  font-size: 18px;
  font-weight: 600;
  margin-top: 7px;
  text-align: center;
}

.our-about-par-logo-item {
  width: 200px;
  height: 200px;
  border-radius: 5%;
  padding: 20px;
  background: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.our-about-par-logo-item:hover {
  transform: translateY(-5px);
}

.our-about-par-logo-item img {
  height: 190px;
  width: 190px;
  max-width: 126%;
  border-radius: 5%;
}

.our-about-par-logo-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px dashed #fac920;
  border-radius: 5%;
}

/* Divider */
.our-about-par-divider {
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, transparent, #fac920, transparent);
  margin: 40px 0;
}

/* Slider Section */
.our-about-par-slider-container {
  margin-top: 40px;
  position: relative;
  overflow: hidden;
}

.our-about-par-slider-track {
  display: flex;
  animation: slide 20s linear infinite;
  width: calc(250px * 8);
}

.our-about-par-slider-track:hover {
  animation-play-state: paused;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-250px * 4));
  }
}

.our-about-par-slide {
  width: 250px;
  padding: 15px;
  flex-shrink: 0;
}

.our-about-par-partner-card {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.our-about-par-partner-card img {
  width: 80%;
}

.our-about-par-partner-info {
  padding: 15px;
  text-align: center;
}

.our-about-par-partner-name {
  color: #2c3e50;
  font-weight: 600;
  margin-bottom: 5px;
}

.our-about-par-partner-type {
  color: #fac920;
  font-size: 0.9em;
}

@media screen and (max-width: 768px) {
  .our-about-par-logo-grid {
    gap: 20px;
  }

  .our-about-par-logo-item {
    width: 120px;
    height: 120px;
  }

  .our-about-par-section-header h2 {
    font-size: 28px;
  }
}

@media screen and (max-width: 480px) {
  .our-about-par-partners-section {
    padding: 40px 15px;
  }

  .our-about-par-logo-item {
    width: 100px;
    height: 100px;
  }
}

/* <!-- organization Partner --> */
.partners-section {
  padding: 80px 20px;
  background: #fff;
}

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

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  color: #2c3e50;
  font-size: 2.5em;
  margin-bottom: 20px;
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: #fac920;
}

.section-header p {
  color: #666;
  font-size: 1.1em;
  max-width: 800px;
  margin: 0 auto;
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}

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

.partner-card:hover {
  transform: translateY(-5px);
}

.partner-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}

.partner-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.partner-logo {
  position: absolute;
  bottom: -30px;
  left: 20px;
  width: 80px;
  height: 80px;
  background: white;
  border-radius: 10px;
  padding: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.partner-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.partner-content {
  padding: 40px 20px 20px;
}

.partner-name {
  color: #2c3e50;
  font-size: 1.4em;
  margin-bottom: 10px;
  font-weight: 600;
}

.partner-type {
  color: #fac920;
  font-size: 0.9em;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.partner-description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
}

.partner-stats {
  display: flex;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #eee;
}

.stat {
  text-align: center;
}

.stat-number {
  color: #2c3e50;
  font-size: 1.2em;
  font-weight: bold;
}

.stat-label {
  color: #666;
  font-size: 14px;
  margin-top: 5px;
}

@media screen and (max-width: 1024px) {
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 768px) {
  .partners-grid {
    grid-template-columns: 1fr;
  }

  .section-header h2 {
    font-size: 2em;
  }

  .partner-card {
    max-width: 500px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 480px) {
  .partners-section {
    padding: 40px 15px;
  }

  .partner-content {
    padding: 30px 15px 15px;
  }
}

/* call for paper page style */
/* firste section */
.call-papers-section {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.call-papers-section2 {
  padding: 40px 20px;
  background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.call-papers-section-container {
  max-width: 1300px;
  margin: 0 auto;
}

.call-papers-section-section-title {
  text-align: center;
  margin-bottom: 40px;
  color: #333;
  position: relative;
}

.call-papers-section-section-title h2 {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  text-align: start;
  margin-bottom: 22px;
  text-align: center;
}

.call-papers-section-section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background-color: #fac920;
  margin: 0 auto;
}

.call-papers-section-papers-content {
  background: white;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.call-papers-section-papers-info {
  margin-bottom: 25px;
  line-height: 1.6;
  color: #444;
  font-size: 14px;
}

.call-papers-section-highlight-box {
  background-color: #ffebecbf;
  border-left: 4px solid #c32026;
  padding: 15px;
  margin: 20px 0;
}

.call-papers-section-important-note {
  color: #c32026;
  font-weight: bold;
}

.call-papers-section-guidelines {
  margin-top: 30px;
  font-size: 14px;
}

.call-papers-section-guidelines ul {
  list-style-type: none;
  padding-left: 10px;
}

.call-papers-section-guidelines li {
  position: relative;
  padding: 10px 0 10px 25px;
  border-bottom: 1px solid #eee;
}

.call-papers-section-guidelines li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #c32026;
  margin-top: 6px;
}

.call-papers-section-website-link {
  color: #c32026;
  text-decoration: none;
  font-weight: bold;
}

.call-papers-section-website-link:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .call-papers-section {
    padding: 40px 15px;
  }

  .call-papers-section-section-title h2 {
    font-size: 28px;
  }

  .call-papers-section-papers-content {
    padding: 20px;
  }
}

/* <!-- Important Deadlines --> */
.agd-important-details {
  padding: 36px 20px;
  background: linear-gradient(to right, #f8f9fa, #ffffff);
}

.important-details-container {
  max-width: 1000px;
  margin: 0 auto;
}

.important-details-section-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
}

.important-details-section-header h2 {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  margin-bottom: 0px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  text-align: start;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
}

.important-details-section-header h2::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #fac920;
}

.Sub-theme-Ayurveda-paper-main-header h1::after {
  content: "";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #fac920;
}

.agd-important-details-container {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-top: 30px;
}

.agd-important-details-item {
  display: flex;
  align-items: center;
  padding: 25px 30px;
  border-bottom: 1px solid #eee;
  transition: all 0.3s ease;
}

.agd-important-details-item:last-child {
  border-bottom: none;
}

.agd-important-details-item:hover {
  background-color: #f8f9fa;
  transform: translateX(10px);
}

.agd-important-details-date {
  flex: 0 0 150px;
  padding: 10px 20px;
  background-color: #c32026;
  color: white;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  margin-right: 30px;
}

@media (max-width: 768px) {
  .agd-important-details-date {
    flex: 0;
  }
}

.agd-important-details-content {
  flex: 1;
  color: #333;
  font-size: 16px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .agd-important-details-item {
    flex-direction: column;
    padding: 20px;
  }

  .agd-important-details-date {
    margin-right: 0;
    margin-bottom: 15px;
    width: 100%;
  }

  .agd-important-details-content {
    text-align: center;
  }

  .agd-important-details-item:hover {
    transform: translateX(0);
    background-color: #f8f9fa;
  }
}

/* Sub-theme: Ayurveda */
@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }

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

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

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Sub-theme-Ayurveda-paper-ayurveda-unique {
  min-height: 100vh;
  background: #f8f9fa;
  padding: 40px 20px;
  position: relative;
  overflow: hidden;
}

.Sub-theme-Ayurveda-paper-bg-pattern {
  position: fixed;
  inset: 0;
  background: radial-gradient(
      circle at 20% 20%,
      rgba(0, 206, 201, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(9, 132, 227, 0.05) 0%,
      transparent 50%
    );
  z-index: 0;
}

.Sub-theme-Ayurveda-paper-main-header {
  text-align: center;
  position: relative;
  margin-bottom: 45px;
  z-index: 1;
}

.Sub-theme-Ayurveda-paper-main-header h1 {
  color: #c32026;
  border-color: #292929;
  font-size: 36px;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1;
  letter-spacing: 1px;
  text-align: start;
  position: relative;
  display: inline-block;
}

.Sub-theme-Ayurveda-paper-cards-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 25px;
  position: relative;
  z-index: 1;
}

.Sub-theme-Ayurveda-paper-card {
  background: white;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.Sub-theme-Ayurveda-paper-card.expandable {
  cursor: pointer;
}

.Sub-theme-Ayurveda-paper-card-front {
  padding: 20px;
  display: flex;
  align-items: center;
  position: relative;
  background: white;
  z-index: 2;
}

/* new add */
.Sub-theme-Ayurveda-paper-card-label {
  background: linear-gradient(135deg, #e54f5491, #c32026);
  color: white;
  padding: 4px 12px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 20px;
}

.Sub-theme-Ayurveda-paper-card h2 {
  margin: 0;
  font-size: 22px;
  color: #2d3436;
  flex-grow: 1;
  font-weight: 600;
}

.Sub-theme-Ayurveda-paper-expand-icon {
  font-size: 30px;
  color: #c32026;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

.Sub-theme-Ayurveda-paper-card-content {
  max-height: 0;
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  background: #f8f9fa;
  overflow: hidden;
}

.Sub-theme-Ayurveda-paper-card.active .Sub-theme-Ayurveda-paper-card-content {
  max-height: 1000px;
  opacity: 1;
  padding: 30px;
}

.Sub-theme-Ayurveda-paper-card.active .Sub-theme-Ayurveda-paper-expand-icon {
  transform: rotate(45deg);
}

.Sub-theme-Ayurveda-paper-content-item {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 15px;
  animation: fadeIn 0.5s ease forwards;
  opacity: 0;
}

.Sub-theme-Ayurveda-paper-card.active .Sub-theme-Ayurveda-paper-content-item {
  animation: fadeIn 0.5s ease forwards;
}

.Sub-theme-Ayurveda-paper-card.active
  .Sub-theme-Ayurveda-paper-content-item:nth-child(2) {
  animation-delay: 0.1s;
}

/* new add */

.item-dot {
  padding: 5px;
  background: linear-gradient(135deg, #d05e62, #c32026);
  border-radius: 50%;
}

.Sub-theme-Ayurveda-paper-content-item p {
  margin: 0;
  font-size: 14px;
  color: #2d3436;
}

.Sub-theme-Ayurveda-paper-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.Sub-theme-Ayurveda-paper-grid-item {
  background: white;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  font-size: 1.1rem;
  color: #2d3436;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.Sub-theme-Ayurveda-paper-card.active .grid-item {
  animation: fadeIn 0.5s ease forwards;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(1) {
  animation-delay: 0.1s;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(2) {
  animation-delay: 0.2s;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(3) {
  animation-delay: 0.3s;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(4) {
  animation-delay: 0.4s;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(5) {
  animation-delay: 0.5s;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(6) {
  animation-delay: 0.6s;
}

.Sub-theme-Ayurveda-paper-card.active .grid-item:nth-child(7) {
  animation-delay: 0.7s;
}

.Sub-theme-Ayurveda-paper-grid-item:hover {
  transform: translateY(-5px);
  background: linear-gradient(135deg, #f07378, #c32026);
  color: white;
}

@media (max-width: 768px) {
  .Sub-theme-Ayurveda-paper-main-header h1 {
    font-size: 3rem;
  }

  .Sub-theme-Ayurveda-paper-card-front {
    padding: 15px;
  }

  .Sub-theme-Ayurveda-paper-card h2 {
    font-size: 18px;
  }

  .Sub-theme-Ayurveda-paper-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  }
}

.Sub-theme-Ayurveda-section {
  padding: 80px 20px;
  min-height: 100vh;
  background: linear-gradient(135deg, #f6f8ff 0%, #ffffff 100%);
}

.Sub-theme-Ayurveda-container {
  max-width: 1200px;
  margin: 0 auto;
}

.Sub-theme-Ayurveda-title {
  text-align: center;
  margin-bottom: 60px;
}

.Sub-theme-Ayurveda-title h2 {
  font-size: 2.5rem;
  color: #2c3e50;
  margin-bottom: 20px;
  font-weight: 700;
  position: relative;
  display: inline-block;
}

.Sub-theme-Ayurveda-title h2::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #00b894, #00cec9);
  border-radius: 2px;
}

.Sub-theme-Ayurveda-theme-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  padding: 20px;
}

.Sub-theme-Ayurveda-theme-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.Sub-theme-Ayurveda-theme-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.Sub-theme-Ayurveda-theme-title {
  color: #2c3e50;
  font-size: 1.5rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 2px solid #f0f2f5;
  position: relative;
}

.Sub-theme-Ayurveda-theme-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, #00b894, #00cec9);
}

.Sub-theme-Ayurveda-theme-list {
  list-style: none;
}

.Sub-theme-Ayurveda-theme-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: #4a5568;
  font-size: 1rem;
  transition: all 0.2s ease;
}

.Sub-theme-Ayurveda-theme-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #00b894, #00cec9);
  border-radius: 50%;
}

.Sub-theme-Ayurveda-theme-list li:hover {
  color: #2c3e50;
  transform: translateX(5px);
}

@media (max-width: 768px) {
  .submit-btn-container {
    top: 66%;
    left: 76%;
  }
}

@media (max-width: 430px) {
  .submit-btn-container {
    top: 80%;
    left: 45%;
  }
}

.home-wrapper {
  padding: 70px 0;
  overflow-x: hidden;
}

.my-slider-home {
  padding: 0 70px;
}

.slick-initialized .slick-slide {
  color: #fff;
  height: 265px;
  margin: 0 15px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slick-next,
.slick-prev {
  z-index: 5;
}

.slick-next {
  right: 15px;
}

.slick-prev {
  left: 15px;
}

.slick-next:before,
.slick-prev:before {
  color: #000;
  font-size: 26px;
}

/*CTA Section*/

.request-proposal {
  border: 1px solid #e0e0e0;
  background: #ffffff;
  border-radius: 24px;
  padding: 35px 45px 25px;
  position: relative;
  overflow: hidden;
  margin: 0px auto 30px;
  max-width: 1200px;
  box-shadow: 0 10px 30px rgba(195, 32, 38, 0.3);
}

.decorative-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(195, 32, 38, 0.05);
}

.shape-left {
  width: 300px;
  height: 300px;
  bottom: -150px;
  left: -150px;
}

.shape-right {
  width: 250px;
  height: 250px;
  top: -100px;
  right: -100px;
}

.shape-middle {
  width: 150px;
  height: 150px;
  bottom: 50px;
  right: 100px;
  opacity: 0.1;
}

.heading {
  color: #000000;
  font-weight: 800;
  font-size: 36px;
  line-height: 1.2;
  text-align: center;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}

.subheading {
  color: rgba(0, 0, 0, 0.7);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.contact-group {
  background: #f9f9f9;
  border-radius: 16px;
  padding: 10px;
  min-width: 400px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #e0e0e0;
  border-color: #c32026;
}

.contact-group:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  background: #ffffff;
  border-color: #98191e;
}

.contact-group h4 {
  color: #c32026;
  margin-bottom: 15px;
  font-size: 20px;
  border-bottom: 2px solid rgba(195, 32, 38, 0.2);
  padding-bottom: 8px;
}

.contact-list {
  list-style: none;
}

.contact-link {
  display: flex;
  gap: 10px;
  color: #333333;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s ease;
  font-size: 16px;
}

.contact-link:hover {
  color: #c32026;
}

.icon {
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(195, 32, 38, 0.1);
  border-radius: 50%;
  padding: 7px;
}

.icon svg {
  stroke: #c32026;
}

.cta-button {
  display: block;
  background-color: #c32026;
  color: #ffffff;
  font-weight: 800;
  font-size: 18px;
  padding: 16px 32px;
  border-radius: 30px;
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
  max-width: 280px;
  position: relative;
  z-index: 2;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  box-shadow: 0 10px 30px rgba(195, 32, 38, 0.3);
}

.highlight {
  color: #c32026;
  font-weight: bold;
  font-weight: 700;
}

/* Responsive styles */
@media (max-width: 992px) {
  .request-proposal {
    padding: 60px 40px 40px;
  }

  .heading {
    font-size: 40px;
  }
}

@media (max-width: 768px) {
  .request-proposal {
    padding: 50px 30px 40px;
  }

  .heading {
    font-size: 32px;
  }

  .contact-group {
    min-width: 240px;
  }
}

@media (max-width: 576px) {
  .contact-link {
    font-size: 13px;
  }

  .request-proposal {
    padding: 40px 20px 30px;
    border-radius: 16px;
  }

  .icon {
    width: 28px;
    height: 28px;
  }

  .heading {
    font-size: 20px;
  }

  .subheading {
    font-size: 14px;
  }

  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-group {
    width: 100%;
  }
}

@keyframes vibrate {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-2px);
  }

  50% {
    transform: translateX(2px);
  }

  75% {
    transform: translateX(-2px);
  }

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

.contact-item:hover svg {
  animation: vibrate 0.2s ease-in-out infinite;
}

.Glimpses-wrapper {
  padding: 10px 0;
  overflow-x: hidden;
  position: relative;
  text-align: center;
}

.Glimpses-slider {
  padding: 0 50px;
}

.slick-initialized .slick-slide {
  color: #fff;
  height: 265px;
  margin: 0 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
}

.Glimpses-slider img {
  width: 100%;
  height: 100%;
}

/* Custom Prev/Next Buttons */
.Glimpses-arrows {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  pointer-events: none;
}

.Glimpses-prev,
.Glimpses-next {
  background: #c32026;
  color: #fff;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-size: 20px;
  border-radius: 5px;
  pointer-events: auto;
}

.Glimpses-prev:hover,
.Glimpses-next:hover {
  background: #b32532;
}

.Glimpses-slider-home .slick-slide {
  width: 351px !important;
}

@media (max-width: 768px) {
  .Glimpses-prev,
  .Glimpses-next {
    padding: 5px 10px;
    font-size: 16px;
  }
}

label.error {
  color: red;
  font-size: 0.9em;
  margin-top: 5px;
}
