


/* Base Styles */
:root {
    --primary-color: #db3434;
    --secondary-color: #914a4a;
    --dark-color: #502c2c;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    margin-top: 40px;
}

/* Header Styles */
.about-header {
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('top slider imges/home page.jpg') no-repeat center center/cover;
    opacity: 0.2;
    z-index: 0;
}

.about-header-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-header h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInDown 1s ease;
}

.about-header p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.3s both;
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: white;
}

.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 15px;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto;
    border-radius: 2px;
}

.mission-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.mission-text {
    flex: 1;
    min-width: 300px;
}

.mission-text h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.mission-text p {
    margin-bottom: 20px;
    color: var(--text-light);
}

.mission-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-image:hover {
    transform: translateY(-10px);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    text-align: center;
    padding-bottom: 20px;
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.team-image {
    height: 250px;
    width: 250px;
    margin: 0 auto;
    margin-top: 20px;
    overflow: hidden;
    border-radius: 50%;
    border: 5px solid var(--primary-color);
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.1);
}

.team-info {
    padding: 25px 20px;
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
    color: var(--dark-color);
}

.team-info p {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.team-social a {
    color: var(--text-light);
    transition: all 0.3s ease;
}

.team-social a:hover {
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark-color), var(--secondary-color));
    color: white;
    text-align: center;
    
}

.section-title1 h2{
    color: #ecf0f1;
    font-size: 2.5rem;
}



.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    padding: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: white;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 30px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: var(--light-color);
}

.value-card:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(219, 52, 52, 0.2);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.value-card:hover .value-icon {
    color: white;
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.value-card p {
    opacity: 0.9;
}

.value-card:hover p {
    opacity: 1;
}

/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .mission-content {
        flex-direction: column;
    }
    
    .mission-text, .mission-image {
        width: 100%;
    }
    
    .mission-image {
        order: -1;
    }
}

@media (max-width: 768px) {
    .about-header h1 {
        font-size: 2.5rem;
    }
    
    .about-header p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .mission-text h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .about-header {
        padding: 60px 0;
    }
    
    .about-header h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
}





/* Footer Styles */
.site-footer {
    background: linear-gradient(135deg, #502c2c, #914a4a);
    color: #fff;
    padding: 60px 0 20px;
    font-family: 'Segoe UI', sans-serif;
  }
  
  .footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    padding: 0 20px;
  }
  
  .footer-col {
    margin-bottom: 30px;
  }
  
  .footer-logo {
    height: 70px;
    margin-bottom: 20px;
  }
  
  .footer-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #db3434;
  }
  
  .footer-text {
    margin-bottom: 20px;
    line-height: 1.6;
    opacity: 0.8;
  }
  
  .footer-links li {
    margin-bottom: 12px;
    list-style: none;
  }
  
  .footer-links a {
    color: #ecf0f1;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0.8;
  }
  
  .footer-links a:hover {
    opacity: 1;
    padding-left: 5px;
    color: #db3434;
  }
  
  .contact-info p {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    opacity: 0.8;
  }
  
  .contact-info i {
    margin-right: 10px;
    color: #db3434;
  }
  
  .footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
  }
  
  .social-link {
    color: #fff;
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }
  
  .social-link:hover {
    background: #db3434;
    transform: translateY(-3px);
  }
  
  /* Updated Newsletter Form with Rounded Button */
  .newsletter-form {
    display: flex;
    flex-wrap: wrap;
    margin-top: 20px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 30px 0 0 30px;
    outline: none;
    font-size: 14px;
  }
  
  .newsletter-form button {
    padding: 12px 25px;
    background: #db3434;
    color: white;
    border: none;
    border-radius: 0 30px 30px 0;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    font-weight: 500;
  }
  
  .newsletter-form button:hover {
    background: #2980b9;
    transform: scale(1.05);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  
  .copyright {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
  }
  
  .goodbye-text {
    font-style: italic;
    opacity: 0.8;
    color: #db3434;
  }
  
  /* Font Awesome Icons */
  @import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .footer-container {
      grid-template-columns: 1fr 1fr;
    }
    
    .newsletter-form {
      flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
      border-radius: 30px;
      width: 100%;
    }
    
    .newsletter-form input {
      margin-bottom: 10px;
    }
  }
  
  @media (max-width: 480px) {
    .footer-container {
      grid-template-columns: 1fr;
    }
    
    .footer-col {
      text-align: center;
    }
    
    .footer-title::after {
      left: 50%;
      transform: translateX(-50%);
    }
    
    .footer-social {
      justify-content: center;
    }
    
    .contact-info p {
      justify-content: center;
    }
  }


