 .about-header {
     background: linear-gradient(135deg, #3b3c3d5b 0%, #28292b56 100%), url(./images/pexels-tima-miroshnichenko-9574465.jpg);
     padding: 8rem 0 4rem;
     text-align: center;
     background-size: cover;
     padding-bottom: 8%;
 }

 .about-section {
     padding: 10% 0;
 }

 .about-section:nth-child(even) {
     background: #f8fafc;
 }

 .about-content {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 60px;
     align-items: center;
 }

 .about-content.reverse {
     grid-template-columns: 1fr 1fr;
 }

 .about-text h2 {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 20px;
    font-family: "Lexend", sans-serif;

 }

 .about-text .highlight {
     color: #2563eb;
     font-weight: 600;
     font-size: 1.25rem;
     margin-bottom: 20px;
     display: block;
 }

 .about-text p {
     color: #64748b;
     line-height: 1.6;
     margin-bottom: 20px;
 }

 .about-image {
     position: relative;
 }

 .about-image img {
     width: 100%;
     height: 400px;
     object-fit: cover;
     border-radius: 16px;
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
 }

 .mission-vision-section {
     background: linear-gradient(135deg,  rgba(242, 244, 249, 0.858) 0%,  rgb(190, 212, 252) 100%);
     padding: 100px 0;
     position: relative;
     overflow: hidden;
 }

 .mission-vision-section::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.3;
 }

 .mission-vision-section .container {
     position: relative;
     z-index: 1;
 }

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

 .section-header .section-title {
     font-size: 2.5rem;
     font-weight: 700;
     color: #1e293b;
     margin-bottom: 1rem;
 }

 .section-header .section-subtitle {
     font-size: 1.125rem;
     color: #64748b;
     max-width: 600px;
     margin: 0 auto;
 }

 .mission-vision-container {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 3rem;
     max-width: 1200px;
     margin: 0 auto;
 }

 .mission-vision-card {
     background: white;
     border-radius: 20px;
     padding: 2.5rem;
     box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
     transition: all 0.3s ease;
     position: relative;
     overflow: hidden;
     min-height: 450px;
     display: flex;
     flex-direction: column;
 }

 .mission-vision-card::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     height: 4px;
     background: linear-gradient(90deg, #2563eb, #3b82f6);
 }

 .mission-vision-card:hover {
     transform: translateY(-8px);
     box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
 }

 .mission-card::before {
        background: linear-gradient(135deg, #0a0414, #807de0);
 }

 .vision-card::before {
        background: linear-gradient(135deg, #0a0414, #807de0);
 }

 .card-header {
     display: flex;
     align-items: center;
     gap: 1rem;
     margin-bottom: 1.5rem;
 }

 .icon-wrapper {
     width: 60px;
     height: 60px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     color: white;
     transition: all 0.3s ease;
 }

 .mission-icon {
         background: linear-gradient(135deg, #0a0414, #1e19af);
 }

 .vision-icon {
         background: linear-gradient(135deg, #0a0414, #1e19af);
 }

 .mission-vision-card:hover .icon-wrapper {
     transform: scale(1.1);
 }

 .card-header h3 {
     font-size: 1.75rem;
     font-weight: 700;
     color: #1e293b;
     margin: 0;
    font-family: "Lexend", sans-serif;

 }

 .card-content {
     flex: 1;
     display: flex;
     flex-direction: column;
 }

 .card-content > p {
     color: #64748b;
     line-height: 1.7;
     margin-bottom: 2rem;
     font-size: 1rem;
 }

 .mission-highlights {
     display: flex;
     flex-direction: column;
     gap: 0.75rem;
 }

 .highlight-item {
     display: flex;
     align-items: center;
     gap: 0.75rem;
     padding: 0.5rem 0;
 }

 .highlight-icon {
     width: 20px;
     height: 20px;
     background: #059669;
     color: white;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 0.75rem;
     font-weight: bold;
 }

 .highlight-item span:last-child {
     color: #374151;
     font-weight: 500;
 }

 .vision-goals {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .goal-item {
     display: flex;
     align-items: center;
     gap: 1rem;
     padding: 1rem;
     background: #f8fafc;
     border-radius: 12px;
     transition: all 0.3s ease;
 }

 .goal-item:hover {
     background: #eff6ff;
     transform: translateX(4px);
 }

 .goal-icon {
     font-size: 1.5rem;
     width: 40px;
     text-align: center;
 }

 .goal-text h4 {
     font-size: 1rem;
     font-weight: 600;
     color: #1e293b;
     margin: 0 0 0.25rem 0;
 }

 .goal-text p {
     font-size: 0.875rem;
     color: #64748b;
     margin: 0;
 }

 .values-section {
     padding: 80px 0;
 }

 .values-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 40px;
     margin-top: 60px;
 }

 .value-card {
     background: white;
     padding: 40px 30px;
     border-radius: 16px;
     text-align: center;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

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

 .value-card .icon {
     width: 80px;
     height: 80px;
     background: linear-gradient(135deg, #2563eb, #3b82f6);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     margin: 0 auto 20px;
     color: white;
     font-size: 2rem;
 }

 .value-card h3 {
     font-size: 1.25rem;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 15px;
    font-family: "Lexend", sans-serif;

 }

 .value-card p {
     color: #64748b;
     line-height: 1.6;
 }

 .team-section {
      background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
     padding: 80px 0;
     position: relative;
 }
.team-section::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 100 100"><defs><pattern id="grid" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M 20 0 L 0 0 0 20" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
     opacity: 0.3;
}
 .team-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 40px;
     margin-top: 60px;
 }

 .team-card {
     background: white;
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     z-index: 1;
 }

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

 .team-image {
     width: 100%;
     height: 250px;
     background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
     display: flex;
     align-items: center;
     justify-content: center;
     color: #64748b;
     font-size: 4rem;
 }

 .team-info {
     padding: 30px;
     text-align: center;
 }

 .team-info h3 {
     font-size: 1.25rem;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 8px;
 }

 .team-info .position {
     color: #2563eb;
     font-weight: 500;
     margin-bottom: 15px;
 }

 .team-info p {
     color: #64748b;
     line-height: 1.6;
     font-size: 0.875rem;
 }

 .timeline-section {
     padding: 80px 0;
 }

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

 .timeline::before {
     content: '';
     position: absolute;
     left: 50%;
     top: 0;
     bottom: 0;
     width: 2px;
     background: #e2e8f0;
     transform: translateX(-50%);
 }

 .timeline-item {
     position: relative;
     margin-bottom: 40px;
     display: flex;
     align-items: center;
 }

 .timeline-item:nth-child(odd) {
     flex-direction: row;
 }

 .timeline-item:nth-child(even) {
     flex-direction: row-reverse;
 }

 .timeline-content {
     background: rgb(231, 237, 248);
     padding: 30px;
     border-radius: 16px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
     width: calc(50% - 30px);
     position: relative;
 }

 .timeline-item:nth-child(odd) .timeline-content {
     margin-right: 60px;
 }

 .timeline-item:nth-child(even) .timeline-content {
     margin-left: 60px;
 }

 .timeline-year {
     font-size: 1.5rem;
     font-weight: 700;
     color: #2563eb;
     margin-bottom: 10px;
 }

 .timeline-content h3 {
     font-size: 1.25rem;
     font-weight: 600;
     color: #1e293b;
     margin-bottom: 10px;
 }

 .timeline-content p {
     color: #64748b;
     line-height: 1.6;
 }

 .timeline-dot {
     position: absolute;
     left: 50%;
     width: 16px;
     height: 16px;
     background: #2563eb;
     border-radius: 50%;
     transform: translateX(-50%);
     border: 4px solid white;
     box-shadow: 0 0 0 4px #e2e8f0;
 }

 .team-image img {
     width: 100%;
     height: 250px;
     /* same height as .team-image */
     object-fit: cover;
     display: block;
 }


 @media (max-width: 768px) {

     .about-content,
     .about-content.reverse {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

     .about-text h2 {
         font-size: 2rem;
     }

     .mission-vision-grid {
         grid-template-columns: 1fr;
         gap: 40px;
     }

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

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

     .timeline::before {
         left: 20px;
     }

     .timeline-item,
     .timeline-item:nth-child(even) {
         flex-direction: row;
     }

     .timeline-content,
     .timeline-item:nth-child(odd) .timeline-content,
     .timeline-item:nth-child(even) .timeline-content {
         width: calc(100% - 60px);
         margin-left: 60px;
         margin-right: 0;
     }

     .timeline-dot {
         left: 20px;
     }
 }

 .navbar {
     background: #fff;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .nav-container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 15px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .logo {
     height: 50px;
 }

 .nav-menu {
     display: flex;
     align-items: center;
     gap: 25px;
     list-style: none;
 }

 .nav-item {
     position: relative;
 }

 .nav-link {
     text-decoration: none;
     color: #1e293b;
     font-weight: 500;
     transition: color 0.3s;
 }

 .nav-link:hover,
 .nav-link.active {
     color: #2563eb;
 }

 /* Hamburger (mobile) */
 .hamburger {
     display: none;
     flex-direction: column;
     cursor: pointer;
 }

 .bar {
     width: 25px;
     height: 3px;
     background-color: #2563eb;
     border-radius: 3px;
 }

 /* Dropdown */
 .nav-item.dropdown .dropdown-toggle i {
     font-size: 0.75rem;
     margin-left: 6px;
 }

 .dropdown-menu {
     position: absolute;
     top: 100%;
     left: 0;
     background: #fff;
     border: 1px solid #e2e8f0;
     border-radius: 8px;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
     min-width: 200px;
     padding: 10px 0;
     display: none;
     z-index: 200;
 }

 .dropdown-menu li {
     list-style: none;
 }

 .dropdown-link {
     display: block;
     padding: 10px 16px;
     color: #1e293b;
     text-decoration: none;
     font-size: 0.95rem;
     transition: background 0.3s, color 0.3s;
 }

 .dropdown-link:hover {
     background: #2563eb;
     color: #fff;
 }

 /* Show dropdown on hover (desktop only) */
 @media (min-width: 769px) {
     .nav-item.dropdown:hover .dropdown-menu {
         display: block;
     }
 }

 @media (max-width: 768px) {
     .hamburger {
         display: flex;
     }

     .nav-menu {
         display: flex;
         position: fixed;
         left: -100%;
         top: 70px;
         height: calc(100vh - 130px);
         flex-direction: column;
         background-color: white;
         width: 100%;
         text-align: center;
         transition: 0.3s;
         box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
         padding: 20px 0;
         z-index: 999;

         overflow-y: auto;
         -webkit-overflow-scrolling: touch;
     }

     .nav-menu.active {
         left: 0;
     }

     .nav-menu li {
         margin: 10px 0;
     }

     /* Dropdown on mobile */
     .dropdown-menu {
         position: static;
         background: #f9fafb;
         box-shadow: none;
         border: none;
         padding: 0;
     }

     .dropdown-link {
         padding: 10px 0;
         display: block;
     }

     /* Extra adjustments for other sections (optional) */
     .hero-content {
         grid-template-columns: 1fr;
         gap: 40px;
         text-align: center;
     }

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

     .hero-stats {
         grid-template-columns: repeat(2, 1fr);
         gap: 20px;
     }

     .section-title {
         font-size: 2rem;
     }

     .footer-content {
         grid-template-columns: 1fr;
         gap: 30px;
         text-align: center;
     }

     .hero-buttons {
         justify-content: center;
     }

     .social-links {
         display: flex;
         gap: 1rem;
         justify-content: center;
     }

     .dropdown-menu {
         position: static;
         box-shadow: none;
         border: none;
     }

     .nav-link::after {
         content: '';
         position: absolute;
         bottom: -5px;
         left: 0;
         width: 0;
         height: 2px;
         background: #2563eb;
         transition: width 0.3s ease;
     }

     .nav-link.active::after {
         width: 100%;
     }
 }
/* Card Layout Fixes */
.card-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.card-container .card {
    min-height: 400px;
    max-height: 450px;
    flex: 1 1 300px;
    max-width: 400px;
}

/* Single card centering */
.card-container:has(.card:only-child) {
    justify-content: center;
}

.card-container .card:only-child {
    max-width: 450px;
    width: 100%;
}

/* Value cards specific fixes */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.value-card {
    min-height: 400px;
    max-width: 400px;
    width: 100%;
}

/* News cards fixes */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.news-card {
    min-height: 400px;
    max-width: 400px;
    width: 100%;
}

/* Product cards fixes */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-items: center;
}

.product-card {
    min-height: 400px;
    max-width: 400px;
    width: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .mission-vision-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mission-vision-card {
        min-height: auto;
    }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .card-header h3 {
        font-size: 1.5rem;
    }
    
    .card-container,
    .values-grid,
    .news-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .card,
    .value-card,
    .news-card,
    .product-card {
        max-width: 100%;
        min-height: 350px;
    }
}

