/* Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    overflow-x: hidden;
}

/* Animation Keyframes */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(255, 107, 53, 0.8), 0 0 30px rgba(255, 107, 53, 0.6);
    }
    100% {
        box-shadow: 0 0 5px rgba(255, 107, 53, 0.5);
    }
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-2px); }
    20%, 40%, 60%, 80% { transform: translateX(2px); }
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

@keyframes cardFlip {
    from {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    to {
        opacity: 1;
        transform: rotateY(0);
    }
}

@keyframes scaleUp {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-slide-down {
    animation: slideDown 0.8s ease-out;
}

.animate-fade-up {
    animation: fadeUp 1s ease-out;
}

.animate-fade-up-delay {
    animation: fadeUp 1s ease-out 0.3s both;
}

.animate-zoom-in {
    animation: zoomIn 1s ease-out 0.6s both;
}

.animate-bounce-in {
    animation: bounceIn 1s ease-out 0.9s both;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out;
}

.animate-slide-left {
    animation: slideLeft 1s ease-out;
}

.animate-slide-right {
    animation: slideRight 1s ease-out;
}

.animate-card-hover {
    transition: all 0.3s ease;
}

.animate-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-card-flip {
    animation: cardFlip 0.6s ease-out;
}

.animate-scale-up {
    animation: scaleUp 0.8s ease-out;
}

.animate-fade-in {
    animation: fadeUp 0.8s ease-out;
}

.animate-testimonial-slide {
    animation: slideLeft 0.8s ease-out;
}

.animate-sticky {
    animation: slideUp 0.5s ease-out;
}

.pulse-animation {
    animation: pulse 2s infinite;
}

.glow-animation {
    animation: glow 2s ease-in-out infinite alternate;
}

.shake-animation:hover {
    animation: shake 0.5s ease-in-out;
}

/* Header Banner */
.header-banner {
    /* background: linear-gradient(135deg, #FF6B35, #F7931E); */
    /* padding: 12px 0; */
    color: white;
    font-weight: bold;
    /* font-size: 18px; */
    text-align: center;
    position: relative;
    overflow: hidden;
}

.header-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
.header-text {
    background-color: #0B1D51;       /* Same as Tailwind's bg-blue-900 */
    color: white;
    border-radius: 0.75rem;          /* rounded-lg */
    max-width: 800px;                /* Controls how wide the div can be */
    margin: 0 auto;                  /* Centers the div horizontally */
    padding: clamp(0.5rem, 0.5vw, 0.75rem) clamp(0.2rem, 0.5vw, 0.5rem);
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    font-weight: 600;
    position: relative;
    z-index: 1;
    animation: fadeIn 0.5s ease-in-out; /* Fade-in effect */
    
    /* Optional: Uncomment if needed */
    /* margin-top: 0.25rem;   */  /* mt-1 */
    /* margin-bottom: 0.25rem;*/  /* mb-1 */
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(to bottom, #f8f9fa);
    padding: 50px 0;
    position: relative;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: black;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: -1px;
    line-height: 1.1;
}
@media (max-width: 992px) {
    .hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.5rem;
    }
}

.text-orange {
    color:#1e3a8a;
    text-shadow: 2px 2px 4px rgba(255, 107, 53, 0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #555;
    margin-bottom: 40px;
    font-weight: 500;
}

/* Video Section */
/* Video Section */
.video-container {
    margin: 50px auto; /* Center the container */
    max-width: 900px; /* Maximum width */
    width: 70%; /* Default width for larger screens */
}

.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    margin: 0 auto; /* Center the wrapper */
}

/* Make iframe fill the wrapper */
.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-container {
        width: 80%;
    }
}

@media (max-width: 992px) {
    .video-container {
        width: 90%;
    }
}

@media (max-width: 768px) {
    .video-container {
        width: 95%;
    }
}

@media (max-width: 576px) {
    .video-container {
        width: 100%;
        padding: 0 15px; /* Add some side padding on mobile */
    }
    
    .video-wrapper {
        border-radius: 8px; /* Slightly smaller radius on mobile */
    }
}

.video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 15px;
}

/* Buttons */
.btn-register {
    background: linear-gradient(135deg,rgb(14, 26, 56),rgb(18, 12, 71));
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-register::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.btn-register:hover::before {
    left: 100%;
}

.btn-register:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(144, 145, 230, 0.4);
    background: linear-gradient(135deg,rgb(6, 3, 66),rgb(13, 5, 100));
}

.btn-register-final {
    background: linear-gradient(135deg,rgb(23, 4, 75),rgb(14, 9, 65));
    color: white;
    border: none;
    padding: 20px 50px;
    font-size: 1.4rem;
    font-weight: 800;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.btn-register-footer {
    background: white;
    color: #FF6B35;
    border: 2px solid #FF6B35;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.btn-register-footer:hover {
    background: #FF6B35;
    color: white;
    transform: translateY(-2px);
}

/* Pricing */
.pricing {
    font-size: 1.4rem;
    font-weight: 600;
}

.limited-text {
    color:#FF6B35;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: -10px; /* Pulls element up */
    margin-bottom: 15px;
}

.offer-text {
    color: #333;
}

.original-price {
    color: #999;
    text-decoration: line-through;
    margin-right: 10px;
}

.discounted-price {
    color:#FF6B35;
    font-size: 1.8rem;
    font-weight: 800;
}

/* Highlights Section */
.highlights-section {
    background: #f8f9fa;
    padding: 10px 0;
    margin: -120px 10px 10px 10px; /* Negative top margin pulls it up */
}



.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1e3a8a;
    text-transform: uppercase;
    letter-spacing: -1px;
    margin-bottom: 50px;
}


.highlight-card {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
    border-left: 5px solid #0B1D51;
}

.highlight-icon {
    font-size: 2rem;
    margin-right: 20px;
    color: #FF6B35;
}

.highlight-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2c3e50;
    margin: 0;
}

/* Instructor Section */
.instructor-section {
    background: white;
    padding: 60px 0;
    overflow-x: hidden; /* Prevent horizontal scrolling */
}

/* Default layout for large screens */
.instructor-section .row {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    align-items: center;
}

/* Force equal width */
.instructor-section .col-lg-6 {
    flex: 1 1 50%;
    box-sizing: border-box;
}

.instructor-image img {
    width: 90%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.instructor-image img:hover {
    transform: scale(1.05);
}

.instructor-content {
    padding-left: 20px;
}

.instructor-name {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 15px;
}

.instructor-description {
    font-size: clamp(0.9rem, 1.2vw, 1.1rem);
    color: #555;
    line-height: 1.5;
    margin-bottom: 20px;
}

.instructor-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stat-item {
    text-align: center;
    min-width: 70px;
}

.stat-number {
    display: block;
    font-size: clamp(1.3rem, 2.2vw, 1.8rem);
    font-weight: 800;
    color: #FF6B35;
}

.stat-label {
    font-size: clamp(0.75rem, 1vw, 0.85rem);
    color: #666;
    font-weight: 600;
}

/* 🔧 Responsive fix for small screens */
@media (max-width: 576px) {
    .instructor-section .row {
        flex-wrap: wrap; /* Allow wrapping */
    }

    .instructor-image,
    .instructor-content {
        flex: 1 1 100%; /* Full width on small screen */
        max-width: 100%;
    }

    .instructor-content {
        padding-left: 0;
        margin-top: 15px;
    }

    .instructor-description {
        font-size: 0.9rem;
    }

    .instructor-name {
        font-size: 1.4rem;
    }

    .instructor-stats {
        justify-content: space-around;
    }
}

/* Audience Section */
.audience-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 40px 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    border-top: 5px solid #3674B5;
}

.audience-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.audience-card h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.audience-card p {
    color: #666;
    font-size: 1rem;
}

.no-limit-text {
    font-size: 1.3rem;
    color: #FF6B35;
    margin-top: 30px;
}

/* Bonuses Section */
.bonuses-section {
    background: white;
    padding: 80px 0;
}

.bonus-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    align-items: center;
}

.bonus-card:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.bonus-icon {
    font-size: 2.5rem;
    margin-right: 20px;
}

.bonus-content h5 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.bonus-content p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.live-only-text {
    font-size: 1.3rem;
    color: #FF6B35;
    font-weight: 700;
    margin-top: 30px;
}

/* Testimonials Section */
.testimonials-section {
    background: #f8f9fa;
    padding: 80px 0;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: #FF6B35;
    font-weight: bold;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.testimonial-content p {
    font-size: 1.1rem;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
    padding-left: 20px;
}

.testimonial-author {
    color: #FF6B35;
    font-weight: 600;
    text-align: right;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg,rgb(51, 49, 113),rgb(55, 132, 176));
    padding: 80px 0;
    color: white;
}

.cta-box {
    background: rgba(255,255,255,0.1);
    border-radius: 25px;
    padding: 50px;
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.cta-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.webinar-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.detail-item {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 15px;
    font-size: 1.1rem;
}

.detail-icon {
    margin-right: 10px;
    font-size: 1.3rem;
}

/* Footer Banner */
.footer-banner {
  background: linear-gradient(135deg, #061B50, #032657);
  color: white;
  padding: 14px 20px;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
}

/* Flex container centered on large screen */
.footer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Text */
.footer-text {
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

/* Button */
.footer-button {
  background-color: white;
  color: #061B50;
  border: none;
  border-radius: 12px;
  padding: 8px 20px;
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.footer-button:hover {
  background-color: #FF6B35;
  color: white;
}

/* Responsive: Stack and shrink on small screens */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }

  .footer-text {
    font-size: 0.9rem;
    white-space: normal;
  }

  .footer-button {
    width: 100%;
    max-width: 250px;
    font-size: 0.95rem;
  }
}


/* Registration Page */
.register-page {
    min-height: 100vh;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 50px 0;
    display: flex;
    align-items: center;
}

.register-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

.animate-card-entrance {
    animation: scaleUp 0.8s ease-out;
}

.register-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 10px;
}

.register-subtitle {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: 10px;
    padding: 12px 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.animate-input-focus:focus {
    border-color: #FF6B35;
    box-shadow: 0 0 0 0.2rem rgba(255, 107, 53, 0.25);
    transform: scale(1.02);
}

.pricing-info {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 25px;
    border-radius: 15px;
    margin: 30px 0;
    border: 2px solid #28a745;
}

.animate-price-highlight {
    animation: pulse 2s infinite;
}

.course-price {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.offer-details {
    color: #28a745;
    font-weight: 600;
    margin: 0;
}

.webinar-info {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 15px;
    border-left: 5px solid #FF6B35;
}

.animate-info-box {
    animation: slideLeft 0.8s ease-out;
}

.webinar-info h6 {
    color: #FF6B35;
    font-weight: 700;
    margin-bottom: 15px;
}

.webinar-info p {
    margin-bottom: 5px;
    color: #555;
}

.btn-pay {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    border: none;
    padding: 18px 40px;
    font-size: 1.3rem;
    font-weight: 700;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(40, 167, 69, 0.3);
}

.animate-button-press:active {
    transform: scale(0.95);
}

.btn-pay:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(40, 167, 69, 0.4);
    background: linear-gradient(135deg, #20c997, #28a745);
}

.back-link {
    color: #666;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.back-link:hover {
    color: #FF6B35;
    text-decoration: none;
    transform: translateX(-5px);
}

.guarantee-section {
    background: linear-gradient(135deg, #e8f5e8, #f0f8f0);
    padding: 20px;
    border-radius: 15px;
    text-align: center;
    border: 2px solid #28a745;
}

.animate-guarantee {
    animation: bounceIn 1s ease-out;
}

.guarantee-text {
    color: #2c3e50;
    margin: 0;
    font-size: 0.95rem;
}

/* Modal Animations */
.animate-modal-entrance {
    animation: zoomIn 0.5s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .instructor-content {
        padding-left: 0;
        margin-top: 40px;
    }
    
    .instructor-stats {
        justify-content: center;
    }
    
    .webinar-details {
        grid-template-columns: 1fr;
    }
    
    .footer-banner .row {
        text-align: center;
    }
    
    .footer-banner .col-lg-4 {
        margin-top: 15px;
    }
    
    .register-card {
        padding: 30px 20px;
    }
    
    .register-title {
        font-size: 1.8rem;
    }
    
    .cta-box {
        padding: 30px 20px;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .btn-register {
        font-size: 1.1rem;
        padding: 15px 30px;
    }
    
    .audience-card {
        padding: 30px 15px;
    }
    
    .bonus-card {
        flex-direction: column;
        text-align: center;
    }
    
    .bonus-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
}

/* Scroll-triggered animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Loading animations */
.loading-shimmer {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Hover effects for interactive elements */
.interactive-hover {
    transition: all 0.3s ease;
}

.interactive-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Success states */
.success-state {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}
