html{
    scroll-behavior:smooth;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: #0f1419;
    color: #f5f5f5;
    line-height: 1.8;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Lora', serif;
}
/* Previous styles remain unchanged until cta-button */

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(45deg, #c19b46, #f0d696, #c19b46);
    background-size: 200% 200%;
    color: #0f1419;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    border: 2px solid #f0d696;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: goldShimmer 3s infinite;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: buttonSparkle 2s infinite;
    pointer-events: none;
}

@keyframes goldShimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes buttonSparkle {
    0% { transform: translateX(-100%) rotate(45deg); opacity: 0; }
    20% { opacity: 0.7; }
    40% { opacity: 0; }
    100% { transform: translateX(100%) rotate(45deg); opacity: 0; }
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 155, 70, 0.4),
               inset 0 0 10px rgba(255, 215, 0, 0.3);
}

/* Pricing Section Styles */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(192, 155, 70, 0.1) 0%, rgba(15, 20, 25, 0.9) 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(240, 214, 150, 0.2) 0%, transparent 70%);

}

.pricing-section:hover::before {
    animation: none;
}

@keyframes pulseGlow {
    0% { opacity: 0.3; transform: scale(0.8); }
    50% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 0.3; transform: scale(0.8); }
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(192, 155, 70, 0.3);
    width: 340px;
    text-align: center;
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: #f0d696;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 40px rgba(192, 155, 70, 0.2);
}

.pricing-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(240, 214, 150, 0.2), transparent);
    animation: shine 3s infinite;
    pointer-events: none;
    z-index: 1;
}

.pricing-card:hover::after {
    display: none;
}

.conditions-star{
    font-size: xx-large
}

@keyframes shine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

.pricing-card h3 {
    color: #f0d696;
    font-size: 2em;
    margin-bottom: 20px;
    font-family: 'Cinzel Decorative', serif;
}

.pricing-card p {
    color: #f5f5f5;
    margin-bottom: 20px;
}

.price {
    font-size: 2.5em;
    color: #f0d696;
    font-weight: 700;
    margin: 20px 0 0;
}

.original-price {
    font-size: 1.2em;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-right: 10px;
}

.discounted-price {
    font-size: 1.8em;
    color: #f0d696;
}

.gst-note {
    font-size: 1em;
    color: #f0d696;
    margin-top: 5px;
    font-weight: 600;
    background: rgba(192, 155, 70, 0.1);
    padding: 5px 10px;
    border-radius: 5px;
    display: inline-block;
}

.emi-note {
    font-size: small;
    color: #c19b46; /* Dark text for contrast */
    margin-top: 15px;
    font-weight: bold; /* Bold text for emphasis */
    padding: 12px 15px; /* Adjusted padding for a balanced look */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
    text-align: center; /* Centered text for better presentation */
}

.pricing-card .payment-button-razorpay {
    margin-top: 30px;
    padding: 0px 40px;
    font-size: 1.2em;
    z-index: 2;
    position: relative;
}

/* Razorpay's element */
.PaymentButton-text {
    font-size: large;
}

/* AI Course Popup Styles */
.ai-course-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 25, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.ai-course-popup.active {
    opacity: 1;
    visibility: visible;
}

.ai-course-popup-content {
    background: linear-gradient(135deg, rgba(30, 35, 40, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%);
    border: 1px solid rgba(192, 155, 70, 0.3);
    border-radius: 20px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(192, 155, 70, 0.2);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.ai-course-popup.active .ai-course-popup-content {
    transform: translateY(0);
}

.ai-course-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(240, 214, 150, 0.1) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 20px;
}

.ai-course-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(192, 155, 70, 0.2);
    border: 1px solid rgba(192, 155, 70, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 2;
}

.ai-course-popup-close:hover {
    background: rgba(192, 155, 70, 0.4);
    transform: rotate(90deg);
}

.ai-course-popup-close::before,
.ai-course-popup-close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #f0d696;
}

.ai-course-popup-close::before {
    transform: rotate(45deg);
}

.ai-course-popup-close::after {
    transform: rotate(-45deg);
}

.ai-course-popup-header {
    margin-bottom: 20px;
}

.ai-course-popup-subtitle {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-style: italic;
}

.ai-course-modules {
    margin-top: 20px;
    overflow-y: auto;
    max-height: 50vh;
    padding-right: 10px;
    /* Add subtle fade effect at top and bottom of scrollable area */
    background:
        linear-gradient(to bottom, rgba(30, 35, 40, 0.95) 0%, transparent 5%),
        linear-gradient(to top, rgba(30, 35, 40, 0.95) 0%, transparent 5%);
    background-attachment: local, local;
    background-position: top, bottom;
    background-repeat: no-repeat;
    padding-top: 10px;
    padding-bottom: 10px;
}

/* Custom scrollbar for the modules section */
.ai-course-modules::-webkit-scrollbar {
    width: 6px;
}

.ai-course-modules::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.5);
    border-radius: 10px;
}

.ai-course-modules::-webkit-scrollbar-thumb {
    background: rgba(192, 155, 70, 0.5);
    border-radius: 10px;
}

.ai-course-modules::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 214, 150, 0.7);
}

.ai-course-module {
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(192, 155, 70, 0.2);
}

.ai-course-module:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.ai-course-module h4 {
    color: #f0d696;
    font-size: 1.4em;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.ai-course-module h4::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #f0d696;
    margin-right: 15px;
    transform: rotate(45deg);
}

.ai-course-module ul {
    list-style: none;
    padding-left: 25px;
}

.ai-course-module li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    line-height: 1.6;
}

.ai-course-module li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f0d696;
}

.ai-course-highlight {
    margin-top: 30px;
    padding: 20px;
    background: rgba(192, 155, 70, 0.1);
    border-radius: 10px;
    border-left: 3px solid #f0d696;
}

.ai-course-highlight p {
    font-weight: 700;
    color: #f5f5f5;
}

.ai-course-trigger {
    cursor: pointer;
    color: #f0d696;
    text-decoration: underline;
    transition: all 0.3s;
}

.ai-course-trigger:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(240, 214, 150, 0.5);
}

@media (max-width: 768px) {
    .ai-course-popup-content {
        padding: 30px 20px;
    }

    .ai-course-popup h3 {
        font-size: 1.8em;
    }

    .ai-course-module h4 {
        font-size: 1.2em;
    }
}

h1, h2, h3 {
    font-family: 'Cinzel Decorative', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

header {
    text-align: center;
    padding: 0;
    position: relative;
    background: linear-gradient(45deg, #0f1419, #1a252f);
    border-bottom: 1px solid rgba(255, 215, 0, 0.2);
    overflow: hidden;
    height: auto; /* Full viewport height */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 500px; /* Minimum height to prevent content squishing on very small screens */
}

.header-content {
    max-width: 800px;
    padding: 0 20px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.logo-container {
    margin-bottom: 0;
    height: 54px;
    width: 185px;
    margin-left: auto;
    margin-right: auto;
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
}

.filter {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

.tech-coach-logo {
    width: 185px;
    height: 54px;
    object-fit: contain;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(240, 214, 150, 0.2) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
    animation: sparkle 4s infinite 1s;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 20, 25, 0.7);
    z-index: 2;
    pointer-events: none;

}


@keyframes sparkle {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0);
    }
    10% {
        opacity: 1;
        transform: translate(50vw, 20vh) scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translate(80vw, 80vh) scale(0);
    }
}

header > * {
    position: relative;
    z-index: 4;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #f0d696;
    text-shadow: 0 4px 15px rgba(192, 155, 70, 0.5);
    font-weight: 700;
    letter-spacing: 2px;
}

header p {
    font-size: 1.4em;
    max-width: 700px;
    margin: 0 auto 40px;
    color: #f5f5f5;
    opacity: 0.9;
}

/* Certificate Image Styles */
.certificate-container {
    max-width: 600px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 4;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(192, 155, 70, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certificate-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(192, 155, 70, 0.4);
}

.certificate-image {
    width: 100%;
    height: auto;
    display: block;
}

.premium-details-table {
    margin: 0 auto;
    max-width: 800px;
    color: #f5f5f5;
    font-size: 1.1em;
    margin-bottom: 40px;
    border-collapse: separate;
    border-spacing: 0 15px;
    width: 100%;
}

.premium-details-table tr {
    background: linear-gradient(45deg, rgba(192, 155, 70, 0.1) 0%, rgba(240, 214, 150, 0.05) 100%);
    transform: translateY(0);
    transition: all 0.3s ease;
    border-radius: 15px;
}

.premium-details-table tr:hover {
    transform: translateY(-5px);
    background: linear-gradient(45deg, rgba(192, 155, 70, 0.15) 0%, rgba(240, 214, 150, 0.1) 100%);
    box-shadow: 0 10px 20px rgba(192, 155, 70, 0.1);
}

.premium-details-table td {
    padding: 20px 30px;
    position: relative;
    overflow: hidden;
}

.premium-details-table td:first-child {
    border-radius: 15px 0 0 15px;
    border-left: 2px solid rgba(192, 155, 70, 0.3);
}

.premium-details-table td:last-child {
    border-radius: 0 15px 15px 0;
    border-right: 2px solid rgba(192, 155, 70, 0.3);
}

.premium-details-table .detail-label {
    font-weight: 700;
    padding-right: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #f0d696;
    border-top: 2px solid rgba(192, 155, 70, 0.3);
    border-bottom: 2px solid rgba(192, 155, 70, 0.3);
}

.premium-details-table .detail-value {
    color: #f5f5f5;
    font-size: 1.1em;
    border-top: 2px solid rgba(192, 155, 70, 0.3);
    border-bottom: 2px solid rgba(192, 155, 70, 0.3);
}

.premium-details-table tr::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(240, 214, 150, 0.1) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-details-table tr:hover::before {
    opacity: 1;
}

@keyframes shimmerBorder {
    0% { border-color: rgba(192, 155, 70, 0.3); }
    50% { border-color: rgba(240, 214, 150, 0.5); }
    100% { border-color: rgba(192, 155, 70, 0.3); }
}

.premium-details-table tr:hover td {
    animation: shimmerBorder 2s infinite;
}

.cta-button {
    display: inline-block;
    padding: 20px 60px;
    background: linear-gradient(45deg, #c19b46, #f0d696, #c19b46);
    background-size: 200% 200%;
    animation: shimmer 4s infinite;
    color: #0f1419;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3em;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 155, 70, 0.4);
}

.section {
    padding: 80px 20px;
    position: relative;
}

h2 {
    font-size: 2.8em;
    margin-bottom: 40px;
    color: #f0d696;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(192, 155, 70, 0.3);
}

.pain-points {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    justify-content: center;
}

.pain-point {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(192, 155, 70, 0.2);
    transition: all 0.3s;
    flex: 1 1 300px;
    max-width: 340px;
}

.pain-point p{
    padding: 35px;
}

.pain-point h3{
    padding-left:35px;
    padding-top: 10px;
    color: #f0d696;
}

.pain-point:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 155, 70, 0.5);
}

.pain-point .image-placeholder,
.module .image-placeholder {
    padding-bottom: 56.25%; /* Maintain consistent aspect ratio */
}

em {
    color: #f0d696;
    font-style: italic;
}

.person .image-placeholder {
    padding-bottom: 75%; /* 4:3 aspect ratio for portraits - adjust as needed */
}



.modules {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 50px 0;
    justify-content: center;
}

.module {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s;
    flex: 1 1 340px;
    max-width: 360px;
}

.module:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(192, 155, 70, 0.3);
}

.module h3 {
    color: #f0d696;
    margin-bottom: 20px;
    font-size: 1.6em;
    padding: 1rem;
}

.module p{
    padding-left: 1rem;
}

.module ul {
    padding-left: 1rem;
    list-style-position: inside;
}

.facilitators, .testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin: 50px 0;
    justify-content: center;
}

.person {
    background: rgba(255, 255, 255, 0.03);
    padding: 35px;
    border-radius: 15px;
    border: 1px solid rgba(192, 155, 70, 0.2);
    flex: 1 1 340px;
    max-width: 360px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    justify-content: center;
}

.social-link {
    color: #f0d696;
    text-decoration: none;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(192, 155, 70, 0.3);
    border-radius: 50%;
    font-size: 1.2em;
    transition: all 0.3s ease;
    background: rgba(192, 155, 70, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.social-link:hover {
    background: rgba(192, 155, 70, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(192, 155, 70, 0.2);
    color: #ffffff;
}

.countdown {
    text-align: center;
    padding: 60px 20px;
    background: rgba(192, 155, 70, 0.1);
    border-radius: 20px;
    margin: 60px 0;
}

.countdown-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 800px;
    margin: 30px auto;
    justify-content: center;
}

.countdown-item {
    padding: 20px;
    flex: 1 1 100px;
}

.countdown-item span {
    display: block;
    font-size: 2.5em;
    color: #f0d696;
    font-weight: 700;
}

.trust-badges-section {
    padding: 40px 0;
}

.trust-badges-heading {
    font-size: 2em;
    color: #f0d696;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 10px rgba(192, 155, 70, 0.3);
    margin-bottom: 40px;
    font-family: 'Cinzel Decorative', serif;
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.trust-badge {
    opacity: 0.8;
    transition: opacity 0.3s;
    max-width: 150px;
    align-self:center;
}

.trust-badge:hover {
    opacity: 1;
}

.image-placeholder {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio - adjust as needed */
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}

.image-placeholder img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.testimonial-card {
background: rgba(255, 255, 255, 0.03);
border-radius: 15px;
border: 1px solid rgba(192, 155, 70, 0.2);
flex: 1 1 340px;
max-width: 360px;
overflow: hidden;
transition: all 0.4s ease;
display: flex;
flex-direction: column;
}

.testimonial-card:hover {
transform: translateY(-10px);
border-color: rgba(192, 155, 70, 0.5);
background: rgba(255, 255, 255, 0.05);
}

.testimonial-image {
width: 100%;
height: 250px;
position: relative;
overflow: hidden;
}

.testimonial-image img {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}

.testimonial-content {
padding: 25px;
flex-grow: 1;
display: flex;
flex-direction: column;
justify-content: space-between;
}

.testimonial-content .quote {
font-style: italic;
margin-bottom: 15px;
color: #f5f5f5;
}

.testimonial-content .author {
color: #f0d696;
font-weight: 700;
margin-bottom: 5px;
}

.testimonial-content .company {
color: rgba(255, 255, 255, 0.7);
font-size: 0.9em;
}

@media (max-width: 768px) {
.testimonial-card {
flex: 1 1 100%;
max-width: 100%;
}

.testimonial-image {
height: 250px;
}
}

footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    h1 { font-size: 2.2rem; }
    h2 { font-size: 2em; }
    header {
        padding: 0;
        height: 100vh;
        justify-content: center;
    }
    .logo-container {
        top: 20px;
    }
    .cta-button {
        padding: 15px 40px;
        font-size: 1.1em;
    }
    .secondary-cta {
        font-size: 1em;
        padding: 8px 15px;
    }

    .section { padding: 40px 20px; }
    .pain-point, .module, .person { flex: 1 1 100%; max-width: 100%; }
    .countdown-grid { gap: 10px; }
    .countdown-item { flex: 1 1 80px; }
    .image-placeholder { height: 200px; }
    .pain-point .image-placeholder, .module .image-placeholder { height: 120px; }
    .certificate-container { max-width: 85%; margin-bottom: 30px; }
}

/* Schedule Popup Styles */
.schedule-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 25, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.schedule-popup.active {
    opacity: 1;
    visibility: visible;
}

.schedule-popup-content {
    background: linear-gradient(135deg, rgba(30, 35, 40, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%);
    border: 1px solid rgba(192, 155, 70, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(192, 155, 70, 0.2);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.schedule-popup.active .schedule-popup-content {
    transform: translateY(0);
}

.schedule-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(192, 155, 70, 0.2);
    border: 1px solid rgba(192, 155, 70, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.schedule-popup-close:hover {
    background: rgba(192, 155, 70, 0.4);
    transform: rotate(90deg);
}

.schedule-popup-close::before,
.schedule-popup-close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #f0d696;
}

.schedule-popup-close::before {
    transform: rotate(45deg);
}

.schedule-popup-close::after {
    transform: rotate(-45deg);
}

.schedule-trigger {
    color: #f0d696;
    text-decoration: underline;
    cursor: pointer;
    transition: all 0.3s;
}

.schedule-trigger:hover {
    color: #ffffff;
    text-shadow: 0 0 5px rgba(240, 214, 150, 0.5);
}

.schedule-modules {
    margin-top: 20px;
    overflow-y: auto;
    max-height: 60vh;
    padding-right: 15px;
}

.schedule-module {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(192, 155, 70, 0.2);
}

.schedule-module:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.schedule-module h4 {
    color: #f0d696;
    font-size: 1.4em;
    margin-bottom: 20px;
    font-family: 'Cinzel Decorative', serif;
}

.schedule-section {
    margin-bottom: 20px;
}

.schedule-section h5 {
    color: #f0d696;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.schedule-section h6 {
    color: rgba(240, 214, 150, 0.8);
    font-size: 1em;
    margin-bottom: 8px;
}

.schedule-subsection {
    margin-left: 20px;
    margin-bottom: 15px;
}

.schedule-section ul {
    list-style: none;
    padding-left: 20px;
}

.schedule-section li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.9);
}

.schedule-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #f0d696;
}

.schedule-intro {
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    margin-bottom: 15px;
}

/* Custom scrollbar for schedule modules */
.schedule-modules::-webkit-scrollbar {
    width: 6px;
}

.schedule-modules::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.5);
    border-radius: 10px;
}

.schedule-modules::-webkit-scrollbar-thumb {
    background: rgba(192, 155, 70, 0.5);
    border-radius: 10px;
}

.schedule-modules::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 214, 150, 0.7);
}

@media (max-width: 768px) {
    .schedule-popup-content {
        padding: 30px 20px;
    }

    .schedule-popup h3 {
        font-size: 1.8em;
    }

    .schedule-module h4 {
        font-size: 1.2em;
    }
}

/* Corporate Discount Banner Styles */
.corporate-discount-banner {
    max-width: 900px;
    margin: 60px auto 20px;
    background: linear-gradient(135deg, rgba(30, 35, 40, 0.9) 0%, rgba(15, 20, 25, 0.9) 100%);
    border: 2px solid rgba(192, 155, 70, 0.5);
    border-radius: 15px;
    padding: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 155, 70, 0.2);
    animation: borderGlow 3s infinite alternate;
}

@keyframes borderGlow {
    0% { border-color: rgba(192, 155, 70, 0.3); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(192, 155, 70, 0.1); }
    100% { border-color: rgba(240, 214, 150, 0.8); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3), 0 0 30px rgba(240, 214, 150, 0.4); }
}


.discount-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.discount-content h3 {
    color: #f0d696;
    font-size: 1.8em;
    margin-bottom: 15px;
    font-family: 'Cinzel Decorative', serif;
    text-shadow: 0 2px 10px rgba(192, 155, 70, 0.5);
}

.discount-content p {
    color: #f5f5f5;
    font-size: 1.1em;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info {
    display: inline-block;
    background: rgba(192, 155, 70, 0.1);
    padding: 12px 25px;
    border-radius: 50px;
    font-weight: 600;
    color: #f0d696;
    border: 1px solid rgba(192, 155, 70, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.contact-info:hover {
    background: rgba(192, 155, 70, 0.2);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(192, 155, 70, 0.2);
}

.copy-tooltip {
    position: absolute;
    right: 15px;
    font-size: 0.8em;
    opacity: 0.6;
    transition: all 0.3s ease;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
}

.contact-info:hover .copy-tooltip {
    opacity: 1;
}

.contact-info.copied {
    animation: copySuccess 1s ease;
}

.contact-info.copied .copy-tooltip {
    content: "Copied!";
    opacity: 1;
    background: rgba(40, 167, 69, 0.2);
}

@keyframes copySuccess {
    0%, 100% { background: rgba(192, 155, 70, 0.1); }
    50% { background: rgba(40, 167, 69, 0.3); }
}

.email-address {
    font-family: monospace;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .corporate-discount-banner {
        margin: 40px 20px 20px;
        padding: 25px 20px;
    }

    .discount-content h3 {
        font-size: 1.5em;
    }

    .discount-content p {
        font-size: 1em;
    }

    .contact-info {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}


.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 10px;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 8vh;
}

.secondary-cta {
    background: none;
    border: none;
    color: #f5f5f5;
    font-size: 1.1em;
    padding: 10px 20px;
    font-weight: 400;
    letter-spacing: 1px;
    position: relative;
    text-decoration: underline;
    text-transform: none;
    border-radius: 0;
    animation: none;
    font-family: 'Lora', serif;
    transition: all 0.3s ease;
    margin-top: 15px;
}

.secondary-cta:after {
    content: '→';
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
}

.secondary-cta:hover {
    color: #f0d696;
    transform: translateY(0);
    box-shadow: none;
}

.secondary-cta:hover:after {
    transform: translateX(5px);
}

/* Tech-Savvy highlight style */
.tech-savvy-highlight {
    position: relative;
    display: inline-block;
    background: linear-gradient(
        to right,
        #f0d696 0%,
        #ffffff 20%,
        #f0d696 40%,
        #ffffff 60%,
        #f0d696 80%,
        #ffffff 100%
    );
    background-size: 200% auto;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    animation: silverShimmer 3s linear infinite;
    padding: 0 5px;
}

/* Sparkle effects */
.tech-savvy-highlight::before,
.tech-savvy-highlight::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 10px 2px rgba(240, 214, 150, 0.7);
    opacity: 0;
    z-index: -1;
}

.tech-savvy-highlight::before {
    top: -5px;
    left: 10%;
    animation: sparkle 3s ease-in-out infinite;
}

.tech-savvy-highlight::after {
    bottom: 0;
    right: 15%;
    animation: sparkle 3s ease-in-out 1.5s infinite;
}

/* Additional sparkles using data attributes */
.tech-savvy-highlight {
    position: relative;
}

.tech-savvy-highlight .sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background-color: #ffffff;
    box-shadow: 0 0 8px 1px rgba(240, 214, 150, 0.6);
    z-index: -1;
}

.tech-savvy-highlight .sparkle:nth-child(1) {
    top: 0;
    right: 0;
    animation: sparkle 4s ease-in-out 0.7s infinite;
}

.tech-savvy-highlight .sparkle:nth-child(2) {
    bottom: -8px;
    left: 30%;
    animation: sparkle 3.5s ease-in-out 1.2s infinite;
}

.tech-savvy-highlight .sparkle:nth-child(3) {
    top: 50%;
    right: -5px;
    animation: sparkle 3s ease-in-out 0.5s infinite;
}

@keyframes sparkle {
    0%, 100% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes silverShimmer {
    to {
        background-position: 200% center;
    }
}

/* Add new media query for small height screens */
@media (max-height: 600px) {
    .logo-container {
        position: relative;
        top: 0;
        margin-bottom: 20px;
        transform: translateX(-50%);
    }

    header {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
        justify-content: flex-start;
    }

    .header-content {
        padding-top: 80px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

/* Additional adjustments for very small height screens */
@media (max-height: 500px) {
    .logo-container {
        height: 40px;
        width: 140px;
        margin-bottom: 15px;
    }

    .tech-coach-logo {
        width: 140px;
        height: 40px;
    }

    h1 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    header p {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .cta-button {
        padding: 10px 30px;
        font-size: 1rem;
    }

    .secondary-cta {
        font-size: 0.9rem;
        margin-top: 10px;
    }
}


.schedule-modules::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 214, 150, 0.7);
}

@media (max-width: 768px) {
    .schedule-popup-content {
        padding: 30px 20px;
    }

    .schedule-popup h3 {
        font-size: 1.8em;
    }

    .schedule-module h4 {
        font-size: 1.2em;
    }
}

/* Waitlist Section Styles */
.waitlist-section {
    padding: 40px 0;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.8) 0%, rgba(30, 35, 40, 0.8) 100%);
    border-radius: 20px;
    margin: 40px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.waitlist-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(192, 155, 70, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.waitlist-container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
}

.waitlist-section h3 {
    color: #f0d696;
    font-size: 2em;
    margin-bottom: 15px;
    font-family: 'Cinzel Decorative', serif;
}

.waitlist-section p {
    color: #f5f5f5;
    font-size: 1.2em;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.waitlist-button {
    display: inline-block;
    padding: 15px 40px;
    background: rgba(192, 155, 70, 0.2);
    color: #f0d696;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    letter-spacing: 1px;
    border: 1px solid rgba(192, 155, 70, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
}

.waitlist-button:hover {
    background: rgba(192, 155, 70, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2), 0 0 15px rgba(192, 155, 70, 0.2);
}

/* Waitlist Popup Styles */
.waitlist-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 20, 25, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.waitlist-popup.active {
    opacity: 1;
    visibility: visible;
}

.waitlist-popup-content {
    background: linear-gradient(135deg, rgba(30, 35, 40, 0.95) 0%, rgba(15, 20, 25, 0.95) 100%);
    border: 1px solid rgba(192, 155, 70, 0.3);
    border-radius: 20px;
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    padding: 0;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(192, 155, 70, 0.2);
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.waitlist-popup.active .waitlist-popup-content {
    transform: translateY(0);
}

.waitlist-popup-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(240, 214, 150, 0.1) 0%, transparent 70%);
    pointer-events: none;
    border-radius: 20px;
}

.waitlist-popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    background: rgba(192, 155, 70, 0.2);
    border: 1px solid rgba(192, 155, 70, 0.4);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 5;
}

.waitlist-popup-close:hover {
    background: rgba(192, 155, 70, 0.4);
    transform: rotate(90deg);
}

.waitlist-popup-close::before,
.waitlist-popup-close::after {
    content: '';
    position: absolute;
    width: 15px;
    height: 2px;
    background: #f0d696;
}

.waitlist-popup-close::before {
    transform: rotate(45deg);
}

.waitlist-popup-close::after {
    transform: rotate(-45deg);
}

.waitlist-popup-header {
    margin-bottom: 0;
    text-align: center;
    padding: 40px 40px 30px;
    position: relative;
    z-index: 3; /* Ensure it stays above other elements */
}

.waitlist-popup-header h3 {
    color: #f0d696;
    font-size: 2em;
    font-family: 'Cinzel Decorative', serif;
    margin: 0;
}

.waitlist-popup-body {
    position: relative;
    z-index: 2;
    overflow-y: auto;
    padding: 0 40px 40px;
    max-height: calc(90vh - 130px);
}

/* Custom scrollbar style for all scrollable elements */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.5);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb {
    background: rgba(192, 155, 70, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(192, 155, 70, 0.2);
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 214, 150, 0.7);
}

/* Firefox scrollbar styling */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(192, 155, 70, 0.5) rgba(15, 20, 25, 0.5);
}

.waitlist-alert {
    background: rgba(192, 155, 70, 0.1);
    border-left: 4px solid #f0d696;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
}

.waitlist-alert i {
    color: #f0d696;
    font-size: 2em;
    margin-right: 20px;
}

.waitlist-alert p {
    color: #f5f5f5;
    font-size: 1.1em;
    margin: 0;
}

.waitlist-pricing-comparison {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
    justify-content: center;
}

.waitlist-pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(192, 155, 70, 0.2);
    border-radius: 15px;
    padding: 25px;
    flex: 1 1 300px;
    max-width: 350px;
    transition: all 0.3s ease;
}

.waitlist-pricing-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(192, 155, 70, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(192, 155, 70, 0.1);
}

.waitlist-pricing-card h4 {
    color: #f0d696;
    font-size: 1.4em;
    margin-bottom: 20px;
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
}

.waitlist-price-item {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(192, 155, 70, 0.1);
}

.waitlist-price-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.waitlist-price-label {
    color: #f5f5f5;
    font-weight: 600;
}

.waitlist-price-value {
    color: #f0d696;
    font-weight: 700;
    font-size: 1.2em;
}

.waitlist-price-original {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9em;
    text-decoration: line-through;
    display: block;
    width: 100%;
    text-align: right;
    margin-top: 5px;
}

.waitlist-message {
    text-align: center;
    margin: 30px 0;
}

.waitlist-message p {
    font-size: 1.2em;
    color: #f5f5f5;
    font-weight: 600;
}

.waitlist-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.waitlist-action-button {
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1em;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.current-batch-button {
    background: linear-gradient(45deg, #c19b46, #f0d696, #c19b46);
    background-size: 200% 200%;
    color: #0f1419;
    border: none;
    animation: goldShimmer 3s infinite;
    flex: 1 1 300px;
    max-width: 350px;
}

.current-batch-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(192, 155, 70, 0.4),
               inset 0 0 10px rgba(255, 215, 0, 0.3);
}

.waitlist-continue-button {
    background: transparent;
    color: #f5f5f5;
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex: 1 1 200px;
    max-width: 250px;
}

.waitlist-continue-button:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

@media (max-width: 768px) {
    .waitlist-popup-content {
        padding: 30px 20px;
    }

    .waitlist-popup-header h3 {
        font-size: 1.2em;
    }

    .waitlist-alert {
        flex-direction: column;
        text-align: center;
    }

    .waitlist-alert i {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .waitlist-pricing-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .waitlist-pricing-card h4{
        font-size: 1em;
    }

    .waitlist-alert p {
        font-size: 0.9em;
    }

    .waitlist-actions {
        flex-direction: column;
    }

    .waitlist-action-button {
        flex: 1 1 100%;
        max-width: 100%;
        font-size: 0.9em;
    }
}
/* Update the existing scrollbar styles to be consistent */
.ai-course-modules::-webkit-scrollbar,
.schedule-modules::-webkit-scrollbar {
    width: 6px;
}

.ai-course-modules::-webkit-scrollbar-track,
.schedule-modules::-webkit-scrollbar-track {
    background: rgba(15, 20, 25, 0.5);
    border-radius: 10px;
}

.ai-course-modules::-webkit-scrollbar-thumb,
.schedule-modules::-webkit-scrollbar-thumb {
    background: rgba(192, 155, 70, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(192, 155, 70, 0.2);
}

.ai-course-modules::-webkit-scrollbar-thumb:hover,
.schedule-modules::-webkit-scrollbar-thumb:hover {
    background: rgba(240, 214, 150, 0.7);
}




.waitlist-popup-content {
    padding: 30px 20px; /* Adjusted padding for better spacing */
    max-height: 80vh; /* Increased max-height to prevent overflow */
    overflow-y: auto; /* Allow scrolling if content exceeds max-height */
}

.progress-wrapper {
    background: rgba(15, 20, 25, 0.6);
    border: 1px solid rgba(192, 155, 70, 0.4);
    border-radius: 50px;
    height: 30px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(192, 155, 70, 0.2) inset;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(45deg, #c19b46, #f0d696, #c19b46);
    background-size: 200% 200%;
    border-radius: 50px;
    transition: width 1.5s ease;
    animation: goldShimmer 3s infinite, progressPulse 2s ease-in-out infinite;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Add this new keyframe animation for the progress bar */
@keyframes progressPulse {
    0% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(240, 214, 150, 0.4) inset;
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 0 20px rgba(240, 214, 150, 0.7) inset;
    }
    100% {
        background-position: 0% 50%;
        box-shadow: 0 0 10px rgba(240, 214, 150, 0.4) inset;
    }
}

.progress-text {
    color: #f0d696;
    font-weight: 700;
    font-size: 0.9em;
    position: absolute;
    z-index: 0;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
}

.seats-label {
    color: #f0d696;
    font-size: 0.9em;
    margin-top: 8px;
    font-style: italic;
}

.seats-availability {
    width: 100%;
    margin: 20px 0 30px;
    text-align: center;
    max-width: 400px;
    display: inline-block;
    align-items: flex-start;
}

@media (max-width: 768px) {
    .seats-availability {
        max-width: 300px;
        margin-bottom: 25px;
    }
}

.info-icon {
    display: inline-flex;
    align-items: center;
    margin-left: 5px;
    cursor: help;
    color: rgba(240, 214, 150, 0.7);
    transition: color 0.3s ease;
    position: relative;
}

.info-icon:hover {
    color: #f0d696;
}

.info-icon i {
    font-size: 0.9em;
}



.info-icon:hover::after,
.info-icon.active::after {
    visibility: visible;
    opacity: 1;
}

/* Add a small triangle to the tooltip */
.info-icon::before {
    content: '';
    position: absolute;
    bottom: 125%;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    border-width: 2px;
    border-style: solid;
    border-color: rgba(192, 155, 70, 0.4) transparent transparent transparent;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
}

.info-icon:hover::before,
.info-icon.active::before {
    visibility: visible;
    opacity: 1;
}

.info-icon::before {
    content: attr(data-tooltip);
    position: absolute;
    top: 100%; /* Position below the icon */
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0px 10px;
    border-radius: 4px;
    font-size: 0.8em;
    white-space: normal; /* Change from nowrap to allow text wrapping */
    max-width: 50vw; /* Set maximum width to 50% of viewport width */
    width: max-content; /* Use max-content to adjust based on content */
    visibility: hidden;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 10;
    margin-top: 5px; /* Spacing between icon and tooltip */
}

.info-icon.active::before {
    visibility: visible;
    opacity: 1;
}

footer > p > a {
    color: #f0d696;
}

.video-container {
    position: relative;
    text-align: center;
    margin: 40px 0;
    overflow:hidden;
    width: 100%;
}

.video-container::after {
    display: block;
    content: "";
    padding-top: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (min-width: 768px) {
.video-container {
    width: 50%;
    margin: auto;
}
}

/* Updated FAQ Section Styles */
.faq-grid {
    display: grid;
    grid-template-columns: 1fr;  /* Changed to single column */
    gap: 20px;
    max-width: 800px;  /* Reduced max-width for better readability */
    margin: 40px auto;
    padding: 0 20px;
}

.faq-item {
    background: rgba(192, 155, 70, 0.05);
    border: 1px solid rgba(192, 155, 70, 0.2);
    border-radius: 15px;
    transition: all 0.3s ease;
    overflow: hidden;
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(192, 155, 70, 0.1);
}

.faq-question h3 {
    color: #f0d696;
    font-size: 1.3em;
    margin: 0;
    font-family: 'Cinzel Decorative', serif;
    flex: 1;
}

.faq-icon {
    color: #f0d696;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 25px;
}

.faq-item.active .faq-icon i {
    transform: rotate(180deg);
}

.faq-answer p {
    color: #f5f5f5;
    line-height: 1.6;
    font-size: 1.1em;
    margin: 0;
}

/* FAQ Responsive Styles - Simplified since we're using single column */
@media (max-width: 768px) {
    .faq-grid {
        padding: 0 15px;
    }

    .faq-question {
        padding: 20px;
    }

    .faq-question h3 {
        font-size: 1.2em;
    }

    .faq-answer {
        padding: 0 20px;
    }

    .faq-answer p {
        font-size: 1em;
    }
}

/* Programs Section Styles */
.programs-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    margin: 50px 0;
}

.program-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(192, 155, 70, 0.2);
    overflow: hidden;
    transition: all 0.4s ease;
    flex: 1 1 340px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-card:hover {
    transform: translateY(-10px);
    border-color: rgba(192, 155, 70, 0.5);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2), 0 0 15px rgba(192, 155, 70, 0.2);
}

.program-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.program-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.program-card:hover .program-image img {
    transform: scale(1.05);
}

.program-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.program-content h3 {
    color: #f0d696;
    font-size: 1.6em;
    margin-bottom: 15px;
    font-family: 'Cinzel Decorative', serif;
}

.program-content p {
    color: #f5f5f5;
    font-size: 1.1em;
    margin-bottom: 15px;
    line-height: 1.6;
}

.program-start-date {
    color: #f0d696;
    font-size: 0.9em;
    font-weight: 600;
    margin-bottom: 20px;
    padding: 8px 0px;
    display: inline-block;
}


.program-button {
    display: inline-block;
    padding: 12px 25px;
    background: rgba(192, 155, 70, 0.2);
    color: #f0d696;
    text-decoration: none;
    border-radius: 20px;
    border: 1px solid rgba(192, 155, 70, 0.3);
    align-self: flex-start;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-button:hover {
    background: rgba(192, 155, 70, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1), 0 0 10px rgba(192, 155, 70, 0.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .program-card {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .program-image {
        height: 180px;
    }

    .program-content h3 {
        font-size: 1.4em;
    }

    .program-content p {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .program-image {
        height: 160px;
    }

    .program-content {
        padding: 20px;
    }

    .program-content h3 {
        font-size: 1.3em;
        margin-bottom: 10px;
    }

    .program-button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}

/* Hero Section Styles */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: center;
    margin-bottom: 30px;
    width: 100%;
    margin-top: 15vh;
    padding-left: 10vh;
}

.hero-content {
    padding-right: 20px;
    text-align: left;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    overflow: hidden;
}

.hero-image img {
    max-width: 150%;
    height: auto;
    transform: scale(1);
    transition: transform 0.5s ease;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.hero-image:hover img {
    transform: scale(1.03);
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    width: 100%;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: flex-start;
    width: 100%;
    margin-bottom: -1vh;
    align-items: flex-start;
}

/* Responsive styles for the hero section */
@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        padding-left: 0vh;
    }
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        padding-left: 0vh;
    }

    .hero-content {
        order: 1;
        padding-right: 0;
        text-align: center;
    }

    .hero-image {
        order: 2;
        margin-bottom: 30px;
    }

    .seats-availability {
        margin: 15px auto 25px;
        max-width: 80%;
        max-width: 300px;
        margin-bottom: 25px;
    }

    .hero-buttons {
        display: flex;
        gap: 15px;
        margin-top: 10px;
        justify-content: center;
        width: 100%;
        margin-bottom: -1vh;
        align-items: center;
    }
}


@media (max-width: 480px) {
    .hero-image img {
        max-width: 120%;
    }

    .logo-container {
        margin-bottom: 25px;
    }
}



.limited-seats-banner{
    font-size: x-small;
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
        margin-top:40px;
    }
    h2 { font-size: 1.6em; }
    header p { font-size: 1.1em; }
    .logo-container {
        top: 15px;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
        align-items: center;
        margin-bottom: -1vh;

    }
    .cta-button {
        padding: 12px 30px;
        font-size: 1em;
    }
    .secondary-cta {
        margin-top: 5px;
    }
    .trust-badges { gap: 20px; }
    .certificate-container { margin-bottom: 25px; }
    .logo-container { margin-bottom: 25px; }
}

@media (max-width: 480px) and (max-height: 700px) {
    .header-content {
        padding-top: 60px;
    }

    h1 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    header p {
        font-size: 1em;
        margin-bottom: 20px;
    }
}

/* Add an additional media query for medium-small height screens */
@media (max-height: 700px) and (min-height: 601px) {
    h1 {
        font-size: 1.8em;
        margin-bottom: 20px;
    }


    header{
        height: auto;
    }

    .header-content {
        padding-top: 20px;
    }
}


/* Media query for samsung galaxy and similar size old devices*/
@media screen and (min-width: 376px) and (max-width: 393px) {
  .hero-grid{
    margin-top:20rem;
  }
}

/* Media query for samsung s8+ devices*/
@media screen and (min-width: 359px) and (max-width: 365px){
  .hero-section .hero-grid{
    margin-top:20rem;
  }
}