
/* Hero Section Wrapper */
.hero-section-wrapper {
    padding: 50px 20px;
    background-color: #ffffff;
}

/* Hero Section Styling */
.hero-section {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 30px;
    gap: 20px;
}

/* Hero Text Styling */
.hero-text {
    flex: 1;
    padding-right: 20px;
}

.hero-text h1 {
    font-weight: 700;
    font-size: 54px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
}

/* CTA Buttons */
.cta-buttons {
    margin-top: 20px;
    display: flex;
    gap: 10px;
}

.cta-button {
    padding: 12px 25px;
    background-color: #1e73be;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #144a75;
    color: #fff;
    transform: translateY(-3px);
}

/* Photo Slider */
.photo-slider {
    flex: 1;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
}

.slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slider-wrapper img {
    width: 100%;
    height: auto;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {

.hero-section-wrapper {
    padding: 20px 20px;
    background-color: #ffffff;
}

    .hero-section {
        flex-direction: column;
        align-items: center;
        padding: 0px;
    }

    .hero-text {
        text-align: center;
        padding-right: 0;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-button {
        width: 100%;
        text-align: center;
    }

    .photo-slider {
        margin-top: 20px;
    }
}


/* Notice Board Section */
.notice-board-section {
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, Helvetica, sans-serif;
}

.notice-board-title {
    text-align: center;
    margin-bottom: 20px;
}

.notice-board-title h2 {
    color: #39a7cc;
    font-weight: bold;
    font-size: 24px;
}

.notice-marquee {
    overflow: hidden;
    height: 60px;
    position: relative;
}

.marquee-content {
    display: flex;
    flex-direction: column;
    animation: scroll-up 10s linear infinite;
}

.notice-item {
    padding: 5px 0;
    font-size: 16px;
}

.notice-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.notice-item a:hover {
    color: #39a7cc;
    text-decoration: underline;
}

.notice-item.no-notice {
    color: #999;
}

/* Animation for marquee scrolling */
@keyframes scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-100%); }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .notice-board-section {
        padding: 30px 15px;
    }

    .notice-board-title h2 {
        font-size: 20px;
    }

    .notice-item {
        font-size: 14px;
    }
}


/* Courses Section */
.courses-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.course-box {
    padding: 20px;
}

.course-info-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    background-color: #f8f8f8;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.course-info-box:hover {
    transform: translateY(-5px);
}

.course-info-box img {
    width: 100%;
    max-width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
}

.course-info-box h3 {
    margin-top: 15px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
}

.course-info-box p {
    font-size: 16px;
    color: #666;
}

.course-info-box a {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #39a7cc;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.course-info-box a:hover {
    background-color: #2e8fb7;
}

/* FAQ Section */
.faq-section {
    padding: 75px 20px;
    background-color: #f9f9f9;
}

.faq-items {
    margin-top: 50px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

.faq-question:hover {
    color: #39a7cc;
}

.faq-answer {
    font-size: 16px;
    color: #666;
    display: none;
    margin-top: 10px;
    line-height: 1.6;
}

/* International Courses Section */
.international-courses-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.logo-carousel {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.logo-item img {
    max-width: 150px;
    height: auto;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
}

.logo-item img:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Global Typography */
body {
    font-family: 'Roboto', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
}

/* Notice Board Section */
.notice-board-section {
    font-family: Arial, Helvetica, sans-serif;
    padding: 40px 20px;
    background-color: #f9f9f9;
    border-radius: 10px;
    max-width: 800px;
    margin: 0 auto;
}

.notice-item a {
    color: #333;
    text-decoration: none;
    font-size: 16px;
}

.notice-item a:hover {
    color: #39a7cc;
    text-decoration: underline;
}

/* About Section */
.about-section {
    background-color: #ffffff;
    padding: 50px 20px;
}

.about-content img {
    border-radius: 8px;
    max-width: 100%;
    margin: 0 auto;
}

.about-text blockquote {
    font-size: 16px;
    line-height: 1.8;
    border-left: 4px solid #39a7cc;
    padding-left: 15px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 75px 20px;
    background-color: #ffffff;
}

.testimonial-box {
    padding: 30px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #f8f8f8;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-box p {
    font-size: 18px;
    color: #555;
    font-style: italic;
    line-height: 1.8;
}


.call-now-btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: #39a7cc;
    color: #ffffff;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    transition: background-color 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.call-now-btn:hover {
    background-color: #2e8fb7;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(-2px);
}

.director-message {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    border-left: 4px solid #39a7cc;
    padding-left: 15px;
}

.director-message .highlight {
    color: #39a7cc;
}

.director-name {
    font-weight: bold;
    text-align: left;
    margin-top: 10px;
    font-size: 18px;
}

.about-section {
    padding: 50px 20px;
    background-color: #ffffff;
}

.headline {
    color: #333;
    font-weight: bold;
    font-size: 36px;
}

.subheadline {
    font-size: 18px;
    color: #666;
}

.about-content {
    margin-top: 40px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.description-image {
    width: 100%;
    max-width: 400px;
    border-radius: 8px;
    margin: 0 auto;
}

.about-text {
    padding: 20px;
}

.about-quote {
    font-size: 16px;
    color: #333;
    line-height: 1.8;
    border-left: 4px solid #39a7cc;
    padding-left: 15px;
}

.small-description-index {
    margin-top: 20px;
    color: #666;
}

.about-link a {
    text-decoration: none;
    font-weight: bold;
    color: #39a7cc;
}

.core-values {
    margin-top: 50px;
}

.core-values-title {
    color: #333;
    text-align: center;
    margin-bottom: 30px;
    font-size: 28px;
}

.core-value-item {
    padding: 20px;
}

.core-value-item h4 {
    color: #39a7cc;
}

.core-value-item p {
    color: #666;
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-content {
        flex-direction: column;
        text-align: center;
    }

    .about-image {
        margin-bottom: 20px;
    }

    .about-text {
        padding: 10px;
    }
}

.certificate-section {
    display: flex;
    flex-wrap: wrap;
     max-width: 800px;
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
}

.certificate-row {
    padding: 15px;
    box-sizing: border-box;
}

.certificate-row-70 {
    flex: 0 0 70%; /* 70% width */
    max-width: 70%; /* Ensure it doesn't exceed 70% */
    color: #333;
}

.certificate-row-30 {
    flex: 0 0 30%; /* 30% width */
    max-width: 30%; /* Ensure it doesn't exceed 30% */
    display: flex;
    align-items: center;
    justify-content: center;
}

.certificate-button-glow {
    text-decoration: none;
    background-color: #39a7cc;
    color: #fff;
    padding: 15px 35px;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s, box-shadow 0.3s, transform 0.3s;
    position: relative;
    overflow: hidden;
}

.certificate-button-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background: rgba(57, 167, 204, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease-out;
    z-index: 0;
}

.certificate-button-glow:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.certificate-button-glow:hover {
    background-color: #2e8fb7;
    color: #fff;
    box-shadow: 0 0 15px rgba(57, 167, 204, 0.8);
    transform: translateY(-2px); /* Slight lift effect */
}

.certificate-button-glow:hover::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 5px;
    box-shadow: 0 0 20px rgba(57, 167, 204, 0.8), 0 0 40px rgba(57, 167, 204, 0.5);
    z-index: -1;
    animation: pulse 1.5s infinite;
}

/* Glowing pulse animation */
@keyframes pulse {
    0% {
        box-shadow: 0 0 10px rgba(57, 167, 204, 0.8), 0 0 30px rgba(57, 167, 204, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(57, 167, 204, 0.5), 0 0 40px rgba(57, 167, 204, 0.3);
    }
    100% {
        box-shadow: 0 0 10px rgba(57, 167, 204, 0.8), 0 0 30px rgba(57, 167, 204, 0.5);
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .certificate-row {
        flex: 0 0 100%; /* Full width for mobile */
        max-width: 100%;
    }

    .certificate-row-70,
    .certificate-row-30 {
        text-align: center; /* Center content for smaller devices */
    }

    .certificate-button-glow {
        width: 80%; /* Adjust button width for smaller screens */
    }
}


