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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    color: #e2e8f0;
     /*background: #0f172a; */ /* Original background */
    /*background: linear-gradient(135deg, #0f172a, #1e1b4b); */ /* Gradient background */
    background: linear-gradient(135deg, #98a4c0 0%, #393392 40%, #134e4a 100%);
    overflow-x: hidden;
}

/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}
.logo {
    display: flex;
    align-items: center;
   /* min-width: 150px;  This was a recent suggestion to make the logo container wide enough */
}
.site-logo {
    height: 60px; /* Set a specific height that looks good to you (e.g., 60px, 70px) */
    width: auto; /* Ensures the aspect ratio is maintained */
    /* max-width: 100%; */ /* You can keep this if you want it to shrink on very small screens, otherwise remove */
    display: block;
}


.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #e2e8f0;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a {
    /* ... existing styles ... */
    --after-background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%); /* Define as CSS variable */
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--after-background); /* Use the CSS variable */
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a:hover {
    color: #8b5cf6;
}

.cta-button {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.6);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e1b4b 0%, #0f172a 50%, #134e4a 100%);
    color: white;
    padding: 120px 5% 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff05" points="0,0 1000,300 1000,1000 0,700"/></svg>');
    background-size: cover;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-button {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-button.primary {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.hero-button.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

.hero-button.secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
}

/* Stats Section */
.stats {
    background: #1e293b;
    padding: 80px 5%;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}
.stat-item {
  background: rgba(12, 32, 65, 0.9);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 700;
  color: #ffffff; /* Pure white */
  text-shadow: 0 0 2px rgba(212, 194, 194, 0); /* Subtle halo to lift it off the background */
}

.stat-label {
  font-size: 1.1rem;
  color: #ffffff; /* Pure white */
  font-weight: 500;
 /*text-shadow: 0 0 1px rgba(255, 255, 255, 0.2); /* Optional */
}

.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.3);
}

/* --------------------
   Student Placements/Partnerships Scroll Section
   -------------------- */
.placements-scroll-section {
    padding: 4rem 0;
    background: #0f172a;
    text-align: center;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}

.placements-scroll-section h2 {
    font-size: 2.2rem;
    color: #f1f5f9;
    margin-bottom: 2.5rem;
    padding: 0 5%;
}

.logo-scroll-container {
    display: block; /* Ensures it correctly contains the scrolling track */
    overflow: hidden; /* Hides the horizontal scrollbar and clips the animation */
    padding: 1.5rem 0; /* Vertical padding */
    width: 100%; /* Spans the full width of its parent */
    position: relative; /* For animation */
    white-space: nowrap; /* Keeps content on one line within the track */
}

/* Hide scrollbar for Webkit browsers (Chrome, Safari) */
.logo-scroll-container::-webkit-scrollbar {
    display: none;
}

.logo-track {
    display: inline-flex; /* Allows track to grow wider than its container */
    animation: scroll-logos 40s linear infinite; /* Adjust duration (e.g., 20s-60s) for desired speed */
    gap: 3.5rem; /* Space between individual logos */
    padding: 0 5%; /* Horizontal padding for logos within the track */
    will-change: transform; /* Performance hint for browsers */
}

.logo-scroll-container img {
    height: 55px; /* Scales logos down to a standard height */
    width: auto; /* Maintains aspect ratio */
    flex-shrink: 0; /* Prevents logos from shrinking */
    /* No filter or opacity for original colors by default, and no hover effects */
}

/* REMOVED: No hover highlight/color change effect as requested */
/* .logo-scroll-container img:hover { ... } */

/* --------------------
   Keyframes for Auto-Scrolling
   -------------------- */
@keyframes scroll-logos {
    from {
        transform: translateX(0);
    }
    to {
        /* This is the precise value: -800px, based on your confirmation of the combined width of 9 scaled-down logos */
        transform: translateX(-800px);
    }
}

/* --------------------
   Responsive Adjustments (Media Queries)
   -------------------- */
@media (max-width: 1024px) {
    .logo-track {
        gap: 3rem;
    }
    @keyframes scroll-logos {
        /* Estimate: If 9 logos are 800px on desktop, they might be around 700px on tablet due to smaller gaps */
        to {
            transform: translateX(-700px); /* Adjust based on new gap/logo sizes */
        }
    }
}

@media (max-width: 768px) {
    .placements-scroll-section h2 {
        font-size: 1.8rem;
    }
    .logo-scroll-container {
        padding: 0;
    }
    .logo-track {
        gap: 2rem;
        padding: 0 3%;
    }
    .logo-scroll-container img {
        height: 45px; /* Smaller height for mobile */
    }
    @keyframes scroll-logos {
        /* Estimate: If 9 logos are 800px on desktop, they might be around 550px on mobile */
        to {
            transform: translateX(-550px); /* Adjust based on new gap/logo sizes */
        }
    }
}

@media (max-width: 480px) {
    .placements-scroll-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .logo-track {
        gap: 1.5rem;
        padding: 0 2%;
    }
    .logo-scroll-container img {
        height: 40px;
    }
    @keyframes scroll-logos {
        /* Estimate: If 9 logos are 800px on desktop, they might be around 400px on very small screens */
        to {
            transform: translateX(-400px); /* Adjust based on new gap/logo sizes */
        }
    }
}

/* --------------------
   Responsive Adjustments (Media Queries)
   -------------------- */
@media (max-width: 1024px) {
    .logo-track {
        gap: 3rem;
    }
    @keyframes scroll-logos {
        to {
            transform: translateX(-1400px); /* Adjust for tablet sizes */
        }
    }
}

@media (max-width: 768px) {
    .placements-scroll-section h2 {
        font-size: 1.8rem;
    }
    .logo-scroll-container {
        padding: 0;
    }
    .logo-track {
        gap: 2rem;
        padding: 0 3%;
    }
    .logo-scroll-container img {
        height: 45px;
    }
    @keyframes scroll-logos {
        to {
            transform: translateX(-1100px); /* Adjust for mobile */
        }
    }
}

@media (max-width: 480px) {
    .placements-scroll-section h2 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    .logo-track {
        gap: 1.5rem;
        padding: 0 2%;
    }
    .logo-scroll-container img {
        height: 40px;
    }
    @keyframes scroll-logos {
        to {
            transform: translateX(-900px); /* Adjust for very small screens */
        }
    }
}
/* Programs Section */
.programs {
    padding: 100px 5%;
    background: #0f172a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.program-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.3);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1rem;
    font-size: 2rem;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.program-content {
    padding: 0 2rem 2rem;
    text-align: center;
}

.program-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.program-description {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.program-features {
    list-style: none;
    margin-bottom: 2rem;
}

.program-features li {
    padding: 0.5rem 0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.program-features li::before {
    content: '✓';
    color: #8b5cf6;
    font-weight: bold;
}

.program-cta {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.program-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
}

/* Features Section */
.features {
    background: #1e293b;
    padding: 100px 5%;
}

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

.feature-item {
    text-align: center;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.feature-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.feature-description {
    color: #cbd5e1;
    line-height: 1.6;
}


/* Mentors Section */
.about-us-section {
  background: #0f172a;
  padding: 100px 5%;
  text-align: center;
}

.about-content {
  max-width: 900px;
  margin: 0 auto 4rem;
}

.mentors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.mentor-card {
  background: rgba(30, 41, 59, 0.8);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mentor-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.4);
}

.mentor-photo img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  border: 3px solid #8b5cf6;
}

.mentor-name {
  font-size: 1.3rem;
  font-weight: 600;
  color: #f1f5f9;
}

.mentor-title {
  color: #06b6d4;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.mentor-bio {
  color: #cbd5e1;
  font-size: 0.9rem;
  line-height: 1.5;
}
.about-description {
  font-size: 1.1rem;
  color: #cbd5e1;
  line-height: 1.6;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
}

.mentors-intro {
  text-align: center;
  margin-top: 3rem;
  margin-bottom: 2rem;
}

.mentors-description {
  font-size: 1rem;
  color: #94a3b8;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
  padding: 0 1rem;
}

.mentor-card p {
  line-height: 1.5;
}

.mentor-bio br {
  display: block;
  content: "";
  margin-top: 0.5rem;
}

/* Contact Section */

.contact-section {
  background: #1e293b;
  color: #f1f5f9;
  padding: 100px 5%;
  text-align: center;
}

.contact-container {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-section .section-subtitle {
  max-width: 700px;
  margin: 1rem auto 3rem;
  color: #94a3b8;
  font-size: 1.1rem;
  line-height: 1.6;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  justify-content: center;
  align-items: start;
}

.contact-item {
  background: rgba(15, 23, 42, 0.8);
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.contact-item i {
  font-size: 1.5rem;
  color: #06b6d4;
  margin-bottom: 1rem;
}

.contact-item h4 {
  color: #f1f5f9;
  margin-bottom: 0.5rem;
}

.contact-item p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.contact-item a {
  color: #8b5cf6;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}

/* Footer */
footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 5% 20px;
}

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

.footer-section h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #667eea;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .navbar {
        padding: 1rem 3%;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

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

    .programs-grid {
        grid-template-columns: 1fr;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .cta-input {
        min-width: 250px;
    }
}
/* Industry Partnerships Section - Add this to your style.css file */

.partnerships {
    background: #0f172a;
    padding: 100px 5%;
    position: relative;
}

.partnerships::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 30%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.partnerships-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.partnership-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.1);
    padding: 2rem;
    text-align: center;
}

.partnership-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
}

.partnership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.3);
}

/*.partnership-logo {
    width: 120px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
} */
.partnership-logo {
    /* We'll let the image define the natural height, or use padding for spacing */
    /* width: 120px;  Consider removing or making this max-width if logos vary widely */
    /* height: 80px; */ /* Remove this to allow logo to define height */
    padding: 1rem; /* Add some padding around the logo if desired */
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Remove background: rgba(255, 255, 255, 0.95); */
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.partnership-card:hover .partnership-logo {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.partner-logo {
    max-width: 100px;
    max-height: 60px;
    object-fit: contain;
}

.partnership-content h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f1f5f9;
}

.partnership-content p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.certification-benefits {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.certification-benefits li {
    padding: 0.5rem 0;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.certification-benefits li::before {
    content: '✓';
    color: #8b5cf6;
    font-weight: bold;
    font-size: 1rem;
}

.certification-badge {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.badge-text {
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
}

.partnerships-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.partnership-stat {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.1);
    transition: all 0.3s ease;
}

.partnership-stat:hover {
    transform: translateY(-5px);
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

.stat-content h4 {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.2rem;
}

.stat-content p {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin: 0;
}

/* Mobile Responsive for Partnerships */
@media (max-width: 768px) {
    .partnerships-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .partnership-card {
        padding: 1.5rem;
    }
    
    .partnerships-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .partnership-stat {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}
/* Trainer Profiles Section - Add this to your style.css file */

.trainers {
    background: #1e293b;
    padding: 100px 5%;
    position: relative;
}

.trainers::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 70% 20%, rgba(139, 92, 246, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 30% 80%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
}

.trainers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.trainer-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.trainer-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
}

.trainer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border-color: rgba(139, 92, 246, 0.3);
}

.trainer-image {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
}

.trainer-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.9);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.trainer-card:hover .trainer-photo {
    transform: scale(1.05);
    border-color: white;
}

.trainer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #8b5cf6;
    font-size: 1.2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.trainer-info {
    padding: 2rem;
}

.trainer-name {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #f1f5f9;
    text-align: center;
}

.trainer-title {
    font-size: 1rem;
    color: #8b5cf6;
    font-weight: 500;
    margin-bottom: 1rem;
    text-align: center;
}

.trainer-specialties {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

.specialty-tag {
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.trainer-bio {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.trainer-stats {
    display: flex;
    justify-content: space-around;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(30, 41, 59, 0.5);
    border-radius: 15px;
    border: 1px solid rgba(148, 163, 184, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.8rem;
    color: #94a3b8;
    margin-top: 0.2rem;
}

.trainer-certifications {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
/* --------------------
   Trainer Experience Section
   -------------------- */
.trainer-experience {
    margin-top: 1.2rem; /* Space above this section */
    margin-bottom: 1.5rem; /* Space below this section */
    padding: 0 1.2rem; /* Horizontal padding for text alignment within card */
    text-align: center; /* Center align the text */
    font-size: 0.9rem;
    color: #cbd5e1; /* Matches general text color in card */
    line-height: 1.5;
}

.trainer-experience p {
    margin-bottom: 0.5rem; /* Space between the two lines */
}

.trainer-experience .company-list {
    font-weight: 500; /* Make company names slightly bolder */
    color: #f1f5f9; /* Slightly brighter color for emphasis */
    font-size: 0.85rem; /* Slightly smaller for the list of companies */
}

/* Responsive adjustments for trainer experience */
@media (max-width: 768px) {
    .trainer-experience {
        padding: 0 0.8rem;
        font-size: 0.85rem;
    }
    .trainer-experience .company-list {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .trainer-experience {
        padding: 0 0.5rem;
        font-size: 0.8rem;
    }
    .trainer-experience .company-list {
        font-size: 0.75rem;
    }
}
/* Lines below were added after G */




.trainer-certifications i {
    color: #06b6d4; /* A vibrant color for the certification icons */
    margin-right: 0.5rem;
    font-size: 1.1rem; /* Slightly larger icon size */
}

/* --------------------
   Industry Partnerships Section
   -------------------- */
.partnerships-section {
    padding: 6rem 5%;
    text-align: center;
    background: #0f172a; /* Consistent with body background */
}

.partnerships-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #f1f5f9;
}

.partnerships-section p.section-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: #cbd5e1;
}

.partnerships-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); /* Adjusted min-width for better fit */
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.partnership-card {
    background: #1e293b;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center; /* Center content vertically */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(148, 163, 184, 0.1);
    min-height: 200px; /* Ensure cards have consistent height */
}

.partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.partnership-logo img {
    max-width: 150px; /* Adjust based on your logo sizes */
    height: auto;
    margin-bottom: 1.5rem;
    /* filter: grayscale(100%) brightness(150%); Make logos grayscale and brighter for dark background 
    opacity: 0.8;
    transition: filter 0.3s ease, opacity 0.3s ease; */
}

.partnership-card:hover .partnership-logo img {
    filter: grayscale(0%) brightness(100%); /* Restore color on hover */
    opacity: 1;
}

.partnership-content h3 {
    font-size: 1.4rem; /* Adjusted from previous suggestions for single line */
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 0.5rem;
    text-align: center;
}

.partnership-type {
    font-size: 0.9rem;
    color: #cbd5e1;
    font-weight: 400;
    text-align: center;
}

/* --------------------
   Footer Section
   -------------------- */
footer {
    background: #020617; /* Even darker background for footer */
    color: white;
    padding: 60px 5% 20px;
    border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); /* Adjusted min-width for footer columns */
    gap: 2.5rem;
    padding-bottom: 2rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    color: #8b5cf6; /* A brand color for footer headings */
    margin-bottom: 1.2rem;
    font-weight: 600;
}

.footer-section p, .footer-section ul {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #cbd5e1;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block; /* Make links take full line for easier clicking */
    margin-bottom: 0.5rem;
}

.footer-section ul li a:hover {
    color: #8b5cf6; /* Hover effect for footer links */
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    color: #cbd5e1;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #8b5cf6; /* Brand color on hover */
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.08);
    font-size: 0.85rem;
    color: #94a3b8;
}

/* --------------------
   Responsive Adjustments (Media Queries)
   -------------------- */
@media (max-width: 1024px) {
    /* Adjustments for larger tablets and small laptops */
    .hero-content h1 {
        font-size: 3.5rem;
    }
    .programs-grid, .partnerships-container, .trainers-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); /* Adjust card size */
    }
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    /* Adjustments for tablets */
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem 3%;
    }
    .nav-links {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
        margin-top: 1rem;
    }
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    .cta-button {
        margin-top: 1rem;
        width: 100%;
        text-align: center;
    }
    .hero-content h1 {
        font-size: 2.8rem;
    }
    .hero-content p {
        font-size: 1rem;
    }
    .section-title {
        font-size: 2.2rem;
    }
    .programs-grid, .partnerships-container, .trainers-grid {
        grid-template-columns: 1fr; /* Stack cards vertically on smaller screens */
    }
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-section h3 {
        margin-bottom: 0.8rem;
    }
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Adjustments for mobile phones */
    .hero-content h1 {
        font-size: 2.2rem;
    }
    .hero-content p {
        font-size: 0.9rem;
    }
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    .hero-button {
        width: 100%;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .program-card, .partnership-card, .trainer-card {
        padding: 1.5rem;
    }
    .trainer-bio {
        font-size: 0.85rem;
    }
    .specialty-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.6rem;
    }
}
