: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;
}
.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:80px;
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:30px 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 */
.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: 20px 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:40px;
}
.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;
}

.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 80px;
  padding-top:80px;
  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;
}
