﻿:root {
    --primary: #2897cd;
    --primary-dark: #2897cd;
    --secondary: #FFB347;
    --light: #F8F9FA;
    --dark: #343A40;
}

html {
    scroll-behavior: smooth;
}

a {
    color: var(--primary);
}

.dayTitle {
    display: block !important;
    width: 100% !important;
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 200;
    font-family: sans-serif;
    /* text-shadow: 1px 1px 1px #8d8d8d4f; */
    /* color: #40a6d7; */
    opacity: 0.7;
}

#custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 25px ;
    height: 25px ;
    background-color: transparent ;
    border: 1px solid rgb(0, 208, 255);
    border-radius: 50%;
    pointer-events: none;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: width 0.15s ease, height 0.15s ease, background-color 0.15s ease;
    z-index: 9999;
}

svg#arrow polygon {
    fill: rgb(0, 208, 255);
}

#arrow {
    display: none;
    transition: transform 0.1s linear;
}

.textOrange {
    color: #f78e6c;
}

.text-primary {
    color: var(--primary) !important;
}

.uppercase {
    text-transform: uppercase;
}

body {
    font-family: 'Poppins', sans-serif;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.heroLogo {
    width: auto;
    max-width: 90%;
    height: 300px;
    margin-top: 90px !important;
    margin-bottom: 20px;
}

.organizerLogo {
    height: 100px;
    border: 1px solid #cecece;
    border-radius: 6px;
    padding-left: 13px;
}

.navbar-scrolled .organizerLogo {
    border-radius: 0 10px 10px 0;
    width: auto;
    padding: 0px;
    height: 80px;
    object-fit: contain;
    max-width: 98%;
    background-color: white;
    margin: 2px 2px 2px auto;
    border: 0px;
}

.navbar {
    background-color: rgb(255 255 255 / 94%);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar-scrolled {
    padding: 0px 0;
    background-color: white;
}

.navbar-brand img {
    max-height: 100px;
    transition: all 0.3s ease;
}

.nav-link {
    color: var(--dark);
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    white-space: nowrap;
    margin: 0 3px;
    line-height: 16px;
}

.nav-link:hover {
    color: var(--primary);
}

/*
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #f88e6c;
    transition: width 0.3s ease;
}*/
.nav-link:hover::after {
    width: 95%;
    left: 4px;
}

/* animated navbar */
/* Navigation Animated Underline Styles */
.navbar-nav {
    position: relative;
}

/* Base styles for nav links */
.navbar-nav .nav-link {
    position: relative;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    color: #333 !important;
    /* Adjust color as needed */
}

.scrolled .navbar-nav .nav-link {
    color: #fff !important;
}

.navbar-nav .nav-link:hover {
    color: #2897cd !important;
    /* Adjust hover color as needed */
}

.scrolled .navbar-nav .nav-link:hover {
    color: #36e1ff !important;
    /* Adjust hover color as needed */
}

/* Animated underline */
.navbar-nav::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    /* Adjust gradient colors */
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    opacity: 0;
}

/* Show underline on hover */
.navbar-nav:hover::after {
    opacity: 1;
}

/* Active state for current section */
.navbar-nav .nav-item.active .nav-link {
    color: #007bff !important;
    /* Active link color */
    font-weight: 500;
}

/* Move underline on hover and active states */
.navbar-nav .nav-item:nth-child(1):hover ~ ::after, .navbar-nav .nav-item:nth-child(1).active ~ ::after, .navbar-nav .nav-item.active:nth-child(1) ~ ::after {
    left: 0;
    width: calc(var(--link-width-1, 60px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(2):hover ~ ::after, .navbar-nav .nav-item:nth-child(2).active ~ ::after, .navbar-nav .nav-item.active:nth-child(2) ~ ::after {
    left: calc(var(--link-width-1, 60px));
    width: calc(var(--link-width-2, 80px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(3):hover ~ ::after, .navbar-nav .nav-item:nth-child(3).active ~ ::after, .navbar-nav .nav-item.active:nth-child(3) ~ ::after {
    left: calc(var(--link-width-1, 60px) + var(--link-width-2, 80px));
    width: calc(var(--link-width-3, 70px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(4):hover ~ ::after, .navbar-nav .nav-item:nth-child(4).active ~ ::after, .navbar-nav .nav-item.active:nth-child(4) ~ ::after {
    left: calc(var(--link-width-1, 60px) + var(--link-width-2, 80px) + var(--link-width-3, 70px));
    width: calc(var(--link-width-4, 90px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(5):hover ~ ::after, .navbar-nav .nav-item:nth-child(5).active ~ ::after, .navbar-nav .nav-item.active:nth-child(5) ~ ::after {
    left: calc(var(--link-width-1, 60px) + var(--link-width-2, 80px) + var(--link-width-3, 70px) + var(--link-width-4, 90px));
    width: calc(var(--link-width-5, 100px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(6):hover ~ ::after, .navbar-nav .nav-item:nth-child(6).active ~ ::after, .navbar-nav .nav-item.active:nth-child(6) ~ ::after {
    left: calc(var(--link-width-1, 60px) + var(--link-width-2, 80px) + var(--link-width-3, 70px) + var(--link-width-4, 90px) + var(--link-width-5, 100px));
    width: calc(var(--link-width-6, 80px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(7):hover ~ ::after, .navbar-nav .nav-item:nth-child(7).active ~ ::after, .navbar-nav .nav-item.active:nth-child(7) ~ ::after {
    left: calc(var(--link-width-1, 60px) + var(--link-width-2, 80px) + var(--link-width-3, 70px) + var(--link-width-4, 90px) + var(--link-width-5, 100px) + var(--link-width-6, 80px));
    width: calc(var(--link-width-7, 70px));
    opacity: 1;
}

.navbar-nav .nav-item:nth-child(8):hover ~ ::after, .navbar-nav .nav-item:nth-child(8).active ~ ::after, .navbar-nav .nav-item.active:nth-child(8) ~ ::after {
    left: calc(var(--link-width-1, 60px) + var(--link-width-2, 80px) + var(--link-width-3, 70px) + var(--link-width-4, 90px) + var(--link-width-5, 100px) + var(--link-width-6, 80px) + var(--link-width-7, 70px));
    width: calc(var(--link-width-8, 70px));
    opacity: 1;
}

.energy-section {
    background-image: url('/WPCEnergyYF/theme/img/energybg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    color: white;
    text-align: center;
    margin: 50px 0;
    position: relative;
    background-attachment: fixed;
}

.energy-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    .navbar-nav::after {
        display: none;
    }

    .navbar-nav .nav-item.active .nav-link {
        border-left: 3px solid var(--primary) !important;
        padding-left: 1.5rem !important;
    }
}

/* Alternative simpler approach using JavaScript calculated positions */
.navbar-nav.js-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #007bff, #0056b3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
    opacity: 0;
    transform-origin: left center;
}

/*animated navbar end*/
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../img/kuwait-bg.jpg');
    background-size: cover;
    background-position: center;
    height: auto;
    display: flex;
    align-items: center;
    color: white;
    position: relative;
    background-attachment: fixed;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    transition: all 0.3s ease;
    padding: 12px 30px;
    font-weight: 600;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    color: var(--dark);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary);
}

.card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.card-img-top {
    height: 200px;
    object-fit: cover;
}

#speakersContainer .card-img-top {
    height: 370px;
    transition: all 0.3s ease;
}

#speakersContainer small {
    opacity: 0.8;
    letter-spacing: 0.5px;
}

#speakersContainer .card-body {
    padding: 15px;
    position: absolute;
    bottom: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

#speakersContainer .card-title {
    font-size: 18px;
}

#speakersContainer .horizontal-card {
    overflow: visible;
    border-radius: 20px;
}

#speakersContainer .horizontal-card:hover {
    background-color: #f88e6c;
}

#speakersContainer .card:hover img {
    transform: translateY(-25px);
}

#speakersContainer .horizontal-card .card-body {
    transition: all 0.3s ease;
    border-radius: 0 0 20px 20px;
}

#speakersContainer .horizontal-card:hover .card-body {
    transform: translateY(15px);
}

.speakersList {
    position: relative;
}

.card-body {
    padding: 25px;
}

.card-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

.schedule-item {
    background-color: #e9f1f5;
    border-radius: 0;
    padding: 17px;
    margin-bottom: 12px;
    /* box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary);
}

.schedule-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.schedule-time {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
}

.sponsor-logo {
    max-height: 130px;
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
}

.ceremony-content {
    position: relative;
    z-index: 2;
    color: white;
}

.ceremony-bg {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 50px 0;
}

.attractions-subtitle {
    color: #2c3e50;
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
}

.attractions-subtitle:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
}

.attraction-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.attraction-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.attraction-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.attraction-content {
    padding: 20px;
}

.attraction-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
    font-size: 1.2rem;
    font-weight: 600;
}

.attraction-content p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

.live-stream {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.live-stream iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

.accommodation-card {
    border: none;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background-color: #fff;
}

.accommodation-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.accommodation-card .card-img-top {
    height: 240px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.accommodation-card:hover .card-img-top {
    transform: scale(1.05);
}

.card-body {
    padding: 25px;
}

.card-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1a365d;
    position: relative;
    padding-bottom: 12px;
}

.card-title::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    /* background: linear-gradient(90deg, #2c5282, #4299e1); */
    border-radius: 3px;
}

.card-text {
    color: #4a5568;
    font-size: 16px;
    margin-bottom: 20px;
}

.room-list {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 15px;
}

.room-list li {
    padding: 8px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px dashed #e2e8f0;
}

.room-list li:last-child {
    border-bottom: none;
}

.room-type {
    display: flex;
    align-items: center;
}

.room-icon {
    color: #4299e1;
    margin-right: 10px;
    font-size: 18px;
}

.room-price {
    font-weight: 600;
    color: #2d3748;
    background-color: #ebf8ff;
    padding: 4px 10px;
    border-radius: 30px;
    font-size: 14px;
}

.premium-price {
    background-color: #fefcbf;
}

.luxury-price {
    background-color: #fed7d7;
}

.card-footer {
    background-color: #f8fafc;
    border-top: none;
    padding: 20px 25px;
}

.details-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #2c5282, #4299e1);
    border: none;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.details-btn:hover {
    background: linear-gradient(135deg, #1a365d, #2c5282);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(66, 153, 225, 0.4);
    color: #fff;
}

.hotel-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #1a365d;
    padding: 4px 11px;
    border-radius: 30px;
    font-size: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-weight: 500;
}

.badgeCotainer {
    position: absolute;
    top: 0;
    right: 0;
}

.badgeCotainer .hotel-badge {
    position: relative;
    white-space: nowrap;
    margin-bottom: 10px;
    display: inline-block;
    left: 11px;
    top: 10px;
}

.map-container {
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.countdown {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
}

.countdown-item {
    margin: 0 15px;
    text-align: center;
}

.countdown-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.countdown-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hotel-info-list {
    list-style: none;
    padding: 1rem;
    margin: 1rem 0;
    background: #f8f9fa;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.hotel-info-item {
    padding: 0.8rem 0;
    border-bottom: 1px dashed #dee2e6;
    color: #495057;
    font-size: 0.95rem;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
}

.hotel-info-item:last-child {
    border-bottom: none;
}

.info-icon {
    color: #2897cd;
    margin-right: 12px;
    font-size: 1.1rem;
    margin-top: 3px;
}

.booking-contact {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    margin-top: 25px;
}

.booking-method {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.booking-method:last-child {
    margin-bottom: 0;
}

.contact-icon {
    font-size: 24px;
    color: #2897cd;
    margin-right: 15px;
    width: 40px;
    height: 40px;
    background: #e9f1f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pressed-box {
    background-color: #f5f5f5;
    box-shadow: inset 2px 2px 5px rgb(0 0 0 / 9%), inset -2px -2px 5px rgb(255 255 255 / 17%);
    transition: box-shadow 0.2s ease;
    border: 2px dotted #99999999 !important;
}

.pressed-box:hover {
    box-shadow: inset 3px 3px 8px rgba(0,0,0,0.25), inset -3px -3px 8px rgba(255,255,255,0.7);
}

.modal-body .contact-icon {
    min-width: 40px;
    min-height: 40px;
}

#speakerModal .modal-body {
    background: #1b2b3b;
    margin-bottom: 0;
}

#speakerModal .modalspeakerImg {
    position: relative;
    background-color: #16181a;
    display: block;
    height: 264px;
    width: 258px;
    margin: auto;
    object-fit: contain;
    overflow: visible;
    margin-top: 50px !important;
    border-radius: 10px;
}

 #speakerModal .img-thumbnail {
    background-color: transparent !important;
    position: absolute;
    width: 300px !important;
    height: 300px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -56%);
    display: block;
    object-fit: inherit;
    border: 0 !important;
    border-radius: 10px;
}

#speakerModal .modal-body:before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url(/WPCEnergyYF/theme/img/bglight.avif);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    opacity: 0.2;
    z-index: 0;
    width: 100%;
    height: 100%;
    background-color: #1b2b3b;
}

#speakerModal .modal-body .row {
    z-index: 99;
    position: relative;
}

#speakerModal .modal-content {
    background-color: transparent;
}

#speakerModal .modal-content p {
    color: #d5d5d5;
}

#speakerModal .btn-close {
    float: right;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

#speakerModal .img-thumbnail {
    background-color: #16181a;
    border: 1px solid #353c43;
    padding: 0;
}

.contact-label {
    color: #495057;
    font-size: 14px;
    margin-bottom: 4px;
}

.contact-link {
    color: #2897cd;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #1a6b9d;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 30px 0;
}

.footer-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
}

.footer-link {
    color: #ced4da;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    display: block;
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: var(--primary);
    transform: translateY(-5px);
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.back-to-top.show {
    opacity: 1;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Custom animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 1s ease;
}

.fade-in.show {
    opacity: 1;
    transform: translateY(0);
}

.border-left {
    border-left: 1px solid #cecece;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    color: var(--bs-nav-pills-link-active-color);
    background-color: #f78e6c;
    border: 1px solid transparent;
    box-shadow: 0 -2px 12px rgb(251 192 173);
}

.nav-pills .nav-link {
    display: block;
    border-radius: 10px 10px 0 0;
    border: 1px solid #e3e3e3;
    border-bottom: 0;
    background-color: #efefef;
    /* box-shadow: 0px -1px 3px #00000026; */
    margin-right: 4px;
    padding: 10px 12px;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: rgb(248 142 108) !important;
}

.airport-transfer {
    padding: 30px 0;
}

.transfer-title {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 25px;
    text-align: center;
}

.transfer-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.transfer-card {
    background: #ffffff;
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.transfer-card:hover {
    transform: translateY(-5px);
}

.transfer-card.luxury {
    background: linear-gradient(145deg, #ffffff, #f8f9fa);
}

.transfer-card.premium {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
}

.car-icon {
    font-size: 2.5rem;
    color: #4299e1;
    margin-bottom: 15px;
}

.transfer-card h5 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.car-model {
    color: #718096;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.price-tag {
    background: #ebf8ff;
    color: #2c5282;
    padding: 8px 15px;
    border-radius: 20px;
    display: inline-block;
    font-weight: 600;
    margin-bottom: 20px;
}

.transfer-details {
    color: #4a5568;
}

.transfer-details p {
    margin-bottom: 8px;
}

.transfer-details i {
    margin-right: 8px;
    color: #4299e1;
}

.transfer-note {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
    margin-top: 20px;
}

a.btn.btn-outline-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

a.btn.btn-outline-primary:hover {
    background-color: var(--primary) !important;
    color: #fff !important;
}

.registerFrame {
    width: 100%;
    height: 100vh;
    border: none;
    overflow: auto;
}

.btn-close {
    --bs-btn-close-bg: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 0 1 1.414 0L8 6.586 14.293.293a1 1 0 1 1 1.414 1.414L9.414 8l6.293 6.293a1 1 0 0 1-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 0 1-1.414-1.414L6.586 8 .293 1.707a1 1 0 0 1 0-1.414z'/%3e%3c/svg%3e");
}

#registerModal .modal-header {
    background-color: var(--primary);
}

.card-warning {
    border-left: 4px solid #cbbd3a;
    border-radius: 0;
    color: #cbbd3a;
    background-color: #fffff3;
}

.card-purple {
    border-left: 4px solid #673AB7;
    border-radius: 0;
    color: #673ab7;
    background-color: #ffe9ff;
}

.card-success {
    border-left: 4px solid #8BC34A;
    border-radius: 0;
    color: #8bc34a;
    background-color: #f2fff2;
}

.schedule-item .card {
    background-color: white !important;
}

.schedule-item .card p {
    font-size: 14px;
}

.schedule-item .card h5 {
    filter: contrast(0.6);
}

.schedule-item i {
    color: #f78e6c;
}

.btn-primary i {
    color: white;
}

.modal {
    color: #6c757d;
}

.horizontal-card {
    background: #212529;
    /* border: 1px solid rgba(40, 151, 205, 0.3); */
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 2rem;
}

.horizontal-card:hover {
    transform: translateY(-5px);
    /* box-shadow: 0 10px 30px rgba(40, 151, 205, 0.3); */
    /* border-color: var(--primary-color); */
}

.card-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 10px 0 0 10px;
}

.card-content {
    padding: 1.5rem;
    text-align: left;
}

.card-title {
    color: var(--primary-color);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
    text-align: left;
}

.horizontal-card .card-text {
    color: #e0e0e0;
    line-height: 1.6;
    font-size: 0.95rem;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 0.8s ease forwards;
}

.fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#visaInfo .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

#visaInfo .visa-section {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

#visaInfo .visa-section:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.bgLightBlue {
    background-color: #f7fafc;
}

#visaInfo .content-wrapper {
    padding: 3rem;
    background-color: #f7fafc;
}

#visaInfo .main-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    letter-spacing: -0.025em;
    position: relative;
}

#visaInfo .main-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #e67e22, #f39c12);
    border-radius: 2px;
}

#visaInfo .intro-text {
    font-size: 1.125rem;
    color: #666;
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.8;
}

#visaInfo .section-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    margin-top: 2.5rem;
}

#visaInfo .section-header:first-of-type {
    margin-top: 0;
}

#visaInfo .step-number {
    width: 32px;
    height: 32px;
    background: #f78e6c;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
    margin-right: 1rem;
    flex-shrink: 0;
}

#visaInfo .section-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    letter-spacing: -0.01em;
}

#visaInfo .section-content {
    margin-left: 48px;
    margin-bottom: 2rem;
}

#visaInfo .section-text {
    color: #666;
    margin-bottom: 1rem;
    font-size: 1rem;
}

#visaInfo .custom-list {
    list-style: none;
    padding: 0;
}

#visaInfo .custom-list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 0.75rem;
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

#visaInfo .custom-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: #f78e6c;
    border-radius: 50%;
}

#visaInfo .custom-list li strong {
    color: #2d3748;
}

#visaInfo .link-style {
    color: #f78e6c;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    border-bottom: 1px solid transparent;
}

#visaInfo .link-style:hover {
    color: #1a365d;
    border-bottom-color: #e67e22;
}

#visaInfo .image-gallery {
    padding: 2rem;
    background: #f7fafc;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    justify-content: center;
}

#visaInfo .gallery-image {
    width: 100%;
    max-width: 280px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    object-fit: cover;
}

#visaInfo .gallery-image:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

#visaInfo .fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s ease forwards;
}

#visaInfo .fade-in:nth-child(2) {
    animation-delay: 0.2s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#visaInfo .highlight-card {
    background: linear-gradient(135deg, #fff5f0, #fef7f0);
    border: 1px solid #fed7aa;
    border-radius: 12px;
    padding: 1.5rem;
    margin: 1.5rem 0;
}

#visaInfo .highlight-card .fas {
    color: #f78e6c;
    margin-right: 0.5rem;
}

.nav-pills {
    background-color: #f8f9fa;
    padding-top: 20px;
    padding-bottom: 0;
    border-radius: 10px 10px 0 0;
    border-bottom: 2px solid #f78e6c;
}

@media (max-width: 991px) {
    body {
        cursor:auto !important;
    }

    .navbar.scrolled {
        background-color: #262626c4;
        margin: 6px 5px;
        border-radius: 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
    }

    .navbar.scrolled .navbar-toggler {
        border: 1px solid #7f7f7f;
    }

    .navbar.scrolled .navbar-toggler-icon {
        background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 0.75)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
    }

    .scrolled .navbar-nav .nav-link.active, .scrolled .navbar-nav .nav-link {
        color: #fff;
    }

    .quote-image {
        width: 94% !important;
        margin: auto;
        display: block;
        margin-top: 10px;
        border-radius: 10px;
    }

    .navbar-expand-lg .container .navbar-collapse {
        height: 90vh;
    }

    #custom-cursor {
        display: none;
    }

    #visaInfo .content-wrapper {
        padding: 2rem 1.5rem;
    }

    #visaInfo .main-title {
        font-size: 2rem;
    }

    #visaInfo .intro-text {
        font-size: 1rem;
    }

    #visaInfo .section-content {
        margin-left: 0;
    }

    #visaInfo .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    #visaInfo .step-number {
        margin-right: 0;
    }

    #visaInfo .image-gallery {
        padding: 1.5rem;
    }
}

@media (min-width: 768px) {
    .nav-pills .nav-link.active:after {
        content: "";
        position: absolute;
        border: 10px solid transparent;
        bottom: -21px;
        left: 50%;
        transform: translateX(-50%);
        border-top: 10px solid #f78e6c;
        width: 0;
    }

    #Transportation .card {
        min-height: 278px;
    }

    .h-sm-100 {
        height: 100%;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  

    #speakersContainer .card-img-top {
        border-radius: 20px;
    }

    #speakersContainer .card:hover img {
        object-fit: contain;
    }

    #speakersContainer .card-img-top {
        object-fit: contain;
        transform: translateY(-39px);
    }

    #speakersContainer .horizontal-card {
        max-width: fit-content;
        margin: auto;
        min-width: 100%;
        height: max-content ! IMPORTANT;
        margin-bottom: 26px;
    }

    #speakerModal .img-thumbnail {
        max-width: fit-content;
        margin: auto;
        display: block;
    }

    #speakerModalLabel {
        font-size: 19px;
    }

    #speakersContainer .card-body {
        background-color: rgb(0 0 0 / 78%);
        backdrop-filter: blur(33px);
    }

    .nav-pills {
        border-bottom: 0;
    }

    .nav-pills {
        padding: 10px;
    }

    .card-image {
        height: auto;
        width: 50% !important;
        object-fit: initial;
        border-radius: 5px;
        margin-top: 20px;
    }

    .card-title {
        font-size: 1.1rem;
    }

    .card-text {
        font-size: 0.9rem;
    }
}

/* Accent elements */
.horizontal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    z-index: 1;
}

.horizontal-card {
    position: relative;
}

/* Responsive ipad */
@media (min-width: 768px) and (max-width: 991px) {
    .h-sm-100 {
        height: auto;
    }
.navbar-nav .nav-link {
    padding: 4px !important;
    font-size: 11px;
}
    .quote-container {
        display: flex;
        height: auto;
        min-height: auto;
        flex-wrap: nowrap;
        justify-content: center;
        align-items: center;
        background-color: #092a3be0;
    }

    img.quote-image {
        max-width: 200px;
        margin: 0;
        height: 100% !important;
        border-radius: 10px 0 0 10px;
    }

    .quote-overlay {
        margin-top: 0;
        padding: 12px !important;
        height: 100%;
    }

    .quote-container {
        float: unset !important;
        margin: auto;
        margin-top: 30px !important;
        min-height: fit-content !important;
        border-radius: 0 10px 10px 0 !important;
    }

    .navbar-brand img {
        max-height: 75px;
    }

    .hero-content {
        text-align: center;
    }

    .container {
        max-width: 95% !important;
    }

    .attraction-content {
        padding: 10px;
    }

    .card-body {
        padding: 15px;
    }

    h5.card-title {
        margin-bottom: 5px;
        padding: 0;
    }

    .details-btn {
        font-size: 14px;
    }

    .navbar-scrolled .organizerLogo {
        margin: auto;
        border-radius: 10px;
        max-width: 400px;
    }

    .organizerLogo {
        max-width: 400px;
        margin: auto;
        border-radius: 10px;
    }

    .nav-item .nav-link {
        font-size: 23px;
        margin: 15px;
    }

    .nav-pills .nav-item .nav-link {
        margin: 5px;
        padding: 6px;
        font-size: 16px;
    }

    a {
        word-break: break-all;
    }

    .nav-pills .nav-item {
        width: auto !important;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }

    .section {
        padding: 70px 0;
    }

    .section-title {
        font-size: 2rem;
    }
}

@media (min-width: 991px) {
    .schedule-item .card p {
        margin-bottom: 0;
        min-height: 70px;
    }

    .quote-container {
        /* margin-right: 101px; */
    }

    .quote-container {
        margin-top: 213px !important;
    }

    .navbar-scrolled {
        padding: 0px 0;
        background-color: #262626c4;
        /* margin: 20px 150px; */
        border-radius: 10px;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        width: fit-content;
        margin: auto;
        margin-top: 20px;
    }

    .navbar-scrolled .navbar-nav .nav-link, .navbar-scrolled .navbar-nav .nav-link.active {
        color: white;
    }

    .navbar-scrolled .navbar-brand img {
        max-height: 70px;
        margin-left: 40px;
        /* margin-bottom: 6px; */
    }
}

@media (max-width: 768px) {
    .navbar-scrolled .organizerLogo {
        max-width: 300px;
        width: 300px;
        height: auto;
    }

    .lead {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .section {
        padding: 20px 0;
    }

    .calendar-button {
        display: none;
        padding: 10px 20px;
        margin: 10px;
        color: white;
        border: none;
        border-radius: 4px;
        text-decoration: none;
        border: 1px solid #fff;
        font-size: 14px;
    }

    .navbar-toggler {
        border-radius: 100px;
        width: 40px;
        height: 40px;
        padding: 0;
    }

    .navbar-toggler-icon {
        width: 24px;
    }

    .organizerLogo {
        height: auto;
    }

    .logoimg.d-none {
        display: block !important;
    }

    .contact-link {
        display: block;
    }

    .hero-section {
        height: auto;
        background-attachment: inherit;
    }

    .heroLogo {
        width: auto;
        max-width: 72%;
        margin-top: 94px !important;
    }

    .nav-pills .nav-link.active, .nav-pills .show>.nav-link {
        color: var(--bs-nav-pills-link-active-color);
        background-color: #f78e6c;
        border: 1px solid transparent;
    }

    .nav-pills .nav-link {
        border-radius: var(--bs-nav-pills-border-radius);
        border: 1px solid #dfdfdf;
        margin-bottom: 10px;
    }

    .navbar .nav-link {
        font-size: 22px;
        margin: 10px 0;
    }

    .nav-link {
        padding: 10px;
    }

    .nav-pills .nav-item {
        display: flex;
        white-space: nowrap;
        line-height: 18px;
        width: 100%;
    }

    .nav-pills .nav-link {
        margin: 3px;
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .countdown-number {
        font-size: 2rem;
    }

    .countdown-item {
        margin: 0 10px;
    }

    .quote-container {
        min-width: 100%;
        margin: auto !important;
        margin-top: 20px !IMPORTANT;
        box-shadow: 0 0 0 rgba(0, 0, 0, 0.1) !important;
        background-color: #0d293a;
    }

    .quote-overlay {
        /* position: relative !important; */
        /* background-color: #091d27 !important; */
        /* top: -97px; */
    }

    .quote-text {
    }
}

@media (min-width: 415px) and (max-width: 768px) {
    .navbar-brand img {
        max-height: 54px;
    }

    .heroLogo {
        max-width: 45%;
    }
}

@media (max-width: 576px) {
    .navbar-brand img {
        max-height: 60px;
    }

    .room-type {
        display: block;
        font-size: 14px;
    }

    .room-price {
        /* white-space: nowrap; */
        width: 50%;
        border-radius: 6px;
    }

    .booking-contact {
        padding: 9px;
        margin-top: 10px;
    }

    .modal-body .contact-icon {
        min-width: 26px;
        min-height: 26px;
        font-size: 13px;
    }

    .contact-details {
        font-size: 13px;
        display: inline-block;
        width: 79%;
        line-break: anywhere;
    }

    .modal-title {
        font-size: 14px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .countdown-number {
        font-size: 1.5rem;
    }

    .countdown-item {
        margin: 0 5px;
    }

    .schedule-item .col {
        padding: 4px !important;
    }

    .schedule-item .alert h4 {
        font-size: 14px;
        font-weight: bolder;
    }
}

@media screen and (max-width: 430px) {
    #speakersContainer .horizontal-card {
        min-width: 100%;
    }

    #speakersContainer .card-img-top {
        height: 270px;
    }

    #speakersContainer .card-title {
        font-size: 14px;
    }

    #speakersContainer small {
        font-size: 10px;
    }

    #speakersContainer .horizontal-card {
        margin-bottom: 0;
    }
}

.quote-container {
    position: relative;
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    max-width: 65%;
    min-height: 400px;
    float: right;
}

.quote-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quote-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.8);
    transition: var(--transition);
}

.quote-overlay {
    /* position: relative; */
    width: 100%;
    background: #092a3be0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    /* color: #000000; */
}

.quote-text {
    font-size: 0.9rem;
    font-weight: 500;
    /* font-style: italic; */
    line-height: 1.2;
    margin-bottom: 0.2rem;
    position: relative;
    text-shadow: 2px 1px 3px #00000085;
    color: #ffffff;
}

.quote-text::before {
    content: "";
    font-size: 5rem;
    font-family: Georgia, serif;
    position: absolute;
    top: -2.5rem;
    left: -1rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1;
}

.quote-author {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: white;
}

.quote-attribution {
    font-size: 0.85rem;
    opacity: 0.8;
}

.modal-header {
    background-color: #2897cd;
    color: white;
}

#modalTitle {
    position: relative;
    margin-bottom: 23px;
    display: block;
}

#modalTitle:after {
    content: "";
    width: 100%;
    height: 3px;
    background-color: #f78e6ce3;
    position: absolute;
    bottom: -10px;
    left: 0;
    border-radius: 20px;
}
#speakerModal .modal-header {
    background-color: #28394d;
    border: 0;
}
.line-divider {
    width: 50px;
    height: 2px;
    background-color: #e56941;
    margin: 0.75rem 0;
    padding: 2px;
}

.schedule-item .alert p {
    font-size: 14px;
}

.schedule-item .alert {
    padding: 7px;
    margin: 0 !important;
}
