/* Add Vina Sans font */
@font-face {
    font-family: 'Vina Sans';
    src: url('../fonts/VinaSans-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Kaushan Script';
    src: url('../fonts/KaushanScript-Regular.ttf') format('truetype');
}


        body, html {          
            width: 100%;
            max-width: 100%;
            margin: 0;
            padding: 0;
        }
      
       


@font-face {
    font-family: 'Manrope';
    src: url('../fonts/Manrope.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}


.about-header {
    font-size: 32px;
    line-height: 24px;
    font-weight: 800;
    color: #D4A200;

}

@media screen and (max-width: 768px) {
   .about-header {
    font-size: 20px;
   }
}

.about-header span{
    font-weight: 400;
} 

.about-text {
    font-size: 500;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 17px;
}

body {
    font-family: 'Manrope', sans-serif;
}

/* Image flip classes */
.img-flip-horizontal {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}

.img-flip-vertical {
    -webkit-transform: scaleY(-1);
    transform: scaleY(-1);
}

.img-rotate-90 {
    -webkit-transform: rotate(90deg);
    transform: rotate(90deg);
}

.img-rotate-180 {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
}

.img-rotate-270 {
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
}

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    background-color: #000;
    color: #fff;
}

.hero-overlay {
    position: relative;
 
    justify-content: space-between;
   
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0 5%;
}
/* Hero images with circular masks */
.hero-image {
    position: relative;
    width: 25%;
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-image-mask {
    width: 400;
    height: 340px;

    overflow: hidden;
    position: relative;
}

.hero-image-left-mask-bg1 {
    background: linear-gradient(rgba(10, 11, 16, 1), rgba(72, 17, 8, 0)); 
    width: 256px;
    height: 256px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    z-index: 1;
    mix-blend-mode: multiply;
}

.hero-image-left-mask-bg2 {
    background: linear-gradient(rgba(15, 16, 20, 0), rgba(162, 58, 17, 1)); 
    width: 256px;
    height: 256px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    mix-blend-mode: multiply;
}

.hero-image-left-mask-bg3 {
    background: linear-gradient(rgba(10, 11, 16, 1), rgba(115, 115, 115, 0)); 
    width: 256px;
    height: 256px;
    border-radius: 50%;
    position: absolute;
    bottom: 0;
    mix-blend-mode: multiply;
}

.hero-image::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 0px;
    right: -50px;
    bottom: 0px;
    background: radial-gradient(ellipse at center, rgba(0,0,0,0) 20%, rgba(0,0,0,0.7) 50%, rgba(0,0,0,1) 80%);
    z-index: 7;
    pointer-events: none;
}

.hero-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    overflow: hidden;
    z-index: 30; 
    width: 300px; 
    height: 300px;
    filter: grayscale(100%);
}


.hero-image-right .hero-image-mask {
    background: rgba(0, 0, 0, 0.85); /* Dark brown overlay */
}

.hero-image-left {
    justify-content: flex-start;
}

.hero-image-right {
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: relative;
    z-index: 1;
}

/* Center content */
.hero-content {
    width: 50%;
    text-align: center;
    z-index: 3;
}



.hero-logo img {
    width: 100%;
}

/* Style for the year text */
.year-text {
    font-family: 'Vina Sans';
    font-size: 36px;
    font-weight: 400;
    color: white;
    text-align: right;
    margin-top: -105px;
    margin-right: 25px;


}

.hero-tagline {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-tagline .highlight {
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.hero-tagline .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #FFD700; /* Gold underline */
}

.hero-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    font-size: 1.2rem;
}

.hero-date, .hero-location {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #FFD700; /* Gold */
    color: #000;
    border: 2px solid #FFD700;
}

.btn-outline {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

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

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

/* Bottom crowd image */
.hero-crowd {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 55%;
    overflow: hidden;
    z-index: 1;
}

.hero-crowd img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .hero-image-mask {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 992px) {
    .hero-overlay {
        flex-direction: column;
        justify-content: center;
    }
    
    .hero-image {
        width: 100%;
        height: auto;
        position: absolute;
    }
    
    .hero-image-left {
        left: -100px;
        top: 20%;
        opacity: 0.7;
    }
    
    .hero-image-right {
        right: -100px;
        top: 20%;
        opacity: 0.7;
    }
    
    .hero-content {
        width: 90%;
    }
    
    .hero-image-mask {
        width: 250px;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .hero-image-mask {
        width: 200px;
        height: 200px;
    }
    
    .hero-tagline {
        font-size: 1.8rem;
    }
    
    .hero-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 80%;
        margin: 0 auto 20px;
    }
}

/* .hero-bottom{
    background: linear-gradient(to bottom, 
    rgba(0,0,0,0.9) 0%, 
    rgba(0,0,0,0.8) 50%, 
    rgba(0,0,0,0.7) 50%, 
    rgba(0,0,0,0) 50%);
    z-index: 1;
} */
.content-box {
    position: relative;
    padding: 30px;
    margin-top: 50px;
    z-index: 20;
}

.content-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.content-inner {
    position: relative;
    z-index: 1;
    color: #ffffff;
}

.hero-tagline {
    color: #ffffff;
    margin-bottom: 20px;
}

.hero-details {
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-buttons {
    margin-bottom: 15px;
}

.hero-note {
    color: #ffffff;
    opacity: 0.8;
}

.speaker-circle {
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    margin-top: 100px;
}

.speaker-left {
    background: radial-gradient(circle, rgba(139,0,0,0.7) 0%, rgba(0,0,0,1) 70%);
}

.speaker-right {
    background: radial-gradient(circle, rgba(139,0,0,0.7) 0%, rgba(0,0,0,1) 70%);
}

.speaker-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: luminosity;
    filter: grayscale(30%);
}

.highlight-text {
    position: relative;
    display: inline-block;
    color: white;
    font-family: 'Brush Script MT', cursive;
    font-size: 1.2em;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 1px;
    transform: rotate(-2deg);
    padding: 0 5px;
}

.highlight-text span {
    display: inline-block;
    animation: danceBend 1.0s ease-in-out infinite;
}

@keyframes danceBend {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(-3deg);
    }
    50% {
        transform: translateY(-15px) rotate(3deg);
    }
    75% {
        transform: translateY(-5px) rotate(-2deg);
    }
}

/* Staggered delay for wave effect */
.highlight-text span:nth-child(1) { animation-delay: 0s; }
.highlight-text span:nth-child(2) { animation-delay: 0.1s; }
.highlight-text span:nth-child(3) { animation-delay: 0.2s; }
.highlight-text span:nth-child(4) { animation-delay: 0.3s; }
.highlight-text span:nth-child(5) { animation-delay: 0.4s; }
.highlight-text span:nth-child(6) { animation-delay: 0.5s; }
.highlight-text span:nth-child(7) { animation-delay: 0.6s; }
.highlight-text span:nth-child(8) { animation-delay: 0.7s; }
.highlight-text span:nth-child(9) { animation-delay: 0.8s; }
.highlight-text span:nth-child(10) { animation-delay: 0.9s; }
.highlight-text span:nth-child(11) { animation-delay: 1.0s; }
.highlight-text span:nth-child(12) { animation-delay: 1.1s; }

/* Yellow underline */
.highlight-text:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 3px;
    background: #FFD755;
    border-radius: 3px;
    transform: rotate(0.5deg) scaleX(0.95);
}

.btn-warning {
    background-color: #FFC300;
    border-color: #FFC300;
    color: #000;
}

.btn-outline-light:hover {
    background-color: rgba(255,255,255,0.1);
}


.carousel-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
  }
  
  .carousel-box {
    width: 100%;
  }
  
  .carousel-item {
    display: none;
  }
  
  .carousel-item.active {
    display: block;
    animation: fadeIn 0.4s ease;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .carousel-wrapper {
  display: flex;
  gap: 30px;
  align-items: center;
  padding: 30px;
  }
  
  
  .carousel-item {
  display: none;
  }
  
  .carousel-item.active {
  display: block;
  animation: fadeIn 0.4s ease;
  }
  
  @keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
  }
  
  button {
  padding: 6px 12px;
  margin: 10px 10px 0 0;
  background: #111;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  }


  .mobile-carousel-item {
    display: none;
    position: relative;
}

.mobile-carousel-item.active {
    display: block;
    animation: fadeIn 0.4s ease;
}

.mobile-carousel-box {
    width: 100%;
    position: relative;
}

.mobile-carousel-wrapper {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Talent Hunt Scroll Animation */
.carousel-item {
    transition: opacity 0.6s ease-in-out;
}

.carousel-item.active {
    animation: fadeInScale 0.6s ease-in-out;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Smooth scrolling for better animation */
html {
    scroll-behavior: smooth;
}

 /* Add Inter font styling for Gallery title */
 .gallery-title {
    font-family: 'Inter', sans-serif;
    font-size: 123.94px;
    font-weight: 600;
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    #tagline {
        margin-top: -30px
    }
}

/* Gallery container with position relative for gradient overlays */
.gallery-container {
    position: relative;
    width: 100%;
    height: 320px;
    margin: 20px 0;
    overflow: hidden;
}

/* Gradient fade overlays */
.gradient-fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100px;
    z-index: 10;
    pointer-events: none; /* Allow clicks to pass through */
}

.gradient-left {
    left: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.5), rgba(255,255,255,0));
}

.gradient-right {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.5), rgba(255,255,255,0));
}

/* Swiper styles */
.swiper {
    width: 100%;
    height: 320px;
}

.swiper-slide {
    text-align: center;
    background: #f1f1f1;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    overflow: hidden;
}

.swiper-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
    color: #FFD755 !important;
    z-index: 20; /* Make sure buttons are above the gradient */
}

.swiper-button-next {
    right: 20px;
}

.swiper-button-prev {
    left: 20px;
}

.swiper-pagination-bullet-active {
    background: #FFD755 !important;
}

/* Make sure pagination is above the gradient */
.swiper-pagination {
    z-index: 20;
}

/* Responsive font size for gallery title */
@media (max-width: 992px) {
    .gallery-title {
        font-size: 80px;
    }
}

@media (max-width: 576px) {
    .gallery-title {
        font-size: 60px;
    }
}

/* Custom accordion styling to match dark background */
.custom-accordion {
    background-color: #000814;
    border: none;
    margin-bottom: 0;
  
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.accordion-button{
    font-size: 16px;
}

.custom-accordion:first-child {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}

.custom-accordion:last-child {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
}

.custom-accordion-button {
    background-color: #000814;
    color: white;
    box-shadow: none;
    padding: 15px 20px;
    font-weight: 500;
    border: none;
}

.custom-accordion-button:not(.collapsed) {
    background-color: #000814;
    color: #FFD755;
    box-shadow: none;
}

.custom-accordion-button:focus {
    box-shadow: none;
    border-color: rgba(255, 215, 85, 0.5);
}

/* Change the accordion icon color */
.custom-accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD755'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23FFD755'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion-body {
    background-color: #000814;
    color: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.custom-accordion-body code {
    color: #FFD755;
    background-color: rgba(255, 215, 85, 0.1);
    padding: 2px 4px;
    border-radius: 4px;
}

.custom-accordion-body strong {
    color: white;
}

/* Add spacing between accordion items */
.accordion {
    margin-top: 30px;
}

/* Container for the FAQ section */
.faq-section {
    padding: 40px 0;
}

/* Hero images responsive layout */
.hero-images-container {
    position: relative;
    overflow: hidden;
}

@media (max-width: 768px) {
    .hero-images-container {
        height: 300px !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 0;
    }
    
    .speaker-image {
        opacity: 0.7;
        width: auto;
        z-index: 1;
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 -30px; /* Negative margin to bring images closer */
    }
    
   
    
    .center-logo {
        position: absolute !important;
        top: 70%;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 2;
    }
    
    .center-logo img {
        width: 250px !important;
    }
}

@media (max-width: 576px) {
    .hero-images-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .speaker-image {
        display: flex;
        justify-content: center;
        align-items: center;
    }
            
}

