
        /* Modern Color Palette */
        :root {
            --primary: #6366f1;
            --primary-dark: #4f46e5;
            --accent: #10b981;
            --dark: #0f172a;
            --light: #f8fafc;
            --text: #ffffff;
            --text-light: #e2e8f0;
        }



       .hero {
    min-height: 50vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center; /* Add this to center horizontally */
    position: relative;
    overflow: hidden;
    padding: 0 8%;
    background: linear-gradient(135deg, var(--dark), #1e293b);
    isolation: isolate;
    text-align: center; /* Center text for all child elements */
        margin-top: 4rem;
}

.hero-content {
    max-width: 2000px;
    width: 100%; /* Ensure it takes full width */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex; /* Change from grid to flex for better centering */
    flex-direction: column; /* Stack children vertically */
    align-items: center; /* Center children horizontally */
    justify-content: center; /* Center children vertically */
    gap: 2rem; /* Adjust gap as needed */
    padding: 2rem 0; /* Add some vertical padding */
}

.hero-text {
    animation: fadeInUp 1s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center; /* Center text and other elements */
    max-width: 800px; /* Optional: Limit width for better readability */
    width: 100%;
}

.hero-text h1 {
    font-size: clamp(2rem, 2vw, 2.5rem); /* Adjusted for better responsive scaling */
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    background: linear-gradient(90deg, var(--text), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    text-align: center; /* Ensure text is centered */
    width: 100%;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: var(--text-light);
    max-width: 90%;
    animation: fadeInUp 1s ease-out 0.2s both;
    text-align: center; /* Center paragraph text */
}

        /* 3D Floating Shapes */
        .floating-shape {
            position: absolute;
            border-radius: 12px;
            background: rgba(99, 102, 241, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(99, 102, 241, 0.2);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            animation: float-3d 15s ease-in-out infinite;
            z-index: 1;
            transform-style: preserve-3d;
            transform: perspective(500px);
        }

        /* Particle Network */
        .particle-network {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 1;
        }



        /* CTA Buttons */
        .cta-buttons {
            display: flex;
            gap: 1rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            padding: 1rem 2rem;
            border-radius: 8px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-primary {
            background: var(--primary);
            color: white;
            box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(99, 102, 241, 0.4);
        }

        .btn-primary::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(45deg, var(--primary), var(--accent));
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .btn-primary:hover::before {
            opacity: 1;
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border: 2px solid rgba(255,255,255,0.2);
            backdrop-filter: blur(5px);
        }

        .btn-secondary:hover {
            background: rgba(255,255,255,0.1);
            border-color: rgba(255,255,255,0.3);
            transform: translateY(-3px);
        }

        /* Stats */
        .stats {
            display: flex;
            gap: 2rem;
            margin-top: 3rem;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .stat-item {
            display: flex;
            flex-direction: column;
        }

        .stat-number {
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--text-light);
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        /* Animations */
        @keyframes float-3d {
            0%, 100% {
                transform: 
                    perspective(500px)
                    translate3d(0, 0, 0)
                    rotateX(0deg)
                    rotateY(0deg);
            }
            25% {
                transform: 
                    perspective(500px)
                    translate3d(20px, -20px, 20px)
                    rotateX(5deg)
                    rotateY(5deg);
            }
            50% {
                transform: 
                    perspective(500px)
                    translate3d(-10px, 20px, -10px)
                    rotateX(-5deg)
                    rotateY(-5deg);
            }
            75% {
                transform: 
                    perspective(500px)
                    translate3d(15px, 10px, 15px)
                    rotateX(3deg)
                    rotateY(3deg);
            }
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .hero-content {
                grid-template-columns: 1fr;
                text-align: center;
            }

            .hero-text p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }

            .cta-buttons, .stats {
                justify-content: center;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 4rem 5%;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                text-align: center;
            }

            .stats {
                gap: 1.5rem;
            }
        }
        
        
        
  
      /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--primary);
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 999;
            border: none;
            outline: none;
            cursor: pointer;
            font-size: 20px;
        }

        .back-to-top.visible {
            opacity: 1;
            visibility: visible;
        }

        .back-to-top:hover,
        .back-to-top:focus {
            background-color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
        }

        .back-to-top:active {
            transform: translateY(-1px);
        }

        /* Font Awesome icon styling (if you're not using the CDN) */
        .back-to-top i {
            line-height: 1;
        }
        
        
   /* Breadcrumb Navigation */
        .breadcrumb {
            background-color: #F0F0F0;
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-gray);
        }

        .breadcrumb-list {
            display: flex;
            flex-wrap: wrap;
            list-style: none;
            padding: 0;
            margin: 0;
            font-size: 0.9rem;
            font-weight: 500;
        }

        .breadcrumb-item {
            display: flex;
            align-items: center;
            margin-right: 0.5rem;
        }

        .breadcrumb-item:not(:last-child)::after {
            content: '/';
            margin-left: 0.5rem;
            color: var(--gray);
        }

        .breadcrumb-link {
            color: var(--primary);
            transition: var(--transition);
            text-decoration: none;
        }

        .breadcrumb-link:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        .breadcrumb-current {
            color: var(--gray);
            pointer-events: none;
        }
        
        
        
        
        
        
      .cta-section {
    background-color: #2c3e50; /* Dark blue background */
    color: #ffffff;
    padding: 4rem 0;
    text-align: center;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

#cta-heading {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cta-button-container {
    margin-top: 2rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #3498db;
    color: white;
    border: 2px solid #3498db;
}

.btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    #cta-heading {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .cta-section {
        padding: 3rem 0;
    }
    
    #cta-heading {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 0.7rem 1.5rem;
    }
}  
        
        


        /* Team Section */
        .team-section {
            padding: 5rem 0;
            background-color: #f8fafc;
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2rem;
            color: var(--dark);
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }

        .section-header h2:after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--accent);
            border-radius: 2px;
        }

        .section-header p {
            color: #64748b;
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.1rem;
        }

        /* Team Grid */
        .team-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 2rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .team-member {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
            transition: var(--transition);
            position: relative;
        }

        .team-member:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .team-member-img {
            position: relative;
            overflow: hidden;
            height: 250px;
            width: 260px;
        }

        .team-member-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .team-member:hover .team-member-img img {
            transform: scale(1.05);
        }

        .team-member-info {
            padding: 1.5rem;
            text-align: center;
        }

        .team-member-info h3 {
            font-size: 1.4rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .team-member-info p {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .team-member-bio {
            color: #64748b;
            font-size: 0.95rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 0.75rem;
        }

        .team-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #f1f5f9;
            color: var(--primary);
            transition: var(--transition);
        }

        .team-social a:hover {
            background: var(--primary);
            color: white;
            transform: translateY(-2px);
        }

        /* Leadership Section */
        .leadership-section {
            padding: 5rem 0;
            background: white;
        }

        .leadership-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 3rem;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .leader-card {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .leader-img {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            overflow: hidden;
            margin-bottom: 1.5rem;
            border: 5px solid #f1f5f9;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

        .leader-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .leader-info h3 {
            font-size: 1.6rem;
            color: var(--dark);
            margin-bottom: 0.5rem;
        }

        .leader-info p.position {
            color: var(--primary);
            font-weight: 600;
            margin-bottom: 1rem;
        }

        .leader-info p.bio {
            color: #64748b;
            line-height: 1.6;
            margin-bottom: 1.5rem;
        }

        /* Stats Section */
        .stats-section {
            padding: 4rem 0;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: white;
        }

        .stats-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 2rem;
            text-align: center;
        }

        .stat-item {
            padding: 1.5rem;
        }

        .stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: white;
        }

        .stat-label {
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .team-grid {
                grid-template-columns: repeat(auto-fill, minmax(200px, 4fr));
            }
        }

        @media (max-width: 768px) {
            .team-hero {
                min-height: 50vh;
                padding: 0 1rem;
            }
            
            .team-hero h1 {
                font-size: 2.5rem;
            }
            
            .team-hero p {
                font-size: 1.1rem;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
            
            .leader-info h3 {
                font-size: 1.4rem;
            }
        }

        @media (max-width: 480px) {
            .team-grid {
                grid-template-columns: 1fr;
            }
            
            .team-member-img {
                height: 280px;
            }
            
            .stat-number {
                font-size: 2.5rem;
            }
        }
