

.image-description-section {
    background: white;
    padding: 50px 20px;
    text-align: center;
}

.image-description-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-heading {
    font-size: 2rem;
    color: black;
    margin-bottom: 20px;
}

.image img {
    width: 100%;
    max-width: 750px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: block;
    margin: 0 auto;
}

.text {
    text-align: left;
    margin-top: 15px;
}

.text p {
    font-size: 1.2rem;
    color: black;
    line-height: 1.6;
    text-align: justify;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .section-heading {
        font-size: 1.8rem;
    }
    .image img {
        max-width: 90%;
    }
    .text p {
        font-size: 0.95rem;
    }
}

@media screen and (max-width: 480px) {
    .image-description-section {
        padding: 30px 15px;
    }
    .section-heading {
        font-size: 1.5rem;
    }
    .text p {
        font-size: 0.9rem;
    }
}

.pharmacy-programs {
    background: #f9f9f9;
    padding: 50px 20px;
    text-align: center;
}

.pharmacy-programs .container {
    max-width: 900px;
    margin: 0 auto;
}

.pharmacy-programs h2 {
    font-size: 2rem;
    color: black;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    color: black;
    margin-bottom: 30px;
    text-align: left;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.program-box {
    background: white;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.program-box img {
    width: 100%;
    max-width: 300px;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 15px;
}

.program-box h3 {
    font-size: 1.5rem;
    color: black;
    margin-bottom: 10px;
}

.program-box p {
    font-size: 1rem;
    color:black;
    line-height: 1.5;
    text-align: justify;
}

.program-box:hover {
    transform: scale(1.05);
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .programs-grid {
        grid-template-columns: 1fr;
    }
    .program-box img {
        max-width: 200px;
        height: 130px;
    }
}
.full-screen-image {
    position: relative;
    width: 100%;
    height: 100vh; /* Full screen height */
    background: url('assets/images/college.jpeg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.overlay {
    background: rgba(0, 0, 0, 0.5); /* Dark overlay for better text readability */
    color: white;
    text-align: center;
    padding: 20px;
    border-radius: 10px;
}

.overlay h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.overlay p {
    font-size: 1.2rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .overlay {
        width: 90%;
    }
    .overlay h2 {
        font-size: 2rem;
    }
    .overlay p {
        font-size: 1rem;
    }
}
