
/* Custom styles that can't be handled by Tailwind */
body {
    scroll-behavior: smooth;
}
/* Gold Graphic Styles */
gold-graphic {
  animation: pulse 3s infinite ease-in-out;
  transform-origin: center;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

/* Gold Text Style */
.gold-text, [class*="text-gold"], span.text-gold, .text-gold {
    font-weight: 800;
    background: linear-gradient(to bottom, #FFEA80, #FFD700 50%, #FFC000);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 8px rgba(255, 215, 0, 0.5), 0 1px 3px rgba(200, 158, 23, 0.3);
    position: relative;
    display: inline-block;
}
/* Enhanced Apply Button with Slow Pulse Animation */
.group.flex.items-center.justify-center.bg-gold {
    background: linear-gradient(145deg, #FFD700, #FFC000);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    animation: slowPulse 5s infinite ease-in-out;
}

@keyframes slowPulse {
    0%, 100% {
        box-shadow: 0 0 15px rgba(255, 215, 0, 0.7), inset 0 1px 1px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.9), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    }
}

.group.flex.items-center.justify-center.bg-gold:hover {
    background: linear-gradient(145deg, #FFC000, #FFD700);
    box-shadow: 0 0 40px rgba(255, 215, 0, 1), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    transform: translateY(-2px) scale(1.05);
    animation: none;
}

.group.flex.items-center.justify-center.bg-gold:active {
    transform: translateY(0) scale(0.98);
    animation: none;
}
.gold-text::after, [class*="text-gold"]::after, span.text-gold::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0) 50%, rgba(0,0,0,0.2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    mix-blend-mode: overlay;
}
/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #0A0A0A;
}
::-webkit-scrollbar-thumb {
    background: #F2C94C;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #d8b13e;
}
/* Navigation spacing */
:host(custom-navbar) {
  margin-bottom: 2rem;
}

/* Hero section diagonal lines pattern */
.bg-diamond-pattern {
    background-image: 
        linear-gradient(135deg, rgba(242, 201, 76, 0.03) 25%, transparent 25%),
        linear-gradient(225deg, rgba(242, 201, 76, 0.03) 25%, transparent 25%),
        linear-gradient(315deg, rgba(242, 201, 76, 0.03) 25%, transparent 25%),
        linear-gradient(45deg, rgba(242, 201, 76, 0.03) 25%, transparent 25%);
    background-size: 20px 20px;
}
/* Video container */
.relative.overflow-hidden.rounded-xl {
    overflow: visible !important;
}

/* Gallery hover effect */
.gallery-container > div:hover {
    z-index: 10;
}
/* Animation classes */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

/* Gallery image transitions */
.gallery-container {
    scroll-snap-type: x mandatory;
    transition: scroll-left 0.5s ease-in-out;
}

.gallery-container > div {
    scroll-snap-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* Additional text styles */
.font-body.tracking-wide {
    letter-spacing: 0.05em;
    font-weight: 300;
}

/* Text Glow Effects */
.relative.inline-block {
    display: inline-block;
}
.relative.inline-block > span:first-child {
    transform: scale(1.05);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}
.relative.inline-block:hover > span:first-child {
    opacity: 1;
}
/* Testimonial Image Styles */
.testimonial-image {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    filter: brightness(0.95);
}

.testimonial-image:hover {
    transform: scale(1.02);
    filter: brightness(1);
    box-shadow: 0 4px 15px rgba(242, 201, 76, 0.3);
}
/* Hover effect for evaluation images */
.hovered-element {
    transition: all 0.3s ease;
    will-change: transform, box-shadow;
}
.hovered-element:hover {
    transform: scale(1.1);
    filter: drop-shadow(0 0 8px rgba(242, 201, 76, 0.7));
    box-shadow: 0 0 15px rgba(242, 201, 76, 0.5);
    z-index: 1;
}
/* Trending up icon animation */
.trending-up-icon {
    transition: all 0.3s ease;
}
.trending-up-icon:hover {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px rgba(242, 201, 76, 0.7));
}
/* Award icon specific hover effect */
.hovered-element:hover {
    transform: scale(1.2) rotate(15deg);
    filter: drop-shadow(0 0 10px rgba(242, 201, 76, 0.9));
    animation: pulse 1s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1) rotate(0deg);
    }
    50% {
        transform: scale(1.2) rotate(15deg);
    }
    100% {
        transform: scale(1) rotate(0deg);
    }
}
/* Arrow animation between steps */
.hidden.md\:flex.items-center.justify-center svg {
    transition: all 0.3s ease;
}

.hidden.md\:flex.items-center.justify-center:hover svg {
    transform: translateX(5px);
    color: #F2C94C;
}

@media (max-width: 768px) {
    .hidden.md\:flex.items-center.justify-center {
        transform: rotate(90deg);
        margin: 1.5rem 0;
    }
}
/* Arrow hover effect */
.hovered-element svg {
    transition: all 0.3s ease;
}
.hovered-element:hover svg {
    transform: scale(1.1);
    filter: drop-shadow(0 0 5px rgba(242, 201, 76, 0.7));
}
/* Audio Player Styles */
.audio-player-btn {
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(242, 201, 76, 0.1);
}

.audio-player-btn:hover {
    background: rgba(242, 201, 76, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(242, 201, 76, 0.15);
}

.audio-player-btn:active {
    transform: translateY(0);
}

.audio-player-btn svg {
    animation: pulse 1.5s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
}
.audio-link-btn {
transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(242, 201, 76, 0.1);
}

.audio-link-btn:hover {
    background: rgba(242, 201, 76, 0.25);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(242, 201, 76, 0.15);
}

.audio-link-btn:active {
    transform: translateY(0);
}
/* Social Media Button Styles */
.group.relative.inline-flex.items-center {
    transition: all 0.3s ease;
    padding-left: 2.5rem;
}

.group.relative.inline-flex.items-center:hover {
    transform: translateY(-1px);
}

.group.relative.inline-flex.items-center span.absolute svg:last-child {
    animation: starPulse 1.5s infinite ease-in-out;
}

/* Instagram button hover */
.border-pink-500:hover {
    background: rgba(236, 72, 153, 0.15) !important;
    box-shadow: 0 0 10px rgba(236, 72, 153, 0.3) !important;
}

/* YouTube button hover */
.border-red-500:hover {
    background: rgba(239, 68, 68, 0.15) !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3) !important;
}
@keyframes starPulse {
    0% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 0.8; }
}

/* FAQ Section Styles */
.faq-toggle {
    transition: all 0.3s ease;
    cursor: pointer;
    background: transparent;
    border: none;
    width: 100%;
    padding: 0;
}

.faq-toggle h3 {
    font-size: 1.1rem;
    color: white;
    transition: all 0.3s ease;
}

.faq-toggle:hover h3 {
    color: #F2C94C;
}
.faq-content {
    transition: all 0.3s ease;
    max-height: 500px;
    overflow: visible;
    display: block;
}
.faq-item {
    transition: all 0.3s ease;
}
.faq-icon {
    transition: transform 0.3s ease;
}

.faq-toggle.active .faq-icon {
    transform: rotate(45deg);
}
/* Divider Styles */
.relative.flex.justify-center span {
    background: linear-gradient(145deg, #0A0A0A, #1A1A1A);
    padding: 0 1rem;
    border: 1px solid rgba(242, 201, 76, 0.2);
    border-radius: 9999px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

.relative.flex.justify-center i {
    animation: pulse 2s infinite ease-in-out;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
    }
}

/* Student Results Carousel - Elegant Full-width */
.student-carousel {
    display: flex;
    width: 100%;
    gap: 0;
    position: relative;
    transform: translateX(0);
    will-change: transform;
}
.student-carousel > div {
    flex: 0 0 100%;
    position: relative;
    aspect-ratio: 16/9;
    height: auto;
}
.student-carousel > div {
    scroll-snap-align: start;
    flex-shrink: 0;
    width: 100%;
    height: 500px;
    position: relative;
    transition: transform 0.3s ease;
}
.student-carousel img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    filter: brightness(0.9);
    transition: all 0.3s ease;
    background-color: #000;
    border: 2px solid transparent;
    box-shadow: 0 0 0 4px transparent;
    position: relative;
    will-change: transform, filter;
}
.student-carousel img::before {
    content: '';
    position: absolute;
    top: -6px;
    left: -6px;
    right: -6px;
    bottom: -6px;
    border: 2px solid transparent;
    border-radius: 4px;
    background: linear-gradient(45deg, #F2C94C, #FFE873, #F2C94C);
    background-size: 200% 200%;
    animation: gradientBorder 3s ease infinite;
    z-index: -1;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.student-carousel img:hover {
    filter: brightness(1);
    box-shadow: 0 0 20px rgba(242, 201, 76, 0.5);
    border-color: rgba(242, 201, 76, 0.3);
}

.student-carousel img:hover::before {
    opacity: 1;
    animation: gradientBorder 1.5s ease infinite;
}

@keyframes gradientBorder {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}
.student-carousel > div:hover img {
    filter: brightness(1);
}
/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: #F2C94C;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    opacity: 0;
    transition: all 0.3s ease;
}

.student-carousel-container:hover .carousel-nav {
    opacity: 1;
}

.carousel-nav.prev {
    left: 20px;
}

.carousel-nav.next {
    right: 20px;
}

.carousel-nav:hover {
    background: rgba(0,0,0,0.7);
    transform: translateY(-50%) scale(1.1);
}

/* Dots Indicator */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.carousel-dots > div {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(242, 201, 76, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dots > div.active {
    background-color: #F2C94C;
    transform: scale(1.2);
}

/* Overlay for better text visibility */
.student-carousel > div::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
    z-index: 1;
}
/* Caption styling */
.student-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: white;
    z-index: 3;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    max-width: 100%;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
.student-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.student-caption p {
    font-size: 1rem;
    opacity: 0.9;
}
/* Partners Section */
.partners-section {
    background: linear-gradient(145deg, #0A0A0A 0%, #1A1A1A 100%);
    padding: 35px 0;
    display: flex;
    justify-content: center;
    border-top: 1px solid rgba(242, 201, 76, 0.1);
    border-bottom: 1px solid rgba(242, 201, 76, 0.1);
    position: relative;
    overflow: hidden;
}

.partners-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgdmlld0JveD0iMCAwIDYwIDYwIj48cGF0aCBkPSJNMzAgMEw2MCAzMEwzMCA2MEwwIDMwWiIgZmlsbD0ibm9uZSIgc3Ryb2tlPSIjRjJDOTRDIiBzdHJva2Utd2lkdGg9IjAuMiIgc3Ryb2tlLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
    opacity: 0.03;
    z-index: 0;
}
.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 65px;
    flex-wrap: wrap;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}
.partners-logos img {
    height: 40px;
    opacity: 0.8;
    filter: grayscale(30%) brightness(0.9);
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s ease;
}

.partners-logos img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1.1);
    animation-play-state: paused;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* Different animation delays for each logo */
.partners-logos img:nth-child(1) { animation-delay: 0s; }
.partners-logos img:nth-child(2) { animation-delay: 0.5s; }
.partners-logos img:nth-child(3) { animation-delay: 1s; }
.partners-logos img:nth-child(4) { animation-delay: 1.5s; }
.partners-logos img:nth-child(5) { animation-delay: 2s; }
@media (max-width: 768px) {
    .partners-logos {
        gap: 30px;
    }
    .partners-logos img {
        height: 30px;
    }
}
/* Blinking dot animation */
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.blinking-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #F2C94C;
    margin-left: 4px;
    animation: blink 1.5s infinite;
    box-shadow: 0 0 5px rgba(242, 201, 76, 0.7);
}

/* Hide scrollbar for carousel */
.scrollbar-hide::-webkit-scrollbar {
display: none;
}
.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}