:root {
  --secondary: #f3b952;
  --gold: #fecc4e;
  --red: #fecc4e;
  --blue: #0C4FAD;
  --dark-blue: #2a5085;
  --light-bg: #f8f9fa;
}

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

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

.text-secondary {
  color: var(--secondary);
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

section,
div,
h1,
p {
  margin: 0;
  padding: 0;
}

/* Countdown */
.countdown-box {
  display: inline-block;
  margin: 0 15px;
}

.countdown-box span {
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  color: #feffff;
}

.countdown-section {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  position: relative;
  background-image: url(../images/bg.jpg);
  /* background: linear-gradient(rgba(128, 10, 10, 0.295), rgba(23, 23, 131, 0.493)); */
  padding: 20px;
  border: 1px solid rgb(88, 6, 221);
    background-size: cover; 
       background-position: center; 
       background-repeat: no-repeat;

}

/* Welcome */

.bg-warning {
  border-radius: 50%;
  border: 1px solid #87ceeb;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px,
    rgba(0, 0, 0, 0.3) 0px 30px 60px -30px,
    rgba(10, 37, 64, 0.35) 0px -2px 6px 0px inset;
}

/* Quick Links */
.quick-links {
  background: #f8f9fa;
  padding: 60px 0;
}

.quick-links .card {
  border: none;
  transition: transform 0.3s;
}

.quick-links .card:hover {
  transform: translateY(-8px);
  box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.15);
}

/* Registration */
.registration {
  padding: 80px 0;
  background: linear-gradient(135deg, #fff7f8, #ffeaea);
}

.section-title {
  color: #a00a1c;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.section-title::after {
  content: "";
  width: 60px;
  height: 4px;
  background: #a00a1c;
  display: block;
  margin: 10px auto 0;
  border-radius: 2px;
}

.reg-card {
  border: none;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.reg-card:hover {
  background: #a00a1c;
  color: #fff;
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 12px 30px rgba(160, 10, 28, 0.4);
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: #a00a1c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  color: #fff;
  font-size: 1.8rem;
  transition: all 0.3s;
}

.reg-card:hover .icon-circle {
  background: #fff;
  color: #a00a1c;
}

.btn-outline-light {
  border-radius: 25px;
  border: 2px solid #fff;
  color: #fff;
  transition: all 0.3s;
}

.reg-card .btn-outline-light {
  background: #a00a1c;
  color: #fff;
  font-weight: 600;
}

.reg-card:hover .btn-outline-light {
  background: #fff;
  color: #a00a1c;
  font-weight: 600;
}



/* =====================accommodation css start========================== */
.image-hover {
  transition: transform 0.3s ease-in-out;
}
.image-hover:hover .card-img {
  transform: scale(1.05);
}
.card-img {
  transition: transform 0.3s ease-in-out;
}

/* =====================accommodation css end========================== */




/* In & Around */

/* Venue */
.venue {
  padding: 80px 0;
}

.venue img {
  border-radius: 15px;
}

/* Navbar */
.custom-navbar {
    background: linear-gradient(to left, #214f90e8, #000000be);
  transition: all 0.4s ease;
  padding: 15px 0;
}

.custom-navbar.scrolled {
  background: linear-gradient(to left, #214f90e8, #000000be);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.custom-navbar .navbar-brand {
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
}

.custom-navbar .navbar-nav .nav-link {
  color: #fff;
  font-weight: 500;
  position: relative;
  margin-left: 20px;
  transition: color 0.3s ease;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.custom-navbar .navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0%;
  height: 2px;
  background: #ffdd57;
  /* yellow underline */
  transition: width 0.3s ease;
}

.custom-navbar .navbar-nav .nav-link:hover::after {
  width: 100%;
}
.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
#videoCarousel {
  margin: 0px;
  padding: 0px;
}

.carousel-item video {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  margin: o;
  padding: 0;
}

.carousel-item {
  transition: opacity 1s ease-in-out;
  margin: o;
  padding: 0;
}

.carousel-caption {
  bottom: 20%;
  background-color: #18181771;
  padding: 5% 10%;
  backdrop-filter: blur(5px);
  border: 1px solid #ffdd5762;
  border-radius: 20px;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

h1 {
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
}

.logo-img {
  margin-right: 10px;
}

.logo-img:last-child {
  margin-right: 0;
}

.countdown-wrap {
  padding: 1% 0%;
}

/* ==================== wecome section start =========================== */

.msg {
  text-align: justify;

  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.welcome-msg {
  /* background-color: #fffaeb; */
  background: linear-gradient(135deg, #dbebf5, #faefd5eb, #e9e1e1, #dbebf5);
  /* padding: 30px; */
  border: 0 solid #e5e7eb;
  box-shadow: 2px 2px 8px #7f7f7f4d;
  border-radius: 20px;
}

.msg-head h2 {
  font-size: 30px;
  text-align: center;
  line-height: 1.5em;
  padding-bottom: 45px;
  font-family: "Playfair Display", serif;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #111;
}

.msg-head h2 {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  width: 270px;
  text-align: center;
  margin: auto;
  white-space: nowrap;
  padding-bottom: 13px;
}

.msg-head h2:before {
  background-color: #c50000;
  content: "";
  display: block;
  height: 3px;
  width: 75px;
  margin-bottom: 5px;
}

.msg-head h2:after {
  background-color: #c50000;
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  height: 3px;
  width: 75px;
  margin-bottom: 0.25em;
}

.wel-bg{
  background: url('../images/bg.jpg'); 
       background-size: cover; 
       background-position: center; 
       background-repeat: no-repeat;
       background-attachment: fixed;
}

.shadow-image {
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.shadow-image:hover {
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transform: translateY(-5px);
}

@media (min-width: 1025px) and (max-width: 1440px) {

  /* Your styles for medium screens */
  .wel-bg {
    height: auto;
  }
}

/* ======================= in and around ============================= */

.slider {
  overflow: hidden;
  position: relative;
  /* padding: 0; */
  margin: 0 !important;
  padding: 0 !important;
}

.slide-track {
  display: flex;
  width: calc(250px * 10);
  /* adjust card width * number of cards */
  animation: scroll 15s linear infinite;
  /* speed control */
}

/* Hover par animation ruk jayegi */
.slider:hover .slide-track {
  animation-play-state: paused;
}

.slide-track .card {
  min-width: 250px;
  /* adjust card size */
  margin: 0 10px;
  flex-shrink: 0;
}

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

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

.registration {
  position: relative;
  background: url("../images/reg-bg.jpg") no-repeat center center/cover;
  padding: 80px 0;
  background-attachment: fixed;
  color: #fff;
  /* makes text visible */
}

.registration::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* background: rgba(0, 0, 0, 0.5);  */
  z-index: 0;
}

.registration .container {
  position: relative;
  z-index: 1;
}

/* Base Styles */
/* .venue-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    z-index: 1;
  } */

.section-header {
  position: relative;
  padding-bottom: 20px;
}

.section-subtitle {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6c757d;
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.section-title {
  font-weight: 700;
  color: #212529;
  position: relative;
  display: inline-block;
}

.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

.title-decoration .line {
  width: 40px;
  height: 2px;
  background: #0d6efd;
  display: inline-block;
}

.title-decoration .dot {
  width: 8px;
  height: 8px;
  background: #0d6efd;
  border-radius: 50%;
  margin: 0 10px;
}

/* Venue Card */
.venue-card {
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}

.venue-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.venue-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.venue-name {
  font-weight: 700;
  color: #212529;
  position: relative;
  padding-bottom: 10px;
}

.venue-name:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0d6efd 0%, rgba(13, 110, 253, 0.3) 100%);
  border-radius: 3px;
}

.venue-description {
  color: #495057;
  line-height: 1.7;
}

/* Features List */
.venue-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.feature-item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  color: #495057;
}

.feature-item i {
  margin-right: 8px;
  color: #0d6efd;
  font-size: 1.1rem;
}

/* Weather Widget */
.weather-widget {
  background: linear-gradient(135deg, #0d6efd 0%, #0b5ed7 100%);
  color: white;
  padding: 15px;
  border-radius: 8px;
  margin-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.weather-header {
  display: flex;
  align-items: center;
}

.weather-header i {
  font-size: 1.8rem;
  margin-right: 10px;
}

.weather-details {
  text-align: right;
}

.temperature {
  font-size: 1.8rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.conditions {
  font-size: 0.8rem;
  opacity: 0.9;
}

/* Map Container */
.map-container {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 400px;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-overlay {
  position: absolute;
  top: 30%;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.map-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #495057;
  transition: all 0.3s ease;
}

.map-btn:hover,
.map-btn.active {
  /* background: #0d6efd; */
  color: white;
  transform: scale(1.1);
}

/* Gallery */
.venue-gallery {
  display: flex;
  gap: 10px;
  margin-top: 15px;
}

.gallery-thumbnail {
  width: 70px;
  height: 70px;
  border-radius: 8px;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-thumbnail:hover {
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.gallery-more {
  background: #e9ecef;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-weight: 600;
}

/* Decorative Elements */
.venue-pattern {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle,
      rgba(13, 110, 253, 0.1) 0%,
      rgba(255, 255, 255, 0) 70%);
  z-index: -1;
}

.venue-circle {
  position: absolute;
  border-radius: 50%;
  z-index: -1;
}

.venue-circle-1 {
  width: 150px;
  height: 150px;
  background: rgba(13, 110, 253, 0.05);
  top: 10%;
  left: -50px;
}

.venue-circle-2 {
  width: 200px;
  height: 200px;
  background: rgba(13, 110, 253, 0.03);
  bottom: -50px;
  right: -50px;
}

/* Transportation Info */
.transportation-info {
  /* position: absolute; */
  bottom: 30px;
  left: 30px;
  background: white;
  padding: 15px;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
  pointer-events: none;
}

.map-container:hover~.transportation-info {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .venue-features {
    grid-template-columns: 1fr;
  }

  .map-container {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
h1{
      font-size: 2.0rem;
}
  .venue-card {
    padding: 25px;
  }
}

.video-hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  height: 100vh;
  min-height: 600px;
}

.carousel-item {
  height: 100vh;
  min-height: 600px;
}

.carousel-inner {
  height: 100vh;
}

.video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.3),
      rgba(0, 0, 0, 0.5));
}

.carousel-caption {
  top: 18%;
  bottom: auto;
  padding: 1rem;
  text-align: center;
  z-index: 10;
}

.logo-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

.logo-img {
  max-height: 160px;
  width: auto;
}

.carousel-caption h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption h2 {
  font-size: 2rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.carousel-caption p {
  font-size: 1.5rem;
  max-width: 800px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.tagline {
  font-size: 1.5rem;
  color: #c50000;
  font-weight: 600;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

.btn {
  padding: 0.75rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: #c50000;
  border-color: #c50000;
}

.btn-primary:hover {
  background-color: #a30000;
  border-color: #a30000;
  transform: translateY(-2px);
}

.btn-outline-light:hover {
  transform: translateY(-2px);
}

.carousel-indicators {
  bottom: 30px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin: 0 8px;
}

.sound-toggle-btn {
  position: absolute;
  bottom: 30px;
  right: 30px;
  z-index: 15;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.sound-toggle-btn:hover {
  background-color: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .carousel-caption h1 {
    font-size: 3rem;
  }

  .carousel-caption h2 {
    font-size: 1.8rem;
  }

  .carousel-caption p {
    font-size: 1.3rem;
  }
}

@media (max-width: 992px) {
  .carousel-caption h1 {
    font-size: 2.5rem;
  }

  .carousel-caption h2 {
    font-size: 1.5rem;
  }

  .carousel-caption p {
    font-size: 1.2rem;
  }

  .logo-img {
    max-height: 60px;
  }
}

@media (max-width: 768px) {

  .carousel,
  .carousel-item {
    height: 80vh;
    min-height: 500px;
  }

  .carousel-caption h1 {
    font-size: 2rem;
  }

  .carousel-caption h2 {
    font-size: 1.3rem;
  }

  .carousel-caption p {
    font-size: 1rem;
  }

  .logo-container {
    gap: 1rem;
  }

  .logo-img {
    max-height: 50px;
  }

  .btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 576px) {

  .carousel,
  .carousel-item {
    height: 70vh;
    min-height: 400px;
  }

  .carousel-caption {
    padding: 1rem;
  }

  .carousel-caption h1 {
    font-size: 1.8rem;
  }

  .carousel-caption h2 {
    font-size: 1.2rem;
  }

  .carousel-caption p {
    font-size: 0.9rem;
  }

  .logo-img {
    max-height: 40px;
  }

  .btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.8rem;
  }

  .sound-toggle-btn {
    bottom: 20px;
    right: 20px;
    width: 35px;
    height: 35px;
  }
}

/* Animation for carousel captions */
.animate__animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translate3d(0, -20%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeIn {
  animation-name: fadeIn;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInDown {
  animation-name: fadeInDown;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate__fadeInUp {
  animation-name: fadeInUp;
}

/* ==================== committee member start ===================== */


.committee-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.committee-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/path-member.jpg") no-repeat center center/cover;
  opacity: 0.15;
  /* adjust for visibility */
  z-index: -1;
  /* keep it behind content */
  background-attachment: fixed;
}

.committee-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #f8f9fa75 0%, #e9ecef71 100%);
}

.section-title {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

.section-title h2 {
  font-weight: 700;
  color: var(--dark-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.section-title p {
  color: #6c757d;
  max-width: 700px;
  margin: 0 auto;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 100%);
  border-radius: 2px;
}

.committee-circle {
  text-align: center;
  margin-bottom: 3rem;
  padding: 0 15px;
  transition: transform 0.3s ease;
}

.committee-circle:hover {
  transform: translateY(-10px);
}

.circle-container {
  position: relative;
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
  border-color: var(--gold);
}

.member-img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 5px solid white;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.4s ease;
  
}

.circle-container .member-img {
  border-color: var(--gold);
  
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
}

.role-badge {
  position: absolute;
  bottom: 0;
  right: 0;
  background: linear-gradient(45deg, var(--red), #e91e63);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.member-info {
  text-align: center;
}

.member-name {
  font-weight: 700;
  color: var(--dark-blue);
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.member-name-text {
  font-weight: 700;
  color: white;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
  background-color: #0C4FAD;
  padding: 10px;
  height: 70px;
  align-items: center;
  border-radius: 20px;
  border: 3px solid #FFC70D;
}


.member-role {
  color: red;
  font-weight: 600;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 1rem;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: var(--blue);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-links a:hover {
  background-color: var(--red);
  transform: translateY(-3px);
}

.filter-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.6rem 1.5rem;
  background: white;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--blue);
  color: white;
}

.category-title {
  text-align: center;
  margin: 3rem 0 2rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--gold);
  color: var(--dark-blue);
  font-weight: 700;
}

@media (max-width: 768px) {
  .committee-circle {
    margin-bottom: 2.5rem;
  }

  .circle-container {
    width: 170px;
    height: 170px;
  }

  .filter-buttons {
    margin-bottom: 2rem;
  }

  .filter-btn {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }
}

@media (max-width: 576px) {
  .circle-container {
    width: 150px;
    height: 150px;
  }

  .member-name {
    font-size: 1.1rem;
  }
}

/* ==============committee member end ======================= */

/* ==================== footer code start ======================= */

.conference-footer {
  background:  url(../images/bg.jpg);
  color: white;
  padding: 3.5rem 0 1rem;
  position: relative;
  overflow: hidden;
  background-attachment: fixed;
}

.conference-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--red) 100%);
}

.footer-section {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.footer-heading {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 40px;
  height: 4px;
  background-color: var(--red);
  border-radius: 2px;
}

.footer-subheading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--gold);
  display: flex;
  align-items: center;
}

.footer-subheading i {
  margin-right: 10px;
  color: var(--red);
  font-size: 1.1rem;
}

.footer-contact-info {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-info li {
  margin-bottom: 1rem;
  display: flex;
  align-items: flex-start;
  transition: transform 0.3s;
}

.footer-contact-info li:hover {
  transform: translateX(5px);
}

.footer-contact-info i {
  margin-right: 15px;
  color: var(--red);
  min-width: 20px;
  margin-top: 4px;
  font-size: 1.1rem;
}

.footer-contact-info a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
}

.footer-contact-info a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -3px;
  left: 0;
  background-color: var(--gold);
  transition: width 0.3s;
}

.footer-contact-info a:hover {
  color: var(--gold);
}

.footer-contact-info a:hover::after {
  width: 100%;
}

.quick-links-slide {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quick-links-slide li {
  margin-bottom: 0.8rem;
  transition: transform 0.3s;
}

.quick-links-slide li:hover {
  transform: translateX(5px);
}

.quick-links-slide a {
  color: white;
  text-decoration: none;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
}

.quick-links-slide a:hover {
  color: var(--gold);
}

.quick-links-slide i {
  color: var(--red);
  margin-right: 12px;
  font-size: 0.9rem;
  transition: transform 0.3s;
}

.quick-links-slide a:hover i {
  transform: translateX(5px);
}

.footer-divider {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin: 2rem 0;
  position: relative;
}

.footer-divider::before {
  content: "";
  position: absolute;
  top: -2px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--gold);
}

.footer-bottom {
  /* background: rgba(0, 0, 0, 0.2); */
  padding: 1.2rem 0;
  text-align: center;
  font-size: 0.95rem;
  position: relative;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg,
      var(--gold) 0%,
      var(--red) 50%,
      var(--blue) 100%);
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  position: relative;
}

.footer-bottom a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background-color: var(--red);
  transition: width 0.3s;
}

.footer-bottom a:hover {
  color: var(--red);
}

.footer-bottom a:hover::after {
  width: 100%;
}

.contact-badge {
  display: inline-block;
  background: linear-gradient(45deg, var(--red), #e91e63);
  color: white;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.8rem;
  margin-left: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.pattern-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  opacity: 0.03;
  font-size: 15rem;
  z-index: 1;
  transform: rotate(15deg);
}

.social-icons {
  display: flex;
  margin-top: 1.5rem;
}

.social-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  margin-right: 12px;
  transition: all 0.3s;
}

.social-icons a:hover {
  background: var(--red);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(242, 30, 47, 0.4);
}

@media (max-width: 768px) {
  .footer-section {
    margin-bottom: 2.5rem;
  }

  .footer-heading {
    font-size: 1.4rem;
  }

  .pattern-bg {
    font-size: 8rem;
  }
}

/* ==================== footer code start ======================= */




.ts-pricing {
  background-repeat: no-repeat;

  background-size: cover;

  background-position: center center;
}

.ts-pricing .speaker-shap .shap2 {
  top: 150px;

  bottom: auto;
}

.ts-pricing.p-60 {
  padding-top: 20px;
}

.ts-pricing-bg {
  position: relative;
}

.ts-pricing-bg::before {
  position: absolute;

  content: "";

  background-color: transparent;

  background-image: -webkit-linear-gradient(306deg, #2ba36c 0%, #2ba36c 60%);

  background-image: -o-linear-gradient(306deg, #2ba36c 0%, #2ba36c 60%);

  background-image: linear-gradient(144deg, #2ba36c 0%, #2ba36c 60%);

  opacity: 0.95;

  -webkit-transition: 0.3s;

  -o-transition: 0.3s;

  transition: 0.3s;

  -webkit-filter: brightness(57%) contrast(123%) saturate(100%) blur(0)
    hue-rotate(0deg);

  filter: brightness(57%) contrast(123%) saturate(100%) blur(0) hue-rotate(0deg);

  width: 100%;

  height: 100%;

  left: 0;

  top: 0;
}

.pricing-dot {
  width: 100%;

  display: block;
}

.pricing-dot1 {
  -webkit-transform: rotate(180deg);

  -ms-transform: rotate(180deg);

  transform: rotate(180deg);

  display: block;

  width: 100%;

  margin-top: -2px;
}

.pricing-item {
  position: relative;

  max-width: 320px;

  margin: auto;
}

.pricing-item.disebled {
  opacity: 0.7;

  cursor: no-drop;
}

.pricing-item.disebled .btn {
  background: #a077a6;

  cursor: no-drop;
}

.ts-pricing-box {
  background: #fff;

  padding: 40px 0px;

  text-align: center;

  -o-transition: all 0.4s ease;

  transition: all 0.4s ease;

  -webkit-transition: all 0.4s ease;

  -moz-transition: all 0.4s ease;

  -ms-transition: all 0.4s ease;
}

.ts-pricing-box:hover {
  -webkit-box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.4);

  box-shadow: 0px 20px 30px 0px rgba(0, 0, 0, 0.4);
}

.ts-pricing-box .ts-pricing-header .ts-pricing-name {
  font-size: 20px;

  font-weight: 800;

  color: #3b1d82;

  text-transform: uppercase;

  margin-bottom: 15px;
}

.ts-pricing-box .ts-pricing-header .ts-pricing-price {
  font-size: 58px;

  font-weight: 900;

  color: #3b1d82;

  margin-bottom: 20px;
}

.ts-pricing-box .ts-pricing-header .ts-pricing-price span {
  margin-right: 10px;
}

.ts-pricing-box .ts-pricing-progress .ts-pricing-value {
  font-weight: 700;

  color: #e7015e;

  margin-bottom: 25px;
}

.ts-pricing-box .ts-progress {
  width: 100%;

  height: 10px;

  background: #ebedf4;

  margin-bottom: 10px;
}

.ts-pricing-box .ts-progress .ts-progress-inner {
  background-image: -webkit-linear-gradient(
    306deg,
    #321575 0%,
    #8d0b93 51%,
    #ff0066 100%,
    #ff057c 100%
  );

  background-image: -o-linear-gradient(
    306deg,
    #321575 0%,
    #8d0b93 51%,
    #ff0066 100%,
    #ff057c 100%
  );

  background-image: linear-gradient(
    144deg,
    #321575 0%,
    #8d0b93 51%,
    #ff0066 100%,
    #ff057c 100%
  );

  height: 100%;
}

.ts-pricing-box .promotional-code .promo-code-text {
  font-weight: 400;

  color: #e7015e;
}

.ts-pricing-box .pricing-btn {
  margin-bottom: 25px;

  position: relative;
}

.ts-pricing-box .pricing-btn:before,
.ts-pricing-box .pricing-btn:after {
  position: absolute;

  left: -14px;

  top: 0;

  content: "";

  width: 25px;

  height: 25px;

  display: block;

  background: #fff;

  border-radius: 50%;

  -webkit-border-radius: 50%;

  -ms-border-radius: 50%;

  bottom: 0;

  margin: auto;
}

.ts-pricing-box .pricing-btn:after {
  position: absolute;

  left: auto;

  top: 0;

  right: -14px;
}

.ts-pricing-box .vate-text {
  margin-bottom: 0;
}

.ts-pricing-item {
  text-align: center;

  background: #fff;

  border-radius: 5px;

  -webkit-border-radius: 5px;

  -ms-border-radius: 5px;

  padding: 40px;

  margin-top: 50px;
}

.ts-pricing-item .ts-pricing-header i {
  font-size: 70px;

  height: 160px;

  width: 160px;

  border-radius: 50%;

  -webkit-border-radius: 50%;

  -ms-border-radius: 50%;

  display: block;

  margin: auto;

  background: #3b1d82;

  color: #fff;

  padding: 45px 0;

  margin-top: -100px;

  margin-bottom: 40px;
}

.ts-pricing-item .ts-pricing-name {
  font-size: 24px;

  font-weight: 700;

  color: #3b1d82;

  margin-bottom: 35px;
}

.ts-pricing-item .ts-pricing-price {
  font-size: 48px;

  font-weight: 800;

  position: relative;

  margin-bottom: 50px;
}

.ts-pricing-item .ts-pricing-price img {
  position: absolute;

  left: 0;

  right: 0;

  bottom: 0;

  margin: auto;

  text-align: center;

  top: 0;
}

.ts-pricing-item .ts-pricing-price span {
  position: relative;

  z-index: 1;

  color: #3b1d82;
}

.ts-pricing-item p {
  margin-bottom: 30px;
}

.ts-pricing-item .btn {
  background: #3b1d82;
}

.ts-pricing-item.disebled {
  cursor: no-drop;

  opacity: 0.7;
}

.ts-pricing-item.disebled .ts-pricing-header i {
  background: #e7e7e7;
}

.ts-pricing-item.disebled .ts-pricing-header .ts-pricing-name {
  color: #cccccc;
}

.ts-pricing-item.disebled .ts-pricing-price span {
  opacity: 0.5;
}

.ts-pricing-item.disebled .btn {
  background: #e7e7e7;
}

.ts-pricing-item.active .ts-pricing-header i,
.ts-pricing-item.active .btn {
  background: #e7015e;
}

.ts-pricing-item.active .ts-pricing-name,
.ts-pricing-item.active .ts-pricing-price span {
  color: #e7015e;
}

.ts-pricing.classic .ts-pricing-item {
  -webkit-box-shadow: 19.799px 19.799px 40px 0px rgba(0, 0, 0, 0.1);

  box-shadow: 19.799px 19.799px 40px 0px rgba(0, 0, 0, 0.1);
}

.pricing-wrap .pricing-item .ts-pricing-box {
  background: #120f4e;
}

.pricing-wrap .pricing-item .ts-pricing-box .ts-pricing-name,
.pricing-wrap .pricing-item .ts-pricing-box .ts-pricing-price,
.pricing-wrap .pricing-item .ts-pricing-box .amount-progres-text,
.pricing-wrap .pricing-item .ts-pricing-box .vate-text {
  color: #fff;
}

.pricing-wrap .pricing-item .ts-pricing-box .pricing-btn:before,
.pricing-wrap .pricing-item .ts-pricing-box .pricing-btn:after {
  background: #120f4e;
}