/* Global Styles */
        @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
        :root {
            --navy-blue: #0d1b2a;
            --sky-blue: #1b9aaa;
            --accent-blue: #2a6f97;
            --white: #ffffff;
            --light-gray: #e0e1dd;
            --dark-gray: #415a77;

        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Poppins', sans-serif;
        }

        body {
            line-height: 1.6;
            color: var(--white);
            overflow-x: hidden;
        }

        /* Top Bar */
        .top-bar {
            background-color: var(--navy-blue);
            padding: 8px 0;
            font-size: 14px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        .top-bar-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .top-bar-left, .top-bar-right {
            display: flex;
            align-items: center;
            gap: 15px;
        }

        .top-bar i {
            margin-right: 8px;
            color: var(--sky-blue);
        }

        /* Navbar */
        .navbar {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 2.4em;
            z-index: 1000;
        }

        .navbar-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 15px 20px;
        }

        .logo {
            display: flex;
            align-items: center;
            text-decoration: none;
            color: var(--navy-blue);
            font-weight: 700;
            font-size: 24px;
        }

        .logo-icon {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 5px;
            color: var(--white);
        }
       
        .logo-img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

        .nav-menu {
            display: flex;
            list-style: none;
        }

        .nav-item {
            margin-left: 30px;
            position: relative;
        }

        .nav-link {
            text-decoration: none;
            color: var(--navy-blue);
            font-weight: 500;
            font-size: 16px;
            transition: color 0.3s;
            position: relative;
        }

        .nav-link:hover {
            color: var(--sky-blue);
        }

        .nav-link.active {
            color: var(--sky-blue);
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 2px;
            background-color: var(--sky-blue);
        }

        .dropdown {
            position: relative;
        }

        .dropdown-content {
            position: absolute;
            background-color: var(--white);
            min-width: 180px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            border-radius: 4px;
            z-index: 1;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s ease;
            top: 100%;
            left: 0;
        }

        .dropdown:hover .dropdown-content {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }

        .dropdown-content a {
            color: var(--navy-blue);
            padding: 12px 16px;
            text-decoration: none;
            display: block;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: background-color 0.3s;
        }

        .dropdown-content a:hover {
            background-color: var(--light-gray);
            color: var(--sky-blue);
        }

        .hamburger {
            display: none;
            cursor: pointer;
            font-size: 24px;
            color: var(--navy-blue);
        }

        /* Hero Section */
        .hero {
            height: 85vh;
            background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.8)), url('assets/hero6.jpg') no-repeat center center/cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 0 20px;
        }

        .hero-content {
          max-width: 800px;
          opacity: 0;                 /* Start invisible */
          transform: translateX(-60px); /* Start slightly to the left */
          animation: slideIn 1s ease forwards; /* Play animation on load */
        }
        
        @keyframes slideIn {
          0% {
            opacity: 0;
            transform: translateX(-360px);
          }
          100% {
            opacity: 1;
            transform: translateX(0);
          }
        }

        .hero-subtitle {
            text-transform: uppercase;
            letter-spacing: 2px;
            font-size: 14px;
            margin-bottom: 15px;
            color: var(--light-gray);
        }

        .hero-title {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background-color: var(--sky-blue);
            color: var(--white);
            padding: 12px 30px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s, transform 0.3s;
            border: none;
            cursor: pointer;
        }

        .cta-button:hover {
            background-color: var(--accent-blue);
            transform: translateY(-3px);
        }

        /* Responsive Styles */
        @media screen and (max-width: 992px) {
            .nav-menu {
                position: fixed;
                top: 23vh;
                right: -100%;
                z-index: 2000;
                background-color: var(--white);
                width: 280px;
                height: 100vh;
                flex-direction: column;
                padding-top: 80px;
                transition: right 0.5s ease;
                box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            }

            .nav-menu.active {
                right: 0;
            }

            .nav-item {
                margin: 15px 0;
                margin-left: 0;
                padding: 0 20px;
            }

            .hamburger {
                display: block;
            }

            .dropdown-content {
                position: static;
                opacity: 1;
                visibility: visible;
                transform: none;
                box-shadow: none;
                background-color: transparent;
                padding-left: 20px;
            }

            .dropdown-content a {
                padding: 8px 0;
                border-bottom: none;
            }

            .hero-title {
                font-size: 36px;
            }
        }

        @media screen and (max-width: 768px) {
            .top-bar-container {
                flex-direction: column;
                text-align: center;
            }

            .top-bar-left, .top-bar-right {
                justify-content: center;
                margin: 5px 0;
            }

            .hero-title {
                font-size: 32px;
            }
        }

        @media screen and (max-width: 480px) {
            .hero-title {
                font-size: 28px;
            }

            .logo {
                font-size: 20px;
            }

            .logo-icon {
                width: 35px;
                height: 35px;
            }
        }

        /* About Section */
                .about-section {
            padding: 100px 5%;
            background-color: var(--light-gray);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .about-container {
            max-width: 1200px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .image-column {
            position: relative;
        }

        .image-collage {
            position: relative;
            height: 500px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(13, 27, 42, 0.1);
        }

        .main-image {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 12px;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(13, 27, 42, 0.2) 0%, rgba(27, 154, 170, 0.2) 100%);
            border-radius: 12px;
        }

        .floating-image {
            position: absolute;
            border-radius: 8px;
            box-shadow: 0 10px 20px rgba(13, 27, 42, 0.15);
            overflow: hidden;
            border: 3px solid var(--white);
        }

        .floating-image-1 {
            width: 180px;
            height: 120px;
            top: -20px;
            right: -20px;
            z-index: 2;
        }

        .floating-image-2 {
            width: 150px;
            height: 100px;
            bottom: 40px;
            left: -30px;
            z-index: 2;
        }

        .floating-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .text-column {
            padding: 20px 0;
        }

        .small-headline {
            font-size: 14px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--navy-blue);
          
            margin-bottom: 15px;
            display: inline-block;
            position: relative;
        }

        .small-headline::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: var(--sky-blue);
        }

        .main-headline {
            font-size: 36px;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 25px;
            color: var(--navy-blue);
        }

        .description {
            margin-bottom: 30px;
            color: var(--dark-gray);
            
        }

        .mission-vision {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-bottom: 30px;
        }

        .mission, .vision {
            background-color: var(--white);
            padding: 25px;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(13, 27, 42, 0.05);
            border-left: 4px solid var(--accent-blue);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            color: var(--accent-blue);
        }

        .mission:hover, .vision:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(13, 27, 42, 0.1);
        }

        .mission h3, .vision h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--navy-blue);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .mission h3 i, .vision h3 i {
            color: var(--sky-blue);
        }

        .features-list {
            margin-bottom: 40px;
        }

        .features-list ul {
            list-style: none;
            display: grid;
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .features-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 15px;
            background-color: var(--white);
            color: var(--dark-gray);
            border-radius: 6px;
            transition: all 0.3s ease;
        }

        .features-list li:hover {
            background-color: rgba(27, 154, 170, 0.05);
            transform: translateX(5px);
        }

        .features-list i {
            color: var(--sky-blue);
            font-size: 18px;
            margin-top: 3px;
            flex-shrink: 0;
            background-color: rgba(27, 154, 170, 0.1);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .cta-button {
            display: inline-block;
            padding: 14px 32px;
            background-color: var(--sky-blue);
            color: var(--white);
            text-decoration: none;
            font-weight: 600;
            border-radius: 50px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(27, 154, 170, 0.3);
            position: relative;
            overflow: hidden;
        }

        .cta-button::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;
        }

        .cta-button:hover {
            background-color: var(--accent-blue);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 111, 151, 0.4);
        }

        .cta-button:hover::before {
            left: 100%;
        }

        /* Animation classes */
        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }

        .fade-in-left.active, .fade-in-right.active {
            opacity: 1;
            transform: translateX(0);
        }

        /* Responsive styles */
        @media (max-width: 992px) {
            .about-container {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .image-column {
                order: 1;
            }

            .text-column {
                order: 2;
            }

            .main-headline {
                font-size: 32px;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 80px 5%;
            }

            .mission-vision {
                grid-template-columns: 1fr;
            }

            .main-headline {
                font-size: 28px;
            }

            .image-collage {
                height: 400px;
            }

            .floating-image-1, .floating-image-2 {
                display: none;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                padding: 60px 5%;
            }

            .main-headline {
                font-size: 24px;
            }

            .image-collage {
                height: 300px;
            }
        }
 /* Focus Section Styles */
        .focus-section {
            width: 100%;
            min-height: 100vh;
            background-image: 
                linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%230d1b2a"/><circle cx="200" cy="150" r="80" fill="%231b9aaa" opacity="0.2"/><circle cx="1000" cy="650" r="120" fill="%232a6f97" opacity="0.2"/><path d="M300,400 Q600,200 900,400 T1500,400" stroke="%23415a77" stroke-width="2" fill="none" opacity="0.3"/><path d="M100,600 Q400,400 700,600 T1300,600" stroke="%231b9aaa" stroke-width="2" fill="none" opacity="0.3"/><rect x="400" y="200" width="400" height="300" rx="20" fill="%23e0e1dd" opacity="0.1"/></svg>');
            background-size: cover;
            background-position: center;
            padding: 80px 20px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
            max-width: 800px;
        }

        .section-header h2 {
            color: var(--white);
            font-size: 2.5rem;
            margin-bottom: 15px;
            font-weight: 700;
        }

        .section-header p {
            color: var(--light-gray);
            font-size: 1.2rem;
            font-weight: 300;
        }

        .focus-cards {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            max-width: 1200px;
            width: 100%;
        }

        .focus-card {
            background-color: var(--white);
            border-radius: 12px;
            padding: 40px 25px;
            flex: 1;
            min-width: 250px;
            max-width: 280px;
            text-align: center;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .focus-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
            border-color: var(--accent-blue);
        }

        .card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            background-color: rgba(27, 154, 170, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .card-icon svg {
            width: 35px;
            height: 35px;
            fill: var(--sky-blue);
        }

        .focus-card h3 {
            color: var(--navy-blue);
            font-size: 1.5rem;
            margin-bottom: 20px;
            font-weight: 700;
        }

        .focus-card p {
            color: var(--dark-gray);
            font-size: 1rem;
            font-weight: 400;
        }

        /* Responsive Styles */
        @media (max-width: 768px) {
            .focus-cards {
                flex-direction: column;
                align-items: center;
            }
            
            .focus-card {
                max-width: 100%;
                width: 100%;
            }
            
            .section-header h2 {
                font-size: 2rem;
            }
        }

        /*Projects Section Styles*/
        /* Project Overview Section */
         .container-projects {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .project-overview-section {
            padding: 80px 0;
            background-color: #ffffff;
        }

        .section-heading {
            text-align: center;
            margin-bottom: 60px;

        }

        .section-heading h2 {
            color: #1b3f64;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .section-heading .underline {
            height: 3px;
            width: 80px;
            background-color: #2a6f97;
            margin: 0 auto;
        }

        /* Project Grid */
        .project-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 50px;
        }

        /* Project Card */
        .project-card {
            background: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .project-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
        }

        .project-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .project-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
            border-radius: 12px 12px 0 0;
        }

        .project-card:hover .project-image img {
            transform: scale(1.05);
        }

        .project-content {
            padding: 25px;
        }

        .project-title {
            color: #0d1b2a;
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 15px;
        }

        .project-description {
            color: #415a77;
            margin-bottom: 20px;
            line-height: 1.7;
        }

        /* Status Badge */
        .project-status-badge {
            display: inline-block;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 0.5px;
        }

        .badge-completed {
            background-color: #e0e1dd;
            color: #0d1b2a;
        }

        .badge-ongoing {
            background-color: #1b9aaa;
            color: #ffffff;
        }

        /* CTA Button */
        .cta-container {
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            background-color: #2a6f97;
            color: #ffffff;
            padding: 14px 32px;
            border-radius: 50px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: 0 4px 12px rgba(42, 111, 151, 0.2);
        }

        .cta-button:hover {
            background-color: #1b9aaa;
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(42, 111, 151, 0.3);
        }

        .cta-button i {
            margin-left: 8px;
            transition: transform 0.3s ease;
        }

        .cta-button:hover i {
            transform: translateX(5px);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .project-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .section-heading h2 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .project-overview-section {
                padding: 60px 0;
            }

            .section-heading {
                margin-bottom: 40px;
            }

            .project-content {
                padding: 20px;
            }
        }

        /* Mentorship Section */
        .mentorship-overview-section {
            width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
            background-image: 
                linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%230d1b2a"/><circle cx="200" cy="150" r="80" fill="%231b9aaa" opacity="0.2"/><circle cx="1000" cy="650" r="120" fill="%232a6f97" opacity="0.2"/><path d="M300,400 Q600,200 900,400 T1500,400" stroke="%23415a77" stroke-width="2" fill="none" opacity="0.3"/><path d="M100,600 Q400,400 700,600 T1300,600" stroke="%231b9aaa" stroke-width="2" fill="none" opacity="0.3"/><rect x="400" y="200" width="400" height="300" rx="20" fill="%23e0e1dd" opacity="0.1"/></svg>');
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 60px;
        }
        
        .section-heading h2 {
            color: var(--light-gray);
            font-size: 2.5rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .section-heading .underline {
            height: 3px;
            width: 80px;
            background-color: var(--accent-blue);
            margin: 0 auto;
        }
        
        .intro-paragraph {
            max-width: 800px;
            margin: 0 auto 60px;
            text-align: center;
            font-size: 1.1rem;
            color: var(--dark-gray);
        }
        
        /* Grid Layout */
        .mentorship-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        /* Mentor Cards */
        .mentor-cards-container {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }
        
        .mentor-card {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 25px;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards;
        }
        
        .mentor-card:nth-child(1) { animation-delay: 0.1s; }
        .mentor-card:nth-child(2) { animation-delay: 0.2s; }
        .mentor-card:nth-child(3) { animation-delay: 0.3s; }
        
        .mentor-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        .mentor-header {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
        }
        
        .mentor-photo {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            background-color: var(--light-gray);
            margin-right: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
            font-size: 0.9rem;
        }
        
        .mentor-photo img{
            height: 100%;
            width: 100%;
            background-size: cover;
            background-repeat: no-repeat;
        }
        
        .mentor-info {
            flex: 1;
        }
        
        .mentor-name {
            font-size: 1.3rem;
            font-weight: 600;
            color: var(--navy-blue);
            margin-bottom: 5px;
        }
        
        .mentor-role {
            color: var(--accent-blue);
            font-size: 0.95rem;
            margin-bottom: 10px;
        }
        
        .mentor-description {
            font-size: 0.95rem;
            color: var(--dark-gray);
            margin-bottom: 15px;
        }
        
        .status-badge {
            display: inline-block;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
        }
        
        .status-ongoing {
            background-color: var(--sky-blue);
            color: var(--white);
        }
        
        .status-completed {
            background-color: var(--light-gray);
            color: var(--dark-gray);
        }
        
        /* Mentor Form */
        .mentor-form-container {
            background-color: var(--white);
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            padding: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards 0.4s;
        }
        
        .form-title {
            color: var(--navy-blue);
            font-size: 1.5rem;
            margin-bottom: 25px;
            text-align: center;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 8px;
            color: var(--navy-blue);
            font-weight: 500;
        }
        
        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: border-color 0.3s ease;
        }
        
        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: var(--accent-blue);
        }
        
        .form-group textarea {
            min-height: 120px;
            resize: vertical;
        }
        
        .cta-button-mentor {
            background-color: var(--accent-blue);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 14px 25px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
            width: 100%;
        }
        
        .cta-button-mentor:hover {
            background-color: var(--navy-blue);
        }
        
        /* Details Button */
        .details-button-container {
            text-align: center;
            margin-top: 40px;
        }
        
        .details-button {
            background-color: var(--accent-blue);
            color: var(--white);
            border: none;
            border-radius: 8px;
            padding: 14px 35px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }
        
        .details-button:hover {
            background-color: var(--navy-blue);
        }
        
        /* Divider */
        .divider {
            height: 1px;
            background-color: var(--accent-blue);
            opacity: 0.3;
            margin: 60px 0;
        }
        
        /* Animations */
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        /* Responsive Design */
        @media (max-width: 992px) {
            .mentorship-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .mentor-cards-container {
                order: 2;
            }
            
            .mentor-form-container {
                order: 1;
            }
        }
        
        @media (max-width: 576px) {
            .mentorship-overview-section {
                padding: 50px 15px;
            }
            
            .section-heading h2 {
                font-size: 2rem;
            }
            
            .mentor-header {
                flex-direction: column;
                text-align: center;
            }
            
            .mentor-photo {
                margin-right: 0;
                margin-bottom: 15px;
            }
        }

        /* Events Section Styles */
        .events-overview-section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 60px 20px;
        }
        
        .section-heading {
            text-align: center;
            color: #0d1b2a;
            font-size: 2.5rem;
            font-weight: 700;
            margin-bottom: 20px;
            position: relative;
        }
        
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 3px;
            background-color: #2a6f97;
        }
        
        .section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 40px;
            font-size: 1.1rem;
            color: #415a77;
        }
        
        /* Event Card Styles */
        .event-card {
            display: flex;
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
            transition: all 0.3s ease;
            margin-bottom: 30px;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.8s ease forwards;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .event-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
        }
        
        .event-image {
            flex: 0 0 40%;
            background: linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)), 
                        url('https://hblimg.mmtcdn.com/content/hubble/img/nairobidestimages/mmt/activities/m_Uhuru_Park_1_l_408_612.jpg');
            background-size: cover;
            background-position: center;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
        }
        
        .event-image::before {
            content: '';
            font-size: 1.2rem;
            font-weight: 500;
        }
        
        .event-content {
            flex: 1;
            padding: 30px;
        }
        
        .event-title {
            color: #0d1b2a;
            font-size: 1.8rem;
            margin-bottom: 15px;
            font-weight: 700;
        }
        
        .event-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .event-date, .event-location {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #415a77;
        }
        
        .event-date i, .event-location i {
            color: #2a6f97;
        }
        
        .event-description {
            margin-bottom: 25px;
            color: #415a77;
            line-height: 1.7;
        }
        
        .event-badge {
            display: inline-block;
            background-color: #1b9aaa;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 20px;
        }
        
        .cta-button {
            display: inline-block;
            background-color: #2a6f97;
            color: white;
            padding: 12px 25px;
            border-radius: 6px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }
        
        .cta-button:hover {
            background-color: #1b9aaa;
            transform: translateY(-2px);
        }
        
        /* Countdown Timer */
        .countdown-timer {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin: 30px 0;
        }
        
        .countdown-item {
            background-color: #f8f9fa;
            border-radius: 8px;
            padding: 15px;
            text-align: center;
            min-width: 80px;
            box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
        }
        
        .countdown-value {
            font-size: 2rem;
            font-weight: 700;
            color: #0d1b2a;
        }
        
        .countdown-label {
            font-size: 0.85rem;
            color: #415a77;
            margin-top: 5px;
        }
        
        /* Agenda Section */
        .agenda-section {
            margin-top: 40px;
            border-top: 1px solid #e0e1dd;
            padding-top: 30px;
        }
        
        .agenda-toggle {
            display: flex;
            justify-content: space-between;
            align-items: center;
            cursor: pointer;
            padding: 15px 0;
        }
        
        .agenda-title {
            color: #0d1b2a;
            font-size: 1.3rem;
            font-weight: 600;
        }
        
        .agenda-icon {
            color: #2a6f97;
            transition: transform 0.3s ease;
        }
        
        .agenda-content {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }
        
        .agenda-content.active {
            max-height: 500px;
        }
        
        .agenda-list {
            list-style-type: none;
            padding: 20px 0;
        }
        
        .agenda-item {
            display: flex;
            padding: 12px 0;
            border-bottom: 1px solid #e0e1dd;
        }
        
        .agenda-time {
            flex: 0 0 120px;
            font-weight: 600;
            color: #2a6f97;
        }
        
        .agenda-activity {
            flex: 1;
            color: #415a77;
        }
        
        /* Map Section */
        .map-section {
            margin-top: 40px;
            border-top: 1px solid #e0e1dd;
            padding-top: 30px;
        }
        
        .map-title {
            color: #0d1b2a;
            font-size: 1.3rem;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .map-placeholder {
            height: 250px;
            background-color: #f8f9fa;
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #415a77;
            font-weight: 500;
            border: 1px solid #e0e1dd;
        }
        
        /* Responsive Styles */
        @media (max-width: 768px) {
            .event-card {
                flex-direction: column;
            }
            
            .event-image {
                flex: 0 0 200px;
            }
            
            .countdown-item {
                min-width: 60px;
            }
            
            .countdown-value {
                font-size: 1.5rem;
            }
            
            .event-title {
                font-size: 1.5rem;
            }
            
            .section-heading {
                font-size: 2rem;
            }
        }
        
        @media (max-width: 480px) {
            .countdown-timer {
                gap: 10px;
            }
            
            .countdown-item {
                min-width: 50px;
                padding: 10px;
            }
            
            .countdown-value {
                font-size: 1.3rem;
            }
            
            .event-content {
                padding: 20px;
            }
        }

         /* Blog Overview Section */
        .blog-overview-section {
            width: 100%;
            margin: 0 auto;
            padding: 80px 20px;
            background-image: 
                linear-gradient(rgba(13, 27, 42, 0.7), rgba(13, 27, 42, 0.7)),
                url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="1200" height="800" viewBox="0 0 1200 800"><rect width="1200" height="800" fill="%230d1b2a"/><circle cx="200" cy="150" r="80" fill="%231b9aaa" opacity="0.2"/><circle cx="1000" cy="650" r="120" fill="%232a6f97" opacity="0.2"/><path d="M300,400 Q600,200 900,400 T1500,400" stroke="%23415a77" stroke-width="2" fill="none" opacity="0.3"/><path d="M100,600 Q400,400 700,600 T1300,600" stroke="%231b9aaa" stroke-width="2" fill="none" opacity="0.3"/><rect x="400" y="200" width="400" height="300" rx="20" fill="%23e0e1dd" opacity="0.1"/></svg>');
        }
        
        .section-heading {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-heading h2 {
            color: var(--light-gray);
            font-size: 2.5rem;
            font-weight: 300;
            margin-bottom: 15px;
        }
        
        .section-heading::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 2px;
            background-color: #2a6f97;
        }
        
        .section-intro {
            text-align: center;
            max-width: 700px;
            margin: 0 auto 60px;
            font-size: 1.1rem;
            color: #415a77;
        }
        
        /* Blog Grid */
        .blog-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }
        
        /* Blog Cards */
        .blog-card {
            background-color: #ffffff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(20px);
            animation: fadeInUp 0.6s forwards;
        }
        
        .blog-card:nth-child(2) {
            animation-delay: 0.2s;
        }
        
        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        
        .blog-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
        
        .blog-image {
            height: 240px;
            background-color: #e0e1dd;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        
        .blog-badge {
            position: absolute;
            top: 15px;
            left: 15px;
            background-color: #1b9aaa;
            color: white;
            padding: 5px 12px;
            border-radius: 20px;
            font-size: 0.8rem;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        
        .blog-content {
            padding: 25px;
        }
        
        .blog-title {
            color: #0d1b2a;
            font-size: 1.5rem;
            margin-bottom: 15px;
            font-weight: 600;
            line-height: 1.3;
        }
        
        .blog-meta {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
            font-size: 0.9rem;
            color: #415a77;
        }
        
        .blog-author {
            display: flex;
            align-items: center;
            margin-right: 20px;
        }
        
        .blog-author i {
            margin-right: 5px;
            color: #2a6f97;
        }
        
        .blog-date {
            display: flex;
            align-items: center;
        }
        
        .blog-date i {
            margin-right: 5px;
            color: #2a6f97;
        }
        
        .blog-excerpt {
            margin-bottom: 20px;
            line-height: 1.6;
            color: var(--dark-gray);
        }
        
        .blog-cta {
            display: inline-block;
            background-color: #2a6f97;
            color: white;
            padding: 10px 20px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 500;
            transition: all 0.3s ease;
        }
        
        .blog-cta:hover {
            background-color: #1b9aaa;
            transform: translateY(-2px);
        }
        
        /* Responsive Design */
        @media (max-width: 768px) {
            .blog-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            
            .section-heading h2 {
                font-size: 2rem;
            }
            
            .blog-image {
                height: 200px;
            }
        }

         /* Newsletter Section */
        .newsletter-section {
            padding: 80px 0;
            background-color: var(--white);
            text-align: center;
        }
        
        .newsletter-section h2 {
            color: var(--navy-blue);
            font-size: 2.5rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .newsletter-section p {
            color: var(--dark-gray);
            font-size: 1.1rem;
            max-width: 600px;
            margin: 0 auto 40px;
        }
        
        .newsletter-form {
            max-width: 600px;
            margin: 0 auto;
            background: var(--white);
            padding: 30px;
            border-radius: 12px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            border: 1px solid var(--light-gray);
        }
        
        .form-group {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 20px;
        }
        
        .form-input {
            flex: 1;
            min-width: 200px;
        }
        
        .newsletter-form input {
            width: 100%;
            padding: 15px;
            border: 1px solid var(--light-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        
        .newsletter-form input:focus {
            outline: none;
            border-color: var(--sky-blue);
            box-shadow: 0 0 0 2px rgba(27, 154, 170, 0.2);
        }
        
        .btn-subscribe {
            background-color: var(--accent-blue);
            color: var(--white);
            border: none;
            padding: 15px 30px;
            border-radius: 8px;
            font-size: 1.1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-subscribe:hover {
            background-color: var(--navy-blue);
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Footer Section */
        .container-footer {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .footer-section {
            background: linear-gradient(rgba(13, 27, 42, 0.85), rgba(13, 27, 42, 0.9)), 
                        url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2070&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            padding: 60px 0 20px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }
        
        .footer-column h3 {
            color: var(--sky-blue);
            font-size: 1.4rem;
            margin-bottom: 20px;
            font-weight: 600;
        }
        
        .footer-column p {
            margin-bottom: 20px;
            color: var(--light-gray);
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 12px;
        }
        
        .footer-links a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
            display: flex;
            align-items: center;
        }
        
        .footer-links a:hover {
            color: var(--sky-blue);
        }
        
        .footer-links i {
            margin-right: 10px;
            width: 20px;
            text-align: center;
        }
        
        .news-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .news-item:last-child {
            border-bottom: none;
        }
        
        .news-item a {
            color: var(--light-gray);
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .news-item a:hover {
            color: var(--sky-blue);
        }
        
        .news-date {
            font-size: 0.85rem;
            color: var(--sky-blue);
            margin-bottom: 5px;
        }
        
        .contact-info {
            margin-bottom: 25px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 12px;
            color: var(--light-gray);
        }
        
        .contact-item i {
            margin-right: 12px;
            color: var(--sky-blue);
            width: 20px;
            text-align: center;
        }
        
        .footer-newsletter-form input {
            width: 100%;
            padding: 12px;
            margin-bottom: 10px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            color: var(--white);
            font-size: 0.9rem;
        }
        
        .footer-newsletter-form input::placeholder {
            color: rgba(255, 255, 255, 0.6);
        }
        
        .footer-newsletter-form input:focus {
            outline: none;
            border-color: var(--sky-blue);
        }
        
        .btn-footer-subscribe {
            background-color: var(--accent-blue);
            color: var(--white);
            border: none;
            padding: 12px 20px;
            border-radius: 6px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            width: 100%;
        }
        
        .btn-footer-subscribe:hover {
            background-color: var(--sky-blue);
        }
        
        .footer-bottom {
            text-align: center;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: var(--light-gray);
            font-size: 0.9rem;
        }
        
        /* Animation */
        .fade-in {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.6s ease, transform 0.6s ease;
        }
        
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            .newsletter-section h2 {
                font-size: 2rem;
            }
            
            .form-group {
                flex-direction: column;
                gap: 15px;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }
        }