/* About Hero Section */
.about-hero {
    background: linear-gradient(rgba(10, 26, 58, 0.8), rgba(10, 26, 58, 0.8)),
        url('https://images.unsplash.com/photo-1560448204-e02f11c3d0e2?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

/* Animated Stats */
.stat-number {
    font-size: 3.5rem;
    color: var(--accent-gold);
    font-weight: bold;
    display: inline-block;
}

/* Feature Cards */
.feature-card {
    border: none;
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    height: 100%;
    background: white;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-card .card-body {
    padding: 2rem;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--accent-gold);
    margin-bottom: 1.5rem;
}

/* Floating Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0px); }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

/* Section Divider */
.section-divider {
    width: 100px;
    height: 4px;
    background: var(--accent-gold);
    margin: 1.5rem auto;
}

/* Team Cards */
.team-card {
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.5s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.team-card:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.team-img {
    height: 350px;
    object-fit: cover;
    transition: all 0.5s;
}

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

.map-container {
    position: relative;
    background: url('https://images.unsplash.com/photo-1483728642387-6c3bdd6c93e5?ixlib=rb-4.0.3&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    min-height: 400px;
    border-radius: 10px;
    overflow: hidden;
  }

  .overlay-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* Centers the content */
    text-align: center;
    color: white; /* Ensures text is readable on the image */
    z-index: 1; /* Ensures the content is on top of the image */
  }

  .overlay-content h3 {
    font-size: 2rem; /* Adjust as needed */
    font-weight: bold;
  }

  .overlay-content ul {
    font-size: 1.1rem; /* Adjust as needed */
  }

  .overlay-content li {
    margin-bottom: 1rem;
  }

  .overlay-content i {
    font-size: 1.2rem; /* Adjust as needed */
  }
