@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap');

/* Variables */
:root {
    --primary-purple: #d953db; /* Purple from logo */
    --primary-blue: #82ccfa;   /* Light blue from logo */
    --dark-purple: #b239c2;    /* Darker shade of purple */
    --light-purple: #e0b0e8;   /* Lighter shade of purple */
    --dark-blue: #4ba9d9;      /* Darker shade of blue */
    --light-blue: #b5e2fa;     /* Lighter shade of blue */
    --white: #eff3f6;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #333333;
    --black: #000000;
    --font-primary: 'Poppins', sans-serif;
}


/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    color: var(--dark-purple);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-purple);
}

ul {
    list-style: none;
}

.container {
    width: 93%;
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 15px; */
}

.btn {
    display: inline-block;
    background: var(--white);
    color: var(--dark-purple);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 500;
    border: 2px solid var(--primary-purple);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn:hover {
    background: transparent;
    color: var(--black);
    border: 2px solid var(--black);
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.logo h1 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-purple);
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    color: var(--dark-gray);
    font-weight: 500;
    position: relative;
}

nav ul li a:hover {
    color: var(--primary-purple);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-purple);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-purple);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    padding: 150px 0 100px;
    text-align: center;
    height: 100vh;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    animation: fadeIn 1s ease-out;
}

.k-disc-logo {
    margin-bottom: 30px;
}

.k-disc-logo img {
    max-width: 300px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    padding-top: 60px;
}

.hero p {
    font-size: 20px;
    margin-bottom: 30px;
}

.hero .btn {
    background: var(--white);
    color: var(--primary-purple);
    border-color: var(--white);
}

.hero .btn:hover {
    background: transparent;
    color: var(--white);
}
/* Add this to your styles.css file */

/* Default button styles */
.hero .btn {
    margin-right: 10px; /* Adjust the value as needed */
}

.hero .btn.secondary-btn {
    margin-left: 10px; /* Adjust the value as needed */
}

/* Responsive styles */
@media (max-width: 768px) {
    .hero .btn,
    .hero .btn.secondary-btn {
        display: block;
        width: 100%;
        margin: 10px 0; /* Adjust the value as needed */
    }
    .hero h1{
        padding-top: 0px;
    }
}
/* About Section */
.about {
    padding: 100px 0;
    background-color: var(--white);
}

.about h2, .focus-areas h2, .goals h2, .impact h2, .contact h2, .vision h2, .designathon h2 {
    text-align: left;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-purple);
    position: relative;
}



.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 16px;
}

.about-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.animate {
    opacity: 1;
    animation: slideInRight 0.8s ease forwards;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.feature {
    background-color: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
}

.feature i {
    font-size: 30px;
    color: var(--primary-purple);
    margin-bottom: 15px;
}


  /* STRIDE Vision & Goals Section Styling */
.vision {
    padding: 70px 0;
    background: linear-gradient(170deg, var(--white) 0%, var(--light-gray) 100%);
    font-family: var(--font-primary);
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    /* padding: 0 30px; */
  }
  
  /* Section Title */

  

  /* Content Layout */
  .vision-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
  }
  
  /* Text Blocks */
  .vision-text {
    position: relative;
    padding: 0 0 0 30px;
    border-left: 3px solid;
    border-image: linear-gradient(to bottom, var(--primary-purple), var(--primary-blue)) 1;
    transition: transform 0.3s ease;
  }
  
  .vision-text:hover {
    transform: translateY(-5px);
  }
  
  /* Headings */
  .vision-text h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: var(--dark-purple);
    font-weight: 600;
    position: relative;
    padding-bottom: 10px;
  }
  
  .vision-text h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background-color: var(--primary-blue);
  }
  
  /* Lists */
  .vision-text ul {
    padding-left: 5px;
    margin: 0;
  }
  
  .vision-text li {
    margin-bottom: 18px;
    position: relative;
    list-style-type: none;
    padding-left: 25px;
    line-height: 1.6;
    color: var(--dark-gray);
  }
  
  .vision-text li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
  }
  
  /* First Section Specific */
  .vision-text:first-child li::before {
    background: var(--primary-purple);
  }
  
  /* Second Section Specific */
  .vision-text:last-child li::before {
    background: var(--primary-blue);
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .vision {
      padding: 50px 0;
    }
    
    .vision h2 {
      font-size: 2.2rem;
      margin-bottom: 40px;
    }
    
    .vision-text {
      padding-left: 20px;
    }
    
    .vision-text h3 {
      font-size: 1.4rem;
    }
  }
  /* Responsive adjustments */
  @media (max-width: 768px) {
    .vision {
      padding: 60px 0;
    }
    
    .vision h2 {
      font-size: 2rem;
      margin-bottom: 30px;
    }
    
    .vision-text {
      flex-basis: 100%;
    }
    
    .vision-text h3 {
      font-size: 1.3rem;
    }
    
    .vision-text li {
      font-size: 1rem;
    }
  }
.stats-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.stat {
    background-color: var(--white);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat:hover {
    transform: translateY(-5px);
}

.stat h4 {
    font-size: 36px;
    color: var(--primary-purple);
    margin-bottom: 10px;
}

/* Focus Areas Section */
.focus-areas {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card.animate {
    opacity: 1;
    transform: translateY(0);
}

.card-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

.card p {
    color: var(--dark-gray);
}

/* Goals Section */
.goals {
    padding: 100px 0;
    background-color: var(--white);
}

.goals-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.goals-image {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.goals-image.animate {
    opacity: 1;
    animation: slideInLeft 0.8s ease forwards;
}

.goals-text {
    flex: 1;
}

.goals-text h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.goals-text ul li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
}

.goals-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 15px;
    height: 15px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
}

/* Impact Section */
.impact {
    padding: 100px 0;
    background-color: var(--light-gray);
}

.impact-items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.impact-item {
    background-color: var(--white);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.impact-item:hover {
    transform: translateY(-10px);
}

.impact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.impact-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.impact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-purple);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 40px;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--medium-gray);
    border-radius: 5px;
    font-family: var(--font-primary);
    font-size: 16px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-purple);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 24px;
    color: var(--primary-purple);
    margin-right: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    color: var(--white);
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-5px);
}

/* Footer */
footer {
    background-color: var(--dark-gray);
    color: var(--white);
    padding: 70px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 15px;
}

.footer-logo p {
    font-size: 14px;
    opacity: 0.8;
}

.footer-links h3,
.footer-newsletter h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-blue);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: var(--white);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-blue);
}

.footer-newsletter p {
    margin-bottom: 15px;
    opacity: 0.8;
}

.footer-newsletter form {
    display: flex;
}

.footer-newsletter input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px 0 0 5px;
    font-family: var(--font-primary);
}

.footer-newsletter .btn {
    border-radius: 0 5px 5px 0;
    padding: 10px 15px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-content,
    .goals-content {
        flex-direction: column;
    }
    
    .about-image,
    .goals-image {
        order: -1;
        margin-bottom: 30px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 18px;
    }
    nav    
    {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 80%;
        height: calc(100vh - 80px);
        background-color: var(--white);
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
        transitionavn: all 0.3s ease;
        z-index: 999;
    }
    
    nav.active {
        left: 0;
    }
    
    nav ul {
        flex-direction: column;
        padding: 30px;
    }
    
    nav ul li {
        margin: 15px 0;
    }
    
    .mobile-menu-btn {
        display: block;
    }
}

@media (max-width: 576px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .about h2, .focus-areas h2, .goals h2, .impact h2, .contact h2 {
        font-size: 28px;
    }
    
    .goals-text h3 {
        font-size: 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Apply animations */
.hero-content {
    animation: fadeIn 1s ease-out;
}

.card, .impact-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.card.animate, .impact-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.about-image, .goals-image {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.about-image.animate {
    opacity: 1;
    animation: slideInRight 0.8s ease forwards;
}

.goals-image.animate {
    opacity: 1;
    animation: slideInLeft 0.8s ease forwards;
}

.logo img:hover {
    animation: pulse 1s infinite;
}

.btn:hover {
    animation: pulse 0.5s;
}

/* Add fixed header styles */
header.fixed {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

/* Add active link styles */
nav ul li a.active {
    color: var(--primary-purple);
}

nav ul li a.active::after {
    width: 100%;
}

/* Focus Areas */
.focus-intro {
    text-align: center;
    margin-bottom: 40px;
}

.focus-intro h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.advantages {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 30px;
}

.advantage {
    background-color: var(--white);
    padding: 15px 25px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage:hover {
    transform: translateY(-5px);
}

.advantage i {
    font-size: 20px;
    color: var(--primary-purple);
    margin-right: 10px;
}

.examples {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
}

.examples span {
    background-color: var(--light-purple);
    color: var(--dark-purple);
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

.examples-section {
    margin-top: 50px;
    text-align: center;
}

.examples-section h3 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.examples-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.example-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.example-item:hover {
    transform: translateY(-10px);
}

.example-item i {
    font-size: 40px;
    color: var(--primary-blue);
    margin-bottom: 15px;
}

.designathon-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* .designathon h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--black);
} */

.designathon h4 {
    font-size: 20px;
    margin: 20px 0 10px;
    color: var(--black);
}

/* Designathon Section */
.designathon {
    /* background: color(srgb --white --white --white); */
    color: var(--white);
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    /* box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2); */
    margin: 50px auto;
    max-width: 800px;
    transition: transform 0.3s ease-in-out;
}

.designathon:hover {
    transform: scale(1.02);
}

/* Container */
.container1 {
    max-width: 600px;
    margin: 0 auto;
}

.timeline h3 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.timeline-container {
    position: relative;
    padding-left: 30px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-blue));
}

.timeline-item {
    position: relative;
    margin-bottom: 30px;
}

.timeline-right::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 20px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border: 2px solid var(--white);
}

.timeline-left::before {
    content: '';
    position: absolute;
    right: 15px;
    top: 24px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border: 2px solid var(--white);
}

@media (max-width: 768px) {
    .timeline-left::before {
        left: -15px;
    }

    .timeline-right::before {
        left: -15px;
    }
}

.timeline-date {
    font-weight: 600;
    color: var(--primary-purple);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

/* Ecosystem Section */
.ecosystem {
    margin-bottom: 50px;
}

.ecosystem h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.ecosystem-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.ecosystem-item:hover {
    transform: translateY(-10px);
}

.ecosystem-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.ecosystem-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-purple);
    text-align: center;
}

.ecosystem-item ul {
    list-style: none;
}

.ecosystem-item ul li {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.ecosystem-item ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-blue);
}

/* Partnership Section */
.partnership {
    margin-top: 50px;
}

.partnership h3 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-purple);
}

.partnership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.partnership-item {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.partnership-item:hover {
    transform: translateY(-10px);
}

.partnership-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-blue) 100%);
    border-radius: 50%;
    color: var(--white);
    font-size: 32px;
}

.partnership-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--primary-purple);
    text-align: center;
}

.partnership-item p {
    text-align: center;
}

/* Responsive Design Updates */
@media (max-width: 992px) {
    .vision-content,
    .designathon-content {
        grid-template-columns: 1fr;
    }
    
    .vision-image {
        order: -1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .advantages {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-container {
        grid-template-columns: 1fr;
    }
    
    .ecosystem-grid,
    .partnership-grid {
        grid-template-columns: 1fr;
    }
} 





p {
    font-size: 18px;
    line-height: 1.5;
    opacity: 0.9;
}

/* Explore Button */
.explore-btn {
    display: inline-block;
    background: var(--dark-blue);
    color: var(--white);
    padding: 14px 22px;
    font-size: 18px;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 6px;
    margin-top: 20px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s;
    border: none;
}

.explore-btn:hover {
    background: var(--light-purple);
    color: var(--dark-gray);
    transform: translateY(-3px);
}

.swiper-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 20px;
    /* background-color: var(--light-gray); */
}

.swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px; /* Set a fixed width */
    height: 75px; /* Set a fixed height */
    box-sizing: border-box;
}

.swiper-slide img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Ensure the image fits within the div */
}

/* Hero Section - Updated to match navbar styling */
.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.ppt-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    /* gap: 20px; */
    flex-wrap: wrap;
}

.ppt-buttons a{
    font-weight: bold;
    font-size: large;
}

.btn-blue {
    background: var(--dark-blue);
    color: var(--white);
}

.btn-blue:hover {
    background: var(--primary-blue);
}

/* About Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-purple);

    display: inline-block;
}

.section-title h2::after {
    content: '';
    display: block;
    width: 50%;
    height: 4px;
    background: linear-gradient(to right, var(--primary-purple), var(--primary-blue));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* About Section with Image */
.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

/* .about-image {
    flex: 1 1 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
} */

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s;
}

.about-image:hover img {
    transform: scale(1.05);
}

.about-text {
    flex: 1 1 400px;
}

.about-text p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* Competition Structure */
.phases {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.phase-card {
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    flex: 1 1 400px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.phase-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.phase-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
    border-bottom: 2px solid var(--light-purple);
    padding-bottom: 10px;
}

.phase-card h4 {
    font-size: 1.2rem;
    margin: 15px 0 10px;
    color: var(--dark-blue);
}

.phase-card ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

/* Final Evaluation - New Styling */
.evaluation-section {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
    padding: 60px 0;
    border-radius: 10px;
}

.evaluation-content {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.evaluation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.evaluation-box {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--primary-purple);
}

.evaluation-box h4 {
    color: var(--primary-purple);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.evaluation-box ul {
    margin-left: 20px;
}

.evaluation-box li {
    margin-bottom: 8px;
}

/* Awards Section */
.awards {
    background: linear-gradient(135deg, var(--light-purple) 0%, var(--light-blue) 100%);
    padding: 80px 0;
    color: var(--dark-gray);
}

.award-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.award-card {
    background: var(--white);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    flex: 1 1 300px;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.award-card:hover {
    transform: scale(1.05);
}

.award-card i {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-purple);
}

.award-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--dark-purple);
}

/* Timeline Section */
.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background: linear-gradient(to bottom, var(--primary-purple), var(--primary-blue));
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
    border-radius: 3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    box-sizing: border-box;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: var(--white);
    border: 4px solid var(--primary-purple);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.timeline-left {
    left: 0;
}

.timeline-right {
    left: 50%;
}

.timeline-left::after {
    right: -12px;
}

.timeline-right::after {
    left: -12px;
}

.timeline-content {
    padding: 20px;
    background-color: var(--white);
    border-radius: 6px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.timeline-content h3 {
    color: var(--primary-blue);
    margin-bottom: 10px;
}

/* Eligibility Section - New Styling */
.eligibility-section {
    background-color: var(--white);
}

.eligibility-wrapper {
    border: 2px solid var(--light-purple);
    border-radius: 10px;
    padding: 20px;
    position: relative;
}

.eligibility-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
}

.eligibility-tab {
    padding: 15px 25px;
    background: var(--light-gray);
    border-radius: 30px;
    font-weight: 600;
    color: var(--dark-gray);
    border: 2px solid transparent;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.eligibility-tab.active {
    background: var(--primary-purple);
    color: var(--white);
    border-color: var(--primary-purple);
}

.eligibility-content {
    background: var(--light-gray);
    border-radius: 10px;
    padding: 30px;
}

.eligibility-list {
    padding-left: 20px;
}

.eligibility-list li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
}

.eligibility-list li::before {
    content: "\f058";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-purple);
}

.eligibility-item {
    margin-bottom: 30px;
}

.eligibility-item h3 {
    font-size: 1.4rem;
    color: var(--primary-purple);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.eligibility-item h3 i {
    margin-right: 10px;
    background: var(--primary-purple);
    color: var(--white);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ethics Section */
.ethics {
    background: var(--dark-gray);
    color: var(--white);
    padding: 80px 0;
}

.ethics-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.ethics-points {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.ethics-point {
    background: rgba(255, 255, 255, 0.1);
    padding: 20px;
    border-radius: 10px;
    flex: 1 1 200px;
    max-width: 250px;
}

.ethics-point i {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--primary-blue);
}

/* Call to Action */
.cta {
    background: linear-gradient(to right, var(--primary-purple), var(--primary-blue));
    padding: 80px 0;
    text-align: center;
    color: var(--white);
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-buttons {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-white {
    background: var(--white);
    color: var(--primary-purple);
}

.btn-white:hover {
    background: var(--light-gray);
}

/* Footer */
footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 50px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1 1 250px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--primary-blue);
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: var(--primary-purple);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: var(--medium-gray);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-blue);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    font-size: 1.2rem;
    transition: background 0.3s, transform 0.3s;
}

.social-links a:hover {
    background: var(--primary-purple);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .navbar {
        margin-top: 20px;
    }

    .navbar ul {
        flex-direction: column;
        align-items: center;
    }

    .navbar li {
        margin: 10px 0;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .about-content {
        flex-direction: column-reverse;
    }

    .timeline::after {
        left: 31px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }

    .timeline-right {
        left: 0;
    }

    .timeline-left::after, 
    .timeline-right::after {
        left: 15px;
    }
}
/* Responsive Design */
.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-title {
    text-align: center;
    font-size: 2rem;
    color: var(--dark-text);
    margin-bottom: 40px;
    position: relative;
}

.page-title::after {
    content: '';
    display: block;
    width: 150px;
    height: 4px;
    background-color: var(--primary-purple);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.tab-navigation {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.tab-button {
    background-color: transparent;
    border: 2px solid var(--primary-purple);
    padding: 10px 20px;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 25px;
    color: var(--dark-text);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.tab-button.active {
    background-color: var(--primary-purple);
    color: var(--white);
    font-weight: bold;
}

.tab-content {
    display: none;
    background-color: var(--white);
    padding: 25px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    animation: fadeIn 0.5s ease;
    width: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.tab-content.active {
    display: block;
}

.team-info {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 2px solid var(--light-bg);
    padding-bottom: 15px;
    flex-wrap: wrap;
}

.team-icon {
    background-color: var(--primary-purple);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    flex-shrink: 0;
}

.team-title {
    font-size: 1.5rem;
    color: var(--primary-purple);
    font-weight: bold;
    margin: 0;
}

.requirement-list {
    list-style-type: none;
    padding-left: 0;
}

.requirement-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding-left: 10px;
    border-left: 3px solid transparent;
    transition: border-color 0.3s ease;
}

.requirement-list li:hover {
    border-left-color: var(--primary-purple);
}

.check-icon {
    color: var(--primary-purple);
    font-size: 16px;
    background-color: rgba(219, 86, 229, 0.1);
    border-radius: 50%;
    width: 26px;
    height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.mandatory-tag {
    background-color: var(--primary-purple);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 4px;
    margin-left: 8px;
    font-weight: bold;
}

        /* Responsive styles */
@media (max-width: 768px) {
    .logo {
        font-size: 28px;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .tab-button {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    
    .tab-content {
        padding: 20px 15px;
    }
    
    .team-title {
        font-size: 1.3rem;
    }
}
        
@media (max-width: 576px) {
    .logo {
        font-size: 24px;
    }
    
    .page-title {
        font-size: 1.5rem;
        margin-bottom: 30px;
    }
    
    .page-title::after {
        width: 100px;
    }
    
    .tab-navigation {
        flex-direction: column;
        align-items: center;
        width: 100%;
        max-width: 280px;
        margin: 0 auto 25px;
    }
    
    .tab-button {
        width: 100%;
        text-align: center;
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .team-info {
        justify-content: center;
        text-align: center;
        padding-bottom: 10px;
    }
    
    .team-icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .team-title {
        font-size: 1.2rem;
        width: 100%;
    }
    
    .requirement-list li {
        padding-left: 5px;
        margin-bottom: 15px;
    }
    
    .check-icon {
        width: 22px;
        height: 22px;
        font-size: 14px;
    }
    .about-image{
        display: none;
    }
}

.about-video{
    margin-top: 50px;
    max-width: 540px;
    max-height: 424px;
}

