:root {
    --gold: #FFD700;
    --gold-light: #FFE44D;
    --turquoise: #006d77;
    --turquoise-light: #00959F;
    --dark: #333333;
    --light: #ffffff;
}

html {
    scroll-behavior: auto;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    color: var(--dark);
    background: url('./images/graduation.jpg') no-repeat center center fixed;
    background-size: cover;
    position: relative;
    min-height: 100vh;
    line-height: 1.6;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.top-banner {
    background-color: var(--gold);
    color: var(--dark);
    text-align: center;
    padding: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    white-space: nowrap;
    overflow: hidden;
}

.top-banner p {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 0 10px;
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 0.65rem;
        padding: 6px 2px;
    }
    .top-banner p {
        gap: 4px;
    }
}

@media (max-width: 360px) {
    .top-banner {
        font-size: 0.6rem;
        padding: 6px 1px;
    }
    .top-banner p {
        gap: 3px;
    }
}

.logo-container {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    padding: 12px 40px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: rgba(0, 109, 119, 0.7);
    border-radius: 12px;
    gap: 30px;
    margin-top: 35px;
}

.main-logo img {
    height: 160px;
    transition: transform 0.3s ease;
    background-color: rgba(255, 255, 255, 0);
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.certification-logo img {
    height: 120px;
    transition: transform 0.3s ease;
    background-color: rgba(255, 239, 17, 0.722);
    padding: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

header h1 {
    color: var(--gold);
    font-size: 2.2rem;
    font-weight: 600;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    margin: 0;
    text-align: center;
    line-height: 1.2;
}

.motto {
    color: var(--light);
    font-size: 1.3rem;
    font-weight: 400;
    font-style: italic;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    text-align: center;
    line-height: 1.2;
}

nav {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 3px;
}

nav a {
    text-decoration: none;
    color: var(--gold);
    font-weight: 500;
    font-size: 1rem;
    padding: 6px 14px;
    border-radius: 20px;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

nav a:hover {
    background-color: rgba(255, 215, 0, 0.9);
    color: var(--dark);
    text-shadow: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-space {
    min-height: 38vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.info {
    background: rgba(255, 255, 255, 0.95);
    padding: 40px;
    border-radius: 15px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

#about {
    margin-top: 25px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info:hover {
    transform: translateY(-5px);
}

.info h2 {
    color: var(--turquoise);
    margin-bottom: 25px;
    font-size: 2rem;
    position: relative;
    padding-bottom: 15px;
}

.info h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gold);
}

.info ul {
    list-style-type: none;
    padding-left: 20px;
}

.info ul li {
    margin: 15px 0;
    position: relative;
    padding-left: 25px;
}

.info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 20px auto;
    background: white;
    padding: 25px;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-form label {
    font-size: 1rem;
    color: var(--dark);
    font-weight: 500;
}

.contact-form input {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    width: 100%;
    -webkit-appearance: none;
    appearance: none;
}

.contact-form input.error {
    border-color: #ff4444;
}

.error-message {
    display: none;
    color: #ff4444;
    font-size: 0.85rem;
    margin-top: 4px;
}

.error-message.show {
    display: block;
}

.form-header {
    grid-column: 1 / -1;
    background: var(--turquoise);
    margin: -25px -25px 20px -25px;
    padding: 20px 25px;
    color: white;
    border-radius: 15px 15px 0 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.form-header span {
    opacity: 0.9;
    font-size: 1rem;
}

@media (max-width: 768px) {
    .contact-form {
        grid-template-columns: 1fr;
        margin: 20px 15px;
        padding: 20px;
        gap: 15px;
    }

    .form-header {
        margin: -20px -20px 15px -20px;
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }

    .form-group {
        gap: 6px;
    }

    .contact-form input,
    .contact-form select {
        padding: 14px;
        font-size: 16px;
    }

    .contact-form button {
        padding: 16px !important;
        font-size: 1.1rem !important;
        margin-top: 10px;
    }

    .form-footer {
        text-align: center;
        margin-top: 12px !important;
    }
}

.contact-form input:focus {
    border-color: var(--turquoise);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.1);
}

.contact-form button {
    grid-column: 1 / -1;
    background: var(--gold);
    color: var(--dark);
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-form button:hover {
    background: var(--turquoise);
    color: white;
}

.form-footer {
    grid-column: 1 / -1;
    text-align: left;
    color: #666;
    font-size: 0.85rem;
    margin-top: 5px;
}

footer {
    background-color: var(--turquoise);
    color: var(--light);
    padding: 60px 0 20px;
    margin-top: 80px;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section h3 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.footer-section p {
    margin: 10px 0;
}

.footer-section a {
    color: var(--light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--gold);
}

.social-links {
    text-align: center;
    margin-top: 40px;
}

.social-links a {
    margin: 0 15px;
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: var(--gold);
}

@media (max-width: 768px) {
    .top-banner {
        font-size: 0.8rem;
        padding: 6px;
    }

    .logo-container {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 20px;
        margin: 35px 15px 0 15px;
        width: calc(100% - 30px);
    }

    .main-logo, .certification-logo {
        display: flex;
        justify-content: center;
    }

    .main-logo img {
        height: 100px;
        padding: 10px;
    }

    .certification-logo img {
        height: 65px;
        padding: 8px;
    }

    header h1 {
        margin: 10px 0 8px 0;
        font-size: 1.8rem;
        text-align: center;
    }

    .motto {
        font-size: 1.1rem;
        text-align: center;
    }

    nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
        margin-top: 15px;
    }

    nav a {
        font-size: 1rem;
        padding: 8px 16px;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 20px;
        width: auto;
    }

    .hero-space {
        min-height: 25vh;
    }

    .container {
        padding: 0 15px;
    }

    .info {
        padding: 25px;
        margin: 20px 0;
    }

    #about {
        margin-top: 20px;
    }

    .info h2 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        text-align: center;
    }

    .info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .info p {
        font-size: 1rem;
        text-align: left;
    }

    .programs-section,
    .why-choose-us,
    .testimonials-section,
    .faq-section {
        padding: 40px 0;
        margin: 20px 0;
    }

    .programs-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 15px;
    }

    .program-card,
    .why-choose-item {
        margin: 0;
    }

    .program-header {
        font-size: 1.2rem;
        padding: 20px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .social-links {
        margin-top: 30px;
    }

    .social-links a {
        display: inline-block;
        margin: 10px 20px;
    }
}

@media (max-width: 480px) {
    .top-banner {
        font-size: 0.75rem;
        padding: 5px;
    }

    .logo-container {
        padding: 12px;
        gap: 15px;
        margin: 30px 10px 0 10px;
    }

    .main-logo img {
        height: 80px;
        padding: 8px;
    }

    .certification-logo img {
        height: 60px;
        padding: 6px;
    }

    header h1 {
        font-size: 1.5rem;
        margin: 6px 0;
    }

    .motto {
        font-size: 1rem;
    }

    nav {
        gap: 10px;
    }

    nav a {
        font-size: 0.9rem;
        padding: 6px 12px;
    }

    .info {
        padding: 20px;
        margin: 15px 0;
    }

    .info h2 {
        font-size: 1.5rem;
        margin-bottom: 15px;
    }

    .info p {
        font-size: 0.95rem;
    }

    .program-header {
        font-size: 1.1rem;
        padding: 15px;
    }

    .program-content p {
        font-size: 0.95rem;
    }

    .enroll-btn {
        font-size: 0.9rem;
        padding: 10px 20px;
    }

    .why-choose-title {
        font-size: 1.1rem;
    }

    .why-choose-text {
        font-size: 0.95rem;
    }

    .footer-section h3 {
        font-size: 1.1rem;
    }

    .footer-section p {
        font-size: 0.9rem;
    }
}

/* Add new styles for programs section */
.programs-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
    }

.programs-header {
    text-align: center;
    margin-bottom: 50px;
}

.programs-header h2 {
    color: var(--turquoise);
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.programs-header p {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.program-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    text-align: center;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-5px);
}

.program-header {
    background: var(--turquoise);
    color: var(--light);
    padding: 30px 20px;
    font-size: 1.3rem;
    font-weight: 600;
    min-height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
        flex-direction: column;
    justify-content: space-between;
}

.enroll-btn {
    background: var(--gold);
    color: var(--dark);
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    margin-top: 20px;
}

.enroll-btn:hover {
    background: var(--turquoise);
    color: var(--light);
    transform: translateY(-2px);
}

.program-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.program-content li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    color: var(--dark);
    font-size: 1rem;
}

.program-content li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}

@media (max-width: 768px) {
    .programs-header h2 {
        font-size: 1.8rem;
    }
    .programs-header p {
        font-size: 1rem;
    }
    .programs-grid {
        grid-template-columns: 1fr;
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .programs-header h2 {
        font-size: 1.6rem;
    }
    .programs-header p {
        font-size: 0.95rem;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
}

.testimonials-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonials-header h2 {
    color: var(--turquoise);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.testimonials-header p {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Featured Testimonials */
.featured-testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f5f5;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.05);
}

.testimonial-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 109, 119, 0.05));
}

.testimonial-content .course {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.testimonial-content .quote {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Graduate Gallery */
.gallery-header {
    text-align: center;
    margin: 40px 0 30px;
}

.gallery-header h3 {
    color: var(--turquoise);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.graduate-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: #f5f5f5;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 992px) {
    .featured-testimonials {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 0 15px;
    }

    .testimonial-image {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .testimonials-section {
        padding: 40px 0;
    }

    .featured-testimonials {
        grid-template-columns: 1fr;
        margin-bottom: 40px;
    }

    .testimonial-image {
        height: 180px;
    }

    .testimonial-content {
        padding: 15px;
    }

    .testimonial-content .course {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }

    .testimonial-content .quote {
        font-size: 0.95rem;
    }

    .graduate-gallery {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 15px;
        padding: 0 15px;
    }

    .testimonials-header h2,
    .gallery-header h3 {
        font-size: 1.8rem;
        padding: 0 15px;
    }

    .testimonials-header p {
        font-size: 1rem;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .testimonials-section {
        padding: 30px 0;
    }

    .featured-testimonials {
        gap: 15px;
        margin-bottom: 30px;
    }

    .testimonial-image {
        height: 160px;
    }

    .graduate-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .testimonials-header h2,
    .gallery-header h3 {
        font-size: 1.6rem;
    }

    .testimonials-header p {
        font-size: 0.95rem;
    }

    .gallery-header {
        margin: 30px 0 20px;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
}

.faq-header {
    text-align: center;
    margin-bottom: 40px;
}

.faq-header h2 {
    color: var(--turquoise);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-item {
    margin-bottom: 15px;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    background: white;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.faq-question {
    padding: 20px;
    background: white;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    color: var(--dark);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.faq-question:hover {
    background: rgba(0, 109, 119, 0.05);
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--gold);
    transition: transform 0.3s ease;
    margin-left: 15px;
    flex-shrink: 0;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: white;
    padding: 0 20px;
    line-height: 1.6;
    color: #666;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-header h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        padding: 0 15px;
    }

    .faq-container {
        padding: 0 15px;
    }

    .faq-item {
        margin-bottom: 12px;
    }

    .faq-question {
        padding: 15px;
        font-size: 0.95rem;
    }

    .faq-answer {
        font-size: 0.9rem;
        padding: 0 15px;
    }

    .faq-item.active .faq-answer {
        padding: 15px;
    }
}

@media (max-width: 480px) {
    .faq-section {
        padding: 30px 0;
    }

    .faq-header h2 {
        font-size: 1.6rem;
    }

    .faq-container {
        padding: 0 12px;
    }

    .faq-question {
        padding: 12px;
        font-size: 0.9rem;
    }

    .faq-question::after {
        font-size: 1.2rem;
        margin-left: 10px;
    }

    .faq-answer {
        font-size: 0.85rem;
        padding: 0 12px;
    }

    .faq-item.active .faq-answer {
        padding: 12px;
    }
}

/* Why Choose Us Section Styles */
.why-choose-us {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
}

.why-choose-header {
    text-align: center;
    margin-bottom: 50px;
}

.why-choose-header h2 {
    color: var(--turquoise);
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.why-choose-item {
    background: rgba(0, 109, 119, 0.03);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid rgba(0, 109, 119, 0.1);
    position: relative;
    overflow: hidden;
}

.why-choose-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 109, 119, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.why-choose-item:hover {
    transform: translateY(-5px);
    border-color: var(--gold);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-item:hover::before {
    opacity: 1;
}

.why-choose-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.why-choose-title {
    color: var(--turquoise);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.why-choose-text {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Smooth scroll behavior for main navigation */
.smooth-scroll {
    scroll-behavior: smooth;
}

/* Specific styles for non-scrolling links */
.no-smooth-scroll {
    scroll-behavior: auto;
}

/* Thank you modal styles */
.thank-you-modal {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    text-align: center;
    animation: modalFadeIn 0.5s ease-out;
    border-top: 4px solid var(--gold);
}

.thank-you-modal h3 {
    color: var(--turquoise);
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.thank-you-modal p {
    color: var(--dark);
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    animation: overlayFadeIn 0.3s ease-out;
}

.close-modal {
    background: var(--gold);
    color: var(--dark);
    border: none;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.close-modal:hover {
    background: var(--turquoise);
    color: white;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translate(-50%, -60%);
    }
    to {
        opacity: 1;
        transform: translate(-50%, -50%);
    }
}

@keyframes overlayFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Graduation Gallery Section Styles */
.graduation-gallery-section {
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
}

.graduation-gallery-header {
    text-align: center;
    margin-bottom: 50px;
}

.graduation-gallery-header h2 {
    color: var(--turquoise);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.graduation-gallery-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}

.graduation-gallery-header p {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 20px auto 0;
}

.graduation-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.graduation-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.graduation-photo:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.graduation-photo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: #f5f5f5;
    transition: transform 0.5s ease;
}

.graduation-photo:hover img {
    transform: scale(1.05);
}

.graduation-photo::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(0, 109, 119, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.graduation-photo:hover::after {
    opacity: 1;
}

@media (max-width: 992px) {
    .graduation-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .graduation-gallery-header h2 {
        font-size: 2rem;
    }

    .graduation-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .graduation-gallery-header h2 {
        font-size: 1.8rem;
    }

    .graduation-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.contact-form select {
    padding: 8px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 0.95rem;
    width: 100%;
    background-color: white;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 1em;
}

.contact-form select:focus {
    border-color: var(--turquoise);
    outline: none;
    box-shadow: 0 0 0 2px rgba(0, 109, 119, 0.1);
}

.contact-form select.error {
    border-color: #ff4444;
}
/* FULLY EMPLOYED */
.employed-section{
    padding: 60px 0;
    background: rgba(255, 255, 255, 0.95);
    margin: 40px 0;
}
.employed-grid{
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


.employed-header {
    text-align: center;
    margin-bottom: 50px;
}

.employed-header h2 {
    color: var(--turquoise);
    font-size: 2.5rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}
.employed-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gold);
}
.employed-header p {
    color: var(--dark);
    font-size: 1.1rem;
    max-width: 800px;
    margin: 20px auto 0;
}
.employed-card{
    text-align: center;
    background-color: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}
.employed-image img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 10px;
    background: #f5f5f5;
    transition: transform 0.5s ease;
}

.employed-card:hover {
    transform: translateY(-5px);
}

.employed-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}


.employed-card:hover .employed-image img {
    transform: scale(1.05);
}

.employed-content {
    padding: 20px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.05), rgba(0, 109, 119, 0.05));
}

.employed-content .course {
    color: var(--gold);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.employed-content .quote {
    color: var(--dark);
    font-size: 1rem;
    line-height: 1.6;
    font-style: italic;
}
        
@media(max-width: 1200px)
{.employed-section{
    grid-template-columns: repeat(4 ,1fr);
    }
}
@media(max-width: 992px)
{.employed-section{
    grid-template-columns: repeat(3 ,1fr);
    }
}
@media(max-width: 768px)
{.employed-section{
    grid-template-columns: repeat(2,1fr);
    }
}
@media(max-width: 1200px)
{.employed-section{
    grid-template-columns: repeat(1,1fr);
    }
}
