
/* Additional styles for Why ACM-W page */
.hero {
    background-color: #03396c;
    color: #b3cde0;
    text-align: center;
    padding: 4rem 1rem;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #b3cde0;
}

.hero .subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

section {
    margin-bottom: 4rem;
}

section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #03396c;
}

/* Specialties Section */
.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.specialty-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.specialty-card:hover {
    transform: translateY(-10px);
}

.specialty-card .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.specialty-card h3 {
    color: #03396c;
    margin-bottom: 1rem;
}

/* Activities Section */
.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.activity-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.activity-card h3 {
    color: #03396c;
    margin-bottom: 1rem;
}

.activity-card ul {
    list-style: none;
    padding: 0;
}

.activity-card ul li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.activity-card ul li::before {
    content: "•";
    color: #6497b1;
    position: absolute;
    left: 0;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #03396c;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #6497b1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero .subtitle {
        font-size: 1rem;
    }

    .specialty-grid,
    .activities-grid,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    section {
        margin-bottom: 2rem;
    }
}


/* Ensure proper spacing */
main {
    min-height: calc(100vh - 100px);
    padding-bottom: 20px;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links.active {
        position: static;
        flex-direction: row;
        background-color: transparent;
        padding: 0;
    }
}


/* Additional styles for Why ACM-W section */

/* General Hero Section Styling */
.hero {
    background-color: #03396c;
    color: #b3cde0;
    padding: 4rem 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.content-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
}

/* Left side: Text container */
.text-container {
    flex: 1 1 45%;
    max-width: 600px;
    text-align: left;
}

.text-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #b3cde0;
}

.text-container p {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
}

/* Right side: Image container */
.image-container {
    flex: 1 1 45%;
    max-width: 500px;
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-container {
        flex-direction: column;
        text-align: center;
    }

    .text-container {
        text-align: center;
    }

    .text-container h1 {
        font-size: 2.5rem;
    }

    .text-container p {
        font-size: 1rem;
    }

    .image-container {
        margin-top: 2rem;
    }
}

.divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px auto; /* Add auto margins for center alignment */
    width: 100%; /* Ensures the divider spans the full width of the parent */    position: relative;
    width: 40%; /* Each line takes 49.5% for a total of 99% */
    padding-bottom: 30px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    
    height: 2px;
    background-color: #0775be; /* Light blue color */
}

.diamond1 {
    width: 20px;
    height: 20px;
    background-color: #011f4b ; /* Match line color */
    transform: rotate(45deg); /* Create a diamond shape */
    
}
.diamond {
    width: 20px;
    height: 20px;
    background-color: #005b96; /* Match line color */
    transform: rotate(45deg); /* Create a diamond shape */
    
}

.diamond1 + .diamond {
    margin-left: -7px; /* Overlap the diamonds slightly */
}


