
.font-montserrat { font-family: 'Montserrat', sans-serif; }
        .font-opensans { font-family: 'Open Sans', sans-serif; }
        
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s ease-out;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        .hover-scale {
            transition: transform 0.3s ease;
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #212E5A 0%, #1a2347 100%);
        }
        
        .service-card {
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }
        
        .service-card:hover {
            border-color: #212E5A;
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(33, 46, 90, 0.15);
        }
        
        @keyframes fade-in-up {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .animate-fade-in-up {
            animation: fade-in-up 0.8s ease-out forwards;
        }
    

/* Demo Tab Styles */
.demo-tab-btn {
    background: transparent;
    color: #6b7280;
    border: none;
    cursor: pointer;
}

.demo-tab-btn.active {
    background: white;
    color: #1f2937;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.demo-tab-btn:hover {
    color: #374151;
}

.demo-content {
    display: none;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.demo-content.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
    animation: fadeInUp 0.5s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo Styling */
.scholarik-logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.scholarik-logo-icon-wrapper {
    position: relative;
}

.scholarik-logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid #212E5A;
    padding: 4px;
    background: white;
    box-shadow: 0 2px 8px rgba(33, 46, 90, 0.2);
    transition: all 0.3s ease;
}

.scholarik-logo-icon:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(33, 46, 90, 0.3);
}

.scholarik-logo-text {
    display: flex;
    flex-direction: column;
}

.scholarik-logo-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: #212E5A;
    line-height: 1.2;
}

.scholarik-logo-subtitle {
    font-family: 'Open Sans', sans-serif;
    font-weight: 500;
    font-size: 12px;
    color: #6b7280;
    line-height: 1.2;
}

/* Header Enhancement */
.header-enhanced {
    background-color: #ffffff !important;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    opacity: 1;
    border-bottom: 4px solid #3b82f6;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Ensure header text is always visible */
.header-enhanced * {
    color: inherit;
}

.header-enhanced .scholarik-logo-title {
    color: #212E5A !important;
}

.header-enhanced .scholarik-logo-subtitle {
    color: #6b7280 !important;
}
    
/* Hero SVG Animations */
@keyframes floatSlow {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

@keyframes driftCloud {
  0% { transform: translateX(0); }
  50% { transform: translateX(12px); }
  100% { transform: translateX(0); }
}

@keyframes swayIcon {
  0% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-4px) rotate(1deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

.anim-float-slow {
  animation: floatSlow 6s ease-in-out infinite;
  will-change: transform;
}

.anim-cloud {
  animation: driftCloud 12s ease-in-out infinite;
  will-change: transform;
}

.anim-icon {
  animation: swayIcon 5s ease-in-out infinite;
  transform-origin: center;
  will-change: transform;
}

@media (prefers-reduced-motion: reduce) {
  .anim-float-slow,
  .anim-cloud,
  .anim-icon {
    animation: none !important;
  }
}
    