:root {
  --secondary-gradient: linear-gradient(135deg, #E6E6FA 0%, #DDA0DD 50%, #FF69B4 100%);
  --accent-color: #FF6B35;
  --text-primary: #222222;
  --text-secondary: #C59934;
}

body {
  font-family: "Urbanist", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fff;
  overflow-x: hidden;
}

.main-warea {
  background: url(../images/main-bg.webp) no-repeat center top;
  background-size: 100%;
  animation: bgZoom 8s ease-in-out infinite alternate;
}
.about-section::before
.image-hover-box {
  position: relative;
  overflow: hidden;
}

.image-hover-box img {
  display: block;
  width: 100%;
  height: auto;
}

.image-hover-box .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  /* semi-transparent overlay */
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s ease;
}

.image-hover-box .zoom-icon {
  font-size: 36px;
  color: white;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.image-hover-box:hover .overlay {
  opacity: 1;
}

.image-hover-box:hover .zoom-icon {
  transform: scale(1);
}

@keyframes bgZoom {
  0% {
    background-size: 100%;
  }

  100% {
    background-size: 110%;
  }
}

.navbar-nav {
  background-color: #fff;
  border-radius: 90px;
  box-shadow: 0px 0px 7px #bdbaba;
  padding: 0 30px;
}

.navbar-nav li {
  line-height: 70px;
  text-transform: uppercase;
}

.navbar-nav li ul.dropdown-menu li {
  position: relative;
}

.navbar-nav li ul.dropdown-menu li:hover>a:after {
  top: 0;
  left: -1px;
  height: -webkit-calc(100% + 1px);
  height: -moz-calc(100% + 1px);
  height: calc(100% + 1px);
  opacity: 1;
  visibility: visible;
}

.navbar-nav li ul.dropdown-menu li a:after {
  content: "";
  display: inline-block;
  height: 0;
  width: 4px;
  vertical-align: middle;
  margin-right: 0;
  opacity: 0;
  visibility: hidden;
  background: #651908;
  -webkit-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  -o-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  -moz-transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  transition: height 0.4s, opacity 0.4s ease, top 0.4s ease;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateX(0);
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -o-transform: translateX(0);
  transform: translateX(0);
}


.modal {
  position: fixed !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 9999;
}

.navbar-nav li a {
  color: #C59934;
  font-family: "Roboto", sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 0 20px !important;
}

.navbar {
  background-color: #50030A;
  padding: 0;
}

.nav-link {
  color: var(--text-secondary) !important;
  font-weight: 500;
  margin: 0px;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: var(--accent-color) !important;
}

.hero-section h1 {
  font-size: 60px;
  color: #222;
  line-height: 80px;
  font-weight: 700 !important;
}

.hero-section h1 span {
  background: -webkit-linear-gradient(#E6D279, #B47620);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero h1 span {
  background: -webkit-linear-gradient(#E6D279, #B47620);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size: 20px;
  color: #222;
  padding: 30px 100px 50px;
}

.hero-section {
  padding: 50px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn-nominate-warea {
  border-radius: 48px;
  background-image: linear-gradient(rgba(0, 187, 255, 0.1), rgba(196, 77, 255, 0.1));
  box-shadow: 0px 0px 20px #bdbaba;
  display: inline-block;
  padding: 14px;
}

.white-warea {
  background-color: #fff;
  box-shadow: 0px 0px 50px #bdbaba;
  padding: 20px;
  border-radius: 35px;
}

.zoomeffect {
  width: auto;
  height: auto;
  animation: zoomImage 4s ease-in-out infinite alternate;
  transition: transform 0.4s ease-in-out;
}

@keyframes zoomImage {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.1);
  }
}

.banner-image {
  margin-left: -6%;
  margin-top: 0px;
}

/* .btn-nominate{
background-image: linear-gradient(to right, #0099FF, #CC00FF);
color:#fff;
font-family: "Roboto", sans-serif;
font-size: 24px;
font-weight: 600;
padding:12px 30px;
border-radius: 19px;
letter-spacing: 2px;
border:none;
} */

.btn-nominate {
  color: #fff;
  font-family: "Roboto", sans-serif;
  font-size: 24px;
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 19px;
  letter-spacing: 2px;
  border: none;
  cursor: pointer;
  background: linear-gradient(to right, #0099FF, #CC00FF);
  background-size: 200% 200%;
  background-position: 100% 50%;
  transition: background-position 1s ease;
}

.btn-nominate:hover {
  background-position: 0% 50%;
}

.btn-nominate:hover,
.btn-nominate:active {
  color: #fff;
}

.hero-content {
  position: relative;
  z-index: 2;
}

h2 {
  font-size: 50px !important;
  font-weight: bold !important;
  margin-bottom: 50px;
  text-align: center;
}

h2 span {
  background: -webkit-linear-gradient(#E6D279, #B47620);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.awards-section {
  padding: 40px 0 0;
}

.award-card .img-warea {
  position: relative;
  display: inline-block;
}

.award-card .img-warea img {
  position: relative;
  z-index: 5;
  border-radius: 20px 0 0 0;
}

.award-card .img-warea::before {
  content: "";
  background-color: #fff;
  width: 150px;
  height: 150px;
  border-radius: 150px;
  display: inline-block;
  position: absolute;
  z-index: 0;
  margin: 20px 0 0 30px;
}

.three .img-warea::before {
  margin-left: 30px !important;
}

.content-warea {
  padding: 0 20px 30px 50px;
}

.award-card {
  background-color: #DDA0DD;
  border-radius: 20px;
  padding: 0;
  border: none;
  margin: 5px;
}

.box-warea {
  margin: 0 250px;
}

.award-number {
  font-size: 65px;
  font-weight: 700;
  line-height: 65px;
}

.one {
  background-image: linear-gradient(#FFF6CF, #FFE679);
}

.two {
  background-image: linear-gradient(54deg, #E5CFFF 0%, #B273FF 100%);
}

.three {
  background-image: linear-gradient(56deg, #DBEBEB 0%, #91EFEF 100%);
}

.four {
  background-image: linear-gradient(47deg, #DEEFFF 0%, #B1C6D9 100%);
}

.award-label {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.journey-section {
  padding: 0px 0 80px;
  text-align: center;
}

.journey-section .lead {
  font-size: 18px;
  padding: 0px 250px 50px;
}

.journey-title {
  padding-top: 80px;
  margin-bottom: 30px;
}

.journey-marquee {
  background-image: linear-gradient(to right, rgba(199, 150, 53, 0.5), rgba(255, 255, 255, 0.7), rgba(199, 150, 53, 1));
  padding: 100px 0;
}

.journey-marquee .item {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}

.journey-marquee .item img {
  width: 150px;
  height: auto;
  border-radius: 12px;
}

/* Smooth marquee effect */
#marquee-carousel .owl-stage,
#gallery-carousel .owl-stage,
#gallery-carousel1 .owl-stage,
#gallery-carousel2 .owl-stage,
.story-carousel .owl-stage {
  animation: scroll-left 30s linear infinite;
}

.journey-marquee:hover .owl-stage {
  animation-play-state: paused;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.about-section {
  position: relative;
  background: var(--secondary-gradient);
  padding: 0px 0 80px;
}

/*.about-section::before {*/
/*  content: "";*/
/*  background: url(../images/icon1.webp) no-repeat center center;*/
/*  width: 77px;*/
/*  height: 122px;*/
/*  position: absolute;*/
/*  right: 150px;*/
/*  top: 0;*/
/*  animation: float-bob-y 8s linear infinite;*/
/*}*/

.desktop {
  margin-top: 50px
}

.about-content {
  background: white;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.card-img-top {
  height: auto;
  object-fit: cover;
}

.about-section .card {
  position: relative;
  border: none;
}

.about-section .card-body {
  position: absolute;
  bottom: 0;
  color: #fff !important;
  padding: 20px !important;
  line-height: 20px;
}

.about-section .card-body .text-muted {
  color: #fff !important;
  font-size: 13px;
  font-weight: 400;
  font-family: "Roboto", sans-serif;
}

.about-content1 {
  margin-left: 80px;
}

.about-content1 h2 {
  margin-top: 0px;
  text-align: left;
  margin-bottom: 30px;
}

.about-content1 p {
  font-size: 18px;
}

.why-join-section {
  padding: 80px 0;
  position: relative;
}

.why-join-section h2 {
  margin-bottom: 30px;
}

.why-join-section::before {
  content: "";
  background: url(../images/icon2.webp) no-repeat center center;
  width: 111px;
  height: 96px;
  position: absolute;
  left: 150px;
  top: 220px;
  animation: float-bob-y 8s linear infinite;
}

/*.why-join-section::after {*/
/*  content: "";*/
/*  background: url(../images/icon1.webp) no-repeat center center;*/
/*  width: 77px;*/
/*  height: 122px;*/
/*  position: absolute;*/
/*  right: 250px;*/
/*  top: 100px;*/
/*  animation: float-bob-x 8s linear infinite;*/
/*}*/

.trophy-section {
  background: #fff;
  padding: 0px 0;
}

.trophy-content::before {
  content: "";
  background: url(../images/award-design.webp) no-repeat center center;
  width: 139px;
  height: 822px;
  position: absolute;
  left: 0;
  top: 0;
}

.trophy-content::after {
  content: "";
  background: url(../images/award-design1.webp) no-repeat center center;
  width: 63px;
  height: 803px;
  position: absolute;
  right: 0;
  top: 0;
}

.trophy-title {
  color: var(--text-primary, #222);
}

.trophy-year {
  color: #B8860B;
}

.trophy-content {
  position: relative;
  background-image: linear-gradient(#FFFEF8, #FFECC4);
  padding: 180px 250px;
  border-top: 1px solid #AF792D;
  border-bottom: 1px solid #AF792D;
}

.trophy-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  padding: 32px 24px;
  text-align: center;
  margin-top: -50px;
  height: 155px;
}

.trophy-img {
  margin-bottom: 16px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.trophy-img img {
  width: auto;
  height: auto;
}

.trophy-heading {
  color: #222222;
  font-weight: 700;
  margin-bottom: 12px;
  position: absolute;
  top: 23%;
  left: 0;
  right: 0;
  font-size: 23px;
}

.trophy-heading span {
  width: 30%;
  display: inline-block;
}

.trophy-heading span b {
  background: -webkit-linear-gradient(#CCA030, #A82632);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trophy-desc {
  font-size: 26px;
  color: #222;
  margin: 30px 0 40px;
  font-weight: 700;
}

.trophy-desc span {
  background: -webkit-linear-gradient(#E6D279, #B47620);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.read-more-btn {
  background: #B8860B;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 14px 28px;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.read-more-btn:hover {
  background-color: #50030A;
}

.why-join-title {
  font-weight: 700;
  font-size: 2.2rem;
}

.why-join-highlight {
  color: #FFB300;
}

.why-join-desc {
  margin: 0 20%;
  color: #222;
  font-size: 18px;
}

.why-box {
  background-color: #fff;
  padding: 80px;
  box-shadow: 0 2px 12px rgba(247, 230, 199, 0.7);
  border-radius: 50px;
}

.why-box1 {
  background-image: linear-gradient(#FEF6F3, #FFEFA9);
}

.why-box2 {
  background-image: linear-gradient(#FEF6F3, #FAE3DA);
}

.why-box3 {
  background-image: linear-gradient(#FEF6F3, #FAE3DA);
}

.why-box4 {
  background-image: linear-gradient(#FEF6F3, #FFF0B0);
}

.why-card {
  border-radius: 18px;
  position: relative;
  border: 1px solid #D3D5D8;
}

.why-warea {
  padding: 50px 50px 30px 50px;
  margin-right: 250px;
}

.why-card h5 {
  font-size: 35px;
  font-weight: bold;
}

.why-card-text {
  color: #222;
  font-size: 18px;
}

.mb-30 {
  margin-bottom: 60px;
}

.grad-clr {
  background: linear-gradient(to right, #fff 0%, #fff8d6 25%, #fff 50%, #ffd4cb 75%, #fff 100%);
  margin-bottom: 80px;
}

.text-why {
  position: absolute;
  right: 0;
  bottom: 0;
}

.text-why img {
  border-radius: 0 0 18px 0;
}

.book-icon {
  width: 100px;
  height: 100px;
  background: #FFD700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-primary);
  margin-bottom: 30px;
}

.faces-section {
  padding: 0 0 80px;
}

.faces-bg {
  background: url(../images/faces-bg.webp) no-repeat center center;
  background-size: cover;
}

.faces-title {
  font-weight: 700;
}

.faces-highlight {
  color: #FFD700;
}

.faces-card {
  border-radius: 50px;
  border: 4px solid #fff;
  padding: 24px 16px;
  background: transparent;
  transition: box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.faces-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.13);
}

.kapil-img {
  padding-bottom: 105px;
}

.kapil-img img,
.navita-img img {
  width: 100%;
}

.navita-img {
  padding-top: 100px;
}

.speech-bubble {
  display: inline-block;
  position: relative;
  background-color: #fff;
  border-radius: 10px;
  padding: 8px 28px 8px 28px;
  width: 100%;
  position: relative;
}

.speech-warea {
  background-image: linear-gradient(90deg, #fff 30%, #B47620 100%);
  padding: 5px;
  border-radius: 10px;
  width: 330px;
  position: absolute;
  bottom: 0;
  left: 0;
  margin-bottom: 80px;
}

.speech-warea-right {
  background-image: linear-gradient(90deg, #B47620 30%, #fff 100%);
  padding: 5px;
  border-radius: 10px;
  width: 330px;
  position: absolute;
  right: 0;
  top: 0;
  margin-top: 80px;
}

.speech-bubble-arrow-right {
  position: absolute;
  right: -28px;
  top: 35%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-left: 28px solid #fff;
  border-right: 0;
  z-index: 1;
}

.speech-bubble-arrow {
  position: absolute;
  left: -28px;
  top: 35%;
  width: 0;
  height: 0;
  border-top: 16px solid transparent;
  border-bottom: 16px solid transparent;
  border-right: 28px solid #fff;
  border-left: 0;
  z-index: 1;
}

.name-warea {
  position: relative;
  height: 100%;
  display: flex;
}

.speech-bubble-name {
  font-size: 28px;
  color: #4d1c1c;
  font-weight: 400;
  line-height: 1.1;
  position: relative;
  display: inline-block;
  margin-bottom: 20px;
}

.speech-bubble-name::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #4d1c1c;
  bottom: -10px;
  left: 0;

}

.speech-bubble-role {
  font-size: 25px;
  font-weight: 500;
  background: linear-gradient(90deg, #c48a2e 40%, #b33b2d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.faces-info {
  background: #fff;
  color: #6d0f2c;
  border-radius: 12px;
  padding: 12px 20px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
}

.faces-name {
  font-size: 1rem;
  font-weight: 600;
  color: #6d0f2c;
}

.faces-role {
  font-size: 1.1rem;
  color: #d2691e;
  font-weight: 500;
}

.storytelling-section {
  padding: 0;
}

.storytelling-section p {
  font-size: 18px;
}

.story-block {
  background-color: #F7F5E9;
  padding: 80px 0;
}

.story-grid {
  gap: 2rem !important;
}

.mb-20 {
  margin-bottom: 20px;
}

.story-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
  overflow: hidden;
  max-width: 260px;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
}

.story-card img {
  width: 100%;
  height: auto;
  display: block;
}

.story-card-content {
  padding: 1rem;
  position: absolute;
  bottom: 0;
  text-align: left;
  font-size: 38px;
  color: #fff;
  background-image: linear-gradient(transparent, 30%, #000);
  width: 100%;
  height: 80px;
}

.story-card-content h6 {
  font-size: 21px;
}

.partners-title {
  font-weight: 700;
  font-size: 2.5rem;
}

.partners-title span {
  color: #c98a2b;
}

.partner-logo-circle {
  position: relative;
  overflow: hidden;
  background: #fff;
  border-radius: 50%;
  background-image: linear-gradient(#E0AB56, #FFFFFF);
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  padding: 10px;
}

/* Pseudo-element with hover gradient */
.partner-logo-circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(0deg, #E0AB56, #FFFFFF);
  /* hover gradient */
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1;
}

/* Show the hover gradient on hover */
.partner-logo-circle:hover::before {
  opacity: 1;
}

/* Ensure content inside stays visible */
.partner-logo-circle>* {
  position: relative;
  z-index: 2;
}

.partner-logo-img {
  max-width: 150px;
  max-height: 150px;
}

.partner-role {
  color: #fff;
  font-size: 0.85rem;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-10px);
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--accent-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 30px;
}

.marathon-section {
  border-radius: 18px;
  margin: 0;
}

.marathon-stats {
  background: url(../images/marathon-bg.webp) no-repeat center top;
  background-size: cover;
}

.stat-number {
  font-size: 64px;
  font-weight: 800;
  color: #FFB300;
  margin-bottom: 10px;
  font-family: 'Urbanist', 'Roboto', Arial, sans-serif;
  letter-spacing: -2px;
}

.stat-label {
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.10);
  font-family: 'Urbanist', 'Roboto', Arial, sans-serif;
}

.marathon-section {
  padding: 0px 0 80px;
  text-align: center;
}

.marathon-stats {
  margin: 0px 0;
}

.stat-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 50px 20px;
}

.stat-number {
  font-size: 100px;
  font-weight: 700;
  line-height: 100px;
  margin-bottom: 30px;
}

.announcement-video {
  background: linear-gradient(45deg, #FF6B6B, #4ECDC4);
  border-radius: 15px;
  padding: 50px;
  color: white;
  position: relative;
  overflow: hidden;
}

.announcement-video::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>') repeat;
  background-size: 20px 20px;
}

.announcement-section {
  padding: 0px 0 80px;
}

.announcement-section h2 {
  font-weight: 700;
  font-size: 2.2rem;
  color: #333;
}

.announcement-section .announcement-year {
  color: #FFD700;
}

.announcement-section .announcement-title {
  color: #333;
}

.announcement-card {
  background: #fff;
  border-radius: 0;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
  padding: 20px;
}

.announcement-img {
  width: 100%;
}

.btn-close {
  position: absolute;
  right: -23px;
  top: -23px;
  z-index: 1;
  background-color: #ddd;
  opacity: 1;
  padding: 15px;
  border-radius: 30px;

}

.gallery-warea {
  border-radius: 70px;
  background-color: #fff;
  padding: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}


.gallery-item {

  border-radius: 15px;
  overflow: hidden;
}

#gallery-carousel1 .item {
  margin: 8px 0;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#gallery-carousel,
#gallery-carousel .owl-stage-outer {
  border-radius: 50px 50px 0 0;
}

#gallery-carousel2,
#gallery-carousel2 .owl-stage-outer {
  border-radius: 0 0 50px 50px;
}

#gallery-carousel1 .owl-stage {
  animation: marquee-ltr 30s linear infinite !important;
}

@keyframes marquee-ltr {
  0% {
    transform: translateX(-50%);
  }

  100% {
    transform: translateX(0);
  }
}

.logo-block {
  padding: 50px 0;
}

.partner-logo-warea {
  background-image: linear-gradient(to right, #50030A 0%, #651908 100%);
}

.solh-sponsor-circle {
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin-bottom: 0;
  position: relative;
}

.solh-logo-img {}

.solh-sponsor-label {
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 8px;
  text-transform: uppercase;
}

.red-bg {
  background-color: #5B0F09;
}

.footer {
  background-color: #26243C;
  color: white;
  text-align: center;
  padding: 30px 0;
}

.zoom-icon img {
  border-radius: 0 !important;
}

/*Animation*/
@-webkit-keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}

@keyframes float-bob-y {
  0% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }

  50% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }

  100% {
    -webkit-transform: translateY(-60px);
    transform: translateY(-60px);
  }
}


/*Animation*/
@-webkit-keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
}

@keyframes float-bob-x {
  0% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }

  50% {
    -webkit-transform: translateX(-10px);
    transform: translateX(-10px);
  }

  100% {
    -webkit-transform: translateX(-60px);
    transform: translateX(-60px);
  }
}

.listing {
  margin: 0;
  padding: 0;
}

.listing li {
  position: relative;
  list-style-type: none;
  margin: 0 0 10px 0;
  padding: 0 0 0 25px;
}

.listing li img {
  position: absolute;
  left: 0px;
  top: 4px;
}

.marg-rgt {
  margin-right: 250px !important;
}

.btm-hd {
  font-size: 22px;
  font-weight: 500;
}

.about-inner-section {
  padding: 80px 0;
  margin: 0 0 80px;
}

.about-inner-section h2 {
  text-align: left;
  margin-bottom: 30px;
}

.inner-section {
  margin: 0px 0 60px;
  padding-top: 60px;
  background-color: #fff;
}

.scrollup {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: linear-gradient(to right, #50030A 0%, #651908 100%);
  color: white;
  padding: 0;
  border-radius: 50%;
  font-size: 16px;
  z-index: 9999;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
}

.scrollup:hover {
  background-color: #555;
}

.lrg-txt {
  font-size: 20px;
  font-weight: 600;
  margin-top: 20px;
  margin-bottom: 0;
}

/*FAQs*/
.accordion .accordion-item {
  border: none;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 1rem;
  overflow: hidden;
}

.accordion-button {
  background-color: #fff;
  color: #222222;
  font-weight: 500;
  font-size: 1.1rem;
  padding: 1rem 1.5rem;
  border-radius: 0 !important;
}

.accordion-button::after {

  transition: transform 0.3s ease;
}

.accordion-button:not(.collapsed)::after {
  transform: rotate(180deg);

}

.accordion-button:focus {
  box-shadow: none;
}

.accordion-body {
  background: #fff;
  padding: 0 1.5rem 1.5rem 4.5rem;
  line-height: 1.6;
}

.accordion-button:not(.collapsed)::after {
  background-image: url(../images/minus.webp) !important;
  width: 23px;
  height: 23px;
  position: absolute;
  top: 32px;
  left: 30px;
}

.accordion-button::after {
  position: absolute;
  width: 23px;
  height: 23px;
  top: 32px;
  left: 30px;
  background-image: url(../images/plus.webp) !important;
}

.accordion-button {
  padding: 2rem 2rem 2rem 4.5rem;
  font-weight: 600;
  font-size: 1.2rem;
}

.accordion-button:hover {
  background-color: #fff;
  color: #222222;
}

.accordion-button:not(.collapsed) {
  color: #222222;
  background-color: #fff;
  box-shadow: none !important;
}

.faqs-section {
  padding: 80px 0 0;
  background: linear-gradient(to right, #fff 0%, #fff8d6 25%, #fff 50%, #ffd4cb 75%, #fff 100%);
}

.partners-section {
  margin-top: 80px;
}

.inner-section p {
  font-size: 18px;
  line-height: 30px;
}

.inner-section .trophy-content::before,
.inner-section .trophy-content::after {
  content: none;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff;
  text-decoration: none;
  background-color: #50030A;
}

.trophy-box1 {
  background-color: #fff;
  padding: 30px;
  text-align: center;
  border-radius: 50px 10px 10px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  margin-bottom: 80px;
  width: 100%;
  transition: all 0.3s ease;
}

.trophy-box1 h4 {
  font-size: 22px;
  font-weight: 600;
  color: #222222;
  margin-bottom: 0px;
  margin-top: 30px;
}

.trophy-section .trophy-content {
  padding: 60px 0px;
}

.trophy-img1 {
  background-color: #50030A;
  width: 80px;
  height: 80px;
  text-align: center;
  border-radius: 10px;
  transform: rotate(-45deg);
  margin: -68px auto 0;
  transition: -webkit-transform 1s;
}

.trophy-img1 img {
  transform: rotate(45deg);
  transition: -webkit-transform 1s;
}

.award-block {
  padding: 130px 0 0px !important;
}

.trophy-box1:hover .trophy-img1 {
  transform: rotateY(0deg);
}

.trophy-box1:hover .trophy-img1 img {
  transform: rotate(0deg);
}

.trophy-box1:hover h4 {
  color: #50030A;
}

.trophy-box1:hover {
  border-radius: 10px
}


/*Journey page css*/
.journey-text {
  margin-left: 120px;
  position: relative;
}

.journey-text .read-more-btn {
  display: inline-block;
  margin-top: 20px;
}

.year {
  font-size: 150px;
  font-weight: 900;
  color: #e8e6db;
  position: absolute;
  transform: rotate(-90deg);
  left: -248px;
  top: 50px;
}

.journey-text h3 {
  position: relative;
  font-size: 20px;
  padding-left: 40px;
}

.journey-text h3::before {
  position: absolute;
  background: #222222;
  width: 25px;
  height: 2px;
  content: "";
  left: 0;
  top: 12px;
}

.journey-text h3 span {
  font-weight: 700;
}

.journey-text h4 {
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 20px;
}

.journey-text p {
  font-size: 16px;
  line-height: 28px;
}

.journey-text h4 span {
  background: -webkit-linear-gradient(#E6D279, #B47620);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.white-bg {
  background-color: #fff !important;
}

.journey-blk img {
  width: 100%;
}

.curt-yr {
  padding: 60px 0;
  text-align: center;
}

.curt-yr p {
  font-size: 25px;
  line-height: 40px;
  ;
}

#single-image-carousel img {
  border-radius: 15px;
}

#single-image-carousel.owl-theme .owl-nav {
  margin-top: 0px;
}

#single-image-carousel.owl-carousel .owl-nav button.owl-next,
#single-image-carousel.owl-carousel .owl-nav button.owl-prev {
  position: absolute;
  top: 50%;
  font-size: 100px !important;
  font-weight: 100 !important;
  line-height: 100px !important;
  margin: -50px 0 0 !important;
}

#single-image-carousel.owl-carousel .owl-nav button.owl-next {
  right: 50px;
}

#single-image-carousel.owl-carousel .owl-nav button.owl-prev {
  left: 50px;
}

#single-image-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  background: transparent !important;
  color: #ddd;
}

.journey-detail-section {
  margin-top: 80px;
  text-align: center;
}

.lrg-font {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

.mrgntb {
  margin: 40px 0 50px;
}

.jrny-sec-cont {
  margin-top: 80px;
}

.mt-8 {
  margin-top: 80px;
}


/* PVLF 2022 to 2025 Ashwani Css */
.event_highlights {
  padding: 10px 0;
}

.event_highlights table thead tr th {
  padding: 0 0 15px;
  line-height: 1;
}

.event_highlights table {
  width: 80%;
  margin: auto;
  border-bottom: #fff solid 1px;
}

/* .event_highlights table td {
  background-color: transparent;
  border: #000 solid 1px;
  font-size: 16px;
} */

.event_highlights table td {
  background-color: #fae7b2;
  border: #ffffff solid 1px;
  font-size: 16px;
}

.event_highlights table td:first-child {
  background: #4c0208;
  color: #fff;
}

.event_highlights table thead th {
  background-color: transparent;
}

.event_heading {
  font-size: 22px;
}

.event_highlights .table>:not(caption)>*>* {
  border-bottom-width: 0px;
}

ul.kye_categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
}

ul.kye_categories li {
  text-align: center;
  border: #C59934 solid 1px;
  padding: 2px;
  list-style-type: none;
  border-radius: 15px;
}

/* Nomination css */

 /* Nomination css */

.nominate-wrapper {
  margin: 0;
  padding: 0;
}

.nominate-card {
  background: linear-gradient(135deg, #420303, #3e0e17);
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.2);
  padding: 30px 40px;
}

.nominate-card h4 {
  color: #ffffff;
}

.nominate-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
  line-height: 1.5;
}

.nominate-list li::before {
  content: '●';
  color: white;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
}

.nominate-card a{
    text-decoration:none;
    color:#f5d76d;
}

.star-icon {
  bottom: 20px;
  right: 20px;
  font-size: 22px;
}
.nomination_guidelines{
  overflow:hidden;
}
.nomination_guidelines .trophy-content::before {
  height: 100%;
}

.nomination_guidelines .trophy-content::after {
  height: 100%;
}

.info-box {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background: linear-gradient(to bottom, #fff, transparent);
  /* Gradient background */
  padding: 3rem 3rem 0;
}

.info-box ul {
  list-style-type: none;
  padding-left: 0;
}

.info-box li::before {
  content: "●";
  color: #b87d10;
  /* Gold-like bullet */
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

.info-box li {
  margin-bottom: 1rem;
  color: #b87d10;
  font-weight: 500;
  line-height: 1.2;
}

.nomination_guidelines .trophy-content {
    padding-bottom: 0;
}
.trophy-content{
  position: relative;
}

.trophy-content img.circle_img{
  width: 500px;
  margin: auto;
  height:auto;
  position: absolute;
  left: 0;
  right:0;
}

.qr_code{
    float: right;
    /*background: linear-gradient(135deg, #420303, #3e0e17);  */
    border-radius: 10px;
    text-align: center;
    display: inline-block;
}
 
.qr_code img {
    max-width: 100%;
    height: auto;
    /* width: 122px; */
    border: #b5b8bf solid 1px;
    padding: 9px;
    height: 202px;
    border-radius: 7px;
}

.scanqrcode {
    /* background: linear-gradient(135deg, #ba7900 0%, #daab52 60%); */
    color: black;
    font-size: 15px;
    padding: 7px 15px;
    border-radius: 5px;
    margin: 5px 0 0;
    display: block;
    line-height: 1.2;
    font-weight: 500;
}


.check_icon{
  text-align: center;
}
.check_icon i {
  color: #0cbd0c;    
  width: 50px;
  text-align: center;
  font-size: 45px;
}



.hide_d{
  display: block;
}
.show_m{
  display: none;
}

@media screen and (max-width: 767px) {
    
    .row.mobile-stack {
        display: block !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
        padding:0 !important;
    }
  
   .trophy-content img.circle_img{
    display: none;
   }
   .payment-section p{
    text-align: center;
   }
  .selected-category, .total-amount {
    font-size: 20px !important;
    font-weight:bold;
  }

   .qr_code {
        display: ruby;
    }

  .hide_d{
    display:none;
  }
  .show_m{
    display: block;
    margin-top: 20px;
  }
  .qr_code{
              float: none;
        margin: auto;
        text-align: center;
        display: block;
  }
  .qr_code img{
    width: 75%;
    margin: 5px;
    height: auto;
  }
  
  .hide_mobile{
      display:none;
  }
 

}
 
/* end Ashwani Css */



/*book page css start*/
.decorative-ribbon {
            position: absolute;
            top: -80px;
            left: 0px;            
        }

    
        .star1 { position:absolute;top: 0px; right: 30px; animation-delay: 0s; }
        

 .page-banner-title {
    width: 70%;
    margin: 80px auto 0;
    position: relative;
}
.page-banner-title h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #222222;
    text-align: center;
    margin-bottom: 10px;
}
.page-banner-title h1 .drk-clr{
      background: linear-gradient(70deg,rgba(85, 8, 10, 1) 0%, rgba(255, 208, 134, 1) 40%, rgba(178, 127, 45, 1) 71%, rgba(80, 3, 10, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.crwn-icon{
      width: 80px;
    margin-left: 34px;
    margin-top: -10px;
}
.page-banner-title h1 .lgt-clr{
      background:linear-gradient(70deg,rgba(204, 160, 48, 1) 0%, rgba(181, 83, 49, 1) 40%, rgba(178, 72, 49, 1) 71%, rgba(168, 38, 50, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nomination-book-icon{
      position: absolute;
    right: -215px;
    bottom: 0;
    width: 300px;
}
.ts-schedule-nav h3{
  margin:0;
}
.ts-schedule h4{
  background:linear-gradient(90deg,rgba(226, 177, 97, 1) 0%, rgba(192, 121, 4, 1) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 40px !important;
    position: relative;
    border-bottom: 1px solid #B47620;
    padding-bottom:20px;
    margin-bottom:30px !important;
    text-align: center;
    font-weight:700;
}
.ts-schedule h4::before{
  content: "";  
  position: absolute;
  background: url(../images/star2.png) no-repeat center center;
  width: 22px;
  height: 22px;
  left: 35%;
  top:15px;
}
.ts-schedule h4::after{
  content: "";  
  position: absolute;
  background: url(../images/star1.png) no-repeat center center;
  width: 34px;
  height: 34px;
  right: 35%;
  top:5px;
}
.shrtlst-hd::before{
    left: 27% !important;
}
.shrtlst-hd::after{
    right: 27% !important;
}
.ts-schedule-nav {
  background: #fff url(../images/vote-border.png) no-repeat center bottom;
  background-size: 100%;
}
.post-body figure.small{
  background: linear-gradient(180deg,rgba(255, 243, 226, 1) 0%, rgba(255, 255, 255, 1) 100%);
  padding:8px;
  border-radius: 32px;
}
.txt-wp h5{
  display: inline-block;
  font-size: 15px;
  margin-bottom: 8px;
  color:#B47620;
}
.txt-wp h5 span{
  color:#000;
}

/*CSS for login popup*/

#account_login .modal-dialog {
    max-width: 500px;
}

#account_login .modal-content .row {
    display: flex;
    align-items: center
}

#account_login .modal-content {
    border: 0;
    background:transparent;
    height: 100%;
    width:100%;
}

#account_login .modal-content img {
    width: 20px;
}

#account_login .modal-content .modal-body h3 {
    color: #000;
    font-size: 19px;
    margin: 10px 0 0
}

#account_login .modal-content .modal-body .modal_form {
    background: #fff;
    padding: 35px;
    position: relative;
    box-shadow: rgb(0 0 0 / .24) 0 3px 8px;
    border-radius:30px;
}
#account_login .modal-content .modal-body .modal_form .form_heading {
    font-weight: 500;
    margin-bottom:20px;
    font-size: 25px;
    color:#a72632;
}
#account_login .modal-content .modal-body .modal_form .form_group {
    margin-bottom: 15px;
    text-align:left;
}


#account_login .modal-content .modal-body .modal_form .form_group span.error-message {
    font-size: 14px;
    color: #ff0018;
    font-weight: 400;
}


#account_login .modal-content .modal-body .modal_form .mob_number {
    font-weight: 500;
    margin-bottom: 20px;
    font-size: 25px;
    color: #a72632;
}

#account_login .modal-content .modal-body .modal_form input[type="tel"] {
    height: inherit;
    width:100%;
    border-radius: 6px;
    padding: 12px 0;
    margin: 0 0 12px 0;
    font-size: 15px;
    background: #fff0;
    border: #adadad solid 1px;
    outline: none;
    color: #000;
    padding-left: 50px
}
#account_login button.close{
        width: 40px;
    height: 40px;
    background-color: #a82632;
    border-radius: 50%;
    opacity: 1;
    position: absolute;
    z-index: 99;
    color: #fff;
    text-shadow: none;
    right: 0;
}


.mob_input {
    position: relative
}

.mob_input span {
    position: absolute;
    left: 0;
    top: 0;
    background: #fff;
    font-size: 16px;
    color: #000;
    padding: 8px 5px;
    margin: 5px 0 7px 5px
}

#account_login .modal-content .modal-body .modal_form input[type="tel"]:focus {
    background: #fff;
    border: #e97938 solid 1px
}

#account_login .modal-content .modal-body .modal_form input[type="tel"]::placeholder {
    color: #000
}

#account_login .modal-content .modal-body .modal_form label {
    font-size: 14px;
    align-items: center;
    display: block;
    color: #3c3c3c;
    text-align: left;
    margin: 0;
}

#account_login #md2 input {
    border-color: #a82632;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    color: #a82632;
    font-size: 18px;
    padding:0;
    text-align:center;
}

#account_login .modal-content .modal-body .modal_form input {
    padding:14px 25px;
    width: 100%;
    font-size: 13px;
    background: #efefef;
    border: none;
    outline: none;
    color: #5a5a5a;
    border-radius: 30px;
    height: auto;
}
#account_login .modal-content .modal-body .modal_form input::placeholder {
    color: #000;
}

#account_login .modal-content .modal-body .modal_form button {
   margin: 30px 0 20px;
    border-radius: 30px;
    background-color: #AF792D;
    color: #fff;
    display: block;
    width: 100%;
    padding: 10px;
}

#account_login .modal-content .modal-body .modal_form .terms_condition {
    text-align: center;
    margin: 25px 0 0
}

#account_login .modal-content .modal-body .modal_form .terms_condition p {
    font-size: 13px;
    display: block;
    line-height: 1.5;
    color: #000
}

#account_login .modal-content .modal-body .modal_form .terms_condition p a {
    text-decoration: underline;
    color: #000
}
span.hd{
    display:block;
}
.popup_form {
    width: 100%;
    perspective: 1000px
}

.popup_form-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s;
    transform-style: preserve-3d
}

.popup_form-front,
.popup_form-back {
    width: 100%;
    height: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden
}

#account_login .modal-content .modal-body .modal_form button.btn.continue {
    text-align: center;
    margin: 5px auto;
    background: #fff;
    color: #048a3c;
    border: #048a3c solid 1px;
    border-radius: 5px;
    padding: 10px 18px
}
.trophy-box1 a{
    text-decoration:none;
}
.heading-login{
    background-color: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    padding: 10px 30px;
    font-size: 15px;
    display: inline-block;
    margin:15px 0 0;
}
.heading-login img{
    margin-right:3px;
}