/* About Us Hero Section */
.about-hero-section {
    position: relative;
    height: 100vh; /* Full-screen height */
    background-image: url('../images/about-image.png'); /* Background image */
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    background-attachment: fixed;
    margin-top: -30px;
}

.about-hero-section .hero-overlay {
    background-color: rgba(0, 0, 0, 0.329); /* Dark overlay */
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6); /* Subtle shadow for readability */
}

.about-hero-section p {
    font-size: 1.2rem;
    color: #f0f0f0;
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero-section .btn-orange {
    background-color: #ff7f00;
    color: white;
    font-weight: bold;
    font-size: 1rem;
    border-radius: 5px;
    padding: 12px 20px;
    margin-top: 20px;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 250px;
    margin: auto;
}

.about-hero-section .btn-orange:hover {
    background-color: #e56700;
    transform: scale(1.05);
}

.about-hero-section .btn-orange i {
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero-section h1 {
        font-size: 2.2rem;
    }

    .about-hero-section p {
        font-size: 1rem;
    }

    .about-hero-section .btn-orange {
        font-size: 0.9rem;
        padding: 10px 15px;
    }
}




/* Mission, Vision, Values, and Goals Section */
.mission-vision-section .section-title h2 {
    font-size: 2.5rem;
    color: #6c4cff; /* Violet color */
    margin-bottom: 10px;
}

.mission-vision-section .section-title p {
    font-size: 1.2rem;
    color: #6c757d; /* Muted gray */
}

.mission-vision-section .card {
    border: none;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-section .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.mission-vision-section .card i {
    font-size: 2.5rem;
    color: #e56700;
}

.mission-vision-section .card h4 {
    margin-top: 15px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
}

.mission-vision-section .card p {
    font-size: 1rem;
    color: #6c757d; /* Muted gray */
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-vision-section .section-title h2 {
        font-size: 2rem;
    }

    .mission-vision-section .section-title p {
        font-size: 1rem;
    }

    .mission-vision-section .card h4 {
        font-size: 1.3rem;
    }

    .mission-vision-section .card p {
        font-size: 0.9rem;
    }
}


/* Our Story Section */
/* General Reset */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

/* Our Story Section */
.our-story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.our-story-section h6 {
    color: #ff7f00; /* Orange */
    letter-spacing: 2px;
    font-weight: bold;
}

.our-story-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 10px;
}

.our-story-section p {
    font-size: 1.1rem;
    color: #6c757d; /* Muted gray */
    margin-bottom: 20px;
}

.our-story-section .signature {
    font-size: 1.2rem;
    color: #6c4cff; /* Violet */
    font-family: 'Dancing Script', cursive; /* Optional for a cursive font */
}

/* Illustration Image */
.our-story-section img {
    max-width: 100%;
    height: auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
}

/* Stats Box */
.stats-box {
    font-size: 1rem;
    font-weight: bold;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.stats-box h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.stats-box:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}

/* Colors */
.bg-violet {
    background-color: #6c4cff;
}

.bg-orange {
    background-color: #ff7f00;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .our-story-section h2 {
        font-size: 2rem;
    }

    .our-story-section p {
        font-size: 1rem;
    }

    .stats-box h2 {
        font-size: 2.5rem;
    }
}


/* Footer */
.footer {
    background: #000;
    color: white;
  }
  
  .footer h5 {
    color: #ff7f00;
    font-size: 1.5rem;
  }
  
  .footer a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
  }
  
  .footer a:hover {
    color: #ff7f00;
  }
  
  .footer .border-white {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  