
    /* ===== Base Styles ===== */
:root {
  --primary: #4361ee;
  --primary-dark: #3a0ca3;
  --primary-light: #e0e7ff;
  --secondary: #3a0ca3;
  --accent: #f72585;
  --text: #1f2937;
  --light: #f9fafb;
  --dark: #111827;
  --gray: #6b7280;
  --light-gray: #e5e7eb;
  --success: #10b981;
  --transition: all 0.3s ease;
  --border-radius: 12px;
  --box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}



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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1, h2, h3 {
  font-weight: 800;
  line-height: 1.2;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header h2 {
  font-size: 1.9rem;
  margin-bottom: 15px;
  position: relative;
  display: inline-block;
}

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

.section-header p {
  color: var(--gray);
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto;
}



.btn {
  display: inline-block;
  background: white;
  color: var(--primary);
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.btn:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}



/* Story Section */
/* About Section Styling */
.about-section {
    padding: 30px 0;
    background-color: #f9f9f9;
    font-family: 'Open Sans', sans-serif;
    color: #333;
}

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

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h1 {
    font-size: 2rem;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-header h1:after {
    content: '';
    position: absolute;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, #4a90e2, #8e44ad);
    bottom: -10px;
    left: 20%;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    font-style: italic;
}

.content-block {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    line-height: 1.8;
}

.content-block p {
    margin-bottom: 20px;
    font-size: 1.05rem;
    text-align: justify;
    text-justify: inter-word; /* For better spacing between words */
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .about-section {
        padding: 50px 0;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .content-block {
        padding: 25px;
    }
}


/* ===== Mission Section ===== */
.mission-section {
  padding: 30px 0;
  background-color: var(--light);
}

.mission-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.mission-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
}

.mission-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px rgba(0, 0, 0, 0.1);
}

.card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.mission-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
}

/* ===== Timeline Section ===== */
.timeline-section {
  padding: 30px 0;
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--primary-light);
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-year {
  position: absolute;
  left: -30px;
  top: 0;
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  z-index: 2;
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 8px;
  box-shadow: var(--box-shadow);
  margin-left: 40px;
}

.timeline-content h3 {
  margin-bottom: 10px;
  color: var(--primary);
}

/* ===== Values Section ===== */
/* Values Section */
.values-section {
  padding: 30px 0;
  background-color: var(--light);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.value-card {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  transition: var(--transition);
  text-align: center;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.value-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
  font-size: 1.5rem;
}

.value-card h3 {
  margin-bottom: 15px;
  color: var(--dark);
  font-size: 1.25rem;
}

.value-card p {
  color: var(--gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .values-grid {
    grid-template-columns: 1fr;
  }
  
  .value-card {
    min-height: 240px;
    padding: 25px 20px;
  }
}
/* ===== Team Section ===== */
.team-section {
  padding: 80px 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.team-member {
  background: white;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  transition: var(--transition);
}

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

.member-image {
  width: 100%;
  height: 400px;
  overflow: hidden;
}

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

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

.member-info {
  padding: 25px;
  text-align: center;
}

.team-member h3 {
  margin-bottom: 5px;
  color: var(--dark);
}

.position {
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.bio {
  color: var(--gray);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.social-links2 {
  display: flex;
  justify-content: center;
  gap: 15px;
}

.social-links2 a {
  color: var(--gray);
  font-size: 1.1rem;
  transition: var(--transition);
}

.social-links2 a:hover {
  color: var(--primary);
}

/* ===== Stats Section ===== */
.stats-section {
  padding: 30px 0;
  background-color: var(--light);
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  background: white;
  padding: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--box-shadow);
  text-align: center;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.stat-label {
  color: var(--gray);
  font-weight: 500;
}

/* ===== CTA Section ===== */
.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: white;
  text-align: center;
}

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

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.cta-content p {
  margin-bottom: 30px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.btn-primary {
  background: white;
  color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-light);
}

/* ===== Responsive Styles ===== */
@media (min-width: 768px) {
  .grid {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
  
  .mission-cards,
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 992px) {
  .about-hero {
    padding: 120px 0;
  }
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
  
  .timeline-content {
    margin-left: 30px;
  }
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-hero,
.mission-section,
.timeline-section,
.values-section,
.team-section,
.stats-section,
.cta-section {
  animation: fadeIn 0.6s ease-out forwards;
}

 


        @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600;800&display=swap');

        :root {
            --primary: #3498db;
            --secondary: #2ecc71;
            --accent: #0f172a;
            --glass: rgba(255, 255, 255, 0.15);
        }

        .hero {
            height: 50vh;
            min-height: 500px;
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            overflow: hidden;
            margin-top: 4rem;
        }

        /* Glassmorphism Content Card */
        .hero-content {
            max-width: 800px;
            padding: 2rem;
            background: var(--glass);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 24px;
            border: 1px solid rgba(255, 255, 255, 0.18);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
            text-align: center;
            z-index: 10;
            margin: 0 1rem;
            transform-style: preserve-3d;
            transition: all 0.5s ease;
        }

        h1 {
            font-size: clamp(1.5rem, 3vw, 3rem);
            margin-bottom: 1.5rem;
            font-weight: 800;
            line-height: 1.2;
            background: linear-gradient(to right, #fff, #e0e0e0);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        .hero-p {
            font-size: clamp(1rem, 1.5vw, 1.2rem);
            margin-bottom: 2.5rem;
            opacity: 0.9;
            font-weight: 300;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.6;
        }

        /* Modern Button with Hover Effect */
        .cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
            background: rgba(255, 255, 255, 0.9);
            color: var(--primary);
            padding: 1rem 2.5rem;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: none;
            cursor: pointer;
            font-size: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
            position: relative;
            overflow: hidden;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.02);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
            color: var(--accent);
        }

        .cta-button::after {
            content: '→';
            opacity: 0;
            transition: all 0.3s ease;
            position: absolute;
            right: 1rem;
        }

        .cta-button:hover::after {
            opacity: 1;
            right: 1.5rem;
        }

        /* Floating Abstract Shapes */
        .shape {
            position: absolute;
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0.6;
            z-index: 1;
            animation: float 15s infinite ease-in-out;
        }

        .shape-1 {
            width: 300px;
            height: 300px;
            background: var(--accent);
            top: 10%;
            left: 5%;
            animation-delay: 0s;
        }

        .shape-2 {
            width: 400px;
            height: 400px;
            background: #4cc9f0;
            bottom: 10%;
            right: 5%;
            animation-delay: 2s;
        }

        .shape-3 {
            width: 200px;
            height: 200px;
            background: #7209b7;
            top: 60%;
            left: 20%;
            animation-delay: 4s;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(5deg);
            }
        }

        /* Grid Pattern Background */
        .grid-pattern {
            position: absolute;
            width: 100%;
            height: 100%;
            background-image: 
                linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 40px 40px;
            z-index: 0;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero {
                min-height: 400px;
            }
            
            .hero-content {
                padding: 2rem 1.5rem;
                border-radius: 16px;
            }
            
            .shape {
                filter: blur(30px);
            }
            
            .shape-1, .shape-2, .shape-3 {
                width: 150px;
                height: 150px;
            }
        }
        
        /* Back to Top Button */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: #4361ee;
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            z-index: 999;
            font-size: 1.25rem;
        }

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

        .back-to-top:hover {
            background-color: #3a0ca3;
            transform: translateY(-3px);
        }
        
        /* Breadcrumb Navigation */
        .breadcrumb {
            background-color: #F0F0F0;
            padding: 1rem 0;
            border-bottom: 1px solid var(--light-gray);
        }

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

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

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

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

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

        .breadcrumb-current {
            color: var(--gray);
            pointer-events: none;
        }
    