@import 'bootstrap/dist/css/bootstrap.min.css';


:root {
    --electric-cyan: #00D9FF;
    --aqua-blue: #00B0E6;
    --sky-blue: #5BDFFF;
    --dark-indigo: #0A0F2C;
    --deep-blue: #132345;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-bg-light: #ffffff;
    --glass-border: rgba(0, 217, 255, 0.2);
    --gradient-primary: linear-gradient(45deg, var(--electric-cyan), var(--aqua-blue));
    --gradient-secondary: linear-gradient(45deg, var(--aqua-blue), var(--sky-blue));
    --gradient-accent: linear-gradient(135deg, var(--electric-cyan), var(--sky-blue));
    --shadow-light: rgba(0, 0, 0, 0.3);
    --shadow-medium: rgba(0, 0, 0, 0.4);
    --shadow-heavy: rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
 
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #000000;
    background: #000000;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Bootstrap Theme Customization */
:root {
    --bs-primary: #00D9FF;
    --bs-primary-rgb: 0, 217, 255;
    --bs-secondary: #00B0E6;
    --bs-success: #10b981;
    --bs-info: #06b6d4;
    --bs-warning: #f59e0b;
    --bs-danger: #ef4444;
    --bs-light: #f8fafc;
    --bs-dark: #0f172a;
}

/* Custom Gradient Text */
.gradient-text {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.gradient-text::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 3px;
}

/* Navigation */
.navbar-custom {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 217, 255, 0.1);
    box-shadow: 0 2px 20px var(--shadow-light);
}

.navbar-custom.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 4px 30px var(--shadow-medium);
}

.navbar-nav .nav-link {
    color: #000000 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem !important;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--electric-cyan) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: calc(100% - 2rem);
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%2300D9FF' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Floating Animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

.floating-element {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.1;
    animation: float 6s ease-in-out infinite;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding-top: 80px;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 217, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(91, 223, 255, 0.03) 0%, transparent 50%);
    animation: float 20s ease-in-out infinite;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px var(--shadow-light);
    color: var(--electric-cyan);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    backdrop-filter: blur(20px);
}

.hero-title {
    animation: slideInUp 0.8s ease-out 0.2s both;
}

.hero-stats .stat-card {
    transition: all 0.3s ease;
}

.hero-stats .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

/* Glassmorphism */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
}

/* Custom Button Styles */
.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    border-radius: 50px;
    font-weight: 600;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.4);
    color: white;
}

.btn-outline-gradient {
    background: transparent;
    border: 2px solid var(--electric-cyan);
    color: var(--electric-cyan);
    transition: all 0.3s ease;
    border-radius: 50px;
    font-weight: 600;
}

.btn-outline-gradient:hover {
    background: var(--electric-cyan);
    color: white;
    transform: translateY(-3px);
}

/* Section Spacing */
.section-padding {
    padding: 6rem 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 20px var(--shadow-light);
    color: var(--electric-cyan);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    backdrop-filter: blur(20px);
}

/* Question Card */
.question-card {
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

.question-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto;
}

/* Timeline */
.timeline-container {
    position: relative;
    padding-left: 2rem;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0.75rem;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gradient-primary);
}

.timeline-item {
    position: relative;
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -2.25rem;
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--electric-cyan);
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 0 3px var(--electric-cyan);
}

.timeline-title {
    color: var(--electric-cyan);
    margin-bottom: 0.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.timeline-desc {
    color: #64748b;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.timeline-year {
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Service Cards */
.service-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(360deg);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #64748b;
    font-size: 0.9rem;
}

/* Philosophy Cards */
.philosophy-card {
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

.philosophy-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
    transform: scale(1.1) rotate(360deg);
}

/* Motto Card */
.motto-card {
    transition: all 0.3s ease;
}

.motto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

/* Impact Cards */
.impact-card {
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

.impact-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.impact-card:hover .impact-icon {
    transform: scale(1.1) rotate(360deg);
}

.impact-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.5rem;
}

.stat-label {
    font-size: 0.8rem;
}

.certification-badges .badge {
    font-size: 0.7rem;
    padding: 0.4rem 0.6rem;
    margin-bottom: 0.25rem;
}

.program-types, .methodology {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-type, .method-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: #64748b;
}

.results-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    margin: 0 auto;
}

.result-metric {
    text-align: center;
}

.metric-number {
    display: block;
    font-size: 1.5rem;
}

.metric-label {
    font-size: 0.8rem;
}

/* Vision Section */
.vision-statement {
    transition: all 0.3s ease;
}

.vision-statement:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

.goal-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.goal-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

/* Ecosystem Chart */
.ecosystem-chart {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ecosystem-center {
    position: relative;
    z-index: 2;
}

.center-circle {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    font-weight: 600;
    animation: pulse 3s ease-in-out infinite;
}

.center-circle span {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.ecosystem-elements {
    position: absolute;
    width: 100%;
    height: 100%;
}

.ecosystem-element {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.element-circle {
    width: 60px;
    height: 60px;
    background: var(--glass-bg);
    border: 2px solid var(--electric-cyan);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--electric-cyan);
    font-size: 1.2rem;
    animation: orbit 15s linear infinite;
}

.ecosystem-element span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--electric-cyan);
}

/* CTA Cards */
.cta-card {
    transition: all 0.3s ease;
}

.cta-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
    border-color: var(--electric-cyan);
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    margin: 0 auto;
    transition: all 0.3s ease;
}

.cta-card:hover .cta-icon {
    transform: scale(1.1) rotate(360deg);
}

/* Hover Lift Effect */
.hover-lift {
    transition: all 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 217, 255, 0.15);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 15px 40px rgba(0, 217, 255, 0.5);
    }
}

@keyframes orbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
    }
}

.pulse-animation {
    animation: pulse 3s ease-in-out infinite;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--electric-cyan);
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-padding {
        padding: 4rem 0;
    }
    
    .hero-section {
        padding-top: 100px;
    }
    
    .display-1 {
        font-size: 2.5rem;
    }
    
    .display-3 {
        font-size: 2rem;
    }
    
    .hero-stats {
        margin-bottom: 3rem;
    }
    
    .hero-stats .col-6 {
        margin-bottom: 1rem;
    }
    
    .floating-element {
        display: none;
    }
    
    .timeline-container {
        padding-left: 1.5rem;
    }
    
    .timeline-marker {
        left: -1.75rem;
    }
    
    .impact-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .ecosystem-chart {
        height: 300px;
    }
    
    .center-circle {
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
    }
    
    .center-circle span {
        font-size: 0.8rem;
    }
    
    .element-circle {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .ecosystem-element span {
        font-size: 0.7rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 80px;
    }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .btn-lg {
        padding: 0.75rem 2rem;
        font-size: 1rem;
    }
    
    .glass-card {
        padding: 1.5rem !important;
    }
    
    .display-1 {
        font-size: 2rem;
    }
    
    .display-3 {
        font-size: 1.8rem;
    }
    
    .lead {
        font-size: 1rem;
    }
    
    .service-icon, .philosophy-icon, .cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .impact-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .question-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .ecosystem-chart {
        height: 250px;
    }
    
    .center-circle {
        width: 80px;
        height: 80px;
        font-size: 1rem;
    }
    
    .center-circle span {
        font-size: 0.7rem;
    }
    
    .element-circle {
        width: 40px;
        height: 40px;
        font-size: 0.8rem;
    }
    
    .ecosystem-element span {
        font-size: 0.6rem;
    }
}

/* Animation delays for staggered effects */
.hero-stats .col-6:nth-child(1) .stat-card { animation-delay: 0.1s; }
.hero-stats .col-6:nth-child(2) .stat-card { animation-delay: 0.2s; }
.hero-stats .col-6:nth-child(3) .stat-card { animation-delay: 0.3s; }
.hero-stats .col-6:nth-child(4) .stat-card { animation-delay: 0.4s; }

/* Smooth scroll offset for fixed navbar */
html {
    scroll-padding-top: 80px;
}

/* Enhanced mobile menu */
@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        border-radius: 15px;
        margin-top: 1rem;
        padding: 1rem;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }
    
    .navbar-nav .nav-link {
        padding: 0.75rem 1rem !important;
        border-radius: 10px;
        margin-bottom: 0.25rem;
    }
    
    .navbar-nav .nav-link:hover {
        background: rgba(0, 217, 255, 0.1);
    }
}