
:root {
  --brand-dark1: #252F6F;           
  --brand-primary: #2F3985;        /* Brand Navy */
  --brand-dark: #1a2456;           /* Darker Brand Navy */
  --brand-accent: #4a5dc7;         /* Lighter Brand Navy */
  --brand-light: #f8fafc;          /* Light background */
  --primary-navy: #2F3985;
  --deep-indigo: #1a2456;
  --light-navy: #4a5dc7;
  --accent-blue: #6c7ce6;
              --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-tertiary: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --shadow-light: 0 8px 25px rgba(0, 0, 0, 0.08);
            --shadow-medium: 0 15px 35px rgba(0, 0, 0, 0.1);
            --shadow-heavy: 0 25px 50px rgba(0, 0, 0, 0.15);
                        --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --success-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --card-bg: #ffffff;
            --text-primary: #2d3748;
            --text-secondary: #718096;
            --border-radius: 20px;
            --shadow-light: 0 4px 20px rgba(102, 126, 234, 0.1);
            --shadow-medium: 0 8px 30px rgba(102, 126, 234, 0.15);
            --shadow-heavy: 0 15px 40px rgba(102, 126, 234, 0.2);
}

   


body{
    overflow-x: hidden;
}

      



@media (max-width: 768px) {
  .two-col {
    grid-template-columns: 1fr; /* Stack on small screens */
  }
}
        #themes {
            position: relative;
            z-index: 1;
            padding: 5rem 0;
        }

        .section-title {
            font-weight: 800;
            font-size: 3rem;
            background: #E5A13B;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin-bottom: 1rem;
            position: relative;
            letter-spacing: -0.02em;
        }

        .section-subtitle {
            font-size: 1.2rem;
            color: #6c757d;
            text-align: center;
            margin-bottom: 4rem;
            font-weight: 300;
        }
/* 
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--gradient-primary);
            border-radius: 2px;
        } */

        .theme-card {
            background: #ffffff;
            border-radius: 20px;
            border: none;
            box-shadow: var(--shadow-light);
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            cursor: pointer;
            position: relative;
            margin-bottom: 2rem;
            height: 100%;
        }

        .theme-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--gradient-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s ease;
            z-index: 2;
        }

        .theme-card:hover::before {
            transform: scaleX(1);
        }

        .theme-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: var(--shadow-heavy);
        }

        .theme-card-img-container {
            overflow: hidden;
            position: relative;
        }

        .theme-card-img-container::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(74, 93, 199, 0.1), rgba(103, 126, 234, 0.1));
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .theme-card:hover .theme-card-img-container::after {
            opacity: 1;
        }

        .theme-card-image {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .theme-card:hover .theme-card-image {
            transform: scale(1.08);
            filter: brightness(1.1) contrast(1.1);
        }

        .theme-card-body {
            padding: 2rem 1.5rem;
            text-align: center;
            position: relative;
            background: #ffffff;
        }

        .theme-card-icon {
            font-size: 2.5rem;
            background: var(--gradient-primary);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 1.2rem;
            display: block;
            transition: all 0.3s ease;
        }

        .theme-card:hover .theme-card-icon {
            transform: scale(1.1) rotate(5deg);
        }

        .theme-card-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .theme-card:hover .theme-card-title {
            color: var(--primary-accent);
            transform: translateY(-2px);
        }

        .theme-card-title::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--gradient-primary);
            border-radius: 2px;
            transition: width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        .theme-card:hover .theme-card-title::after {
            width: 100%;
        }

        /* Staggered Animation */
        .theme-card {
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 0.6s ease forwards;
        }

        .theme-card:nth-child(1) { animation-delay: 0.1s; }
        .theme-card:nth-child(2) { animation-delay: 0.2s; }
        .theme-card:nth-child(3) { animation-delay: 0.3s; }
        .theme-card:nth-child(4) { animation-delay: 0.4s; }
        .theme-card:nth-child(5) { animation-delay: 0.5s; }
        .theme-card:nth-child(6) { animation-delay: 0.6s; }
        .theme-card:nth-child(7) { animation-delay: 0.7s; }
        .theme-card:nth-child(8) { animation-delay: 0.8s; }
        .theme-card:nth-child(9) { animation-delay: 0.9s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }



        /* Enhanced Icons for Each Card */
        .port-automation .theme-card-icon::before {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .manufacturing .theme-card-icon::before {
            background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .materials .theme-card-icon::before {
            background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Floating Elements */
        .floating-elements {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            overflow: hidden;
        }

        .floating-element {
            position: absolute;
            background: rgba(74, 93, 199, 0.1);
            border-radius: 50%;
            animation: float 15s infinite linear;
        }

        @keyframes float {
            0% {
                transform: translateY(100vh) rotate(0deg);
                opacity: 0;
            }
            10% {
                opacity: 1;
            }
            90% {
                opacity: 1;
            }
            100% {
                transform: translateY(-100px) rotate(360deg);
                opacity: 0;
            }
        }
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    background-color: #ffffff;
    color: #334155;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    letter-spacing: -0.025em;
}

.hero-bottom {
    /* background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-indigo) 50%, var(--light-navy) 100%) !important; */
        background: linear-gradient(135deg, var(--primary-navy) 50%, var(--brand-dark1) 50%) !important;

}
.hero-section{
        background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-indigo) 100%) !important;


}
.navbar {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-indigo) 100%) !important;
    box-shadow: 0 4px 20px rgba(30, 41, 59, 0.15);
    backdrop-filter: blur(10px);
}

.navbar::before{
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    color: white;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.3rem;
    color: white !important;
    letter-spacing: -0.025em;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.75rem 1rem !important;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-blue) !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-blue);
    transition: width 0.3s ease;
}

.navbar-nav .nav-link:hover::after {
    width: 80%;
}


.hero-section1 {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--brand-dark1) 100%) !important;
    color: white;
    padding: 120px 0;
    text-align: center;
}



.hero-section1::before{
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}


.hero-section2 {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--brand-dark1) 100%);
    color: white;
    /* padding: 120px 0; */
    padding: 10px 0;
    text-align: center;
}



.hero-section2::before{
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

.hero-title {
    font-size: 3.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    letter-spacing: -0.025em;
    position: relative;
}

.hero-tagline {
    font-size: 1.6rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    position: relative;
}


.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-navy));
    border-radius: 2px;
    margin-bottom: 10px;
}

.card {
    border: none;
    box-shadow: 0 8px 30px rgba(30, 41, 59, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
    background: white;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-navy));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(30, 41, 59, 0.15);
}

.card:hover::before {
    opacity: 1;
}

.card-header {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 100%);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
}

.card-body {
    padding: 2rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--light-navy) 100%);
    border: none;
    font-weight: 600;
    padding: 14px 32px;
    transition: all 0.3s ease;
    border-radius: 50px;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn-primary::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-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--light-navy) 0%, var(--accent-blue) 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 41, 59, 0.3);
}

.btn-light {
    background: white !important;
    color: var(--primary-navy) !important;
    border: 2px solid white;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-light:hover {
    background: transparent !important;
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card:hover .feature-icon {
    color: var(--accent-blue);
    transform: scale(1.1);
}



.badge-custom {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-navy));
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    height: 100px;
    width: 100px;
    /* padding: 12px 20px; */
    border-radius: 15px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    cursor: pointer;
}

.badge-custom:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
}

.judging-criteria .progress {
    height: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    background: #e2e8f0;
}

.progress-bar {
    background: linear-gradient(90deg, var(--accent-blue), var(--primary-navy));
    border-radius: 5px;
}

footer {
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--deep-indigo) 100%);
    color: white;
    padding: 60px 0 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.logo-placeholder {
    width: 70px;
    height: 70px;
    background: white;
    border: 3px solid var(--accent-blue);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-navy);
    font-weight: 700;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.logo-placeholder:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Enhanced spacing and backgrounds */
section {
    position: relative;
}

section:nth-child(even) {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

/* Enhanced list styling */
ul li {
    margin-bottom: 12px;
    padding-left: 15px;
    position: relative;
}

ul li i.fas.fa-check {
    position: absolute;
    left: -10px;
    top: 3px;
    font-size: 1.1rem;
}

/* Image styling */
img {
    border-radius: 12px;
    /* transition: all 0.3s ease; */
}

img:hover {
    /* transform: scale(1.05); */
    /* box-shadow: 0 10px 25px rgba(0,0,0,0.15); */
}

/* Social links */
footer a {
    transition: all 0.3s ease;
}

footer a:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--accent-blue) !important;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-tagline {
        font-size: 1.3rem;
    }
    

    
    .card-body {
        padding: 1.5rem;
    }
}

/* Scroll animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    animation: fadeInUp 0.8s ease forwards;
}

/* Loading states */
.card {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.card:nth-child(1) { animation-delay: 0.1s; }
.card:nth-child(2) { animation-delay: 0.2s; }
.card:nth-child(3) { animation-delay: 0.3s; }
.card:nth-child(4) { animation-delay: 0.4s; }
.card:nth-child(5) { animation-delay: 0.5s; }

/* objective */
/* --- STYLISH & ANIMATED OBJECTIVES SECTION (LIGHT THEME) --- */

.objectives-section {
    padding: 2rem 0;
    /* UPDATED: Switched to a light, clean gradient */
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
    position: relative;
    overflow: hidden;
    /* UPDATED: Changed text color to be dark and readable */
    color: var(--brand-dark, #1a2456);
}

/* Animated Grid Background */
.grid-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* UPDATED: Made grid slightly more visible for a light background */
    background-image: 
        linear-gradient(rgba(47, 57, 133, 0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47, 57, 133, 0.07) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: grid-move 30s linear infinite;
    z-index: 1;
}

@keyframes grid-move {
    from { background-position: 0 0; }
    to { background-position: 50px 50px; }
}

/* Glowing Image Container */
.objective-image-container {
    position: relative;
    transform: perspective(1000px);
    transition: transform 0.3s ease;
}

.objective-image-container:hover {
    transform: translateY(-10px) rotateX(5deg) scale(1.03);
}

/* The blue glow works perfectly on a light background */
.objective-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 1.5rem;
    background: radial-gradient(circle, rgba(108, 124, 230, 0.5) 0%, transparent 70%);
    filter: blur(40px);
    animation: pulse-glow 4s ease-in-out infinite alternate;
    z-index: -1;
}

@keyframes pulse-glow {
    from { opacity: 0.5; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1.05); }
}

.objective-image-container img {
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px rgba(60, 60, 100, 0.15); /* Soft shadow for light theme */
}

/* Animated List Styling */
.objective-list {
    font-size: 1.25rem;
    font-weight: 400;
}

.objective-list li {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    /* UPDATED: "Frosted glass" effect for a light background */
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.objective-list li:hover {
    transform: translateX(10px) scale(1.02);
    /* UPDATED: Becomes solid white on hover with a stronger shadow */
    background: rgba(255, 255, 255, 1);
    border-color: rgba(108, 124, 230, 0.5);
    box-shadow: 0 15px 30px rgba(60, 60, 100, 0.1);
}

/* The colorful icon provides a great accent */
.list-icon {
    font-size: 2rem;
    margin-right: 1.5rem;
    background: linear-gradient(135deg, #8A2BE2, #4d4ffa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    width: 40px;
    text-align: center;
}

/* Staggered Fade-in Animation (Unchanged) */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
}

.objective-list li:nth-child(1) { animation-delay: 0.2s; }
.objective-list li:nth-child(2) { animation-delay: 0.4s; }
.objective-list li:nth-child(3) { animation-delay: 0.6s; }
.objective-list li:nth-child(4) { animation-delay: 0.8s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* --- COMBINED "ABOUT & PARTNERS" SECTION STYLING --- */

/* The main card container */
.combined-card {
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(60, 60, 100, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden; /* This is crucial for the rounded corners on the footer */
    transition: all 0.4s ease;
}

.combined-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(60, 60, 100, 0.2);
}

/* Styling for the top "About" part */
.about-heading {
    color: var(--brand-dark, #1a2456);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.about-heading i { color: var(--accent-blue, #6c7ce6); }
.about-list i { color: #4d4ffa; margin-right: 0.75rem; }

.about-image {
    box-shadow: 0 15px 30px rgba(60, 60, 100, 0.1);
    transition: transform 0.4s ease;
}

.about-image:hover { transform: scale(1.05); }


#about-and-partners {
    background-image: url('assets/bg/abou.png') !important;
    background-repeat: no-repeat !important;
    background-size: cover !important;
    background-position: center center; /* Added for better centering */
}

/* --- ENHANCED STYLING FOR PARTNERS FOOTER --- */

.combined-card-footer {
    background-color: #111827; /* Dark fallback color */
    color: white;
    padding: 0; /* Padding will be on the inner container now */
    border-top: none;
    text-align: center;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Hide the aurora animation overflow */
}

/* Aurora Animated Background */
.aurora-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Place it behind the content */
    background: radial-gradient(ellipse at top, #1a2456, transparent),
                radial-gradient(ellipse at bottom, #2F3985, transparent);
    animation: aurora-flow 15s ease-in-out infinite alternate;
}

@keyframes aurora-flow {
    from { transform: translateY(0%) scale(1); }
    to { transform: translateY(-20%) scale(1.2); }
}

/* A new wrapper to ensure content stays on top of the background */
.partners-content {
    padding: 3rem;
    position: relative;
    z-index: 2;
}

.partners-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: white;
    position: relative;
}

.partners-heading::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #8A2BE2, #4d4ffa);
    border-radius: 2px;
}

/* Grid for the partner logos */
.partners-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem; /* Increased gap for a less crowded look */
}

.partner-logo {
    /* Set a consistent size for the logo containers */
    width: 150px;
    height: 120px;
    padding: 1rem;

    /* Styling */
    background: white;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 1rem;
    
    /* Flexbox to center the image inside */
    display: flex;
    justify-content: center;
    align-items: center;

    /* Animation & Transition */
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease-out forwards;
    

}
.partner-logo:hover{
    background-color: white;
}

/* Staggered animation delays for each logo */
.partners-grid .partner-logo:nth-child(1) { animation-delay: 0.1s; }
.partners-grid .partner-logo:nth-child(2) { animation-delay: 0.2s; }
.partners-grid .partner-logo:nth-child(3) { animation-delay: 0.3s; }
.partners-grid .partner-logo:nth-child(4) { animation-delay: 0.4s; }
.partners-grid .partner-logo:nth-child(5) { animation-delay: 0.5s; }

/* Styling for the image itself */
.partner-logo img {
    max-width: 100px;
    height: auto;
    object-fit: contain;
    /* Professional monochrome effect */
    /* filter: grayscale(100%) brightness(1.5) opacity(0.7); */
    transition: filter 0.4s ease;
}

/* --- THE HOVER EFFECT --- */
.partner-logo:hover {
    transform: translateY(-10px) scale(1.05);
    /* background: rgba(255, 255, 255, 0.08); */
    border-color: rgba(108, 124, 230, 0.5);
    /* The colored glow */
    box-shadow: 0 0 25px rgba(108, 124, 230, 0.5);
}

.partner-logo:hover img {
    /* Return to full color on hover */
    filter: grayscale(0%) brightness(1) opacity(1);

}

/* The fadeInUp animation keyframes */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
/* --- ANIMATED BACKGROUND FOR "ABOUT" SECTION CARD BODY --- */

/* First, prepare the card-body to contain the animated background */
.combined-card .card-body {
    position: relative; /* This is essential for positioning the background element */
    overflow: hidden;   /* This ensures the animation doesn't spill out */
    z-index: 1;         /* Keeps the card content (text, image) above the new background */
}

/* The pseudo-element that holds and animates the background pattern */
.combined-card .card-body::before {
    content: '';
    position: absolute;
    top: -50%; /* Start the pattern off-screen to allow for more animation room */
    left: -50%;
    width: 200%; /* Make it much larger than the card to prevent edges from showing during animation */
    height: 200%;
    z-index: -1; /* This is crucial: it places the background BEHIND the content */

    /* 
    A subtle, flowing contour line pattern using an SVG background.
    I've corrected the incomplete SVG and chose a more visible but still subtle color.
    */
    background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%23e2e8f0' stroke-width='1.5'%3E%3Cpath d='M0 50 C25 25, 75 75, 100 50'/%3E%3Cpath d='M-10 40 C15 15, 65 65, 90 40'/%3E%3Cpath d='M-20 30 C5 5, 55 55, 80 30'/%3E%3Cpath d='M-10 60 C15 35, 65 85, 90 60'/%3E%3Cpath d='M-20 70 C5 45, 55 95, 80 70'/%3E%3Cpath d='M-10 80 C15 55, 65 105, 90 80'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 200px; /* The size of each repeating pattern tile */
    opacity: 0.8; /* Make it slightly transparent so it's not distracting */

    /* The animation that makes the background slowly scroll */
    animation: scroll-background 60s linear infinite;
}

/* The animation keyframes that control the movement */
@keyframes scroll-background {
    from {
        transform: translate(0, 0);
    }
    to {
        transform: translate(200px, 200px); /* The background will scroll diagonally */
    }
}


/* --- ENHANCED "THEME & FOCUS AREAS" SECTION (CORRECTED) --- */

/* 1. Prepare the section to act as a container for the animated background */
#themes {
    position: relative; /* THIS IS ESSENTIAL for the background to be positioned correctly inside */
    background: linear-gradient(160deg, #f8fafc 0%, #eef2f7 100%);
    overflow: hidden; /* Hide anything that spills out */
}

/* 2. Style the content container to sit ON TOP of the background */
#themes .container {
    position: relative; /* Ensures this container and its content sit above the background */
    z-index: 1;         /* A z-index of 1 is higher than the background's 0 */
}

/* 3. The animated background pattern itself (with corrected syntax) */
.section-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    
    /* CORRECTED: A more reliable syntax for creating a dot pattern */
    background-image: radial-gradient(circle, rgba(47, 57, 133, 0.08) 1px, transparent 1.1px);
    
    background-size: 30px 30px; /* Spaced out the dots a bit more */
    z-index: 0; /* Places this background behind the content */
    
    /* Link to the animation keyframes below */
    animation: float-dots 40s linear infinite;
}

/* 4. The MISSING @keyframes rule that makes the animation work */
@keyframes float-dots {
    from {
        background-position: 0 0;
    }
    to {
        /* This creates a slow, diagonal drift */
        background-position: 100px 200px;
    }
}

/* --- The rest of your enhanced theme card styling remains unchanged --- */
.theme-card {
    border-radius: 1.5rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(60, 60, 100, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    transform-style: preserve-3d;
}

.theme-card:hover {
    transform: translateY(-15px) rotateX(10deg) rotateY(-5deg) scale(1.05);
    box-shadow: 0 30px 60px rgba(60, 60, 100, 0.2);
}


/* --- STYLISH & ANIMATED FOOTER SOCIAL ICONS --- */

.social-icon{
    color: white;
    text-decoration: none;
    margin: 0 0.5rem; /* Adds a little space between icons */
    display: inline-block; /* Required for transform to work properly */
    
    /* Smooth transition for the hover effect */
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.social-icon:hover {
    color: white;
    /* The icon will lift up and glow with your site's accent color */
    transform: translateY(-5px);
}
.social-icon i:hover {
    color: white;
    /* The icon will lift up and glow with your site's accent color */
    transform: translateY(-5px);
}
.social-icon svg:hover {
    color: white;
    /* The icon will lift up and glow with your site's accent color */
    transform: translateY(-5px);
}
.nav-title {
  font-family: 'Orbitron', sans-serif;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: white;
  /* background: linear-gradient(90deg, #FFD700, #FF8C00);  */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-subtitle {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-style: italic;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 1px;
}




/* hero section */

        .banner-container {
            width: 100%;
            /* max-width: 1400px; */
            position: relative;
            background-color: #263071 !important;
            background-image: url('https://www.transparenttextures.com/patterns/cubes.png') !important;
            color: white;
            /* padding: 20px; */
            overflow: hidden;
            /* border-radius: 10px; */
            /* box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3); */
        }

        /* Animated Background Elements */
        .banner-bg {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
            z-index: 1;
        }

        .light-bulb {
            position: absolute;
            color: rgba(255, 255, 255, 0.1);
            font-size: 50px;
            animation: float 20s infinite linear;
        }
        
        .light-bulb:nth-child(1) { top: 10%; left: 15%; animation-duration: 25s; }
        .light-bulb:nth-child(2) { top: 30%; left: 80%; animation-duration: 18s; }
        .light-bulb:nth-child(3) { top: 70%; left: 10%; animation-duration: 22s; }
        .light-bulb:nth-child(4) { top: 80%; left: 60%; animation-duration: 28s; }
        .light-bulb:nth-child(5) { top: 50%; left: 40%; animation-duration: 15s; }


        @keyframes float {
            0% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-20px) rotate(10deg); }
            100% { transform: translateY(0) rotate(0deg); }
        }

        .banner-content {
            position: relative;
            z-index: 2;
        }

        .header-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .header-logos img {
            /* object-fit: contain; */
            height: 110px;
            min-width: 100px;
            /* MIN-height: 50px; */
            border-radius: 0%;
            /* height: 80px; */
            margin-top: 10px;
            /* border: 1px solid #FFA500; */
            /* background-color: white; */
            /* min-width: 80px; */
        }

        .logos{
            height: 130px !important;
            min-width: 100px !important;

        }
        .main-content h1 {
            font-size: 3rem;
            color: #ffa500;
            /* color: white; */
            /* background-color: rgba(233, 231, 231, 0.208); */
            font-weight: bolder;
            margin: 0;
            letter-spacing: 2px;
        }

        .main-content p {
            font-size: 1.2rem;
            margin: 10px 0;
        }
        
        .main-content h2 {
            font-size: 3.5rem;
            font-weight: bold;
            margin: 20px 0;
        }

                @media (max-width: 768px) {
            .header-logos {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }
                .main-content h1 {
            font-size: 1.5rem;
            color: #ffa500;
            /* color: white; */
            /* background-color: rgba(233, 231, 231, 0.208); */
            font-weight: bolder;
            margin: 0;
            letter-spacing: 2px;
        }
                .main-content p {
            font-size: 1rem;
            margin: 10px 0;
        }
        
        .main-content h2 {
            font-size: 2.5rem;
            font-weight: bold;
            margin: 20px 0;
        }
        }

        .main-content {
            text-align: center;
            animation: fadeIn 1s ease-in-out;
        }
        .register-btn-main {
            display: inline-block;
            background-color: #ffa500;
            color: #263071;
            padding: 15px 30px;
            font-size: 1.5rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 20px;
            transition: transform 0.3s, box-shadow 0.3s;
            animation: pulse 2s infinite;
        }

        .register-btn-main:hover {
            transform: scale(1.05);
            box-shadow: 0 0 20px #ffa500;
        }

        .register-now-cta {
            position: absolute;
            left: 95px;
            top: 85%;
            transform: translateY(-50%);
            text-align: center;
            animation: slideInLeft 1s;
        }

        .register-btn {
            background-color: #333;
            color: white;
            padding: 15px;
            font-size: 1rem;
            border-radius: 10px;
            letter-spacing: 5px;
        }



        .now-btn {
            background-color: #ffa500;
            color: white;
            padding: 15px;
            font-size: 1.5rem;
            font-weight: bold;
            transform: rotate(-10deg);
            margin-top: 10px;
            border-radius: 10px;
        }

        .pointing-hand {
            font-size: 3rem;
            margin-top: 10px;
            animation: pointRight 1s infinite alternate;
            position: absolute;
            bottom: 0;
            left: 200px;
         
        }

        .footer-hashtags {
            display: flex;
            justify-content: space-around;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .footer-hashtags p {
            color: #ffa500;
            font-weight: bold;
        }

        /* Animations */
        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

        @keyframes slideInLeft {
            from { transform: translateX(-100px); opacity: 0; }
            to { transform: translateX(0); opacity: 1; }
        }

        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); }
            100% { transform: scale(1); }
        }
        
        @keyframes pointRight {
            from { transform: translateX(0); }
            to { transform: translateX(10px); }
        }

        @media (max-width: 768px) {
                    .register-btn-main {
            padding: 15px 30px;
            font-size: 1rem;
            font-weight: bold;
            border-radius: 50px;
            text-decoration: none;
            margin-top: 20px;
        }
        }

/* theame and focus area */


        :root {
    --primary-color: #263071;
    --primary-gradient: linear-gradient(135deg, #263071 0%, #3a4594 100%);
    --accent-color: #E5A13B;
    --accent-hover-color: #c88c2e;
    --text-primary: #212529;
    --text-secondary: #5a6a7a;
    --card-bg: #ffffff;
    --section-bg: #f7f8fc;
    --border-color: #e9ecef;
    --border-radius: 12px;
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.07);
    --shadow-heavy: 0 8px 25px rgba(0, 0, 0, 0.1);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Open Sans', sans-serif;
        /* Responsive Font Sizes */
    --fs-h2: clamp(1.75rem, 1.25rem + 2vw, 2.5rem);
    --fs-h4: clamp(1.1rem, 0.9rem + 0.8vw, 1.25rem);
    --fs-h5: clamp(1rem, 0.9rem + 0.4vw, 1.1rem);
    --fs-p: clamp(0.9rem, 0.85rem + 0.25vw, 1rem);
    --fs-button: clamp(0.9rem, 0.8rem + 0.4vw, 1rem);
}

/* styles.css */

/* --- SECTION STYLING --- */
#focus-areas {
    overflow: hidden;
    background-color: var(--section-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}



/* --- ACCORDION STYLING --- */
.accordion-item {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius) !important;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    overflow: hidden;
}

.accordion-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
    border-color: var(--accent-color);
}

.accordion-button {
    padding: 1.5rem 2rem;
    font-family: var(--font-heading);
    font-size: var(--fs-h5);
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--card-bg);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background-image: var(--primary-gradient);
    color: white;
    box-shadow: 0 4px 15px rgba(38, 48, 113, 0.3);
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(38, 48, 113, 0.25);
}

.accordion-button::after {
    content: '\f078';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
    flex-shrink: 1;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.category-icon {
    width: 50px;
    height: 50px;
    background: rgba(38, 48, 113, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-right: 1.5rem;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) .category-icon {
    background: white;
    color: var(--primary-color);
}

.accordion-body {
    padding: 1rem 2rem 2rem 2rem;
    background: #fdfdff;
}

/* --- PROBLEM ITEM STYLING --- */
.problem-item {
    display: flex;
    flex-wrap: wrap; /* Allows wrapping on smaller screens */
    gap: 0.5rem; /* Space between items */
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border-radius: 10px;
    margin-bottom: 1rem;
    padding: 1.5rem;
    border: 1px solid #eef2f7;
    transition: all 0.3s ease;
}

.problem-item:last-child {
    margin-bottom: 0;
}

.problem-item:hover {
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.problem-item-title h5 {
    margin: 0;
    font-weight: 600;
    font-size: var(--fs-h5);
    color: var(--text-primary);
}

.view-details-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 1.5rem; /* Consistent padding */
    min-width: 150px; /* Ensures all buttons have at least this width */
    text-align: center;
    font-weight: 600;
    font-size: var(--fs-button); /* Responsive font size */
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-details-btn:hover {
    background: var(--accent-hover-color);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(229, 161, 59, 0.4);
}

.problem-details-content {
    display: none;
}

/* --- MODAL STYLING --- */
.modal-content {
    border-radius: var(--border-radius);
    border: none;
    box-shadow: var(--shadow-heavy);
}

.modal-header {
    background: var(--primary-color);
    color: white;
    padding: 1.5rem 2rem;
    border-bottom: none;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-header .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

.modal-body {
    padding: 0;
    background-color: var(--section-bg);
}

.modal-body .details-container {
    padding: 2rem;
}

.modal-body .detail-section {
    background-color: #fff;
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.modal-body .detail-section h4 {
    text-align: justify;
    font-family: var(--font-heading);
    font-size: var(--fs-h4); /* Responsive heading */
    font-weight: 600;
    color: var(--primary-color);
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin-bottom: 1rem;
}

.modal-body .detail-section p {
    text-align: justify;
    line-height: 1.7;
    color: var(--text-secondary);
    font-size: var(--fs-p); /* Responsive paragraph */
}

.modal-body .detail-section p:last-child {
    margin-bottom: 0;
}

.modal-body .anchor {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    background-color: rgba(38, 48, 113, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    display: inline-block;
}

/* --- RESPONSIVE ADJUSTMENTS --- */
@media (max-width: 768px) {


    .problem-item-title {
        margin-bottom: 1rem;
        text-align: start;
    }

    .view-details-btn {
        width: 100%; /* Make button full-width on mobile */
    }

    .accordion-button {
        padding: 1.25rem 1.5rem;
    }
    .accordion-body{
        padding: 0.5rem 0.5rem;
    }
}

   

/* schedule and structure */
        /* CSS Variables for easy theme management */


        /* --- Custom Styles for Timeline --- */

        /* Header Gradient */
        .gradient-bg {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .timeline-container {
            position: relative;
        }

        /* The vertical line */
        .timeline-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 2.5rem; /* Aligns with the center of the icon */
            height: 100%;
            width: 4px;
            background: linear-gradient(180deg, #5a67d8 0%, #805ad5 50%, #38b2ac 100%);
            border-radius: 2px;
            transform: translateX(-50%);
        }

        .timeline-item {
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s ease-out forwards;
        }
        
        /* Staggered animation delays */
        .timeline-item:nth-child(1) { animation-delay: 0.1s; }
        .timeline-item:nth-child(2) { animation-delay: 0.2s; }
        .timeline-item:nth-child(3) { animation-delay: 0.3s; }
        .timeline-item:nth-child(4) { animation-delay: 0.4s; }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .timeline-icon {
            width: 5rem;
            height: 5rem;
            z-index: 1; /* Sits on top of the timeline line */
        }

        .pulse-dot {
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }
        
        .card-hover {
            transition: all 0.3s ease;
        }
        
        .card-hover:hover {
            transform: translateY(-5px);
            box-shadow: 0 1rem 2rem rgba(0,0,0,0.1) !important;
        }
 

        /* funding */

        
        .funding-card {
            opacity: 0;
            transform: translateY(30px);
            animation: slideUp 0.8s ease-out forwards;
            transition: all 0.3s ease;
        }
        
        .funding-card:nth-child(1) { animation-delay: 0.1s; }
        .funding-card:nth-child(2) { animation-delay: 0.3s; }
        .funding-card:nth-child(3) { animation-delay: 0.5s; }
        
        .funding-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        }
        
        .theme-card {
            opacity: 0;
            transform: translateY(20px);
            animation: slideUp 0.6s ease-out forwards;
            transition: all 0.3s ease;
        }
        
        .theme-card:nth-child(1) { animation-delay: 0.1s; }
        .theme-card:nth-child(2) { animation-delay: 0.2s; }
        .theme-card:nth-child(3) { animation-delay: 0.3s; }
        .theme-card:nth-child(4) { animation-delay: 0.4s; }
        .theme-card:nth-child(5) { animation-delay: 0.5s; }
        
        .theme-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        }
        
        @keyframes slideUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .gradient-bg {
            background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 50%, #06b6d4 100%);
        }
        
        .stage-number {
            background: linear-gradient(135deg, #3b82f6, #1d4ed8);
        }
        
        .progress-line {
            background: linear-gradient(90deg, #3b82f6, #06b6d4, #10b981);
            height: 8px;
            border-radius: 50px;
        }
        
        .icon-bounce {
            animation: bounce 2s infinite;
        }
        
        @keyframes bounce {
            0%, 20%, 53%, 80%, 100% {
                transform: translate3d(0,0,0);
            }
            40%, 43% {
                transform: translate3d(0,-10px,0);
            }
            70% {
                transform: translate3d(0,-5px,0);
            }
            90% {
                transform: translate3d(0,-2px,0);
            }
        }
        
        .bg-blue-gradient {
            /* background: linear-gradient(135deg, #3b82f6, #1d4ed8); */
            background-color: #1d4ed8;
        }
        
        .bg-cyan-gradient {
            /* background: linear-gradient(135deg, #06b6d4, #0891b2); */
            background-color: #0891b2;
        }
        
        .bg-green-gradient {
            /* background: linear-gradient(135deg, #10b981, #059669); */
            background-color: #059669;
        }
        
        .bg-purple-gradient {
            background: linear-gradient(135deg, #8b5cf6, #7c3aed);
        }
        
        .bg-orange-gradient {
            background: linear-gradient(135deg, #f59e0b, #d97706);
        }
        
        .bg-indigo-gradient {
            background: linear-gradient(135deg, #6366f1, #4f46e5);
        }
        
        .bg-teal-gradient {
            background: linear-gradient(135deg, #14b8a6, #0d9488);
        }
        
        .bg-pink-gradient {
            background: linear-gradient(135deg, #ec4899, #db2777);
        }
        
        .bg-red-gradient {
            background: linear-gradient(135deg, #ef4444, #dc2626);
        }
        
        .bg-emerald-gradient {
            background: linear-gradient(135deg, #10b981, #059669);
        }
        
        .bg-dark-gradient {
            background: linear-gradient(135deg, #1e293b 0%, #1e40af 50%, #312e81 100%);
        }
        
        .text-blue-100 {
            color: #dbeafe;
        }
        
        .text-cyan-100 {
            color: #cffafe;
        }
        
        .text-green-100 {
            color: #dcfce7;
        }
        
        .text-purple-100 {
            color: #f3e8ff;
        }
        
        .text-orange-100 {
            color: #fed7aa;
        }
        
        .border-opacity-20 {
            border-color: rgba(255, 255, 255, 0.2) !important;
        }
        
        .bg-opacity-10 {
            background-color: rgba(255, 255, 255, 0.1) !important;
        }
        
        .bg-opacity-20 {
            background-color: rgba(255, 255, 255, 0.2) !important;
        }
        
        .backdrop-blur {
            backdrop-filter: blur(10px);
        }
        
        .rounded-2xl {
            border-radius: 1rem;
        }
        
        .rounded-xl {
            border-radius: 0.75rem;
        }
        
        .stage-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 1.25rem;
        }
        
        .icon-circle {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .icon-circle-lg {
            width: 64px;
            height: 64px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .progress-dot {
            width: 24px;
            height: 24px;
            border-radius: 50%;
            border: 4px solid white;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        }
        
        .hover-scale:hover {
            transform: scale(1.05);
        }
        
        .btn-gradient {
            background: linear-gradient(135deg, #3b82f6, #06b6d4);
            border: none;
            color: white;
            transition: all 0.3s ease;
        }
        
        .btn-gradient:hover {
            background: linear-gradient(135deg, #2563eb, #0891b2);
            color: white;
            transform: scale(1.05);
        }
   