/* Reset & General */
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #222;
    background: linear-gradient(120deg, #e7effc 60%, #b6d2fb 100%);
    background-attachment: fixed;
}

/* Navigation Bar */
header {
    background: #232946;
}
.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: auto;
    padding: 18px 32px;
}
.logo {
    color: #fff;
    font-weight: 700;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
nav ul {
    list-style: none;
    display: flex;
}
nav ul li {
    margin-left: 26px;
}
nav ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.09rem;
    padding: 5px 12px;
    border-radius: 6px;
    transition: background 0.2s;
}
nav ul li a:hover,
nav ul li a:focus {
    background: #0066cc;
}

/* Split Hero Section with Professional Background */
.split-hero {
    position: relative;
    display: flex;
    min-height: 440px;
    background: transparent;
    overflow: hidden;
    padding: 0 0 55px 0;
}
.hero-bg {
    position: absolute;
    left: 0; top: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(rgba(31, 58, 117, 0.62), rgba(30, 88, 130, 0.65)),
        url('https://images.unsplash.com/photo-1461749280684-dccba630e2f6?auto=format&fit=crop&w=1500&q=80') center center/cover no-repeat;
    filter: brightness(0.96);
}
.hero-left,
.hero-right {
    position: relative;
    z-index: 1;
}
.hero-left {
    flex: 1;
    padding: 65px 5% 65px 8%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hero-left h2 {
    font-size: 2.24rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: #f3f7ff;
    text-shadow: 0 3px 8px rgba(38,62,90,0.18);
    letter-spacing: 1.5px;
}
.hero-left p {
    font-size: 1.13rem;
    color: #dfdfec;
    line-height: 1.6;
    text-shadow: 0 2px 8px rgba(44,66,98,0.09);
}
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 65px 8% 65px 5%;
}
.apply-box {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(60,100,180,0.10), 0 1.6px 9px rgba(44,44,44,0.08);
    padding: 32px 30px 28px 30px;
    width: 100%;
    max-width: 350px;
    text-align: center;
}
.apply-box h3 {
    color: #00599c;
    font-size: 1.23rem;
    margin-bottom: 17px;
    font-weight: 600;
}
.apply-box input,
.apply-box select {
    display: block;
    margin: 8px auto 15px auto;
    padding: 12px 10px;
    width: 90%;
    border: 1px solid #bbbbbb;
    border-radius: 8px;
    font-size: 1rem;
    background: #f3f8fc;
    transition: border 0.2s;
}
.apply-box input:focus,
.apply-box select:focus {
    border: 1.5px solid #0066d4;
    outline: none;
}
.btn {
    background: #0066d4;
    color: #fff;
    border: none;
    padding: 12px 0;
    width: 90%;
    border-radius: 25px;
    font-size: 1.06rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 3px;
    margin-bottom: 6px;
    transition: background 0.2s;
}
.btn:hover {
    background: #004488;
}
.form-message {
    margin-top: 5px;
    font-size: 1rem;
    font-weight: 500;
}

/* Courses Section */
.courses-section {
    margin: 45px auto 40px auto;
    padding-top: 15px;
    text-align: center;
}

/* Courses Buttons Container */
.courses-buttons {
    display: grid; /* Use CSS Grid for equal layout */
    grid-template-columns: repeat(2, 1fr); /* 2 buttons per row */
    gap: 20px; /* Space between buttons */
    justify-items: center; /* Center buttons horizontally */
}

/* Course Button */

.courses-section {
    margin: 45px auto 40px auto;
    padding-top: 15px;
    text-align: center;
}

.courses-section h2 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: #15439d;
    margin-bottom: 40px;
}

.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 60px;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto 38px auto;
}

.course-card {
    background: linear-gradient(120deg, #e7effc 55%, #b6d2fb 100%);
    border-radius: 24px;
    box-shadow: 0 4px 22px #16468811;
    padding: 32px 18px 25px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .2s, transform .2s;
    position: relative;
}
.course-card.left { margin-right: 0; }
.course-card.right { margin-left: 0; }
.course-card:hover {
    box-shadow: 0 10px 32px #22348718;
    transform: translateY(-5px) scale(1.04);
}

.card-icon {
    font-size: 2.5rem;
    color: #0066d4;
    margin-bottom: 16px;
}

.course-title {
    display: block;
    font-size: 1.17rem;
    font-weight: 700;
    color: #18386e;
    text-decoration: none;
    background: #cde4ff;
    padding: 12px 24px;
    border-radius: 17px;
    margin-top: 6px;
    box-shadow: 0 2px 6px #0066d420;
    transition: background 0.18s, color 0.18s;
}

.course-title:hover,
.course-title:focus {
    background: #0066d4;
    color: #fff;
}

@media (max-width: 800px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 94vw;
    }
    .course-card {
        min-width: unset;
        margin: 0 auto;
    }
}



/* About & Contact */
.about-section,
.contact-section {
    margin: 35px auto 35px auto;
    background: #ebf2fb;
    border-radius: 15px;
    padding: 24px 30px 20px 30px;
    max-width: 800px;
    text-align: center;
}
.about-section h2,
.contact-section h2 {
    color: #232946;
    margin-bottom: 15px;
    letter-spacing: 1px;
}
.about-section p,
.contact-section p {
    color: #383d45;
    font-size: 1.07rem;
}

a {
    color: #0061af;
    text-decoration: underline;
}
a:hover {
    color: #013461;
}

/* Footer */
footer {
    background: #232946;
    color: #fff;
    padding: 21px 0 13px 0;
    text-align: center;
    font-size: 0.93rem;
    margin-top: 28px;
}

@media (max-width: 950px) {
    .split-hero {
        flex-direction: column;
        padding-bottom: 20px;
        min-height: 560px;
    }
    .hero-left, .hero-right {
        padding: 38px 6% 18px 6%;
        text-align: center;
    }
    .hero-left {
        padding-bottom: 0;
    }
    .courses-buttons {
        gap: 20px;
    }
}
@media (max-width: 650px) {
    .nav-container {
        flex-direction: column;
        gap: 10px;
    }
    nav ul li {
        margin-left: 15px;
        font-size: 0.99rem;
    }
    .courses-buttons {
        flex-direction: column;
        gap: 16px;
    }
    .course-btn {
        width: 100%;
        padding: 16px 0;
        font-size: 1rem;
    }
}
.welcome-text {
    text-align: center;
    padding: 38px 10px 22px 10px;
}
.welcome-text h2 {
    color: #1253a2;
    font-size: 2rem;
    margin-bottom: 12px;
    font-weight: 700;
    letter-spacing: 1px;
}
.welcome-text p {
    color: #324050;
    font-size: 1.17rem;
    line-height: 1.7;
}
.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 30px;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto 38px auto;
}

@media (max-width: 700px) {
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        max-width: 94vw;
        margin: 0 auto 32px auto;
        justify-items: center;       /* Centers ALL child items horizontally */
        align-items: center;
    }
    .course-card {
        width: 90vw;
        max-width: 350px;
        margin: 0 auto;
        border-radius: 16px;
        box-sizing: border-box;
        justify-self: center;       /* Each card centers on its grid line */
    }
}
.courses-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 30px;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto 38px auto;
}

@media (max-width: 700px) {
    .courses-grid {
        grid-template-columns: 1fr;       /* Stack all cards in one column */
        gap: 22px;
        max-width: 96vw;                  /* Fill mobile screen width */
        margin: 0 auto 32px auto;
        justify-items: center;            /* Center all cards horizontally */
    }
    .course-card {
        width: 100%;
        max-width: 350px;
        margin: 0;                        /* Remove auto margins */
        box-sizing: border-box;
        justify-self: center;             /* Ensures each card sits centered in grid cell */
    }
}
.course-card {
    background: linear-gradient(120deg, #e7effc 55%, #b6d2fb 100%);
    border-radius: 24px;
    box-shadow: 0 4px 22px #16468811;
    padding: 26px 18px 22px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .2s, transform .2s;
    position: relative;
    width: 100%;
    max-width: 300px;
}
.about-hero {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
    background: linear-gradient(100deg, #e7effc 55%, #b6d9f3 100%);
    box-shadow: 0 4px 28px #0b339615;
    border-radius: 40px;
    margin: 45px auto 45px auto;
    max-width: 1400px;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.about-left {
    flex: 1 1 480px;
    min-width: 300px;
    padding: 48px 4vw 36px 56px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about-left h3 {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #237ddc;
    margin-bottom: 18px;
}
.about-left h1 {
    font-size: 2.3rem;
    color: #18386e;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.15;
}
.about-left p {
    font-size: 1.18rem;
    color: #173754;
    margin-bottom: 32px;
    font-weight: 400;
}
.about-services {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
}
.service-card {
    width: 220px;
    background: #fff;
    box-shadow: 0 3px 18px #3177ea18;
    border-radius: 17px;
    margin-bottom: 18px;
    padding: 16px 14px 13px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .18s, transform .18s;
}
.service-card:hover {
    box-shadow: 0 8px 34px #3177ea33;
    transform: scale(1.04);
}
.service-card img {
    width: 54px; height: 54px; margin-bottom: 12px;
}
.service-card h4 {
    font-size: 1.12rem;
    margin-bottom: 7px;
    color: #0061d4;
    font-weight: 700;
}
.service-card p {
    font-size: 0.97rem;
    color: #18386e;
    text-align: center;
}

.about-right {
    flex: 0 1 480px;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    padding: 40px 19px 40px 10px;
}
.about-img {
    width: 320px;
    max-width: 92vw;
    border-radius: 22px;
    box-shadow: 0 8px 42px #0e1c2e1e;
    margin-bottom: 7px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .about-hero {
        flex-direction: column;
        align-items: center;
        min-height: unset;
        padding: 0;
    }
    .about-left { padding: 38px 5vw 28px 5vw;}
    .about-right { padding: 20px 0;}
    .service-card { width: 95vw; max-width: 330px;}
}
@media (max-width: 700px) {
    .about-hero { border-radius: 14px;}
    .about-left h1 { font-size: 1.5rem; }
    .about-img { width: 98vw; min-width: 180px;}
    .about-left, .about-right { padding: 21px 2vw;}
    .about-services { gap: 14px 12px;}
}
.about-hero {
    display: flex;
    flex-wrap: wrap;
    min-height: 480px;
    background: linear-gradient(100deg, #e7effc 55%, #b6d9f3 100%);
    box-shadow: 0 4px 28px #0b339615;
    border-radius: 40px;
    margin: 45px auto 45px auto;
    max-width: 1400px;
    align-items: flex-start;
    overflow: hidden;
    position: relative;
}

.about-left {
    flex: 1 1 480px;
    min-width: 300px;
    padding: 48px 4vw 36px 56px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.about-left h3 {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #237ddc;
    margin-bottom: 18px;
}
.about-left h1 {
    font-size: 2.3rem;
    color: #18386e;
    font-weight: 800;
    margin-bottom: 22px;
    line-height: 1.15;
}
.about-left p {
    font-size: 1.18rem;
    color: #173754;
    margin-bottom: 32px;
    font-weight: 400;
}
.about-services {
    display: flex;
    flex-wrap: wrap;
    gap: 32px 40px;
}
.service-card {
    width: 220px;
    background: #fff;
    box-shadow: 0 3px 18px #3177ea18;
    border-radius: 17px;
    margin-bottom: 18px;
    padding: 16px 14px 13px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: box-shadow .18s, transform .18s;
}
.service-card:hover {
    box-shadow: 0 8px 34px #3177ea33;
    transform: scale(1.04);
}
.service-card img {
    width: 54px; height: 54px; margin-bottom: 12px;
}
.service-card h4 {
    font-size: 1.12rem;
    margin-bottom: 7px;
    color: #0061d4;
    font-weight: 700;
}
.service-card p {
    font-size: 0.97rem;
    color: #18386e;
    text-align: center;
}

.about-right {
    flex: 0 1 480px;
    min-width: 340px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    gap: 18px;
    padding: 40px 19px 40px 10px;
}
.about-img {
    width: 320px;
    max-width: 92vw;
    border-radius: 22px;
    box-shadow: 0 8px 42px #0e1c2e1e;
    margin-bottom: 7px;
    object-fit: cover;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
    .about-hero {
        flex-direction: column;
        align-items: center;
        min-height: unset;
        padding: 0;
    }
    .about-left { padding: 38px 5vw 28px 5vw;}
    .about-right { padding: 20px 0;}
    .service-card { width: 95vw; max-width: 330px;}
}
@media (max-width: 700px) {
    .about-hero { border-radius: 14px;}
    .about-left h1 { font-size: 1.5rem; }
    .about-img { width: 98vw; min-width: 180px;}
    .about-left, .about-right { padding: 21px 2vw;}
    .about-services { gap: 14px 12px;}
}
.advance-courses-section {
    background: linear-gradient(110deg,#e7effc 79%,#b6d2fb 100%);
    box-shadow: 0 4px 24px #15439318;
    border-radius: 36px;
    margin: 50px auto 44px auto;
    padding: 39px 3vw 32px 3vw;
    text-align: center;
    max-width: 1200px;
}
.advance-courses-section h2 {
    font-size: 2.08rem;
    color: #18386e;
    font-weight: 800;
    margin-bottom: 25px;
}
.advance-grid {
    display: flex;
    gap: 48px 48px;
    flex-wrap: wrap;
    justify-content: space-between;
}
.advance-main {
    flex: 1 1 412px;
    max-width: 610px;
    text-align: left;
}
.advance-main p {
    font-size: 1.13rem;
    color: #123a55;
    font-weight: 500;
    margin-bottom: 18px;
}
.advance-list {
    display: flex;
    flex-direction: column;
    gap: 19px;
}
.course-detail {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 2px 13px #204d8513;
    padding: 18px 22px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: box-shadow .18s, transform .18s;
}
.course-detail img {
    width: 44px; height: 44px;
    margin-right: 8px;
}
.course-detail strong {
    font-size: 1.11rem;
    color: #0061d4;
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}
.course-detail span {
    font-size: 0.99rem;
    color: #265489;
    display: block;
    margin-top: 1px;
}
.features-main {
    flex: 0 1 310px;
    max-width: 340px;
    text-align: left;
    background: #f3f9ff;
    border-radius: 19px;
    box-shadow: 0 6px 24px #18537610;
    padding: 22px 20px;
    height: fit-content;
    margin-top: 10px;
}
.features-main h3 {
    font-size: 1.29rem;
    margin-bottom: 17px;
    color: #154393;
    font-weight: 700;
}
.features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.features-list li {
    font-size: 1.03rem;
    color: #18386e;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}
.features-list img {
    width: 26px;
    vertical-align: middle;
}
@media (max-width: 900px) {
    .advance-grid { flex-direction: column; gap: 28px;}
    .features-main { margin: 0 auto;}
}
.blog-graphic-design {
    background: linear-gradient(110deg,#e7effc 79%,#b6d2fb 96%);
    border-radius: 32px;
    box-shadow: 0 4px 28px #123a5514;
    padding: 44px 3vw 38px 3vw;
    margin: 58px auto 34px auto;
    max-width: 1100px;
}
.gd-layout {
    display: flex;
    gap: 50px 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.gd-left {
    flex: 1 1 420px;
    min-width: 270px;
}
.gd-left h2 {
    font-size: 2.05rem;
    color: #18386e;
    font-weight: 800;
    margin-bottom: 19px;
}
.gd-left p {
    font-size: 1.18rem;
    color: #17405c;
    margin-bottom: 28px;
    font-weight: 400;
    line-height: 1.7;
}
.gd-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.gd-features li {
    font-size: 1.05rem;
    color: #18386e;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: #f5fafd;
    border-radius: 13px;
    padding: 11px 16px;
    box-shadow: 0 2px 9px #0061d414;
}
.gd-features img {
    width: 30px;
    vertical-align: middle;
}
.gd-right {
    flex: 0 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
}
.gd-img {
    width: 290px; max-width: 95vw;
    border-radius: 21px;
    box-shadow: 0 8px 38px #0e1c2e27;
    margin-bottom: 8px;
    object-fit: cover;
}
.gd-img-mini {
    width: 80px; height: 80px;
    margin-right: 16px;
    border-radius: 18px;
    box-shadow: 0 3px 14px #0061d420;
}
@media (max-width: 900px) {
    .gd-layout { flex-direction: column; gap: 26px;}
    .gd-right { align-items: center;}
    .gd-img { width: 98vw;}
}
.blog-web-design {
    background: linear-gradient(115deg,#e7effc 78%,#b6d2fb 100%);
    border-radius: 32px;
    box-shadow: 0 4px 28px #123a5520;
    padding: 44px 3vw 36px 3vw;
    margin: 55px auto 32px auto;
    max-width: 1100px;
}
.wd-layout {
    display: flex;
    gap: 50px 80px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.wd-left {
    flex: 1 1 420px;
    min-width: 270px;
}
.wd-left h2 {
    font-size: 2.04rem;
    color: #18386e;
    font-weight: 800;
    margin-bottom: 17px;
}
.wd-left p {
    font-size: 1.16rem;
    color: #17405c;
    margin-bottom: 25px;
    font-weight: 400;
    line-height: 1.7;
}
.wd-features {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.wd-features li {
    font-size: 1.02rem;
    color: #18386e;
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    background: #f5fafd;
    border-radius: 11px;
    padding: 10px 15px;
    box-shadow: 0 2px 7px #0061d411;
}
.wd-features img {
    width: 30px;
    vertical-align: middle;
}
.wd-right {
    flex: 0 1 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}
.wd-img {
    width: 290px; max-width: 95vw;
    border-radius: 22px;
    box-shadow: 0 8px 32px #0e1c2e2a;
    margin-bottom: 6px;
    object-fit: cover;
}
.wd-img-mini {
    width: 80px; height: 80px;
    margin-right: 12px;
    border-radius: 17px;
    box-shadow: 0 3px 14px #0061d418;
}
@media (max-width: 900px) {
    .wd-layout { flex-direction: column; gap: 22px;}
    .wd-right { align-items: center;}
    .wd-img { width: 98vw;}
}
.blog-language-training {
    background: linear-gradient(140deg, #d2e6f7, #a4c0ee, #7399d5);
    border-radius: 28px;
    box-shadow: 0 6px 34px rgba(30,60,120,0.15);
    padding: 48px 3vw 30px 3vw;
    max-width: 1100px;
    margin: 52px auto 42px auto;
    color: #112244;
    text-align: left;
}
.lt-layout {
    display: flex;
    gap: 48px 56px;
    flex-wrap: wrap;
    align-items: flex-start;
}
.lt-left {
    flex: 1 1 420px;
    min-width: 280px;
}
.lt-left h2 {
    font-size: 2.1rem;
    font-weight: 800;
    margin-bottom: 26px;
    color: #112244;
}
.lt-left p {
    font-size: 1.23rem;
    margin-bottom: 28px;
    line-height: 1.7;
    font-weight: 400;
}
.lt-benefits {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
}
.lt-benefits li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 14px;
    font-weight: 600;
}
.lt-benefits img {
    width: 34px;
    vertical-align: middle;
}
.lt-right {
    flex: 0 1 300px;
    display: flex;
    flex-wrap: wrap;
    gap: 14px 18px;
    justify-content: center;
}
.lt-img {
    width: 320px;
    max-width: 98vw;
    border-radius: 20px;
    box-shadow: 0 10px 38px rgba(20, 50, 90, 0.24);
    object-fit: cover;
}
.lt-img-mini {
    width: 90px;
    height: 90px;
    border-radius: 22px;
    box-shadow: 0 6px 22px #204e8b40;
}
@media (max-width: 900px) {
    .lt-layout {
        flex-direction: column;
        gap: 26px;
        align-items: center;
    }
    .lt-left {
        text-align: center;
        max-width: 90vw;
    }
    .lt-right {
        justify-content: center;
    }
    .lt-img {
        width: 95vw;
    }
}
.blog-classes {
    background: linear-gradient(120deg, #eaf3ff 80%, #d0e2ff 100%);
    border-radius: 28px;
    box-shadow: 0 4px 26px #1454a633;
    padding: 48px 3vw 36px 3vw;
    margin: 52px auto 42px auto;
    max-width: 1100px;
    color: #163263;
}
.classes-layout {
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
    align-items: center;
}
.classes-left {
    flex: 1 1 420px;
    min-width: 280px;
    font-weight: 500;
}
.classes-left h2 {
    font-size: 2.12rem;
    font-weight: 800;
    color: #123b67;
    margin-bottom: 26px;
}
.classes-left p {
    font-size: 1.22rem;
    margin-bottom: 22px;
    line-height: 1.6;
}
.classes-benefits {
    list-style: disc inside;
    color: #1a2f59;
    font-size: 1.07rem;
    margin-bottom: 22px;
}
.classes-right {
    flex: 0 1 320px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
    align-items: center;
}
.class-img {
    width: 320px;
    max-width: 90vw;
    border-radius: 20px;
    box-shadow: 0 8px 36px rgba(20, 50, 90, 0.22);
    object-fit: cover;
}
.class-img-mini {
    width: 160px;
    border-radius: 18px;
    box-shadow: 0 5px 24px #19458240;
}
@media (max-width: 900px) {
    .classes-layout {
        flex-direction: column;
        gap: 26px;
        align-items: center;
    }
    .classes-left {
        font-size: 1rem;
        text-align: center;
    }
    .classes-right {
        flex-direction: row;
        gap: 20px;
    }
    .class-img {
        width: 98vw;
    }
    .class-img-mini {
        width: 48vw;
    }
}
.certification-section {
  background: linear-gradient(110deg,#e7f9fc 80%,#fff4fa 100%);
  border-radius: 32px;
  box-shadow: 0 6px 32px #1595a919;
  padding: 44px 3vw 38px 3vw;
  max-width: 900px;
  margin: 55px auto 48px auto;
  text-align: center;
}
.cert-banner {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 19px;
}
.cert-img {
  width: 128px;
  border-radius: 18px;
  box-shadow: 0 6px 26px #1595a918;
  background: #fff;
}
.cert-title {
  color: #15407a;
  font-size: 2.02rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.3px;
}
.cert-lead {
  font-size: 1.2rem;
  color: #177ca9;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 34px auto;
}
.cert-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  justify-content: center;
  margin-bottom: 29px;
}
.cert-card {
  flex: 1 1 250px;
  min-width: 240px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px #1595a918;
  padding: 18px 16px 15px 16px;
  text-align: left;
}
.cert-card h3 {
  font-size: 1.14rem;
  color: #217dc9;
  font-weight: 800;
  margin-bottom: 13px;
}
.cert-card ul {
  list-style: none;
  font-size: 1.08rem;
  color: #195b82;
  padding: 0;
}
.cert-card li {
  margin-bottom: 8px;
}
.cert-cta {
  margin-top: 23px;
}
.cert-btn {
  background: linear-gradient(100deg,#21bfa0 25%, #ffbee1 100%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  padding: 16px 38px;
  box-shadow: 0 3px 18px #1595a919;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background .14s;
  letter-spacing: 1px;
}
.cert-btn:hover { background: #21bfa0;}
@media (max-width:680px){
  .cert-benefits{flex-direction:column;gap:16px;}
  .cert-banner{gap:20px;}
  .cert-img{width:85px;}
  .certification-section{padding:24px 2vw;}
}

html, body {
  max-width: 100%;
  overflow-x: hidden;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.courses-grid,
.advance-grid,
.gd-layout,
.wd-layout,
.lt-layout,
.classes-layout {
  display: flex;
  flex-wrap: wrap;
}

.course-card,
.advance-main,
.features-main,
.gd-left,
.gd-right,
.wd-left,
.wd-right,
.lt-left,
.lt-right,
.classes-left,
.classes-right {
  box-sizing: border-box;
  width: 100%;
}
.some-container {
  width: 100%;
  max-width: 400px; /* optional limit for big screens */
}
body {
  overflow-wrap: break-word;
}
.certification-section {
  background: linear-gradient(110deg,#e7f9fc 80%,#fff4fa 100%);
  border-radius: 32px;
  box-shadow: 0 6px 32px #1595a919;
  padding: 44px 3vw 38px 3vw;
  max-width: 900px;
  margin: 55px auto 48px auto;
  text-align: center;
}
.cert-banner {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 19px;
}
.cert-img {
  width: 128px;
  border-radius: 18px;
  box-shadow: 0 6px 26px #1595a918;
  background: #fff;
}
.cert-title {
  color: #15407a;
  font-size: 2.02rem;
  font-weight: 800;
  margin-bottom: 18px;
  letter-spacing: 1.3px;
}
.cert-lead {
  font-size: 1.2rem;
  color: #177ca9;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 34px auto;
}
.cert-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  justify-content: center;
  margin-bottom: 29px;
}
.cert-card {
  flex: 1 1 250px;
  min-width: 240px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px #1595a918;
  padding: 18px 16px 15px 16px;
  text-align: left;
}
.cert-card h3 {
  font-size: 1.14rem;
  color: #217dc9;
  font-weight: 800;
  margin-bottom: 13px;
}
.cert-card ul {
  list-style: none;
  font-size: 1.08rem;
  color: #195b82;
  padding: 0;
}
.cert-card li {
  margin-bottom: 8px;
}
.cert-cta {
  margin-top: 23px;
}
.cert-btn {
  background: linear-gradient(100deg,#21bfa0 25%, #ffbee1 100%);
  color: #fff;
  font-size: 1.18rem;
  font-weight: 700;
  border-radius: 28px;
  border: none;
  padding: 16px 38px;
  box-shadow: 0 3px 18px #1595a919;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background .14s;
  letter-spacing: 1px;
}
.cert-btn:hover { background: #21bfa0;}
@media (max-width:680px){
  .cert-benefits{flex-direction:column;gap:16px;}
  .cert-banner{gap:20px;}
  .cert-img{width:85px;}
  .certification-section{padding:24px 2vw;}
}
.tuition-section {
  background: linear-gradient(110deg,#e7f9fc 80%,#fff4fa 100%);
  border-radius: 30px;
  box-shadow: 0 6px 32px #1595a919;
  padding: 44px 3vw 38px 3vw;
  max-width: 900px;
  margin: 55px auto 48px auto;
  text-align: center;
}
.tuition-banner {
  display: flex;
  justify-content: center;
  gap: 44px;
  margin-bottom: 19px;
}
.tuition-img {
  width: 124px;
  border-radius: 16px;
  box-shadow: 0 6px 26px #1595a918;
  background: #fff;
}
.tuition-title {
  color: #256da1;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}
.tuition-lead {
  font-size: 1.19rem;
  color: #117ca9;
  font-weight: 500;
  max-width: 620px;
  margin: 0 auto 34px auto;
}
.tuition-courses {
  display: flex;
  flex-wrap: wrap;
  gap: 36px 56px;
  justify-content: center;
  margin-bottom: 29px;
}
.tuition-card {
  flex: 1 1 250px;
  min-width: 240px;
  background: #fff;
  border-radius: 17px;
  box-shadow: 0 2px 12px #1595a918;
  padding: 18px 16px 15px 16px;
  text-align: left;
}
.tuition-card h3 {
  font-size: 1.12rem;
  color: #217dc9;
  font-weight: 800;
  margin-bottom: 13px;
}
.tuition-card ul {
  list-style: none;
  font-size: 1.08rem;
  color: #195b82;
  padding: 0;
}
.tuition-card li {
  margin-bottom: 8px;
}
.tuition-cta {
  margin-top: 23px;
}
.tuition-btn {
  background: linear-gradient(100deg,#21bfa0 25%, #ffbee1 100%);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  border-radius: 26px;
  border: none;
  padding: 15px 34px;
  box-shadow: 0 3px 18px #1595a919;
  cursor: pointer;
  margin-bottom: 10px;
  transition: background .13s;
  letter-spacing: 1px;
}
.tuition-btn:hover { background: #21bfa0;}
@media (max-width:680px){
  .tuition-courses{flex-direction:column;gap:16px;}
  .tuition-banner{gap:16px;}
  .tuition-img{width:78px;}
  .tuition-section{padding:24px 2vw;}
}
.spoken-english-blog {
  background: linear-gradient(120deg, #b6d2fb 70%, #e7effc 100%);
  border-radius: 24px;
  padding: 38px 3vw 32px 3vw;
  max-width: 720px;
  margin: 52px auto 48px auto;
  color: #184a7a;
  box-shadow: 0 6px 32px #237ddc22;
  text-align: center;
}
.spoken-english-blog h2 {
  font-size: 2.1rem;
  margin-bottom: 14px;
  font-weight: 800;
}
.spoken-english-blog p {
  font-size: 1.17rem;
  font-weight: 600;
  max-width: 600px;
  margin: 0 auto 26px auto;
  color: #145487;
}
.blog-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 28px;
}
.blog-images img {
  border-radius: 20px;
  width: 48%;
  box-shadow: 0 5px 22px #237ddc22;
  object-fit: cover;
}
.spoken-english-blog h3 {
  color: #237ddc;
  margin-bottom: 18px;
  font-weight: 700;
}
.spoken-english-blog ul {
  list-style: disc inside;
  max-width: 620px;
  margin: 0 auto 32px auto;
  text-align: left;
  font-size: 1.05rem;
  color: #184a7a;
}
.cta-btn-container {
  text-align: center;
}
.btn-primary {
  background: #237ddc;
  color: white;
  padding: 15px 44px;
  border-radius: 30px;
  font-size: 1.15rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 26px #237ddc33;
  transition: background 0.18s ease;
}
.btn-primary:hover {
  background: #0058a3;
}
.digital-marketing-section {
  background: linear-gradient(120deg, #d3e9ff 68%, #fde4f2 100%);
  border-radius: 22px;
  padding: 32px 3vw;
  max-width: 800px;
  margin: 42px auto 48px auto;
  box-shadow: 0 6px 26px #217dc922;
  text-align: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #174775;
}
.digital-marketing-section h2 {
  font-size: 1.95rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: #2274d9;
}
.digital-marketing-section p {
  font-size: 1.14rem;
  margin-bottom: 28px;
  font-weight: 500;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}
.dm-images {
  display: flex;
  gap: 24px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.dm-images img {
  border-radius: 18px;
  width: 48%;
  box-shadow: 0 6px 24px #1595a91a;
  object-fit: cover;
}
.btn-primary {
  background: #2274d9;
  color: white;
  padding: 14px 48px;
  border-radius: 32px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 5px 22px #1570c216;
  cursor: pointer;
  transition: background 0.23s ease;
}
.btn-primary:hover {
  background: #0f5bc0;
}
@media (max-width: 620px) {
  .dm-images img {
    width: 100%;
  }
  .digital-marketing-section {
    padding: 28px 4vw;
  }
}
