 /* ========== RESET ========== */
 :root {
      --primary-color: #f9048f;
      --primary-secondary:linear-gradient(135deg, #1a2a6c, #2a3a7c);
      --accent-color: #ffb300;
      --text-color: #060000;
      --background-color: #ffffff;
      --footer-bg: #0f0f0f;
      --footer-text: #fdfdfd;
          --secondary-color: #6a75f8;
            --text-color: #333;
            --light-gray: #f5f8ff;
            --medium-gray: #e4e9ff;
            --dark-gray: #666;
            --white: #fff;
            --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }
 * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }
    body {
      font-family: "Poppins", sans-serif;
      line-height: 1.6;
      background: #f5f5f5;
            color: var(--text-color);
          
    }

    /* ========== TOP BAR ========== */
    .top-bar {
      background: var(--primary-secondary);
      color: #fff;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 160px; /* increased left & right padding */
      font-size: 14px;
      flex-wrap: wrap;
    }

    .top-left, .top-center, .top-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .top-right a {
      color: #fff;
      text-decoration: none;
      margin-left: 10px;
      font-size: 16px;
      transition: color 0.3s;
    }
    .top-right a:hover {
      color: #00bfa5;
    }

    /* Simple icon style (using Unicode emojis or Font Awesome alternative) */
    .icon {
      display: inline-block;
      font-size: 16px;
    }

    /* ========== NAVIGATION BAR ========== */
    header {
      background: var(--background-color);
      position: sticky;
      top: 0;
      z-index: 1000;
      box-shadow: 0 2px 6px rgba(0,0,0,0.2);
    }
    .nav-container {
      max-width: 80%;
      margin: auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 2px 10px; /* increased padding */
      flex-wrap: wrap;
      margin-left: 10px;
    }

    /* LOGO AREA */
    .logo-area {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .logo-area img {
      width: 60px;
      height: 60px;
    }
    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.2;
    }
    .logo-text h2 {
      font-size: 20px;
      font-weight: 700;
      color: var(--primary-color);
    }
    .logo-text p {
      font-size: 18px;
      color: #555;
      font-family: Cambria, Cochin, Georgia, Times;
      color: var(--primary-secondary);
    }

    /* NAV MENU */
    .nav-menu {
      display: flex;
      align-items: center;
    }
    .nav-menu ul {
      list-style: none;
      display: flex;
      gap: 20px;
    }
    .nav-menu a {
      text-decoration: none;
      color: #333;
      font-weight: 500;
      transition: color 0.3s;
    }
    .nav-menu a:hover {
      color: #009688;
    }

    /* DONATE BUTTON */
    .donate-btn {
  background: var(--primary-color);
  color: var(--background-color);
  padding: 8px 20px;
  border-radius: 10px;
  font-weight: 600;
  transition: background 0.3s;
  margin-left: 10px;  /* 👈 increases the gap from last menu item */
}

    .btn-donate:hover {
      background: var(--primary-color);
    }

    /* MOBILE MENU TOGGLE */
    .menu-toggle {
      display: none;
      font-size: 28px;
      cursor: pointer;
      background: transparent;
      border: none;
      color: #333;
    }

    /* MOBILE STYLES */
    @media (max-width: 768px) {
      .menu-toggle {
        display: block;
      }
      .nav-menu {
        display: none;
        width: 100%;
      }
      .nav-menu.active {
        display: block;
      }
      .nav-menu ul {
        flex-direction: column;
        background: #fff;
        width: 100%;
        border-top: 1px solid #ddd;
      }
      .nav-menu li {
        border-bottom: 1px solid #eee;
      }
      .nav-menu a {
        display: block;
        padding: 12px 20px;
        color: #333;
      }
      .donate-btn {
        width: 100%;
        text-align: center;
        margin-top: 10px;
      }
    }

    /* ========== MAIN CONTENT ========== */
    .main-content {
      padding: 50px 20px;
      text-align: center;
    }

    /* ========== FOOTER ========== */
    .footer {
      background: var(--primary-secondary);
      color: #fff;
      padding: 10px 20px 10px;
      margin-left: 0%;
    }
    .footer-container {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      max-width: 1350px;
      margin: auto;
    }
    .footer-section {
      flex: 1 1 350px;
      margin: 10px;
    }
    .footer-section h3 {
      border-bottom: 2px solid var(--primary-secondary);
      padding-bottom: 5px;
      margin-bottom: 10px;
    }
    .footer-section ul {
      list-style: none;
    }
    .footer-section ul li {
      margin-bottom: 6px;
    }
    .footer-section a {
      color: #ccc;
      text-decoration: none;
      transition: color 0.3s;
    }
    .footer-section a:hover {
      color: #fff;
    }
    .footer-bottom {
      width: 100%;
      text-align: center;
      border-top: 1px solid var(--primary-color);
      margin-top: 20px;
      padding-top: 10px;
      font-size: 14px;
    }


    .slider {
  position: relative;
  width: 100%;
  height: 70vh; /* Full viewport height */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--primary-secondary);
}

.slide {
  display: flex;
  align-items: center;
  justify-content: space-between; /* keeps gap between text and image */
  width: 100%;
  height: 100%; /* full viewport height */
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 1s ease;
 
}

.slide.active {
  opacity: 1;
  position: relative;
  z-index: 1;
}

/* Left Text Section */
.text-section {
  flex: 1;
  max-width: 45%; /* prevents text from taking full width */
  margin-right: 5px; /* gap between text and image */
  padding: 50px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #fff;
}

.text-section h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  animation: fadeIn 1.5s ease forwards;
}

.text-section h3 {
  font-size: 1.4rem;
  color: var(--accent-color);
  margin-bottom: 20px;
  animation: bounceIn 1.5s ease forwards;
}

.text-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
  animation: fadeIn 1.8s ease forwards;
}

.btn-group {
  display: flex;
  gap: 15px;
}

.btn {
  background: var(--primary-color);
  color: #fff;
  padding: 10px 22px;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: 0.3s;
}

.btn:hover {
  background: var(--accent-color);
}

/* Right Image Section */
.image-section {
  flex: 1;
  height: 100%;           /* fill the slide height */
  max-height: 100%;       /* prevent overflow */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 400px;      /* ensures small slides keep minimum size */
}

.image-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;      /* image fills container without stretching */
  
}

/* Pagination Arrows */
.arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 50%;
  z-index: 2;
  transition: 0.3s;
}

.arrow:hover {
  background: var(--accent-color);
}

.arrow.left {
  left: 20px;
}

.arrow.right {
  right: 20px;
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceIn {
  0% { transform: scale(0.5); opacity: 0; }
  60% { transform: scale(1.2); opacity: 1; }
  100% { transform: scale(1); }
}

/* Responsive */
@media (max-width: 900px) {
  .slide {
    flex-direction: column; /* stack text and image vertically */
    justify-content: center;
    text-align: center;
    padding: 30px;
  }

  .text-section {
    max-width: 100%;
    margin: 20px 0 0 0; /* spacing below image */
    padding: 30px;
  }

  .image-section {
    width: 100%;
    height: 50vh; /* half viewport on mobile */
  }
}






        
        .about-section {
            padding: 50px 5%;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 90vh;
        }

        .about-container {
            max-width: 80%;
            width: 100%;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 50px;
        }

        .images-container {
            flex: 1;
            min-width: 300px;
            position: relative;
            height: 500px;
        }

        .image-main {
            width: 70%;
            height: 70%;
            border-radius: 150px 0px 150px 0px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: absolute;
            top: 0;
            left: 0;
            z-index: 2;
            transition: transform 0.5s ease;
        }

        .image-secondary {
            width: 60%;
            height: 60%;
            border-radius: 0px 100px 0px 100px;
            overflow: hidden;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
            position: absolute;
            bottom: 0;
            right: 0;
            z-index: 1;
            transition: transform 0.5s ease;
        }

        .image-main:hover, .image-secondary:hover {
            transform: scale(1.05);
        }

        .image-main img, .image-secondary img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.8s ease;
        }

        .image-main:hover img, .image-secondary:hover img {
            transform: scale(1.1);
        }

        .content-container {
            flex: 1;
            min-width: 300px;
        }

        .section-subtitle {
            color: var(--primary-secondary);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: #000;
        }
        .sectiontitlehead{
            font-size: 2.5rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: var(--primary-color);
        }
        .section-text {
            color: #666;
            line-height: 1.8;
            margin-bottom: 30px;
            font-size: 1.1rem;
        }

        .features-list {
            list-style: none;
            margin-bottom: 40px;
        }

        .features-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: center;
            color: #444;
            font-weight: 500;
        }

        .features-list li i {
            color: #4a6cf7;
            margin-right: 10px;
            font-size: 1.2rem;
        }

        .btn {
            display: inline-block;
            padding: 15px 35px;
            background: var(--primary-color);
            color: white;
            border-radius: 15px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .btn:hover:before {
            width: 100%;
        }

        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px var(--primary-secondary);
        }

        /* Improved responsive design */
        @media (max-width: 992px) {
            .about-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .images-container {
                height: 400px;
                width: 100%;
                max-width: 500px;
                margin: 0 auto;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 768px) {
            .about-section {
                padding: 60px 5%;
            }
            
            .images-container {
                height: 350px;
            }
            
            .image-main, .image-secondary {
                position: relative;
                width: 80%;
                height: 60%;
                margin: 0 auto 20px;
            }
            
            .image-main {
                top: auto;
                left: auto;
            }
            
            .image-secondary {
                bottom: auto;
                right: auto;
            }
            
            .section-title {
                font-size: 2rem;
            }
        }

        @media (max-width: 576px) {
            .about-section {
                padding: 40px 5%;
            }
            
            .images-container {
                height: 300px;
            }
            
            .image-main, .image-secondary {
                width: 90%;
                height: 50%;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-text {
                font-size: 1rem;
            }
            
            .btn {
                padding: 12px 30px;
                font-size: 0.9rem;
            }
        }

        /* Alternative layout for very small screens */
        @media (max-width: 400px) {
            .images-container {
                display: flex;
                flex-direction: column;
                height: auto;
                gap: 20px;
            }
            
            .image-main, .image-secondary {
                position: static;
                width: 100%;
                height: 250px;
                margin: 0;
            }
        }




 .portfolio-section {
            padding: 5vh 5%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: white;
        }

        .section-header {
            text-align: center;
            margin-bottom: 60px;
        }

        .section-subtitle {
            color: var(--text-color);
            font-weight: 600;
            font-size: 1.1rem;
            margin-bottom: 15px;
            display: block;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-title {
            font-size: 2.8rem;
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 20px;
            color: white;
        }

        .section-description {
            max-width: 600px;
            margin: 0 auto;
            color: #b8c1ec;
            line-height: 1.6;
            font-size: 1.1rem;
        }

        .portfolio-container {
            max-width: 80%;
            margin: 0 auto;
        }

        .portfolio-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-bottom: 60px;
        }

        .portfolio-item {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        }

        .portfolio-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
            background: rgba(255, 255, 255, 0.08);
        }

        .portfolio-image {
            width: 100%;
            height: 250px;
            overflow: hidden;
            position: relative;
        }

        .portfolio-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .portfolio-item:hover .portfolio-image img {
            transform: scale(1.1);
        }

        .portfolio-overlay {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(74, 108, 247, 0.8);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .portfolio-item:hover .portfolio-overlay {
            opacity: 1;
        }

        .overlay-content {
            text-align: center;
            transform: translateY(20px);
            transition: transform 0.4s ease;
        }

        .portfolio-item:hover .overlay-content {
            transform: translateY(0);
        }

        .overlay-content i {
            font-size: 2.5rem;
            margin-bottom: 15px;
            color: white;
        }

        .overlay-content h4 {
            font-size: 1.2rem;
            font-weight: 600;
        }

        .portfolio-info {
            padding: 25px;
        }

        .portfolio-title {
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 10px;
            color: white;
        }

        .portfolio-category {
            color: #b8c1ec;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .portfolio-btn-container {
            width: 100%;
            display: flex;
            justify-content: center;
        }

        .portfolio-btn {
            display: block;
            width: 100%;
            max-width: 80%;
            padding: 20px;
            background: #4a6cf7;
            color: white;
            border: none;
            border-radius: 10px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            cursor: pointer;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 5px 15px rgba(74, 108, 247, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .portfolio-btn:before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 0%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: all 0.5s ease;
            z-index: -1;
        }

        .portfolio-btn:hover:before {
            width: 100%;
        }

        .portfolio-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 20px rgba(74, 108, 247, 0.4);
        }

        /* Responsive Design */
        @media (max-width: 992px) {
            .portfolio-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            .portfolio-section {
                padding: 80px 5%;
            }
            
            .section-title {
                font-size: 2.2rem;
            }
            
            .portfolio-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .portfolio-btn {
                padding: 18px;
                font-size: 1rem;
            }
        }

        @media (max-width: 576px) {
            .portfolio-section {
                padding: 60px 5%;
            }
            
            .section-title {
                font-size: 1.8rem;
            }
            
            .section-description {
                font-size: 1rem;
            }
            
            .portfolio-image {
                height: 200px;
            }
            
            .portfolio-info {
                padding: 20px;
            }
            
            .portfolio-title {
                font-size: 1.2rem;
            }
        }

/*CONTACT PAGE DESIGN*/
        .contact-container {
            max-width: 80%;
            margin: 0 auto;
            padding: 10px 5px;
        }

        .contact-header {
            text-align: center;
            margin-bottom: 40px;
        }

        .contact-header h1 {
            font-size: 2.5rem;
            color: var(--primary-color);
            margin-bottom: 10px;
        }

        .contact-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 600px;
            margin: 0 auto;
        }

        .contact-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .contact-info {
            flex: 1;
            min-width: 300px;
            padding: 40px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
        }

        .contact-info h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-info h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--white);
        }

        .info-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 25px;
        }

        .info-icon {
            margin-right: 15px;
            font-size: 1.2rem;
            background: rgba(255, 255, 255, 0.2);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .info-text h3 {
            font-size: 1.1rem;
            margin-bottom: 5px;
        }

        .info-text p {
            font-size: 0.95rem;
            opacity: 0.9;
        }

        .social-links {
            display: flex;
            margin-top: 30px;
        }

        .social-links a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            margin-right: 10px;
            color: var(--white);
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .social-links a:hover {
            background: var(--white);
            color: var(--primary-color);
            transform: translateY(-3px);
        }

        .contact-form {
            flex: 1;
            min-width: 300px;
            padding: 40px;
        }

        .contact-form h2 {
            font-size: 1.8rem;
            color: var(--primary-color);
            margin-bottom: 25px;
            position: relative;
            padding-bottom: 15px;
        }

        .contact-form h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--primary-color);
        }

        .form-group {
            margin-bottom: 20px;
        }

        .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: var(--text-color);
        }

        .form-control {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid var(--medium-gray);
            border-radius: 8px;
            font-size: 1rem;
            transition: all 0.3s ease;
        }

        .form-control:focus {
            border-color: var(--primary-color);
            box-shadow: 0 0 0 3px rgba(74, 108, 247, 0.2);
            outline: none;
        }

        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }

        .submit-btn {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            border: none;
            padding: 14px 30px;
            border-radius: 8px;
            font-size: 1rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }

        .submit-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 15px rgba(74, 108, 247, 0.3);
        }

        .submit-btn:active {
            transform: translateY(-1px);
        }

        .submit-btn i {
            margin-left: 8px;
        }

        .map-container {
            margin-top: 40px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .map-placeholder {
            background: var(--medium-gray);
            height: 300px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
            font-size: 1.1rem;
        }

        /* Responsive styles */
        @media (max-width: 768px) {
            .contact-content {
                flex-direction: column;
            }
            
            .contact-info, .contact-form {
                padding: 30px 25px;
            }
            
            .contact-header h1 {
                font-size: 2rem;
            }
        }

        @media (max-width: 480px) {
            .contact-container {
                padding: 20px 15px;
            }
            
            .contact-info, .contact-form {
                padding: 25px 20px;
            }
            
            .contact-header h1 {
                font-size: 1.8rem;
            }
        }


        /*ABOUT US PAGE DESIGN0*/
        /* About Page Specific Styles */
        .about-container {
            max-width: 80%;
            margin: 0 auto;
            padding: 30px 20px;
        }

        /* Hero Section */
        .about-hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin: auto;
            width: 80%;
        }

        .hero-content {
            flex: 1;
            min-width: 300px;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            color: var(--primary-color);
            margin-bottom: 20px;
            line-height: 1.2;
        }

        .hero-content p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 30px;
        }

        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 14px 30px;
            border-radius: 8px;
            text-decoration: none;
            font-weight: 600;
            transition: var(--transition);
            box-shadow: 0 4px 15px rgba(74, 108, 247, 0.3);
        }

        .cta-button:hover {
            transform: translateY(-3px);
            box-shadow: 0 7px 20px rgba(74, 108, 247, 0.4);
        }

       .hero-image {
    flex: 1;
    min-width: 300px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

    

        /* Stats Section - Fixed Horizontal Layout */
        .about-stats-section {
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            color: var(--white);
            padding: 20px 0;
            border-radius: 15px;
            margin: auto;
            text-align: center;
            width: 80%;
            
        }

        .about-stats-container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .about-stats-section h2 {
            font-size: 2.2rem;
            margin-bottom: 60px;
            position: relative;
            display: inline-block;
        }

        .about-stats-section h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: var(--white);
        }

        .about-stats-grid {
            display: flex !important;
            justify-content: space-around !important;
            flex-wrap: wrap;
            gap: 20px;
        }

        .about-stat-item {
            padding: 20px;
            flex: 1;
            min-width: 200px;
            max-width: 250px;
        }

        .about-stat-number {
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 10px;
            display: block;
        }

        .about-stat-text {
            font-size: 1.1rem;
            opacity: 0.9;
        }

        /* Mission Section */
        .about-mission-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 40px;
            margin: auto;
            width: 80%;
        }

        .about-mission-image {
            flex: 1;
            min-width: 300px;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }

        .about-mission-content {
            flex: 1;
            min-width: 300px;
        }

        .about-mission-content h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 20px;
        }

        .about-mission-content p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            margin-bottom: 20px;
        }

        .about-values-list {
            list-style: none;
            margin-top: 30px;
        }

        .about-values-list li {
            margin-bottom: 15px;
            display: flex;
            align-items: flex-start;
        }

        .about-values-list i {
            color: var(--accent-color);
            margin-right: 10px;
            margin-top: 5px;
        }

        /* Team Section - Fixed Horizontal Layout */
        .about-team-section {
            margin: auto;
            width: 80%;
        }

        .about-section-header {
            text-align: center;
            margin-bottom: 50px;
        }

        .about-section-header h2 {
            font-size: 2.2rem;
            color: var(--primary-color);
            margin-bottom: 15px;
        }

        .about-section-header p {
            font-size: 1.1rem;
            color: var(--dark-gray);
            max-width: 700px;
            margin: 0 auto;
        }

        .about-team-grid {
            display: flex !important;
            justify-content: space-between !important;
            flex-wrap: wrap;
            gap: 30px;
        }

        .about-team-member {
            background: var(--white);
            border-radius: 15px;
            overflow: hidden;
            box-shadow: var(--shadow);
            transition: var(--transition);
            flex: 1;
            min-width: 250px;
            max-width: 270px;
        }

        .about-team-member:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
        }

        .about-member-image {
            height: 250px;
            background: var(--medium-gray);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--dark-gray);
            overflow: hidden;
        }

        .about-member-info {
            padding: 25px;
            text-align: center;
        }

        .about-member-info h3 {
            font-size: 1.3rem;
            margin-bottom: 5px;
            color: var(--text-color);
        }

        .about-member-info p {
            color: var(--primary-color);
            font-weight: 500;
            margin-bottom: 15px;
        }

        .about-member-social {
            display: flex;
            justify-content: center;
            gap: 10px;
        }

        .about-member-social a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            background: var(--light-gray);
            border-radius: 50%;
            color: var(--dark-gray);
            text-decoration: none;
            transition: var(--transition);
        }

        .about-member-social a:hover {
            background: var(--primary-color);
            color: var(--white);
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .about-stats-grid {
                grid-template-columns: repeat(2, 1fr) !important;
            }
            
            .about-team-member {
                min-width: calc(50% - 15px);
            }
        }

        @media (max-width: 768px) {
            .about-hero, .about-mission-section {
                flex-direction: column;
            }
            
            .hero-content h1, .about-mission-content h2, .about-section-header h2 {
                font-size: 2rem;
            }
            
            .about-stats-grid {
                flex-direction: column;
                align-items: center;
            }
            
            .about-stat-item {
                max-width: 100%;
                width: 100%;
            }
            
            .about-team-grid {
                justify-content: center !important;
            }
            
            .about-team-member {
                min-width: 100%;
                max-width: 350px;
            }
        }

        @media (max-width: 576px) {
            .about-container {
                padding: 20px 15px;
            }
            
            .hero-content h1, .about-mission-content h2, .about-section-header h2 {
                font-size: 1.8rem;
            }
            
            .about-stat-number {
                font-size: 2.5rem;
            }
        }