@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700';

html,
body {
    height: 100%;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #ffffff;
    line-height: 25px;
    font-weight: 400;
}

#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #E4B34C;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loaded #loader-wrapper {
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin: 0 0 10px;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin: 0 0 15px;
}
.about-cards-section{
    background: linear-gradient(135deg, #ffffff, #eee4da);
    color: black;
    padding-bottom: 90px;
}

/* HIGHLIGHTS */
.taffa-highlight-box {
  display: flex;
  flex-direction: column; /* Stack vertically */
  align-items: center;
  background: linear-gradient(90deg, #ff4e50, #f9d423); /* Red to Yellow */
  border-radius: 60px;
  padding: 60px 20px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  width: 100%;
  max-width: 480px; /* Narrow box */
  margin: 0 auto; /* Center horizontally */
}

.highlight-item {
  text-align: center;
  margin: 20px 0;
}

.highlight-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: #fff;
}

.highlight-label {
  font-size: 1rem;
  color: #fff;
  padding: 1rem 0 0 0;
}

/* HIGHLIGHT BOX */

/* Button Gradient */

.btn-gradient {
  background: linear-gradient(90deg, #ff4e50, #f9d423);
  color: #fff;
  padding: 16px 32px;
  font-weight: bold;
  border-radius: 2rem;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-gradient:hover {
  opacity: 0.9;
  color: #fff;
}

/* Button Gradient */

/* HIGHLIGHTS */

/* countdown timer*/

  .countdown-timer {
    display: flex;
    /*justify-content: center;*/
    align-items: center;
    gap: 20px;
    /* padding: 20px 10px; */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: #fff;
    /*background-color: rgba(0, 0, 0, 0.25); transparent dark */
    border-radius: 12px;
    width: 100%;
    /*max-width: 900px;*/
    /* margin: 40px auto 0; */
    flex-wrap: wrap;
  }

  .countdown-timer .time-box {
    text-align: center;
    min-width: 100px;
  }

  .countdown-timer span {
    font-size: 4.5rem;
    display: block;
    line-height: 1.2;
     background: linear-gradient(to right, #f4c765, #FFD700, #E4B34C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
  }

  .countdown-timer small {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #ffffffcc;
    display: block;
    margin-top: 5px;
  }

  .countdown-timer .colon {
    font-size: 2.5rem;
    color: #ffffffcc;
    font-weight: 400;
  }

  @media (max-width: 768px) {
    .countdown-timer {
      font-size: 1rem;
      padding: 10px;
      flex-direction: row !important;
      gap: 0;
    }

    .countdown-timer span {
      font-size: 1.5rem;
    }

    .countdown-timer .colon {
      font-size: 2rem;
    }
  }

/* Countdown Timer */

/*========================================
  PARTNERS BLOCK STYLES
========================================*/

/* === GENERAL RESET === */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #000;
  color: #fff;
}

/* === BUTTONS === */
.btn,
.btn-yellow,
.btn-partner {
  display: inline-block;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease-in-out;
  border-radius: 30px;
}

.btn {
  background-color: transparent;
  border: 2px solid #FFD700;
  color: #fff;
  padding: 12px 28px;
  margin-top: 20px;
}

.btn:hover {
  background-color: #FFD700;
  color: #000;
}

.btn-yellow {
  background-color: #FFD700;
  color: #000;
  font-weight: 700;
  padding: 16px 32px;
  margin-left: 30px;
  border-radius: 45px;
  box-shadow: 0 0 20px #FFD70050;
}

.btn-yellow:hover {
  background-color: #e5c100;
}

.btn-partner {
  background: #FFD700;
  color: #000;
  padding: 14px 38px;
  text-transform: uppercase;
  border-radius: 10px;
}

.btn-partner:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(-2px);
}

/* === PARTNERS SECTION === */
.partners-section {
  background-color: #fff;
  color: #111;
  padding: 100px 20px;
  text-align: center;
}

.partners-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.partners-subtitle {
  font-size: 1rem;
  color: #444;
  margin-bottom: 40px;
}

.sponsor-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 30px;
  justify-items: center;
  margin-bottom: 50px;
}

.partner-container{
    margin-top:20px;
    margin-bottom:20px;
}

.partner-logo {
  width: auto;
  /* filter: grayscale(100%) opacity(0.9); */
  transition: all 0.3s ease-in-out;
  transform: scale(1);
}

img.partner-logo{
    max-height: 120px;
}

.partner-logo-wrapper:hover .partner-logo {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
}

/* === UTILITIES === */
.text-center {
  text-align: center;
}

/*----------------------------------------*/
/* .  END PARTNERS BLOCK
/*----------------------------------------*/

.floatleft { float: left }
.floatright { float: right }
.alignleft {
    float: left;
    margin-right: 15px;
    margin-bottom: 15px;
}
.alignright {
    float: right;
    margin-left: 15px;
    margin-bottom: 15px;
}
.aligncenter {
    display: block;
    margin: 0 auto 15px;
}
input:focus{
    outline: 0;
}
a:focus { outline: 0px solid }
img {
    max-width: 100%;
    height: auto;
}
.fix { overflow: hidden }
p { margin: 0 0 15px }
h1,
h2,
h3,
h4,
h5,
h6 { margin: 0 0 10px }
a {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    text-decoration: none;
    color: #fefdfd;
}
a:hover {
    color: #E4B34C;
    text-decoration: none;
}
a:active,
a:hover { outline: 0 none }
ul {
    list-style: outside none none;
    margin: 0;
    padding: 0;
}
.clear { clear: both }
.owl-carousel {
    touch-action: manipulation; 
}  
::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}
::selection {
    background: #b3d4fc;
    text-shadow: none;
}
.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}
.pt5 { padding-top: 5px }
.pt10 { padding-top: 10px }
.pb10 { padding-bottom: 10px }
.pt15 { padding-top: 15px }
.pb15 { padding-bottom: 15px }
.pt20 { padding-top: 20px }
.pb20 { padding-bottom: 20px }
.pt25 { padding-top: 25px }
.pb25 { padding-bottom: 25px }
.pt30 { padding-top: 30px }
.pb30 { padding-bottom: 30px }
.pt40 { padding-top: 40px }
.pb40 { padding-bottom: 40px }
.pt50 { padding-top: 50px }
.pb50 { padding-bottom: 50px }
.pt80 { padding-top: 80px }
.pt90 { padding-top: 90px }
.pb90 { padding-bottom: 90px }
.mt5 { margin-top: 5px }
.mt10 { margin-top: 10px }
.mb10 { margin-bottom: 10px }
.mt15 { margin-top: 15px }
.mb15 { margin-bottom: 15px }
.mt20 { margin-top: 20px }
.mb20 { margin-bottom: 20px }
.mt25 { margin-top: 25px }
.mb25 { margin-bottom: 25px }
.mt30 { margin-top: 30px }
.mb30 { margin-bottom: 30px }
.mt40 { margin-top: 40px }
.mb40 { margin-bottom: 40px }
.mt50 { margin-top: 50px }
.mb50 { margin-bottom: 50px }
.mtb50 { margin: 50px 0 }
.mt55 { margin-top: 55px }
.mb55 { margin-bottom: 55px }
.mt70 { margin-top: 70px }
.mb70 { margin-bottom: 70px }
.mt90 { margin-top: 90px }
.mb90 { margin-bottom: 90px }
.pt85 { padding-top: 85px }
.pb85 { padding-bottom: 85px }
.pb90 { padding-bottom: 90px }
.pb90 { padding-bottom: 90px }
.ptb90 { padding: 90px 0 }
.mt100 { margin-top: 100px }
.mb100 { margin-bottom: 100px }
.pt100 { padding-top: 100px }
.pb100 { padding-bottom: 100px }
.ptb100 { padding: 100px 0 }
.uppercase { text-transform: uppercase }
/* bg color */
.dark-knight { background: #000 }
.wrapper { background: #000 }

/*----------------------------------------*/
/* 3.  Header
/*----------------------------------------*/
.header-top {
    color: #999;
    font-size: 13px;
}
.phone { float: left }
.email {
    float: left;
    margin-left: 30px;
}
.header-top i {
    margin-right: 10px;
    font-size: 20px;
}
.login { float: left }
.register {
    float: left;
    margin-left: 30px;
}
.login-register { float: right }
.header-top {
    color: #ddd;
    font-size: 13px;
    height: 50px;
    line-height: 48px;
    background: rgba(0,0,0,0.2);
}
.header-top a { color: #ddd }
.header-top a:hover { color: #E4B34C }
/*----------------------------------------*/
/* 4. Main Menu
/*----------------------------------------*/
ul li { display: inline-block }
.main-menu ul li a { color: #ddd }
.logo-menu-area { 
    padding: 0.5rem 0;
    background: rgba(0, 0, 0, 0.8);
    box-shadow: 0 2px 20px rgba(245, 229, 3, 0.1);
    /*position: fixed;*/
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}
.logo-menu-area .main-menu ul {
  list-style: none;
  padding-left: 0;
  margin: 0;
  display: flex;
  /* gap: 15px; */
}
.logo-menu-area .main-menu ul li {
  margin-right: 0;
}
.logo-menu-area .main-menu a {
  color: #f9ce33; /* light gold-like color */
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  border-radius: 25px;
}
.logo-menu-area .main-menu a:hover {
  color: #fcd462; 
  background: rgba(246, 249, 58, 0.1);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(247, 233, 82, 0.2);
}
.main-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, #fcd462, transparent);
    transition: left 0.6s ease;
}
.logo-menu-area .main-menu a:hover::before {
    left: 100%;
}
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
}
.logo-menu-area .logo img{
    height: 100px !important;
    width: 100px !important;
}
.main-menu ul li { margin-right: 40px }
.main-menu ul li:last-child { margin: 0 }
.header-area {
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    transition: all 0.3s ease;
}
.header-area.scrolled .logo-menu-area {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 25px rgba(0, 0, 0, 0.15);
            padding: 0.25rem 0;
        }
        .header-area.scrolled .nav-logo {
            height: 50px;
        }
.main-menu ul li a:hover { color: #E4B34C }
.main-menu li.current a { color: #E4B34C }
.language-dropdown {
  position: relative;
  display: inline-block;
}
.lang-toggle-compact {
  background: none;
  border: none;
  color: #f9ce33;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  padding: 4px 8px;
}


.lang-toggle-compact:hover {
  color: #FFD700;
  transform: scale(1.05);
}
.flag-label {
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.flag-icon {
  width: 24px;
  height: 18px;
  object-fit: contain;
  border-radius: 2px;
  display: inline-block;
}

.lang-toggle-btn {
 background: linear-gradient(135deg, #f4c765, #FFD700, #E4B34C);
    color: white;
    border: none;
    padding: 0.3rem 1.2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}
.lang-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(246, 249, 58, 0.4);
}


.language-dropdown:hover .language-options {
  display: block;
}

.language-options {
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #1a1a1a;
  border-radius: 8px;
  border: 1px solid #333;
  padding: 0.4rem 0;
  margin-top: 5px;
  z-index: 999;
  min-width: 110px;
}
.lang-toggle-icon {
  background: none;
  border: none;
  color: #f9ce33;
  font-size: 22px;
  display: flex;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  padding: 6px 8px;
  transition: all 0.2s ease;
}

.lang-toggle-icon:hover {
  color: #FFD700;
  transform: scale(1.05);
}


.language-options li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  font-size: 14px;
  color: #fff3c9;
  white-space: nowrap;
}

.language-options li a:hover {
  background-color: #333;
  color: #fff;
}
.language-dropdown.active .language-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(5px);
}

/* slider */
.header-slider-area { position: relative }
.nivo-caption {
    background: transparent none repeat scroll 0 0;
    bottom: auto;
    color: #fff;
    height: auto;
    left: 0;
    opacity: 1;
    overflow: hidden;
    padding: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.slide1-text p {
    font-size: 18px;
    line-height: 48px;
    padding: 0;
}
.slide1-text .cap-title h1 {
    font-size: 46px;
    line-height: 48px;
    /*margin: 0;*/
    text-transform: uppercase;
    font-weight: 700;

}
.slide1-text .cap-title span{
    background: linear-gradient(to right, #f4c765, #FFD700, #E4B34C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}
.slide1-text .cap-description p {
    font-size: 18px;
    line-height: 18px;
    margin: 0;
    font-weight: 400;
    white-space: normal;
    overflow: visible;
    display: block;
    width: 100%;
    max-width: 600px;

}
.middle-text {
            width: 100%;
            display: grid;
            grid-template-columns: 2fr 1fr;
            align-items: center;
        }
        .content-left {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
.event-date {
    float: left;
    margin-right: 30px;
}
.event-date i, .event-location i {
            font-size: 1.3rem;
            color: #E4B34C;
        }
.event-location { float: left }
.date-address i {
    font-size: 20px;
    margin-right: 15px;
}
.date-address {
     display: flex;
            flex-direction: column;
            gap: 15px;
            margin: 30px 0;
}
.nivoSlider img { 
    height: 100vh !important;
    object-fit: cover; 
}
.hero-img img{
    height: 400px !important; 
    width: auto;
    object-fit: cover;
    object-position: bottom;
    margin-bottom: 0;
}

/* btn-style */
a.btn-def {
    border: 1px solid #f1f1f1;
    border-radius: 5px;
    color: #f1f1f1;
    display: inline-block;
    padding: 15px 30px;
    text-transform: uppercase;
    transition: background 0.3s ease;
}
a.btn-def:hover {
    background: #E4B34C none repeat scroll 0 0;
    border: 1px solid #E4B34C;
    color: #fff;
}
a.btn-def.bnt-2 {
    border: 1px solid #f5f5f5;
    color: #ebe8e8;
    padding: 10px 20px;
}
a.btn-def.bnt-2:hover {
    border: 1px solid #E4B34C;
    color: #f1f1f1;
}
a.btn-def.bnt-2.small { padding: 10px 20px }
a.btn-def.bnt-2.big {
    line-height: 16px;
    padding: 11px 75px;
}
.btn-def.bnt-3.red-color {
    background: #E4B34C none repeat scroll 0 0;
    border-color: #E4B34C;
    color: #fff;
    padding: 9px 33px;
}
.btn-def.bnt-3.red-color:hover {
    background: transparent none repeat scroll 0 0;
    color: #E4B34C;
}
.secondary-btn {
            align-self: flex-start;
        }
        .btn-outline {
            /* background: #fdd314; */
            border: 2px solid #E4B34C;
            color: #fff;
            padding: 12px 30px;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            display: inline-block;
        }
        .btn-outline:hover {
            background: #E4B34C;
            color: white;
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(255, 238, 53, 0.3);
        }
        .submit-button-container {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }
        
.submit-btn-prominent {
  background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
  color: #fff;
  padding: 25px 45px;
  text-decoration: none;
  border-radius: 60px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s ease;
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  animation: pulse 2s infinite;
  font-size: 1.2rem;
}

.submit-btn-prominent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.submit-btn-prominent:hover::before {
  left: 100%;
}

.submit-btn-prominent:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 0 25px 50px rgba(255, 185, 53, 0.7);
  background: linear-gradient(135deg, #ff4e50 0%, #f9d423 100%);
  color: #fff;
}

.submit-btn-prominent:active {
  transform: translateY(-2px) scale(1.02);
}

/* Pulsing animation */
@keyframes pulse {
  0% {
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  }
  50% {
    box-shadow: 0 15px 35px rgba(255, 165, 53, 0.6), 0 0 0 10px rgba(255, 107, 53, 0.1);
  }
  100% {
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
  }
}

.submit-btn-prominent::after {
  content: '→';
  margin-left: 10px;
  font-size: 1.2em;
  transition: transform 0.3s ease;
}

.submit-btn-prominent:hover::after {
  transform: translateX(5px);
}

        
/* end btn style */
/*----------------------------------------*/
/* 5. Slider
/*----------------------------------------*/
.slider-btn { padding-top: 10px }
.down-arrow {
    bottom: 30px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 99;
}
.down-arrow a {
    border: 1px solid #f1f1f1;
    border-radius: 100%;
    height: 50px;
    line-height: 46px;
    text-align: center;
    width: 50px;
    display: block;
    color: #f1f1f1;
}
.down-arrow a:hover {
    border: 1px solid #E4B34C;
    background: #E4B34C;
    color: #f1f1f1;
}
.home-02 .down-arrow { display: none }
/*----------------------------------------*/
/* 6. about-section
/*----------------------------------------*/
.section-title {
    background: linear-gradient(to right, #f4c765, #FFD700, #E4B34C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 2rem;
    line-height: 2.5rem;
    margin: 0 0 20px;
    text-transform: uppercase;
}
.flip-card {
  background: transparent;
  perspective: 1000px;
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  border: solid 1px #ddd;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.7s ease;
  transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
}

.flip-card-front {
  background-size: cover;
  background-position: center;
}

.flip-card-front .card-content {
  padding: 10px;
  border-radius: 6px;
  text-align: center;
}

.flip-card-back {
  background: linear-gradient(135deg, #fcd462, #f8b500);
  transform: rotateY(180deg);
  color: #000;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 20px;
}


.sub-title {
    color: #E4B34C;
    font-family: montserrat;
    font-size: 18px;
}
.descp > p {
    color: #fcf9f9;
    line-height: 25px;
    margin: 0;
}
.about-step { margin-bottom: 20px }
.about-top { margin-bottom: 40px }
.total-step {
    border-left: 2px solid #f5f4f4;
    padding-left: 40px;
}
.total-step .detail-event li {
    list-style-type: disc; 
    padding-left: 20px; 
    display: list-item !important;
}
.about-step:last-child { margin: 0 }
.about-right > ul li {
    color: #f5f1f1;
    display: block;
    font-size: 18px;
    line-height: 50px;
}
.about-right > ul li i {
    font-size: 22px;
    margin-right: 15px;
}
.about-btn { margin-top: 15px }
.about-right {
    position: relative;
    padding: 35px 40px 50px;
    background: #000; /* Match your background color */
}

.about-right:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    border: 5px solid transparent;
    background: linear-gradient(to right, #f4c765, #FFD700, #E4B34C) border-box;
    -webkit-mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) padding-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
}
.nav.happen-tab { 
    position: relative;
    display: block;
    z-index: 1;
 }
.nav.happen-tab:before {
    background: #f8f7f7 none repeat scroll 0 0;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    z-index: -1;
}
/*----------------------------------------*/
/* 7. What happen area
/*----------------------------------------*/
.program-bg-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  position: relative;
  z-index: 1;
}

.program-bg-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
}

.program-bg-section .container {
  position: relative;
  z-index: 2;
}

.program-illustrations {
  gap:40px;
}
.program-image{
    text-align: center;
    padding: 10px;
}

.program-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
}
.program-illustration-wrapper {
  position: relative;
}

.program-connector-cta {
  position: absolute;
  top: 78%;
  left: 48%;
  transform: translate(-50%, -50%);
  background: #fcd462;
  color: #000;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease;
  z-index: 10;
}

.program-connector-cta:hover {
  background-color: #fbb034;
  color: #000;
}



/* Optional: scale down image height on smaller screens */
/* @media (max-width: 767px) {
  .program-bg-section {
    padding: 60px 20px;
  }
  .program-image {
    margin-bottom: 30px;
  }

  .program-image img {
    max-height: 400px;
  }
} */



.tab-menu-list ul li {
    display: inline-block;
    margin-right: 25px;
}
.tab-menu-list li a {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #f6f2f2;
    border-radius: 4px;
    color: #555;
    font-size: 18px;
    font-weight: 700;
    padding: 20px 30px;
    display: block;
}
.tab-menu-list li a.active,
.tab-menu-list li:hover a {
    background: #E4B34C none repeat scroll 0 0;
    color: #fff;
    border-color: #E4B34C;
}
.happen-icon {
    float: left;
    font-size: 40px;
    line-height: 35px;
    text-align: center;
    width: 70px;
}
.happen-time-date > h3 {
    font-size: 18px;
    margin-bottom: 5px;
}
.happen-time-date { display: inline-block }
.happen-time-date > p {
    color: #888888;
    margin: 0;
}
.happen-heading {
    font-size: 18px;
    line-height: 16px;
    margin-bottom: 30px;
}
.happen-text > p {
    line-height: 14px;
    margin-bottom: 10px;
}
.happen-text {
    display: inline-block;
    padding: 40px 20px;
}
.happen-img {
    float: left;
    width: 150px;
}
.happen-top {
    /* background: #E4B34C none repeat scroll 0 0; */
    padding: 20px 10px;
}
/*----------------------------------------*/
/* 8. speaker section
/*----------------------------------------*/
.social-icon ul {
    display: flex;
    justify-content: center;
}
.social-icon li a {
    border: 1px solid #E4B34C;
    border-radius: 4px;
    color: #f2efef;
    display: block;
    font-size: 20px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    width: 45px;
}
.speaker-deg {
    line-height: 20px;
    margin-bottom: 10px;
}
.speaker-name {
    color: #333;
    margin-bottom: 5px;
    font-size: 18px;
}
.single-speaker > img {
    border-radius: 100%;
    margin-bottom: 25px;
}
.social-icon li { margin-right: 15px }
.social-icon li a:hover {
    background: #E4B34C none repeat scroll 0 0;
    border: 1px solid #E4B34C;
    color: #fff;
}
.single-speaker {
    background: #f9f9f9 none repeat scroll 0 0;
    padding: 30px 15px;
}
.shadow-box {
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.shadow-box:hover { box-shadow: 0 1px 20px rgba(0, 0, 0, 0.2) }
.social-icon li:last-child { margin: 0 }
.total-speaker{
    margin: -15px;
}
.total-speaker .speaker-item{
    padding: 15px;
}
.crasoule-btn .owl-controls .owl-buttons div {
    background: transparent none repeat scroll 0 0;
    border: 2px solid #999;
    color: #999;
    font-size: 20px;
    height: 40px;
    left: 0;
    line-height: 35px;
    margin: 0;
    opacity: 0;
    padding: 0;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 40px;
}
.crasoule-btn .owl-controls .owl-buttons div:hover {
    border: 2px solid #E4B34C;
    color: #E4B34C;
}
.crasoule-btn:hover .owl-controls .owl-buttons div {
    opacity: 1;
}
.crasoule-btn .owl-controls .owl-buttons .owl-next {
    left: auto;
    right: 0;
}
.owl-theme .owl-controls { margin-top: 0 }
.sue-pic > img { border-radius: 100% }
.sue-pic {
    float: left;
    text-align: center;
    width: 225px;
}
.sue-date-time {
    display: inline-block;
    padding: 43px 0;
}
.sue-date-time span { display: block }
.uc-icon {
    float: left;
    font-size: 45px;
    width: 23%;
    padding-top: 13px;
}
.uc-event-title > a {
    color: #555;
    float: left;
    padding-top: 10px;
    width: 77%;
}
.single-upcomming {
    background: #fff none repeat scroll 0 0;
    float: left;
    margin-bottom: 50px;
    min-height: 180px;
    padding: 15px 0;
    width: 100%;
}
.uc-event-title {
    overflow: hidden;
    padding-top: 45px;
}
.venu-no { padding-top: 65px }
.upcomming-ticket { padding-top: 55px }
.uc-event-title > a:hover { color: #E4B34C }
/* .single-upcomming:last-child { margin: 0 } */
.all-events i { margin-left: 15px }
.all-events {
    background: #fff none repeat scroll 0 0;
    display: block;
    height: 50px;
    line-height: 47px;
}
.right-app {
    background: rgba(0, 0, 0, 0) url("img/app-bg.png") no-repeat scroll 0 0 / cover;
    border-left: 1px solid #aaa;
    overflow: hidden;
    padding: 55px 100px 75px;
}
.apps-cont {
    border: 1px solid #aaa;
    overflow: hidden;
}
.left-app {
    background-color: #fff;
    float: left;
    max-width: 100%;
    padding: 40px 100px 0 49px;
}
.right-app > p {
    line-height: 25px;
    margin: 0;
}
.app-store > a { display: inline-block }
.app-store a+a { margin-left: 25px }
.app-store { margin-top: 35px }
.right-app h1 {
    line-height: 30px;
    margin-bottom: 20px;
}
/*----------------------------------------*/
/* 9. Full Width Video Area
/*----------------------------------------*/
#video-bg { width: 100% }
.ready-to-play {
    height: 400px;
    overflow: hidden;
    position: relative;
    z-index: 2;
}
.video-text {
    background: rgba(0, 0, 0, 0) url("img/bg/video-bg.jpg") no-repeat scroll center center;
    background-size: cover;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 999;
    color: #fff;
}
.tb-t {
    display: table;
    height: 100%;
    margin: auto;
    width: 560px;
}
.tb-c {
    display: table-cell;
    vertical-align: middle;
}
#polina button {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0;
    border-radius: 100%;
    color: #999999;
    font-size: 60px;
}
.video-text h4 { margin-bottom: 15px }
.video-text h1 { margin-bottom: 25px }
.video-text p { margin: 25px 0 0 }
/*----------------------------------------*/
/* 10. pricing table area
/*----------------------------------------*/
.single-pricing-table { background: #f9f9f9 none repeat scroll 0 0 }
.adv-area li {
    color: #333;
    display: block;
    line-height: 30px;
    position: relative;
}
.adv-area li:before {
    content: "";
    font-family: material-design-iconic-font;
    padding-right: 20px;
}
.adv-area li.disable:before { content: "" }
.adv-area li.disable {
    color: #aaaaaa;
    cursor: no-drop;
}
.price-tag span {
    background: #fff none repeat scroll 0 0;
    border: 1px solid #dddddd;
    border-radius: 4px;
    display: inline-block;
    font-size: 18px;
    height: 60px;
    line-height: 56px;
    position: relative;
    width: 260px;
    z-index: 5;
}
.price-icon {
    border: 5px solid #ddd;
    border-radius: 100%;
    display: inline-block;
    height: 105px;
    line-height: 90px;
    position: relative;
    text-align: center;
    top: -10px;
    width: 105px;
    z-index: 1;
}
.adv-area > ul {
    display: inline-block;
    text-align: left;
}
.adv-area {
    border: 1px solid #dddddd;
    padding: 25px 0;
}
/* testimonial */
.single-testimonial {
    margin: auto;
    width: 575px;
}
.single-testimonial h1 { line-height: 28px }
.author-deg { margin-bottom: 30px }
.header-bdr h1 { position: relative }
.header-bdr h1:after {
    background: #555 none repeat scroll 0 0;
    bottom: -20px;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 30px;
}
.author-img> img { border-radius: 100% }
.slider-pegi.owl-theme .owl-controls .owl-page span {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #555;
    border-radius: 100%;
    height: 10px;
    margin: 5px;
    opacity: 1;
    width: 10px;
}
.slider-pegi.owl-theme .owl-controls .owl-page.active span,
.slider-pegi.owl-theme .owl-controls .owl-page:hover span {
    background: #E4B34C none repeat scroll 0 0;
    border-color: #E4B34C;
}
.testi-border .owl-pagination { position: relative }
.testi-border .owl-pagination:after {
    background: #999 none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 170px;
}
/*----------------------------------------*/
/* 11. special offer
/*----------------------------------------*/
.special-wrap {
    margin: auto;
    text-align: center;
    width: 750px;
}
.special-wrap h4 { margin-bottom: 20px }
.special-wrap > p { margin-bottom: 25px }
.special-offer-area { background: rgba(0, 0, 0, 0) url("img/bg/special-bg.jpg") no-repeat scroll 0 0 / cover }
.white-color { color: #fff }
.brand-area {
    background: rgba(0, 0, 0, 0) url("img/bg/brand-bg.webp") no-repeat scroll 0 0 / cover;
    padding: 40px 0;
}
.brand-logo {
            width: 350px;
            height: 150px;
            object-fit: contain;
            filter: brightness(0.9) contrast(1.1);
            transition: all 0.3s ease;
        }
.brand-logo:hover {
            filter: brightness(1.1) contrast(1.2);
            transform: scale(1.05);
        }
        
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
.brand-logo-lg {
  max-height: 120px;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.brand-logo-lg:hover {
  transform: scale(1.05);
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 30px;
  align-items: center;
  justify-items: center;
  padding: 20px 0;
}

.single-brand img {
  max-width: 100%;
  height: auto;
  max-height: 80px;
  object-fit: contain;
}
.active .single-brand { border-right: 1px solid #eee }
.bg-overlay {
    position: relative;
    z-index: 1;
}
.bg-overlay:before {
    background: #000 none repeat scroll 0 0;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.85;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}
.white-overlay:before {
    background: #fff none repeat scroll 0 0;
    opacity: 0.8;
}
.slider-container.bg-overlay { z-index: 2 }
.slider-container.bg-overlay:before {
    opacity: 0.5;
    z-index: 6;
}
.breadcumb-area.bg-overlay:before {
    opacity: 0.7;
}
/*----------------------------------------*/
/* 12. counter section
/*----------------------------------------*/
.count-icon { margin-bottom: 10px }
.count-icon > img { border-radius: 100% }
.single-count h3 {
    display: inline-block;
    font-size: 18px;
    margin: 0;
}
.single-count p {
    display: inline-block;
    margin: 0;
    font-size: 18px;
}
.animate-eff {
    position: relative;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.animate-eff:before {
    background: rgba(0, 0, 0, 0.7) none repeat scroll 0 0;
    bottom: 10px;
    content: "";
    left: 10px;
    opacity: 0;
    pointer-events: none;
    position: absolute;
    right: 10px;
    top: 10px;
    -webkit-transform: scaleX();
    transform: scaleX();
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.animate-eff:hover:before {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
}
.animate-eff a:after {
    border-radius: 100%;
    bottom: 0;
    color: #fff;
    content: "\f18e";
    display: block;
    font-family: material-design-iconic-font;
    font-size: 35px;
    height: 60px;
    left: 0;
    line-height: 60px;
    margin: auto;
    opacity: 0;
    position: absolute;
    right: 0;
    text-align: center;
    top: 0;
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    visibility: hidden;
    width: 60px;
    z-index: 2;
    border: 2px solid #fff;
}
.animate-eff a:hover:after {
    opacity: 1;
    -webkit-transform: scale(1);
    transform: scale(1);
    visibility: visible;
}
.total-news,
.total-blog,
.slider-pegi,
.total-feed{
    margin-left: -15px;
    margin-right: -15px;
}
.total-news .news-item,
.slider-pegi .single-testi-02,
.total-feed .news-item,
.total-blog .news-item{
    padding-left: 15px;
    padding-right: 15px;
}
.news-contant h3 {
    font-size: 20px;
    line-height: 32px;
    margin-bottom: 5px;
}
.news-img { margin-bottom: 20px }
.news-bottom {
    background: #f5f5f5 none repeat scroll 0 0;
    border-radius: 2px;
    padding: 10px;
}
.news-bottom a {
    color: #999;
    font-size: 13px;
    margin-right: 15px;
}
.news-bottom a:hover { color: #E4B34C }
.news-bottom a i {
    font-size: 15px;
    margin-right: 5px;
}
.read-more { float: right }
.recent-news-area .section-title {
    line-height: 28px;
    margin: 0;
}
.single-news { padding-bottom: 10px }
/*----------------------------------------*/
/* 13. call to acton
/*----------------------------------------*/
.cal-to-wrap {
    margin: auto;
    text-align: center;
    width: 740px;
}
input {
    border: 1px solid #555555;
    border-radius: 4px;
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
}
.input-box { display: inline-block }
.cal-to-wrap input {
    width: 460px;
    float: left;
}
.send-btn {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 1px solid #555;
    border-radius: 4px;
    color: #E4B34C;
    font-size: 25px;
    height: 45px;
    margin: 0;
    padding: 0;
    width: 60px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.send-btn:hover {
    background: #E4B34C;
    border-color: #E4B34C;
    color: #fff;
}
.cal-to-wrap .send-btn { margin-left: 30px }
.call-to-action { background: rgba(0, 0, 0, 0) url("img/bg/call-to-bg.jpg") repeat scroll 0 0 / cover }
.call-to-action .section-title { line-height: 60px }
/*----------------------------------------*/
/* 14. map area
/*----------------------------------------*/
/* input reset code */
input:-moz-placeholder,
textarea:-moz-placeholder {
    opacity: 1;
}
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    opacity: 1;
}
input::-moz-placeholder,
textarea::-moz-placeholder {
    opacity: 1;
}
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    opacity: 1;
}
/* input reset code */
.contact-map-size {
    width: 100%;
    height: 450px;
}
.map-content {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    width: 510px;
    height: 100%;
}
.map-content input {
    -moz-border-bottom-colors: none;
    -moz-border-left-colors: none;
    -moz-border-right-colors: none;
    -moz-border-top-colors: none;
    -o-border-image: none;
    border-image: none;
    border-left: 0;
    border-radius: 0;
    border-right: 0;
    border-top: 0;
    display: block;
    width: 100%;
    background: transparent;
    height: 55px;
}
.map-content .input-box input {
    border-bottom: 1px solid #eee;
    color: #999;
}
.map-content .input-box { display: block }
textarea { width: 100% }
.map-content textarea {
    border: 0;
    height: 100px;
    padding: 10px;
    resize: none;
    background: transparent;
    color: #999;
}
.map-content textarea.area-text { border-bottom: 1px solid #eee }
.map-area.mt100 {
  margin: 0;
}
.content-body {
    background: transparent none repeat scroll 0 0;
    padding: 35px 100px 50px;
    max-height: 450px;
}
.upload-box { overflow: hidden }
.upload-box input[type="file"] {
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
    z-index: -2;
}
.upload-box input[type="file"] + label {
    background: #dddddd none repeat scroll 0 0;
    border-radius: 3px;
    cursor: pointer;
    height: 37px;
    float: left;
    margin: 0;
}
.upload-box input[type="file"] + label span {
    border-right: 1px solid #6d6d6d;
    display: block;
    float: left;
    font-weight: 400;
    line-height: 37px;
    padding: 0 22px 0 21px;
}
.upload-box input[type="file"] + label i {
    display: block;
    float: left;
    line-height: 37px;
    font-size: 20px;
    padding: 0 10px 0 9px;
}
.submit {
    border: 0;
    width: 95px;
    border-radius: 3px;
    float: right;
    height: 37px;
    line-height: 37px;
    background: #dddddd;
}
.content-body p {
    color: #fff;
    margin-top: 20px;
}
.content-body p span { color: #999 }
.input-box.upload-box > span {
    color: #fff;
    text-transform: uppercase;
    padding: 6px 5px 6px 12px;
    float: left;
}
.map-area { position: relative }
.map-content {
    position: absolute;
    right: 15%;
    top: 0;
}
.map-content .input-box input.submit {
    color: #555;
    margin-top: 30px;
}
p.form-messege { margin: 15px 0 0 0 }
p.success { color: green }
p.error { color: red }
/*----------------------------------------*/
/* 15. information area
/*----------------------------------------*/
.section-title {
    background: linear-gradient(to right, #f4c765, #FFD700, #E4B34C);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    font-size: 33px;
    line-height: 30px;
    margin: 0 0 20px;
    text-transform: uppercase;
    position: relative;
    }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 60px;
            height: 4px;
            background: linear-gradient(135deg, #ffd700, #ffed4e);
            border-radius: 2px;
        }
.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: #ffd700;
    font-size: 1.5rem;
}
.single-information > p { margin-bottom: 5px }
.single-information p:last-child { 
    margin: 0;
    text-align: center;
    padding: 1.5rem; 
    a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }
}
.contact-section {
            background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
            color: white;
            padding: 4rem 0;
            margin-top: 4rem;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
            margin-top: 2rem;
        }

        .contact-item {
            text-align: center;
            padding: 1.5rem;
        }

        .contact-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 215, 0, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1rem;
            color: #ffd700;
            font-size: 1.5rem;
        }

        .contact-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

        .contact-info {
            color: rgba(255,255,255,0.8);
            font-size: 1rem;
        }

        .contact-info a {
            color: #ffd700;
            text-decoration: none;
            transition: color 0.3s ease;
        }

        .contact-info a:hover {
            color: white;
        }
/*----------------------------------------*/
/* 16. Award
/*----------------------------------------*/

/* Hero Section */
.awards-hero {
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.95), rgba(40, 40, 40, 0.95));
    min-height: 12vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.awards-hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="gold" opacity="0.1"/><circle cx="75" cy="75" r="1" fill="gold" opacity="0.1"/><circle cx="50" cy="10" r="0.5" fill="gold" opacity="0.1"/><circle cx="90" cy="40" r="0.5" fill="gold" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateX(0px); }
    100% { transform: translateX(-100px); }
}

.hero-content {
    position: relative;
    z-index: 2;
    color: white;
    max-width: 800px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0,0,0,0.3);
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    font-weight: 300;
    opacity: 0.9;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.2s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    padding: 15px;
}

.modal-box {
  background: #111;
  color: #fff;
  padding: 2rem;
  border-radius: 12px;
  width: 100%;
  max-width: 400px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(255, 206, 72, 0.3);
  animation: fadeIn 0.3s ease;
}

.modal-actions {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal-btn {
  padding: 12px;
  font-weight: bold;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.modal-btn.confirm {
  background: linear-gradient(135deg, #f4c765 0%, #FFD700 100%);
  color: black;
}

.modal-btn.cancel {
  background: #333;
  color: white;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to   { opacity: 1; transform: scale(1); }
}

@media (min-width: 480px) {
  .modal-actions {
    flex-direction: row;
    justify-content: space-between;
  }
  .modal-btn {
    width: 48%;
  }
}

/*----------------------------------------*/
/* 15. Awards Section */
.awards-main {
    background: #181717;
    margin-top: -50px;
    position: relative;
    z-index: 3;
    border-radius: 30px 30px 0 0;
    padding: 80px 0 60px;
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    text-align: left;
    margin-bottom: 3rem;
    color: #f5f5f5;
    position: relative;
    line-height: 2.5rem ;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    border-radius: 2px;
}
/* Awards Grid */
.awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.award-card {
    background: #333333;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
    border: 1px solid #404040;
    position: relative;
    overflow: hidden;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #ffd700, #ffed4e);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.award-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(to right, #f4c765, #FFD700, #E4B34C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: #1a1a1a;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}

.award-card:hover .award-icon {
    transform: scale(1.1);
}

.award-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #f5f5f5;
    margin-bottom: 0.8rem;
}

.award-description {
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.5;
}

.nominations-card {
    background: linear-gradient(135deg, #333333, #404040);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid rgba(255, 215, 0, 0.2);
    /* box-shadow: 0 10px 30px rgba(255, 215, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease; */
}

    /* .nominations-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 40px rgba(255, 215, 0, 0.2);
    } */

    .nominations-icon {
        width: 80px;
        height: 80px;
        background: linear-gradient(135deg, #ffd700, #ffed4e);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        color: #1a1a1a;
        font-size: 2rem;
    }

    .nominations-title {
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 1.5rem;
        color: #f5f5f5;
    }

    .nominations-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .nominations-list li {
        padding: 0.8rem 0;
        font-size: 1.1rem;
        color: #c0c0c0;
        position: relative;
        border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    }

    .nominations-list li:last-child {
        border-bottom: none;
    }

    .nominations-list li::before {
        content: '✓';
        color: #ffd700;
        font-weight: bold;
        margin-right: 10px;
    }

/*----------------------------------------*/
/* 16. footer area
/*----------------------------------------*/
.footer-area {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}
.footer-area::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #E4B34C 0%, #D4A643 50%, #E4B34C 100%);
}
.footer-logo {
    max-width: 180px;
    height: auto;
    margin-bottom: 20px;
}
.footer-top {
    padding: 60px 0 40px;
}

.footer-widget h4 {
    color: #ffd700;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 20px;
    position: relative;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: #ffd700;
}

.footer-widget p,
.footer-widget li {
    color: #cccccc;
    line-height: 1.6;
}

.footer-widget ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-direction: column;
}

.footer-widget ul li {
    margin-bottom: 10px;
    transition: all 0.3s ease;
}

.footer-widget ul li:hover {
    transform: translateX(5px);
}

.footer-widget ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ffd700;
}

.footer-widget ul li i {
    color: #E4B34C;
    margin-right: 10px;
    width: 16px;
}

/* Social Media Styles */
.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(228, 179, 76, 0.1);
    color: #E4B34C;
    border-radius: 50%;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-3px);
}

/* Newsletter Styles */
.newsletter-form {
    margin-top: 20px;
}

.newsletter-input {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.newsletter-input input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid #333;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.newsletter-input input:focus {
    outline: none;
    border-color: #E4B34C;
    background: rgba(255, 255, 255, 0.1);
}

.newsletter-input input::placeholder {
    color: #888;
}

.newsletter-btn {
    padding: 12px 20px;
    background: linear-gradient(135deg, #E4B34C, #D4A643);
    color: #000;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(228, 179, 76, 0.3);
}

/* Event Info Styles */
.event-info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.event-info-item i {
    color: #ffd700;
    margin-right: 15px;
    width: 20px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 20px 0;
    border-top: 1px solid #333;
    background: rgba(0, 0, 0, 0.3);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.copyright {
    color: #888;
}

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

.footer-links a {
    color: #888;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #E4B34C;
}
/*----------------------------------------*/
/* 17. Home-02
/*----------------------------------------*/
.header-2 {
    background: #000 none repeat scroll 0 0;
    position: static;
}
.search {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 0;
    color: #fff;
}
.search-bar {
    padding-right: 15px;
    border-right: 1px solid #fff;
    margin-right: 15px;
}
.search-account { text-align: right }
.search-account .search-bar { position: relative }
.search-bar > input {
    border: 0;
    border-radius: 4px;
    height: 35px;
    padding: 0;
    position: absolute;
    right: 40px;
    top: -6px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 0;
}
.search-account form:hover .search-bar > input {
    width: 180px;
    padding: 0 0 0 10px;
}
.search-account i {
    color: #dddddd;
    font-size: 20px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.search-account i:hover { color: #E4B34C }
/*----------------------------------------*/
/* 18. slider-02
/*----------------------------------------*/
.map-content.slider-form-content {
    background: rgba(255,255,255, 0.8) none repeat scroll 0 0;
    width: auto;
    border-radius: 4px;
    position: static;
    right: auto;
    top: auto;
}
.content-body.slider-form p {
    color: #333;
    margin: 0 0 35px;
    padding: 0;
}
.content-body.slider-form {
    max-height: 100%;
    padding: 50px 70px;
}
.map-content .slider-form .input-box input {
    border-bottom: 1px solid #777777;
    color: #777;
    height: 30px;
    margin-bottom: 30px;
}
.map-content .slider-form .input-box input.date { cursor: pointer }
.map-content .slider-form .input-box input.submit {
    background: #E4B34C none repeat scroll 0 0;
    border: 1px solid #E4B34C;
    color: #fff;
    display: inline-block;
    float: none;
    height: 45px;
    margin-bottom: 0;
    margin-top: 50px;
    width: 130px;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.map-content .slider-form .input-box input.submit:hover {
    background: transparent;
    color: #E4B34C;
}
.map-content .slider-form .input-box { text-align: center }
select {
    background: transparent none repeat scroll 0 0;
    border: 0;
    color: #777;
    height: 30px;
    width: 100%;
}
.slider-form select {
    -moz-appearance: none;
    -webkit-appearance: none;
    border-bottom: 1px solid #777;
    cursor: pointer;
}
.map-content .slider-form .input-box input.date { background: rgba(0, 0, 0, 0) url("img/icon/date-bg.png") no-repeat scroll right center }
.map-content .slider-form .input-box select { background: rgba(0, 0, 0, 0) url("img/icon/select.png") no-repeat scroll right center }
.slider-02 .slide1-text {
    margin-top: -63px;
    padding-top: 232px;
}
/*----------------------------------------*/
/* 19. event apps
/*----------------------------------------*/
.event-alart-apps-area h1 { font-size: 32px }
.event-alart-apps-area {
    color: #fff;
    background-size: cover;
    background: url(img/bg/special-bg.jpg);
}
.apps-cont2 { padding-right: 30px }
/* speaker 2*/
.single-speaker-2 > img {
    border-radius: 0;
    margin-bottom: 15px;
}
.single-speaker-2 { padding: 20px 15px }
.single-speaker-2 .speaker-name { margin-bottom: 10px }
.single-speaker-2 .speaker-deg { margin: 0 }
.social-icon-2 {
    border-top: 1px solid #dddddd;
    padding-top: 15px;
}
.social-icon-2 li a {
    border: none;
    height: auto;
    line-height: inherit;
}
.social-icon-2 li a:hover {
    background: inherit;
    border: none;
    color: #E4B34C;
}
.speaker-btn i {
    font-size: 16px;
    position: relative;
    top: 2px;
    padding-right: 5px;
}
.speaker-btn { padding-top: 35px }
/*----------------------------------------*/
/* 20. total feed
/*----------------------------------------*/
.total-feed .news-img { margin: 0 }
.total-feed .single-news { padding-bottom: 0 }
.news-img img { width: 100% }
/*----------------------------------------*/
/* 21. testimonial-02 area
/*----------------------------------------*/
.author-info-02 > h4 {
    margin-bottom: 5px;
    color: #000;
}
.author-info-02 {
    background: url(img/icon/quote.png) no-repeat top 4px left;
    padding-left: 50px;
}
.total-testi-02 .owl-pagination { padding-top: 35px }
.blog-heading {
    border-bottom: 1px solid #999999;
    font-family: poppins;
    line-height: 27px;
    margin-bottom: 15px;
    padding-bottom: 5px;
    color: #333333;
    font-size: 18px;
}
.blog-date {
    font-size: 13px;
    margin-bottom: 0;
    line-height: 20px;
}
.blog-date i { margin-right: 10px }
.blog-content { color: #999 }
.post-by {
    color: #666;
    font-size: 13px;
}
.post-by a {
    color: #999;
    margin-left: 5px;
}
.post-by a:hover { color: #E4B34C }
.blog-text { margin: 0 }
.more { margin-top: 15px }
.total-blog .news-img { margin: 0 }
/*----------------------------------------*/
/* 22.timeline
/*----------------------------------------*/
.tab-menu-list.tml-02 li a {
    background: transparent none repeat scroll 0 0;
    color: #555555;
    font-family: poppins;
    font-size: 25px;
    height: 75px;
    line-height: 75px;
    padding: 0;
    width: 145px;
    background: #f7f7f7;
    border-color: #f7f7f7;
}
.tab-menu-list.tml-02 li a.active,
.tab-menu-list.tml-02 li a:hover { color: #fff }
.tab-menu-list.tml-02 li a.active{
    background: #E4B34C;
    border-color: #E4B34C;
}
.tab-menu-list.tml-02 ul li { margin-right: 0 }
.timeline-top i {
    font-size: 25px;
    position: relative;
    top: 2px;
}
.timeline-top li {
    line-height: 16px;
    padding-right: 20px;
}
.timeline-top li:last-child {
    border-left: 1px solid;
    padding-left: 20px;
}
.timeline-left > h4 {
    color: #777777;
    font-weight: 700;
    font-size: 18px;
}
.timeline-left > p {
    font-size: 13px;
    margin: 0;
}
.timeline-img {
    float: left;
    width: 150px;
}
.timeline-content {
    overflow: hidden;
    padding-left: 30px;
}
.timeline-content h5 {
    color: #333333;
    font-size: 15px;
    margin: 0;
    line-height: 20px;
}
.timeline-top {
    border-bottom: 1px solid #dddddd;
    display: inline-block;
    margin-bottom: 15px;
    padding-bottom: 5px;
}
.timeline-content > h4 { margin-bottom: 20px; color:#ecb845; }
.timeline-content > p { margin-bottom: 20px }
.single-timeline {
    background: #181717 none repeat scroll 0 0;
    border: solid 1px #E4B34C;
    margin-bottom: 50px;
    overflow: hidden;
    padding: 45px 40px;
    position: relative;
}
.single-timeline:last-child { margin: 0 }
.timeline-left {
    float: left;
    width: 230px;
}
.timeline-right { overflow: hidden }
.total-timeline { position: relative }
.total-timeline:before {
    background: linear-gradient(135deg, #ffd700, #E4B34C);
    content: "";
    height: 100%;
    left: 198px;
    position: absolute;
    top: 0;
    width: 2px;
    z-index: 9;
}
.single-timeline:before {
    background: #fff none repeat scroll 0 0;
    border: 2px solid #E4B34C;
    border-radius: 50px;
    content: "";
    height: 30px;
    left: 184px;
    position: absolute;
    top: 50px;
    width: 30px;
    z-index: 999;
}
.single-timeline:after {
    background: #E4B34C none repeat scroll 0 0;
    border-radius: 50px;
    content: "";
    height: 16px;
    left: 191px;
    position: absolute;
    top: 57px;
    width: 16px;
    z-index: 999;
}
/* timeline */
/*----------------------------------------*/
/* 23.breadcrumb
/*----------------------------------------*/
.breadcumb-area {
    /*padding: 150px 0;*/
    text-align: center;
}
.breadcrumb {
    background-color: transparent;
    border-radius: 0;
    list-style: outside none none;
    margin-bottom: 0;
    padding: 0;
    position: relative;
    justify-content: center;
}
.eapp-events-calendar-load-more-button-component {
    background: #E4B34C none repeat scroll 0 0 !important;
    border-color: #E4B34C;
    color: #fff !important;
    padding: 9px 33px;
    border-radius: 10px !important;
    max-width: 145px !important;
}
.breadcrumb > li + li:before {
    color: #fff;
    font-weight: 700;
    padding: 0 2px;
}
.breadcrumb a,
.breadcrumb li.active { color: #fff }
.breadcrumb li {
    font-family: popins;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}
.breadcrumb a:hover { color: #E4B34C }
.breadcrumb:before,
.breadcrumb:after {
    background: #fff none repeat scroll 0 0;
    bottom: -20px;
    content: "";
    height: 6px;
    left: 50%;
    position: absolute;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 60px;
}
.breadcrumb:after {
    background: #E4B34C none repeat scroll 0 0;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    width: 30px;
}
.single-news-02 { padding-bottom: 50px }
.col-md-6:nth-last-child(-n+2) .single-news-02 { padding: 0 }
/*----------------------------------------*/
/* 24.widhget
/*----------------------------------------*/
.search-widget .input-box input {
    border-color: #aaaaaa;
    color: #aaaaaa;
    font-size: 13px;
    height: 50px;
    position: relative;
    width: 100%;
    padding: 0 40px 0 10px;
}
.search-widget .input-box {
    display: block;
    position: relative;
}
.search-btn {
    background: transparent none repeat scroll 0 0;
    border: 0;
    font-size: 20px;
    line-height: 46px;
    padding: 0;
    position: absolute;
    right: 20px;
    color: #262626;
}
.search-btn:hover { color: #E4B34C }
.aside-title {
    font-family: Poppins;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 25px;
}
.catagory-widget li {
    background: #f5f5f5 none repeat scroll 0 0;
    display: block;
    margin-bottom: 1px;
}
.catagory-widget li a {
    display: block;
    line-height: 50px;
    padding: 0 20px;
}
.rec-blog-content .blog-date {
    font-size: 15px;
    margin-bottom: 10px;
}
.rec-blog-content > p { margin: 0 }
.rec-blog-content > img { margin-bottom: 15px }
.rec-blog-content { margin-bottom: 30px }
.rec-blog-content:last-child { margin: 0 }
.tag-widget a {
    border: 1px solid #999999;
    display: block;
    padding: 10px;
}
.tag-widget li {
    float: left;
    margin: 0 10px 10px 0;
}
/*----------------------------------------*/
/* 25. single-blog
/*----------------------------------------*/
.sb-img {
    background: #f5f5f5 none repeat scroll 0 0;
    overflow: hidden;
    padding: 10px;
}
.blog-meta {
    border-bottom: 1px solid #dddddd;
    border-top: 1px solid #dddddd;
    height: 45px;
    line-height: 45px;
}
.blog-meta li a {
    border-right: 1px solid #999999;
    color: #999;
    padding: 0 20px;
}
.blog-meta li a i {
    font-size: 20px;
    margin-right: 10px;
}
.blog-meta li a:hover { color: #E4B34C }
.blog-meta li:last-child a { border: 0 }
.sb-img:hover img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.sb-img img {
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    width: 100%;
}
blockquote {
    background: none;
    border-left: 5px solid #E4B34C;
    font-size: 15px;
    margin: 0;
    padding: 0;
}
.blockqot {
    background: #fafafa none repeat scroll 0 0;
    padding: 20px;
}
.blockqot p {
    background: rgba(0, 0, 0, 0) url("img/icon/quote-2.png") no-repeat scroll left 15px top 4px;
    padding-left: 45px;
}
.support-team img { width: 100% }
.subject li {
    display: block;
    margin-bottom: 10px;
}
.subject li:before {
    color: #999999;
    content: "";
    font-family: material-design-iconic-font;
    font-size: 20px;
    padding-right: 10px;
    position: relative;
    top: 3px;
}
.single-blog-social {
    background: #f5f5f5 none repeat scroll 0 0;
    height: 50px;
    line-height: 50px;
    text-align: center;
}
.single-blog-social li a {
    color: #555;
    font-size: 25px;
}
.single-blog-social li a:hover { color: #E4B34C }
.comments-area .aside-title {
    border-bottom: 1px solid #e1e1e1;
    padding-bottom: 10px;
}
/*----------------------------------------*/
/* 26. comments
/*----------------------------------------*/
.commets-text h5 {
    font-size: 15px;
    margin-bottom: 0;
}
.signle-comments > img { float: left }
.commets-text {
    overflow: hidden;
    padding-left: 15px;
}
.signle-comments {
    display: block;
    margin-bottom: 40px;
    position: relative;
}
.commets-text > p {
    line-height: 20px;
    margin: 0;
}
.commets-text span {
    color: #999;
    font-size: 13px;
}
.replay {
    position: absolute;
    right: 0;
    top: 0;
}
.replay > a {
    background: #ebebeb none repeat scroll 0 0;
    border-radius: 4px;
    font-size: 13px;
    padding: 7px 14px;
}
.comments-body ul li.signle-comments:last-child { margin: 0 }
.comments-body ul li:nth-child(2n) { padding-left: 70px }
.leave-ib input {
    border-color: #e2e2e2;
    border-radius: 0;
    color: #c6c6c6;
    height: 40px;
    line-height: 40px;
    margin-bottom: 20px;
    width: 100%;
}
.lyt-right .area-text {
    border: 1px solid #e2e2e2;
    height: 160px;
    resize: none;
    width: 100%;
    color: #c6c6c6;
    padding: 10px;
}
.post-comment input.submit {
    background: #333333 none repeat scroll 0 0;
    color: #fff;
    height: 40px;
    line-height: 37px;
    padding: 0 20px;
    width: auto;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.post-comment input.submit:hover { color: #E4B34C }
.input-box.post-comment { float: left }
/*----------------------------------------*/
/* 27. event details
/*----------------------------------------*/
.total-speaker-2 .single-speaker { margin-bottom: 50px }
.total-speaker-2 .col-md-3:nth-last-child(-n+4) .single-speaker { margin: 0 }
.event-about-btn .btn-def { float: left }
.event-about-btn a + a { margin-left: 40px }
.event-about-are { position: relative }
.event-about-img {
    background: rgba(0, 0, 0, 0) url("img/event/details-event.jpg") no-repeat scroll right top;
    background-size: cover;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    width: 747px;
}
/*----------------------------------------*/
/* 28. event shedule area
/*----------------------------------------*/
.event-shedule-left {
    background: #fff none repeat scroll 0 0;
    border-radius: 0 100px 100px 0;
    float: left;
    left: 0;
    padding: 20px 30px;
    position: absolute;
    width: 300px;
}
.panel-group .panel {
    background: transparent none repeat scroll 0 0;
    border: 1px solid transparent;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    overflow: hidden;
    padding-bottom: 45px;
    padding-left: 330px;
    padding-top: 20px;
    position: relative;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.panel-group .panel.active { padding-bottom: 27px }
.panel-group .panel + .panel { margin-top: 30px }
.es-img > img {
    border-radius: 100%;
    height: 130px;
    width: 130px;
}
.es-img {
    margin-top: -65px;
    position: absolute;
    right: 0;
    top: 50%;
}
.es-text > p {
    color: #999;
    margin: 0;
}
.es-text > h4 { margin-bottom: 5px }
.shedule-meta li {
    font-weight: 700;
    margin-right: 20px;
    color: #555;
}
.shedule-meta li i {
    font-size: 20px;
    margin-right: 10px;
}
.panel-box {
    font-size: 15px;
    letter-spacing: 1px;
}
.shedule-head h4 {
    color: #333333;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.shedule-head h4:hover { color: #E4B34C }
.panel:before {
    background: #dddddd none repeat scroll 0 0;
    bottom: 0;
    content: "";
    height: 2px;
    left: 330px;
    position: absolute;
    width: 840px;
}
.shedule-head {
    float: left;
    margin-top: -20px;
    padding-bottom: 15px;
    padding-top: 0;
    position: relative;
    width: 100%;
}
.shedule-head.collapsed {
    margin-top: 0;
    padding-top: 20px;
}
.panel-collapse {
    float: left;
    width: 100%;
}
.shedule-head:after {
    content: "";
    font-family: material-design-iconic-font;
    font-size: 20px;
    position: absolute;
    right: 0;
    top: 0;
}
.shedule-head.collapsed:after {
    content: "";
    top: 18px;
}
.shedule-head:focus { text-decoration: none }
.tab-menu-list-event ul li { float: left }
.tab-menu-list-event ul li a span {
    font-family: poppins;
    font-size: 33px;
    line-height: 1;
    margin-right: 15px;
    position: relative;
    top: 5px;
}
.tab-menu-list-event ul li a {
    background: #fff none repeat scroll 0 0;
    border-radius: 4px;
    font-size: 18px;
    padding: 20px 15px;
}
.tab-menu-list-event ul li + li { margin-left: 30px }
.tab-menu-list-event ul li a:hover { background: #fff none repeat scroll 0 0 }
.tab-menu-list-event .nav { display: inline-block }
.tab-menu-list-event ul li a:focus {
    background: #fff none repeat scroll 0 0;
    color: inherit;
}
/*----------------------------------------*/
/* 29. sicky menu
/*----------------------------------------*/
.logo-menu-area.stick {
    background: rgba(0, 0, 0, 0.8) none repeat scroll 0 0;
    z-index: 999999999;
}
.mobile-menu-area { display: none; background: none !important; }
.mobile-nav-wrapper {
  position: relative;
}
.mobile-menu-toggle{
    background: none;
  border: none;
  color: #fff3c9;
  font-size: 24px;
}
.mobile-logo img {
  max-height: 50px;
  padding: 0 0 0 30px;
}
.mobile-lang {
  position: relative;
}
.mobile-menu {
  display: none;
  padding: 15px 0;
  background-color: #111;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-menu a {
  color: #fff3c9;
  text-decoration: none;
  font-size: 15px;
}

.mobile-menu a:hover {
  color: #fcd462;
}

.language-options {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #1a1a1a;
  border: 1px solid #333;
  z-index: 999;
  min-width: 120px;
  list-style: none;
}

.language-options li a {
  display: block;
  padding: 8px 12px;
  color: #fff3c9;
  font-size: 14px;
  white-space: nowrap;
}

.language-options li a:hover {
  background-color: #333;
}

/* Utility */
.d-md-none {
  display: block ;
}
.container.mean-container {
    position: relative;
    left: 15px;
}
.mean-container .mean-nav ul li a:hover { color: #E4B34C }
#sticker {
    right: 0;
    left: 0;
}
.stick {
    position: fixed;
    top: 0;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    z-index: 99;
}
.nav-text {
  font-size: 16px;
  letter-spacing: 1px;
  font-weight: 700;
}
.logo img.main-logo {
  max-height: 80px;
  object-fit: contain;
}

/*----------------------------------------*/
/* 30. Home varsion
/*----------------------------------------*/
/* parallex */
.parallex-slide,
.animate-slide {
    background: rgba(0, 0, 0, 0) url("img/slider/slider2.jpg") no-repeat fixed 0 0 / cover;
    height: 100vh;
}
.parallex-slider-text {
    color: #fff;
    position: absolute;
    z-index: 99;
    left: 0;
    right: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    top: 50%;
}
.parallex-fixed { background-attachment: fixed }
/* Video */
.ready-to-play-2 { height: 100vh }
.video-slider-text {
    color: #fff;
    left: 0;
    position: absolute;
    top: 50%;
    z-index: 999;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: auto;
    right: 0;
}
.ready-to-play-2 { z-index: auto }
.video-slider-text .event-date,
.video-slider-text .event-location,
.animate-slider-text .event-date,
.animate-slider-text .event-location {
    float: none;
    display: inline-block;
}
/* Yourtube Video */
.compact { display: none !important }
.gradient-slide:after {
    position: absolute;
    background: url(img/bg/grid.png);
    height: 100%;
    width: 100%;
    left: 0;
    top: 0;
    content: "";
}
/* Animate Text */
.cd-headline.clip span { padding: 0 }
.boxed-layout .wrapper {
    box-shadow: -3px 0 50px -2px rgba(0, 0, 0, 0.14);
    margin: auto;
    position: relative;
    width: 1240px;
}
.boxed-layout #sticker.stick {
    left: auto;
    right: auto;
    margin: auto;
    width: 1240px;
}
.boxed-layout .nivoSlider img { height: auto !important }
.boxed-layout .ready-to-play-2 { height: 700px }
/*----------------------------------------*/
/*  31. Scroll UP
/*----------------------------------------*/
#scrollUp {
    background: #E4B34C none repeat scroll 0 0;
    border: 1px solid #ffffff;
    bottom: 59px;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    height: 45px;
    line-height: 40px;
    right: 50px;
    text-align: center;
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    width: 45px;
}
#scrollUp:hover {
    background: #fff none repeat scroll 0 0;
    border-color: #E4B34C;
    color: #E4B34C;
}

/* Film Strip Section */
.film-strip-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 0;
}

.film-strip {
  position: relative;
  width: 100%;
  max-width: 1200px;
  background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.1);
}

.film-perforations {
  height: 15px;
  background: #0f0f0f;
  position: relative;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}

.film-perforations::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 6px;
  background: repeating-linear-gradient(
    to right,
    transparent 0px,
    transparent 8px,
    #333 8px,
    #333 16px,
    transparent 16px,
    transparent 32px
  );
  transform: translateY(-50%);
}

.film-perforations-top {
  border-bottom: 2px solid #E4B34C;
}

.film-perforations-bottom {
  border-top: 2px solid #E4B34C;
}

.film-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  padding: 30px 20px;
  gap: 20px;
}

.film-frame {
  width: 100%;
  height: 120px;
  background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  border: 2px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.film-frame::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(45deg, transparent, #E4B34C, transparent);
  border-radius: 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.film-frame:hover::before {
  opacity: 0.6;
}

.film-frame:hover {
  transform: translateY(-8px) scale(1.05);
  background: linear-gradient(135deg, rgba(228, 179, 76, 0.06) 0%, rgba(228, 179, 76, 0.04) 100%);
  border-color: #E4B34C;
  box-shadow: 0 15px 30px rgba(228, 179, 76, 0.2);
}

.stat-icon {
  width: 45px;
  height: 45px;
  background: linear-gradient(135deg, #B8860B 0%, #996F0A 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(184, 134, 11, 0.2);
  transition: all 0.3s ease;
}

.film-frame:hover .stat-icon {
  background: linear-gradient(135deg, #E4B34C 0%, #D4A73A 100%);
  box-shadow: 0 8px 16px rgba(228, 179, 76, 0.25);
  transform: scale(1.1);
}

.stat-icon i {
  font-size: 20px;
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.stat-number {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
  letter-spacing: 0.3px;
}

.about-btn {
  margin-top: 40px;
}


