/********** Template CSS **********/
:root {
    --primary: #521795;
    --light: #be8708;
    --dark: #702493;
    --color2: #b2770f;
}

/* ---------- Typography ---------- */

/* Default body & normal text */
body,
p,
span,
li,
a,
label,
input,
textarea,
button,
.form-control {
    font-family: "Inter Tight", sans-serif;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: "Playfair Display SC", serif;
}

/* ---------- Icon Styling ---------- */
.fa,
.fab,
.far,
.fas,
.bi {
    color: #521795 !important;
}

/* Social icon buttons */
.btn-sm-square i {
    color: #521795 !important;
}


/* Navbar / Menu text */
.navbar,
.navbar .nav-link,
.navbar-brand {
    font-family: "Playfair Display SC", serif;
    letter-spacing: 0.05em;
    font-weight: 800;
}

/* Dropdown icons & arrows remain readable */
.navbar .dropdown-toggle::after {
    font-family: "Inter Tight", sans-serif;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
    color: #521795;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #521795;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}


/*** Navbar ***/
.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

.navbar .navbar-brand {
    display: flex;
    align-items: center;
}

.navbar .navbar-brand img {
    max-height: 120px;
}

.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Inter Tight", sans-serif;
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 25px 0;
    color: #fefefe;
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--light);
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link  {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

.navbar .navbar-nav .nav-link {
    color: var(--dark);
    font-weight: 800;
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.header-bg {
    background: #521795;
    background-size: cover;
}

.btn-play {
    position: relative;
    display: block;
    box-sizing: content-box;
    width: 16px;
    height: 26px;
    border-radius: 100%;
    border: none;
    outline: none !important;
    padding: 18px 20px 20px 28px;
    background: #fefefe;
}

.btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #fefefe;
    border-radius: 100%;
    animation: pulse-border 1500ms ease-out infinite;
}

.btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translateX(-50%) translateY(-50%);
    display: block;
    width: 60px;
    height: 60px;
    background: #fefefe;
    border-radius: 100%;
    transition: all 200ms;
}

.btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    left: -1px;
    border-left: 16px solid var(--primary);
    border-top: 11px solid transparent;
    border-bottom: 11px solid transparent;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(2);
        opacity: 0;
    }
}

.modal-video .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

.modal-video .modal-body {
    position: relative;
    padding: 0px;
}

.modal-video .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #fefefe;
    background: #000000;
    opacity: 1;
}

.header-carousel .owl-nav {
    position: absolute;
    width: 200px;
    height: 40px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fefefe;
    background: transparent;
    border: 1px solid #fefefe;
    font-size: 22px;
    transition: .5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.header-carousel .owl-dots {
    position: absolute;
    height: 45px;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dot {
    position: relative;
    display: inline-block;
    margin: 0 5px;
    width: 15px;
    height: 15px;
    background: transparent;
    border: 1px solid #fefefe;
    transition: .5s;
}

.header-carousel .owl-dot::after {
    position: absolute;
    content: "";
    width: 5px;
    height: 5px;
    top: 4px;
    left: 4px;
    background: #fefefe;
    border-radius: 5px;
}

.header-carousel .owl-dot.active {
    background: var(--primary);
    border-color: var(--primary);
}

.breadcrumb-item + .breadcrumb-item::before {
    color: var(--light);
}


/*** Img Border ***/
.img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.services-img-border {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--primary);
}

.services-img-border::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    right: 3rem;
    bottom: 3rem;
    border: 5px solid var(--color2);
}

.img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}

.services-img-border img {
    position: absolute;
    top: 3rem;
    left: 3rem;
    width: calc(100% - 3rem);
    height: calc(100% - 3rem);
    object-fit: cover;
}


/*** Facts & Visiting Hours ***/
.facts {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
}

.facts-about {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-1.jpg) center center no-repeat;
    background-size: cover;
    display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.facts-about > div {
  flex: 0 0 80.33%;
  margin: 20px;
  text-align: center;
}

.visiting-hours {
    background: linear-gradient(rgba(0, 0, 0, .7), rgba(0, 0, 0, .7)), url(../img/bg-2.jpg) center center no-repeat;
    background-size: cover;
}

.visiting-hours .list-group-item {
    display: flex;
    justify-content: space-between;
    color: var(--light);
    background: rgba(0, 0, 0, .15);
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table {
    color: var(--light);
    background: rgba(0, 0, 0, .15);
}

.visiting-hours .table td {
    padding: .5rem 1rem;
    border-color: rgba(255, 255, 255, .15);
}

.visiting-hours .table tr:last-child td {
    border: none;
}

.visiting-hours {
  position: relative; /* required for overlay */
  overflow: hidden;   /* ensures overlay fits inside */
}

.visiting-hours .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9); /* black overlay, 50% opacity */
  z-index: 1;
}

/* Ensure content is above overlay */
.visiting-hours .content {
  position: relative;
  z-index: 2;
}

/* Countdown Section Wrapper */
.countdown-section-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 50px auto;
    width: 50%; /* half screen */
}

/* Section Title */
.countdown-title {
    font-family: "Playfair Display SC", serif;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 30px;
}

/* Countdown container: one horizontal line */
.countdown-container {
    display: flex;
    justify-content: center; /* center all cards */
    align-items: center;
    flex-wrap: nowrap;
    width: 100%;
    gap: 15px; /* spacing between cards */
}

/* Countdown cards */
.countdown-card {
    flex: 1 1 auto;
    min-width: 80px;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    text-align: center;
    transition: 0.3s;
    cursor: default;
}


/* Hover glow effect */
.countdown-card:hover {
    box-shadow: 0 0 20px var(--light);
    transform: translateY(-5px);
}

/* Digital-style numbers */
@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@700&display=swap');

.countdown-card span {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary);
    display: block;
}

/* Countdown labels */
.countdown-card p {
    font-size: 1rem;
    color: var(--light);
    margin-top: 5px;
    font-weight: 500;
}

/* Date & Venue below countdown */
.countdown-info {
    margin-top: 20px;
}

.countdown-info p {
    font-size: 1.2rem;
    color: var(--dark);
    margin: 5px 0;
    font-weight: 500;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .countdown-section-wrapper {
        width: 90%;
    }

    .countdown-container {
        flex-wrap: wrap; /* stack cards on smaller screens */
    }

    .countdown-card {
        flex: 1 1 45%; /* two cards per row */
        margin: 10px 5px;
    }

    .countdown-card span {
        font-size: 2.5rem;
    }

    .countdown-title {
        font-size: 2rem;
    }

    .countdown-info p {
        font-size: 1rem;
    }
}

@media screen and (max-width: 576px) {
    .countdown-card {
        flex: 1 1 100%; /* one per row on mobile */
    }

    .countdown-card span {
        font-size: 2rem;
    }
}

/*** Animal ***/
.animal-item {
    position: relative;
    display: block;
}

.animal-item .animal-text {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, .7);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 100px !important;
    opacity: 0;
    transition: .5s;
}

.animal-item:hover .animal-text {
    opacity: 1;
    padding-bottom: 20px !important;
}


/*** speakers ***/
.speakers-item {
    padding: 45px 30px;
    color: #fefefe;
    background: rgba(0, 0, 0, .7);
}

.speakers-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.speakers-item .display-1 {
    color: transparent;
    -webkit-text-stroke: 2px var(--primary);
}

/*** speakers hover effect ***/

/* Smooth transitions */
.speakers-item {
    transition: background 0.5s ease;
}

/* Target all text elements except the button */
.speakers-item h1,
.speakers-item h4,
.speakers-item p {
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Button stays visible */
.speakers-item a.btn {
    position: relative;
    z-index: 2;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

/* Hover state */
.speakers-item:hover {
    background: rgba(0, 0, 0, 0); /* remove overlay */
}

/* Fade out text on hover */
.speakers-item:hover h1,
.speakers-item:hover h4,
.speakers-item:hover p {
    opacity: 0;
    transform: translateY(10px);
}

/* Optional: make button slightly stand out on hover */
.speakers-item:hover a.btn {
    opacity: 1;
    transform: translateY(-5px);
}


/*** Testimonial ***/
.testimonial-carousel::before {
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.testimonial-carousel::after {
    position: absolute;
    content: "";
    top: 0;
    right: 0;
    height: 100%;
    width: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

@media (min-width: 768px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 200px;
    }
}

@media (min-width: 992px) {
    .testimonial-carousel::before,
    .testimonial-carousel::after {
        width: 300px;
    }
}

.testimonial-carousel .owl-item .testimonial-text {
    background: var(--light);
    transform: scale(.8);
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text {
    background: var(--primary);
    transform: scale(1);
}

.testimonial-carousel .owl-item .testimonial-text *,
.testimonial-carousel .owl-item .testimonial-item img {
    transition: .5s;
}

.testimonial-carousel .owl-item.center .testimonial-text * {
    color: var(--light) !important;
}

.testimonial-carousel .owl-item.center .testimonial-item img {
    border-color: var(--primary) !important;
} 

.testimonial-carousel .owl-nav {
    position: absolute;
    width: 350px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    opacity: 0;
    transition: .5s;
    z-index: 1;
}

.testimonial-carousel:hover .owl-nav {
    width: 300px;
    opacity: 1;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    position: relative;
    color: var(--primary);
    font-size: 45px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: var(--dark);
}


/* Footer Styles - spaced layout */
.footer {
    font-family: 'Inter Tight', sans-serif;
    background-color: #1c0f3a; /* Dark purple */
    color: #f3f3f3;
}

.footer h5 {
    color: #ffd700; /* Gold headings */
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer p, .footer a {
    color: #f3f3f3;
    font-size: 0.95rem;
}

.footer a:hover, .footer .btn-link:hover {
    color: #be8708; /* Gold hover */
    text-decoration: underline;
}

.footer .btn-social {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    margin-right: 10px;
    color: var(--light);
}

.footer .btn-social:hover {
    background-color: #be8708;
    border-color: #be8708;
    color: #fff !important;
}

.footer-links li {
    margin-bottom: 10px;
}

/* Form Inputs */
.footer input.form-control {
    background-color: transparent;
    border: 1px solid #f3f3f3;
    color: #f3f3f3;
    padding: 10px;
    margin-bottom: 10px;
}

.footer input.form-control:focus {
    outline: none;
    border-color: #be8708;
}

.footer button {
    background-color: transparent;
    border: 1px solid #f3f3f3;
    color: #f3f3f3;
    transition: all 0.3s;
}

.footer button:hover {
    background-color: #be8708;
    border-color: #be8708;
    color: #fff;
}

/* Footer Container Flexibility */
.footer .container > .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Spread columns across width */
    gap: 30px; /* spacing between columns */
}

/* Make columns equal width */
.footer .col-lg-3, 
.footer .col-md-6 {
    flex: 1 1 22%; /* Each column ~22% width, leaves gap space */
    min-width: 200px; /* ensures columns don’t shrink too much */
}

/* Copyright Row */
.footer .copyright .row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    text-align: center;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .footer .col-lg-3, .footer .col-md-6 {
        flex: 1 1 45%; /* Two per row on medium screens */
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .footer .col-lg-3, .footer .col-md-6 {
        flex: 1 1 100%; /* Stack on small screens */
        margin-bottom: 20px;
    }

    .footer .btn-social {
        margin-bottom: 10px;
    }
}
/*-------------------------TEST------------------*/
#last{ 
	width: 100%; 
	height: auto; 
	justify-content: center; 
	background-color: #ffb3b3; 
	} 
	.full{ 
	width: 80%; 
	display: inline-block; 
	margin:2%; 
	margin-left: 10%; 
	text-align: center; 
	background-color: black; 
	color: white; 
	border:15px solid orange; 
	border-radius: 5px; 
	margin-bottom: 8%; 
	margin-top: 8%; 
	} 
	.full h3{ 
	font-size: 2rem; 
	display:block; 
	margin: 2%; 
	margin-bottom: 0; 
	} 
	.lt{ 
	padding: 2%; 
	margin: 2%; 
	} 
	.rt{ 
	padding: 2%; 
	margin: 2%; 
	} 
	.lt textarea{ 
	width: 94%; 
	margin-left: 2.8%; 
	} 
	button{ 
	margin: 2%; 
	} 
	.btn-primary{ 
	background-color: var(--light); 
	border: 2px solid #be8708; 
	border-radius: 5%;
	color: #521795;
	} 
    .btn-primary:hover{
        color:#be8708;
        background-color:#702493;
        border-color:#be8708
    }
	.list-item{ 
	margin-bottom: 2%; 
	list-style-type: none; 
	} 
	.list-item span{ 
	margin-left: 10px; 
	font-size: 1.4rem; 
	} 
	.list-item a{ 
	color: white; 
	display: inline-block; 
	} 
	.list-item a:hover{ 
	text-decoration: underline; 
	} 
	.form-control{ 
	background-color: black; 
	} 
		
	@media screen and (min-width: 770px){ 
	.full{ 
		width: 70%; 
		margin-left: 15%; 
	} 
	.lt textarea{ 
	width: 95%; 
	margin-left: 2.4%; 
	} 
	} 
		
	@media screen and (min-width: 1100px){ 
	.full{ 
		width: 65%; 
		margin-left: 17%; 
		margin-top: 5%; 
	} 
	.lt{ 
		width: 55%; 
		display: inline-block; 
		float: left; 
		margin-right: 0; 
	} 
	.rt{ 
		width: 35%; 
		display: inline-block; 
		margin-left: 0; 
	} 
	.list-item{ 
	margin-bottom: 10%; 
	} 
	.contact-list{ 
		margin-top: 22%; 
		padding-right: 8%; 
	} 
	.fa-envelope, .gmail{ 
		display: inline-block; 
		width: auto; 
	} 
	}

/*-----------------EMAIL---------------------*/
.email {
    max-width: 1320px;
    margin: 0 auto;
    padding: 5%;
    text-align: center;
}

form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
    padding: 20px 0;
}

input,
textarea,
label {
    display: block;
    width: 100%;
    color: #828282;
}

label {
    margin-top: 20px;
}

input,
textarea {
    background-color: transparent;
    border: 0;
    border-bottom: 2px solid #828282;
}

input[type=submit] {
    background-color: var(--primary);
    padding: 15px 0;
    color: #f3f3f3;
    font-size: 18px;
    border-bottom: none;
    margin-top: 30px;
    cursor: pointer;
    transition: all .3s ease;
}

input[type=submit]:hover {
    background: #65852f;
    color: #fff;
}

input,
textarea {
    color: #000000;
    font-size: 18px;
    padding: 10px;
}

input:focus,
textarea:focus {
    outline: 1px solid #828282;
}
/*---------------------------------------------------------*/
.s-section {
    position: relative;
    height: 40vh; /* adjust the height to your needs */
    display: flex;
    justify-content: flex-end; /* align the card to the right */
    align-items: center;
  }
  
  .s-section__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .s-section__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* dark overlay */
  }
  
  .s-section__card {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 400px; /* adjust the width to your needs */
    margin-right: 30px; /* adjust the margin to your needs */
  }
  
  .s-section__heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .s-section__text {
    font-size: 16px;
    color: #666;
  }

  .s-section2 {
    position: relative;
    height: 40vh; /* adjust the height to your needs */
    display: flex;
    justify-content: flex-start; /* align the card to the right */
    align-items: center;
    z-index: -1;
  }
  
  .s-section2__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
  }
  
  .s-section2__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.1); /* dark overlay */
  }
  
  .s-section2__card {
    position: relative;
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    width: 400px; /* adjust the width to your needs */
    margin-right: 80px; /* adjust the margin to your needs */
  }
  
  .s-section2__heading {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 10px;
  }
  
  .s-section2__text {
    font-size: 16px;
    color: #666;
  }

  /* Make border act as positioning reference */


/* Position video slightly above border */
.video-wrapper video {
  position: relative;
  top: 27%;   /* move upward */
  left: -15px;  /* move left */
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optional: subtle depth effect */
.video-wrapper video {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* ================= PAYMENT SECTION ================= */

.payment-section {
    background: #f9f9f9;
}

.payment-card {
    background: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Ticket Price Highlight */
.ticket-price {
    background: rgba(190, 135, 8, 0.1);
    border-left: 6px solid var(--light);
    padding: 20px;
    text-align: center;
}

.ticket-price span {
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--dark);
}

.ticket-price h2 {
    font-size: 3rem;
    color: var(--primary);
    margin: 10px 0;
}

.ticket-price small {
    color: #555;
}

/* Bank Details */
.bank-details {
    background: rgba(82, 23, 149, 0.05);
    padding: 15px;
    border-radius: 6px;
}

.bank-details .account-number {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    color: var(--primary);
}

/* Registration Steps */
.registration-steps .step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.registration-steps .step span {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 15px;
    flex-shrink: 0;
}

.registration-steps .step p {
    margin: 0;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .ticket-price h2 {
        font-size: 2.2rem;
    }
}

/* Dress Code */
.dress-code-section {
    max-width: 800px;
}

.dress-code-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.dress-code-card i {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--primary);
}

.dress-code-card h4 {
    margin-bottom: 10px;
}

.dress-code-card .note {
    margin-top: 10px;
    font-style: italic;
    color: var(--dark);
}

/* FAQ Accordion */
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 10px;
}

.faq-question {
    width: 100%;
    background: var(--primary);
    color: #fff;
    padding: 15px 20px;
    border: none;
    text-align: left;
    font-weight: 600;
    cursor: pointer;
    border-radius: 6px;
}

.faq-question::after {
    content: "+";
    float: right;
    font-size: 20px;
}

.faq-question.active::after {
    content: "−";
}

.faq-answer {
    display: none;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 0 0 6px 6px;
    color: #333;
}

/* Partnership */
/* Partnership - Horizontal Logos */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap; /* allows wrap on small screens */
}

.partner-logos img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.partner-logos img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

/* Marketing Availability */
.marketing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.marketing-card {
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
}

.marketing-card:hover {
    transform: translateY(-8px);
}

.marketing-card i {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--primary);
}

/* Follow Us & Map Section */
/*Contact Info on Left Side */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    font-size: 1.2rem;
    color: #ffd700; /* Gold text */
}

.contact-item i {
    margin-right: 10px;
    font-size: 1.3rem;
}
.follow-map-section {
    min-height: 50px;
}

.follow-us-left {
    background-color: var(--light); /* purple background */
}

.follow-us-left h2 {
    font-family: "Playfair Display SC", serif;
    font-size: 2.5rem;
    font-weight: bold;
}

.social-links a.social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    color: gold;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a.social-link:hover {
    text-decoration: underline;
    color: #ffd700;
}

.map-right iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive: Stack left on top on small screens */
@media (max-width: 991.98px) {
    .follow-map-section .row {
        flex-direction: column;
    }

    .map-right {
        height: 400px; /* ensure map has height */
    }

    .follow-us-left {
        padding: 40px 20px;
    }
}

.social-img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s;
}

.social-img:hover {
    transform: scale(1.2);
}

/* Team Section */
.team-section {
    position: relative;
    padding: 80px 0;
}

/* Ensure uniform team card size */
.team-item {
    position: relative;
    height: 380px;               /* STANDARD CARD HEIGHT */
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background-color: #000;      /* fallback while images load */
}

/* Force images to be same size */
.team-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;           /* KEY: crops without distortion */
    object-position: center top; /* keeps faces visible */
    display: block;
}

/* Overlay covers bottom 1/3 consistently */
/* Overlay hidden by default */
.team-item .overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 28%;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 12px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

/* Show overlay & text on hover */
.team-item:hover .overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.team-item:hover .overlay h5{
    color: var(--light);
}
/* Hover lift effect */
.team-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 18px 35px rgba(192, 196, 1, 0.966);
}

.team-item:hover img {
    transform: scale(1.05);
    transition: transform 0.4s ease;
}

/* Responsive tweaks */
@media (max-width: 992px) {
    .team-item {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .team-item {
        height: 300px;
    }
}
/* =========================
   WhatsApp Chatbot Button
   ========================= */

.whatsapp-chatbot {
    position: fixed;
    right: 45px;
    bottom: 110px; /* sits ABOVE back-to-top */
    width: 55px;
    height: 55px;
    background-color: #25D366; /* WhatsApp green */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-chatbot i {
    font-size: 28px;
    color: #ffffff !important;
}

/* Hover effect */
.whatsapp-chatbot:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.4);
}

/* Mobile adjustment */
@media (max-width: 576px) {
    .whatsapp-chatbot {
        right: 44px;
        bottom: 100px;
        width: 50px;
        height: 50px;
    }

    .whatsapp-chatbot i {
        font-size: 24px;
    }
}
/* ===============================
   PAYMENT ALERT – CRITICAL NOTICE
================================ */

.payment-alert {
    position: relative;
    background: linear-gradient(135deg, #521795, #702493);
    padding: 70px 20px;
    margin: 0;
    box-shadow:
        0 -15px 30px rgba(82, 23, 149, 0.8),
        0 15px 30px rgba(82, 23, 149, 0.8);
}

.payment-alert-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #fff;
    padding: 40px 30px;
    border: 2px solid var(--light);
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.25);
    animation: alertPulse 2.5s infinite;
}

/* Icon */
.payment-alert .alert-icon i {
    font-size: 3.5rem;
    color: var(--light) !important;
    margin-bottom: 20px;
}

/* Headline */
.payment-alert h2 {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffd700;
    margin-bottom: 20px;
    text-transform: uppercase;
}

/* Main message */
.payment-alert .alert-main {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.payment-alert .amount {
    color: #ffd700;
    font-weight: 900;
    font-size: 1.6rem;
}

/* Supporting text */
.payment-alert .alert-sub {
    font-size: 1.05rem;
    opacity: 0.95;
    margin-bottom: 25px;
}

/* Call to action */
.payment-alert .alert-action {
    display: inline-block;
    padding: 15px 25px;
    border: 2px dashed #ffd700;
    border-radius: 12px;
    font-weight: 700;
    color: #ffd700;
    background: rgba(0,0,0,0.4);
}

/* Hover emphasis */
.payment-alert-inner:hover {
    transform: scale(1.02);
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.6);
    transition: 0.4s ease;
}

/* Pulse animation */
@keyframes alertPulse {
    0% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
    }
    50% {
        box-shadow: 0 0 35px rgba(255, 215, 0, 0.9);
    }
    100% {
        box-shadow: 0 0 0 rgba(255, 215, 0, 0.4);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .payment-alert h2 {
        font-size: 1.8rem;
    }

    .payment-alert .alert-main {
        font-size: 1.2rem;
    }
}

/* Payment Methods Section */
.payment-methods {
    background-color: #f8f9fa; /* light background */
    border-radius: 10px;
    margin: 0 0 80px 0;
}

/* Logos container */
.partner-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap; /* wrap on smaller screens */
    margin-top: 40px;
}

/* Each payment option */
.payment-option img {
    max-height: 80px;
    width: auto;
    filter: grayscale(100%);
    transition: filter 0.4s ease, transform 0.4s ease;
}

.payment-option img:hover {
    filter: grayscale(0%);
    transform: scale(1.05);
}

.payment-option p {
    margin-top: 10px;
    font-weight: 600;
    color: #521795;
}

/* ===== Tickets Section Scoped Styles ===== */
.tickets-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.tickets-section .s-section__heading {
    text-align: center;
    margin-bottom: 50px;
}

.tickets-section .s-section__text {
    text-align: center;
    margin-bottom: 60px;
}

.tickets-section .tickets-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.tickets-section .ticket-card {
    position: relative;
    flex: 1 1 300px;
    max-width: 400px;
    background: #fff;
    border-radius: 15px;
    text-align: center;
    padding: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.tickets-section .ticket-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transform: scale(1.05);
    animation: tickets-pulse 1s infinite alternate;
}

@keyframes tickets-pulse {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.08); }
}

.tickets-section .ticket-card .ticket-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.tickets-section .ticket-card .ticket-type {
    margin-bottom: 15px;
}

.tickets-section .ticket-card .ticket-desc {
    margin-bottom: 25px;
}

.tickets-section .ticket-card .ticket-price {
    font-weight: bold;
    margin-bottom: 20px;
}

.tickets-section .ticket-card .btn-primary {
    padding: 12px 30px;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: opacity 0.3s ease;
}

.tickets-section .ticket-card .btn-primary:hover {
    opacity: 0.9;
}

/* Ribbon Styles Scoped */
.tickets-section .ticket-card .ribbon {
    position: absolute;
    top: 20px;
    right: -5px;
    padding: 5px 15px;
    font-weight: bold;
    font-size: 14px;
    color: #fff;
    transform: rotate(45deg);
}

/* Specific Ribbon Colors */
.tickets-section .ticket-card .ribbon.early-bird {
    background: #ff4c4c;
}

.tickets-section .ticket-card .ribbon.promo {
    background: #28a745;
}

/* Ticket Icon Colors */
.tickets-section .ticket-card.general .ticket-icon {
    color: #ffb100;
}

.tickets-section .ticket-card.marketer .ticket-icon {
    color: #28a745;
}

/* Responsive */
@media (max-width: 768px) {
    .tickets-section .tickets-wrapper {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== Step 2: Purchase Ticket Section ===== */
.step2-section {
    padding: 80px 20px;
    background-color: #f2f2f2;
    text-align: center;
}

.step2-section .step2-wrapper {
    max-width: 500px;
    margin: 0 auto;
    background: #fff;
    padding: 50px 30px;
    border-radius: 15px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step2-section .step2-wrapper:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
}

.step2-title {
    font-family: 'Playfair Display SC', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #521795;
    margin-bottom: 30px;
}

.step2-btn {
    display: inline-block;
    background-color: #be8708; /* gold */
    color: #fff;
    padding: 15px 40px;
    font-size: 1.2rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-bottom: 20px;
}

.step2-btn:hover {
    background-color: #702493; /* purple */
    color: #ffd700;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.step2-note {
    font-size: 1rem;
    color: #333;
    margin-top: 15px;
    line-height: 1.5;
}

/* ================================
   STEP 2: PURCHASE TICKET (ISOLATED)
   ================================ */

.wnc-step2 {
  padding: 60px 20px;
  background-color: #f9f9f9;
  text-align: center;
}

.wnc-step2-container {
  max-width: 600px;
  margin: 0 auto;
}

.wnc-step2-title {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #222;
}

.wnc-step2-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #c2185b;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 6px;
  transition: all 0.3s ease;
}

.wnc-step2-btn:hover {
  background-color: #a3154d;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.wnc-step2-note {
  margin-top: 25px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
