* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/*==================================
        HERO SECTION
==================================*/

.hero {
    width: 100%;
    background: #ffffff;
    padding: 120px 0 90px;
}

.hero-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/*==========================
        LEFT
==========================*/

.hero-left {
    flex: 1;
}

.hero-badge {
    display: inline-block;
    padding: 10px 20px;
    margin-bottom: 30px;
    background: #EFF6FF;
    color: #2563EB;
    border-radius: 50px;
    font: 600 16px 'Nunito', sans-serif;
}

.hero-left h1 {
    margin-bottom: 28px;
    font: 800 58px/1.15 'Nunito', sans-serif;
    color: #111827;
}

.hero-left h1 span {
    color: #2563EB;
}

.hero-left p {
    max-width: 650px;
    margin-bottom: 38px;
    font: 20px/1.8 'Nunito', sans-serif;
    color: #6B7280;
}

.hero-left strong {
    color: #111827;
}

/*==========================
        BUTTONS
==========================*/

.hero-buttons {
    display: flex;
    gap: 18px;
    margin-bottom: 35px;
}

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 34px;
    border-radius: 12px;
    text-decoration: none;
    font: 700 17px 'Nunito', sans-serif;
    transition: .35s;
}

.btn-primary {
    background: #2563EB;
    color: #fff;
}

.btn-primary:hover {
    background: #1D4ED8;
    transform: translateY(-3px);
}

.btn-secondary {
    border: 2px solid #2563EB;
    color: #2563EB;
}

.btn-secondary:hover {
    background: #EFF6FF;
    transform: translateY(-3px);
}

/*==========================
        RATING
==========================*/

.hero-rating {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 15px;
}

.stars {
    font-size: 22px;
}

.hero-rating span {
    font: 17px 'Nunito', sans-serif;
    color: #6B7280;
}

/*==========================
        RIGHT
==========================*/

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-right img {
    width: 100%;
    max-width: 620px;
    border-radius: 18px;
    animation: float 4s ease-in-out infinite;
}

/*==========================
      FLOAT ANIMATION
==========================*/

@keyframes float {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

/*==================================
        TABLET (769px - 1024px)
==================================*/

@media (min-width:769px) and (max-width:1024px) {

    .hero {
        padding: 100px 0 70px;
    }

    .hero-container {
        width: calc(100% - 80px);
        gap: 40px;
    }

    .hero-left {
        flex: 1;
    }

    .hero-right {
        flex: 1;
    }

    .hero-left h1 {
        font-size: 42px;
    }

    .hero-left p {
        font-size: 17px;
        line-height: 1.7;
        max-width: 100%;
    }

    .hero-buttons {
        flex-wrap: wrap;
        gap: 14px;
    }

    .btn-primary,
    .btn-secondary {
        padding: 14px 26px;
        font-size: 15px;
    }

    .hero-rating {
        gap: 12px;
    }

    .stars {
        font-size: 20px;
    }

    .hero-rating span {
        font-size: 15px;
    }

    .hero-right img {
        max-width: 420px;
    }
}

/*==================================
            MOBILE
==================================*/

@media (max-width:768px) {

    .hero {
        padding: 90px 0 60px;
    }

    .hero-container {
        width: calc(100% - 40px);
        flex-direction: column-reverse;
        text-align: center;
        gap: 45px;
    }

    .hero-left p {
        max-width: 100%;
    }

    .hero-badge {
        font-size: 14px;
        padding: 8px 16px;
    }

    .hero-left h1 {
        font-size: 34px;
        line-height: 1.3;
    }

    .hero-left p {
        font-size: 16px;
        line-height: 1.8;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 320px;
    }

    .hero-rating {
        justify-content: center;
        flex-direction: column;
        gap: 10px;
    }

    .hero-right img {
        width: 100%;
        max-width: 340px;
    }
}

/*==================================
        TRUST SECTION
==================================*/

.trust-section{
    width:100%;
    padding:90px 0;
    background:#F8FBFF;
}

.trust-container{
    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;
}

/*=============================
        Heading
=============================*/

.section-heading{
    text-align:center;
    margin-bottom:60px;
}

.section-badge{
    display:inline-block;
    padding:10px 22px;
    background:#E8F1FF;
    color:#2563EB;
    border-radius:50px;
    font-size:15px;
    font-weight:700;
    font-family:'Nunito',sans-serif;
    margin-bottom:25px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#111827;
    font-family:'Nunito',sans-serif;
    margin-bottom:20px;
    line-height:1.25;
}

.section-heading h2 span{
    color:#2563EB;
}

.section-heading p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#6B7280;
    font-family:'Nunito',sans-serif;
}

/*=============================
        Grid
=============================*/

.trust-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.trust-card{
    background:#fff;
    border-radius:24px;
    padding:35px 20px;
    text-align:center;
    border:1px solid #e5e7eb;
    box-shadow:0 15px 35px rgba(0,0,0,.06);
    transition:.35s;
}

.trust-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}

.trust-icon{
    width:85px;
    height:85px;
    margin:0 auto 25px;
    border-radius:50%;
    background:#EFF6FF;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:40px;
}

.trust-card h3{
    font-size:42px;
    color:#2563EB;
    font-weight:800;
    margin-bottom:12px;
    font-family:'Nunito',sans-serif;
    line-height:1.2;
}

.trust-card p{
    font-size:18px;
    line-height:1.7;
    color:#4B5563;
    font-family:'Nunito',sans-serif;
}

/*==================================
        LARGE TABLET
==================================*/

@media (max-width:1200px){

    .trust-section{
        padding:80px 0;
    }

    .trust-container{
        width:calc(100% - 80px);
    }

    .trust-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .section-heading h2{
        font-size:42px;
    }

    .section-heading p{
        font-size:18px;
    }

    .trust-card h3{
        font-size:38px;
    }

}

/*==================================
        TABLET
==================================*/

@media (max-width:768px){

    .trust-section{
        padding:70px 0;
    }

    .trust-container{
        width:calc(100% - 40px);
    }

    .section-heading{
        margin-bottom:45px;
    }

    .section-badge{
        font-size:14px;
        padding:8px 18px;
    }

    .section-heading h2{
        font-size:34px;
    }

    .section-heading p{
        font-size:17px;
        line-height:1.7;
    }

    .trust-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .trust-card{
        padding:30px 20px;
    }

    .trust-icon{
        width:75px;
        height:75px;
        font-size:34px;
        margin-bottom:20px;
    }

    .trust-card h3{
        font-size:34px;
    }

    .trust-card p{
        font-size:16px;
        line-height:1.7;
    }

}

/*==================================
        MOBILE (425px)
==================================*/

@media (max-width:425px){

    .trust-section{
        padding:60px 0;
    }

    .trust-container{
        width:calc(100% - 40px);
    }

    .section-heading{
        margin-bottom:40px;
    }

    .section-badge{
        font-size:13px;
        padding:8px 16px;
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:16px;
    }

    .trust-card{
        padding:28px 18px;
        border-radius:18px;
    }

    .trust-icon{
        width:68px;
        height:68px;
        font-size:30px;
    }

    .trust-card h3{
        font-size:30px;
    }

    .trust-card p{
        font-size:15px;
    }

}

/*==================================
        LEARNING SECTION
==================================*/

.learnings-section{
    width:100%;
    padding:100px 0;
    background:#ffffff;
}

.learnings-container{
    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;
}

/*==================================
            GRID
==================================*/

.learnings-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:30px;
    margin-top:60px;
}

.learnings-card{
    display:flex;
    flex-direction:column;
    height:100%;
    background:#ffffff;
    border:1px solid #E5E7EB;
    border-radius:24px;
    padding:40px 35px;
    box-shadow:0 12px 30px rgba(0,0,0,.05);
    transition:.35s;
}

.learnings-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(37,99,235,.15);
}

/*==================================
            ICON
==================================*/

.learnings-icon{
    width:85px;
    height:85px;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-shrink:0;
    font-size:42px;
    margin-bottom:28px;
}

/*==================================
            CONTENT
==================================*/

.learnings-card h3{
    font-size:28px;
    line-height:1.3;
    color:#111827;
    font-family:'Nunito',sans-serif;
    font-weight:800;
    margin-bottom:18px;
}

.learnings-card p{
    font-size:17px;
    line-height:1.8;
    color:#6B7280;
    font-family:'Nunito',sans-serif;
    margin:0;
}

/*==================================
        ICON COLORS
==================================*/

.learnings-card:nth-child(1) .learnings-icon{
    background:#DBEAFE;
}

.learnings-card:nth-child(2) .learnings-icon{
    background:#FEF3C7;
}

.learnings-card:nth-child(3) .learnings-icon{
    background:#DCFCE7;
}

.learnings-card:nth-child(4) .learnings-icon{
    background:#FCE7F3;
}

.learnings-card:nth-child(5) .learnings-icon{
    background:#EDE9FE;
}

.learnings-card:nth-child(6) .learnings-icon{
    background:#FEE2E2;
}

/*==================================
        TABLET (1200px)
==================================*/

@media (max-width:1200px){

    .learnings-section{
        padding:80px 0;
    }

    .learnings-container{
        width:calc(100% - 80px);
    }

    .learnings-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
        gap:25px;
    }

    .learnings-card{
        padding:35px 28px;
    }

    .learnings-icon{
        width:78px;
        height:78px;
        font-size:38px;
        margin-bottom:24px;
    }

    .learnings-card h3{
        font-size:25px;
    }

    .learnings-card p{
        font-size:16px;
    }

}

/*==================================
        MOBILE & TABLET (768px)
==================================*/

@media (max-width:768px){

    .learnings-section{
        padding:70px 0;
    }

    .learnings-container{
        width:calc(100% - 40px);
    }

    .learnings-grid{
        grid-template-columns:1fr;
        gap:22px;
        margin-top:40px;
    }

    .learnings-card{
        padding:30px 22px;
        border-radius:18px;
        text-align:center;
    }

    .learnings-icon{
        width:72px;
        height:72px;
        margin:0 auto 22px;
        font-size:34px;
    }

    .learnings-card h3{
        font-size:24px;
        margin-bottom:14px;
    }

    .learnings-card p{
        font-size:16px;
        line-height:1.7;
    }

}

/*==================================
        SMALL MOBILE (425px)
==================================*/

@media (max-width:425px){

    .learnings-section{
        padding:60px 0;
    }

    .learnings-container{
        width:calc(100% - 40px);
    }

    .learnings-grid{
        gap:20px;
        margin-top:35px;
    }

    .learnings-card{
        padding:24px 18px;
    }

    .learnings-icon{
        width:64px;
        height:64px;
        font-size:30px;
        margin-bottom:18px;
    }

    .learnings-card h3{
        font-size:22px;
    }

    .learnings-card p{
        font-size:15px;
        line-height:1.7;
    }

}

/*=================================
        LEARNING JOURNEY
==================================*/
.journeys {
    width: 100%;
    padding: 100px 0;
    background: #F8FBFF;
}

.journeys-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

/*=========================
      Heading
=========================*/
.journeys-heading {
    text-align: center;
    margin-bottom: 70px;
}

.smalls-title {
    display: inline-block;
    background: #FFE08A;
    color: #111;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    font-family: 'Nunito', sans-serif;
}

.journeys-heading h2 {
    margin-top: 25px;
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.journeys-heading p {
    margin-top: 18px;
    font-size: 20px;
    color: #6B7280;
    line-height: 1.8;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    font-family: 'Nunito', sans-serif;
}

/*=========================
        Grid
=========================*/
.journeys-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/*=========================
        Card
=========================*/
.journeys-card {
    position: relative;
    background: #ffffff;
    border-radius: 24px;
    padding: 40px 28px;
    text-align: center;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .08);
    transition: .35s;
}

.journeys-card:hover {

    transform: translateY(-10px);
    box-shadow: 0 22px 55px rgba(0, 123, 255, .18);
}

/*=========================
      Step Number
=========================*/
.journeys-number {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #4F46E5;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
    font-weight: 800;
    font-family: 'Nunito', sans-serif;
}

/*=========================
         Image
=========================*/
.journeys-card img {
    width: 95px;
    margin-top: 20px;
}

/*=========================
        Text
=========================*/
.journeys-card h3 {
    margin-top: 22px;
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.journeys-card p {
    margin-top: 16px;
    font-size: 17px;
    color: #6B7280;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

/*=========================
      Tablet
=========================*/
@media(max-width:992px) {

    .journeys-container {
        width: 90%;
    }

    .journeys-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .journeys-heading h2 {
        font-size: 38px;
    }
}

/*=========================
      Mobile
=========================*/
@media(max-width:425px) {

    .journeys {
        padding: 70px 0;
    }

    .journeys-container {
        width: 92%;
    }

    .journeys-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .journeys-heading {
        margin-bottom: 45px;
    }

    .journeys-heading h2 {
        font-size: 30px;
    }

    .journeys-heading p {
        font-size: 16px;
    }

    .journeys-card {
        padding: 35px 24px;
    }

    .journeys-card h3 {
        font-size: 24px;
    }

    .journeys-card p {
        font-size: 15px;
    }
}

/*====================================
        PROJECTS SECTION
====================================*/

.projects-section{
    width:100%;
    padding:100px 0;
    background:#ffffff;
}

.projects-container{
    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;
}

/*====================================
            HEADING
====================================*/

.section-heading{
    text-align:center;
    margin-bottom:70px;
}

.section-heading h2{
    font-size:48px;
    font-weight:800;
    color:#111827;
    font-family:'Nunito',sans-serif;
    margin-bottom:20px;
    line-height:1.2;
}

.heading-line{
    width:70px;
    height:5px;
    background:#ff7a00;
    border-radius:50px;
    margin:0 auto 25px;
}

.section-heading p{
    max-width:750px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#6b7280;
    font-family:'Nunito',sans-serif;
}

/*====================================
            GRID
====================================*/

.projects-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}

/*====================================
            CARD
====================================*/

.project-card{
    background:#fff;
    border:1px solid #e5e7eb;
    border-radius:24px;
    padding:35px;
    text-align:center;
    box-shadow:0 15px 35px rgba(0,0,0,.08);
    transition:.35s;
}

.project-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(37,99,235,.18);
}

.project-card img{
    width:220px;
    height:220px;
    max-width:100%;
    object-fit:contain;
    display:block;
    margin:0 auto;
}

.project-card h3{
    margin:25px 0 15px;
    font-size:28px;
    line-height:1.3;
    color:#111827;
    font-family:'Nunito',sans-serif;
    font-weight:800;
}

.project-card p{
    font-size:17px;
    line-height:1.8;
    color:#6b7280;
    margin-bottom:25px;
    font-family:'Nunito',sans-serif;
}

/*====================================
        DIFFICULTY TAG
====================================*/

.difficulty{
    display:inline-block;
    padding:8px 20px;
    border-radius:30px;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
    font-family:'Nunito',sans-serif;
}

.beginner{
    background:#dcfce7;
    color:#15803d;
}

.intermediate{
    background:#dbeafe;
    color:#1d4ed8;
}

.advanced{
    background:#fde68a;
    color:#b45309;
}

/*====================================
            BUTTON
====================================*/

.project-btn{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:14px 34px;
    background:#2563eb;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-size:16px;
    font-weight:700;
    font-family:'Nunito',sans-serif;
    transition:.3s;
}

.project-btn:hover{
    background:#1d4ed8;
}

/*====================================
        TABLET (1200px)
====================================*/

@media (max-width:1200px){

    .projects-section{
        padding:80px 0;
    }

    .projects-container{
        width:calc(100% - 80px);
    }

    .section-heading{
        margin-bottom:55px;
    }

    .section-heading h2{
        font-size:40px;
    }

    .section-heading p{
        font-size:18px;
    }

    .projects-grid{
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .project-card{
        padding:30px 25px;
    }

    .project-card img{
        width:180px;
        height:180px;
    }

    .project-card h3{
        font-size:24px;
    }

    .project-card p{
        font-size:16px;
    }

}

/*====================================
        MOBILE & TABLET (768px)
====================================*/

@media (max-width:768px){

    .projects-section{
        padding:70px 0;
    }

    .projects-container{
        width:calc(100% - 40px);
    }

    .section-heading{
        margin-bottom:45px;
    }

    .section-heading h2{
        font-size:34px;
        line-height:1.3;
    }

    .section-heading p{
        font-size:17px;
        line-height:1.8;
    }

    .projects-grid{
        grid-template-columns:1fr;
        gap:22px;
    }

    .project-card{
        padding:25px 20px;
        border-radius:18px;
    }

    .project-card img{
        width:170px;
        height:170px;
    }

    .project-card h3{
        font-size:22px;
    }

    .project-card p{
        font-size:16px;
        line-height:1.7;
    }

    .project-btn{
        width:100%;
        padding:14px;
    }

}

/*====================================
        SMALL MOBILE (425px)
====================================*/

@media (max-width:425px){

    .projects-section{
        padding:60px 0;
    }

    .projects-container{
        width:calc(100% - 40px);
    }

    .section-heading h2{
        font-size:30px;
    }

    .section-heading p{
        font-size:15px;
    }

    .project-card{
        padding:22px 18px;
    }

    .project-card img{
        width:150px;
        height:150px;
    }

    .project-card h3{
        font-size:20px;
    }

    .project-card p{
        font-size:15px;
    }

    .difficulty{
        font-size:13px;
        padding:7px 18px;
    }

}

/*==================================
        STEM KIT
==================================*/
.stem-kit {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.stem-kit-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
}

/* LEFT */
.kit-left {
    width: 55%;
}

.kit-tag {
    display: inline-block;
    padding: 10px 22px;
    background: #dbeafe;
    color: #2563eb;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Nunito', sans-serif;
}

.kit-left h2 {
    margin-top: 25px;
    font-size: 46px;
    font-weight: 800;
    line-height: 1.2;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.kit-line {
    width: 70px;
    height: 5px;
    background: #ff7a00;
    margin: 25px 0;
    border-radius: 50px;
}

.kit-left p {
    font-size: 19px;
    line-height: 1.8;
    color: #6b7280;
    margin-bottom: 40px;
    font-family: 'Nunito', sans-serif;
}

.kit-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.kit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    padding: 18px;
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .05);
}

.kit-item img {
    width: 24px;
}

.kit-item span {
    font-size: 17px;
    color: #374151;
    font-weight: 600;
    font-family: 'Nunito', sans-serif;
}

/* RIGHT */
.kit-right {
    width: 45%;
    display: flex;
    justify-content: center;
}

.kit-right img {
    width: 100%;
    max-width: 550px;
    border-radius: 25px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .12);
}

/*==========================
        TABLET
==========================*/
@media(max-width:991px) {

    .stem-kit-container {
        width: calc(100% - 60px);
        flex-direction: column;
    }

    .kit-left,
    .kit-right {
        width: 100%;
    }

    .kit-left h2 {
        font-size: 38px;
    }

    .kit-items {
        grid-template-columns: repeat(2, 1fr);
    }

    .kit-right {
        margin-top: 40px;
    }
}

/*==========================
        MOBILE
==========================*/
@media(max-width:425px) {

    .stem-kit {
        padding: 70px 0;
    }

    .stem-kit-container {
        width: calc(100% - 30px);
    }

    .kit-left h2 {
        font-size: 30px;
    }

    .kit-left p {
        font-size: 16px;
    }

    .kit-items {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .kit-item {
        padding: 15px;
    }

    .kit-item span {
        font-size: 15px;
    }

    .kit-right {
        margin-top: 35px;
    }

    .kit-right img {
        max-width: 100%;
    }
}

/*==================================
      HOW KIDS LEARN
==================================*/

.learning-process{
    width:100%;
    padding:100px 120px;
    background:#f8fbff;
    box-sizing:border-box;
}

.process-container{
    width:100%;
    max-width:1400px;
    margin:0 auto;
}

.process-heading{
    text-align:center;
    margin-bottom:70px;
}

.process-heading h2{
    font-size:46px;
    font-family:'Nunito',sans-serif;
    font-weight:800;
    color:#111827;
    margin:18px 0;
    line-height:1.25;
}

.process-heading h2 span{
    color:#2563eb;
}

.process-heading p{
    max-width:760px;
    margin:0 auto;
    font-size:19px;
    line-height:1.8;
    color:#6b7280;
    font-family:'Nunito',sans-serif;
}

.process-grid{
    display:flex;
    align-items:stretch;
    justify-content:space-between;
    gap:18px;
}

.process-card{
    flex:1;
    background:#fff;
    border-radius:20px;
    padding:35px 25px;
    text-align:center;
    border:1px solid #e5e7eb;
    box-shadow:0 12px 30px rgba(0,0,0,.06);
    transition:.35s;
    position:relative;
}

.process-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(37,99,235,.18);
}

.process-number{
    position:absolute;
    top:15px;
    right:15px;

    width:40px;
    height:40px;

    border-radius:50%;
    background:#2563eb;
    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-weight:700;
    font-family:'Nunito',sans-serif;
}

.process-card img{
    width:85px;
    height:85px;
    object-fit:contain;
    margin-bottom:20px;
}

.process-card h3{
    font-size:24px;
    color:#111827;
    margin-bottom:15px;
    line-height:1.4;
    font-family:'Nunito',sans-serif;
}

.process-card p{
    font-size:17px;
    line-height:1.7;
    color:#6b7280;
    font-family:'Nunito',sans-serif;
}

.process-arrow{
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:38px;
    color:#2563eb;
    font-weight:bold;
    flex-shrink:0;
}

/*==================================
            TABLET
==================================*/

@media (max-width:1024px){

    .learning-process{
        padding:80px 40px;
    }

    .process-heading{
        margin-bottom:55px;
    }

    .process-heading h2{
        font-size:38px;
    }

    .process-heading p{
        font-size:17px;
    }

    .process-grid{
        flex-wrap:wrap;
        justify-content:center;
        gap:25px;
    }

    .process-card{
        flex:0 0 calc(50% - 15px);
    }

    .process-arrow{
        display:none;
    }

}

/*==================================
            MOBILE
==================================*/

@media (max-width:425px){

    .learning-process{
        padding:60px 20px;
    }

    .process-heading{
        margin-bottom:40px;
    }

    .process-heading h2{
        font-size:32px;
        line-height:1.3;
    }

    .process-heading p{
        font-size:16px;
        line-height:1.8;
    }

    .process-grid{
        flex-direction:column;
        gap:20px;
    }

    .process-card{
        width:100%;
        padding:28px 20px;
        border-radius:18px;
    }

    .process-number{
        width:36px;
        height:36px;
        font-size:15px;
    }

    .process-card img{
        width:72px;
        height:72px;
        margin-bottom:18px;
    }

    .process-card h3{
        font-size:22px;
        margin-bottom:12px;
    }

    .process-card p{
        font-size:15px;
        line-height:1.8;
    }

    .process-arrow{
        display:none;
    }

}

/*==================================
        MENTORS
==================================*/
.mentors {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.mentors-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.mentor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.mentor-card {
    background: #fff;
    border-radius: 22px;
    text-align: center;
    padding: 40px 30px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .06);
    transition: .35s;
}

.mentor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 22px 50px rgba(37, 99, 235, .18);
}

.mentor-card img {
    width: 170px;
    height: 170px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 25px;
}

.mentor-card h3 {
    font-size: 28px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
    margin-bottom: 10px;
}

.mentor-role {
    display: inline-block;
    background: #eff6ff;
    color: #2563eb;
    padding: 8px 18px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Nunito', sans-serif;
}

.mentor-card p {
    font-size: 17px;
    color: #6b7280;
    line-height: 1.8;
    margin-bottom: 25px;
    font-family: 'Nunito', sans-serif;
}

.mentor-tags {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.mentor-tags span {
    background: #f8fafc;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 14px;
    color: #374151;
    font-family: 'Nunito', sans-serif;
}

@media (max-width:768px) {

    .mentors {
        padding: 70px 0;
    }

    .mentors-container {
        width: 92%;
    }

    .mentor-grid {
        grid-template-columns: 1fr;
    }

    .mentor-card {
        padding: 35px 25px;
    }

    .mentor-card img {
        width: 140px;
        height: 140px;
    }

    .mentor-card h3 {
        font-size: 24px;
    }

    .mentor-card p {
        font-size: 16px;
    }
}

/*==============================
        CURRICULUM
==============================*/
.curriculum {
    width: 100%;
    padding: 90px 120px;
    background: #f8fbff;
}

.curriculum-title {
    text-align: center;
    margin-bottom: 70px;
}

.curriculum-title h2 {
    font-size: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #222;
    margin-bottom: 15px;
}

.curriculum-title p {
    max-width: 720px;
    margin: auto;
    font-size: 20px;
    color: #666;
    line-height: 1.7;
}

.curriculum-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.level-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px;
    text-align: center;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .08);
}

.level-card:hover {
    transform: translateY(-10px);
}

.level-number {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: auto;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
}

.beginner .level-number {
    background: #4CAF50;
}

.intermediate .level-number {
    background: #2196F3;
}

.advanced .level-number {
    background: #FF9800;
}

.level-card h3 {
    margin-top: 25px;
    font-size: 30px;
    color: #222;
    font-family: 'Nunito', sans-serif;
}

.level-card span {
    display: block;
    margin-top: 10px;
    margin-bottom: 25px;
    color: #777;
    font-size: 18px;
}

.level-card ul {
    list-style: none;
    padding: 0;
}

.level-card li {
    padding: 12px 0;
    font-size: 18px;
    color: #555;
    border-bottom: 1px solid #eee;
}

.level-card li:last-child {
    border: none;
}

@media (max-width:768px) {

    .curriculum {
        padding: 70px 25px;
    }

    .curriculum-title h2 {
        font-size: 34px;
    }

    .curriculum-title p {
        font-size: 17px;
    }

    .curriculum-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .level-card {
        padding: 30px;
    }

    .level-card h3 {
        font-size: 26px;
    }

    .level-card li {
        font-size: 16px;
    }
}

/*==============================
    PARENT TESTIMONIALS
==============================*/
.parents-testimonials {
    width: 100%;
    padding: 100px 120px;
    background: #f8fbff;
}

.parents-container {
    max-width: 1400px;
    margin: auto;
}

.section-heading {
    text-align: center;
    margin-bottom: 60px;
}

.section-heading h2 {
    font-size: 48px;
    font-family: 'Nunito', sans-serif;
    font-weight: 800;
    color: #111827;
    margin-bottom: 18px;
}

.section-heading p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.8;
    color: #64748b;
    font-family: 'Nunito', sans-serif;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.testimonial-card {
    background: #fff;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
}

.parent-info {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.parent-info img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
}

.parent-info h3 {
    font-size: 22px;
    color: #111827;
    margin-bottom: 4px;
    font-family: 'Nunito', sans-serif;
}

.parent-info span {
    color: #64748b;
    font-size: 15px;
    font-family: 'Nunito', sans-serif;
}

.stars {
    font-size: 22px;
    margin-bottom: 18px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    font-family: 'Nunito', sans-serif;
}

@media(max-width:768px) {

    .parents-testimonials {
        padding: 70px 25px;
    }

    .section-heading h2 {
        font-size: 34px;
    }

    .section-heading p {
        font-size: 17px;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .testimonial-card {
        padding: 25px;
    }

    .parent-info h3 {
        font-size: 20px;
    }
}

/*====================================
      WHY PARENTS TRUST KENOWIT
===================================*/
.trusts-kenowit {
    width: 100%;
    padding: 100px 0;
    background: #ffffff;
}

.trusts-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.trusts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.trusts-card {
    background: #fff;
    border-radius: 22px;
    padding: 40px 35px;
    text-align: center;
    border: 1px solid #e5e7eb;
    transition: .35s;
    box-shadow: 0 15px 35px rgba(0, 0, 0, .06);
}

.trusts-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .15);
}

.trusts-card img {
    width: 85px;
    height: 85px;
    object-fit: contain;
    margin-bottom: 25px;
}

.trusts-card h3 {
    font-size: 28px;
    color: #111827;
    margin-bottom: 18px;
    font-family: 'Nunito', sans-serif;
}

.trusts-card p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

@media (max-width:768px) {

    .trusts-kenowit {
        padding: 70px 0;
    }

    .trusts-container {
        width: 92%;
    }

    .trusts-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .trusts-card {
        padding: 30px 25px;
    }

    .trusts-card img {
        width: 70px;
        height: 70px;
    }

    .trusts-card h3 {
        font-size: 24px;
    }

    .trusts-card p {
        font-size: 16px;
    }
}

/*==================================
   CERTIFICATES & ACHIEVEMENTS
==================================*/
.achievements {
    width: 100%;
    padding: 100px 0;
    background: #f8fbff;
}

.achievements-container {
    width: calc(100% - 240px);
    max-width: 1400px;
    margin: auto;
}

.achievement-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.achievement-card {
    background: #fff;
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    border: 1px solid #e5e7eb;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .06);
    transition: .35s;
}

.achievement-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 45px rgba(37, 99, 235, .16);
}

.achievement-card img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    margin-bottom: 25px;
}

.achievement-card h3 {
    font-size: 26px;
    color: #111827;
    margin-bottom: 15px;
    font-family: 'Nunito', sans-serif;
}

.achievement-card p {
    font-size: 17px;
    color: #64748b;
    line-height: 1.8;
    font-family: 'Nunito', sans-serif;
}

@media (max-width:768px) {

    .achievements {
        padding: 70px 0;
    }

    .achievements-container {
        width: 92%;
    }

    .achievement-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .achievement-card {
        padding: 30px;
    }

    .achievement-card img {
        width: 90px;
        height: 90px;
    }

    .achievement-card h3 {
        font-size: 22px;
    }

    .achievement-card p {
        font-size: 16px;
    }
}

/*=================================
      FUTURE CAREER ROADMAP
=================================*/

.career-roadmap{
    width:100%;
    padding:100px 0;
    background:linear-gradient(to bottom,#ffffff,#f8fbff);
}

.roadmap-container{
    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;
}

/*=================================
        HEADING
=================================*/

.roadmap-title{
    text-align:center;
    margin-bottom:70px;
}

.roadmap-title h2{
    font-size:48px;
    font-weight:800;
    line-height:1.2;
    color:#111827;
    font-family:'Nunito',sans-serif;
    margin-bottom:18px;
}

.roadmap-title p{
    max-width:760px;
    margin:auto;
    font-size:20px;
    line-height:1.8;
    color:#6b7280;
    font-family:'Nunito',sans-serif;
}

/*=================================
        ROADMAP
=================================*/

.roadmap{
    position:relative;
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:25px;
}

/* Connecting Line */

.roadmap::before{
    content:"";
    position:absolute;
    top:60px;
    left:8%;
    right:8%;
    height:4px;
    background:#dbeafe;
    border-radius:20px;
    z-index:0;
}

/*=================================
        STEP
=================================*/

.roadmap-step{
    position:relative;
    z-index:2;
    flex:1;
    background:#fff;
    border-radius:24px;
    padding:30px 22px;
    text-align:center;
    border:1px solid #E5E7EB;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    transition:.35s;
}

.roadmap-step:hover{
    transform:translateY(-8px);
    box-shadow:0 25px 55px rgba(37,99,235,.18);
}

/* Circle */

.roadmap-circle{
    width:120px;
    height:120px;
    margin:auto;
    border-radius:50%;
    background:#eff6ff;
    display:flex;
    justify-content:center;
    align-items:center;
    border:5px solid #fff;
    box-shadow:0 10px 25px rgba(37,99,235,.15);
}

.roadmap-circle img{
    width:62px;
    height:auto;
    display:block;
}

.roadmap-step h3{
    margin-top:22px;
    font-size:26px;
    line-height:1.3;
    color:#111827;
    font-family:'Nunito',sans-serif;
}

.roadmap-step p{
    margin-top:10px;
    font-size:17px;
    line-height:1.7;
    color:#6b7280;
    font-family:'Nunito',sans-serif;
}

.roadmap-arrow{
    display:none;
}

/*=================================
        FINAL CARD
=================================*/

.final{
    background:linear-gradient(135deg,#2563eb,#4f46e5);
    color:#fff;
}

.final h3{
    color:#fff;
}

.final p{
    color:#E0E7FF;
}

.final .roadmap-circle{
    background:#fff;
}

.final .career-tags{
    margin-top:22px;
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;
}

.final .career-tags span{
    padding:8px 16px;
    border-radius:30px;
    background:rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.25);
    color:#fff;
    font-size:14px;
    font-family:'Nunito',sans-serif;
}

/*=================================
        TABLET (1200px)
=================================*/

@media (max-width:1200px){

    .career-roadmap{
        padding:80px 0;
    }

    .roadmap-container{
        width:calc(100% - 80px);
    }

    .roadmap-title{
        margin-bottom:55px;
    }

    .roadmap-title h2{
        font-size:40px;
    }

    .roadmap-title p{
        font-size:18px;
    }

    .roadmap{
        display:grid;
        grid-template-columns:repeat(2,1fr);
        gap:25px;
    }

    .roadmap::before{
        display:none;
    }

    .roadmap-step{
        width:100%;
        padding:30px 25px;
    }

}

/*=================================
        MOBILE & TABLET (768px)
=================================*/

@media (max-width:768px){

    .career-roadmap{
        padding:70px 0;
    }

    .roadmap-container{
        width:calc(100% - 40px);
    }

    .roadmap-title{
        margin-bottom:45px;
    }

    .roadmap-title h2{
        font-size:34px;
        line-height:1.3;
    }

    .roadmap-title p{
        font-size:17px;
        line-height:1.8;
    }

    .roadmap{
        display:grid;
        grid-template-columns:1fr;
        gap:22px;
    }

    .roadmap-step{
        width:100%;
        padding:28px 22px;
        border-radius:20px;
    }

    .roadmap-circle{
        width:100px;
        height:100px;
    }

    .roadmap-circle img{
        width:55px;
    }

    .roadmap-step h3{
        font-size:22px;
        margin-top:18px;
    }

    .roadmap-step p{
        font-size:16px;
    }

    .final .career-tags{
        margin-top:18px;
        gap:8px;
    }

}

/*=================================
        SMALL MOBILE (425px)
=================================*/

@media (max-width:425px){

    .career-roadmap{
        padding:60px 0;
    }

    .roadmap-container{
        width:calc(100% - 40px);
    }

    .roadmap-title h2{
        font-size:30px;
    }

    .roadmap-title p{
        font-size:15px;
        line-height:1.7;
    }

    .roadmap-step{
        padding:25px 18px;
    }

    .roadmap-circle{
        width:90px;
        height:90px;
    }

    .roadmap-circle img{
        width:48px;
    }

    .roadmap-step h3{
        font-size:20px;
    }

    .roadmap-step p{
        font-size:15px;
    }

    .final .career-tags span{
        font-size:12px;
        padding:8px 12px;
    }

}

/*==================================
              FAQ
==================================*/
.kids-faq {
    width: 100%;
    padding: 100px 120px;
    background: #f8fbff;
}

.faq-container {
    max-width: 1100px;
    margin: auto;
}

.faq-heading {
    text-align: center;
    margin-bottom: 60px;
}

.faq-heading span {
    color: #2563eb;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 1px;
}

.faq-heading h2 {
    font-size: 46px;
    margin-top: 10px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.faq-heading p {
    font-size: 19px;
    color: #64748b;
    margin-top: 15px;
}

.faq-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: #fff;
    border-radius: 18px;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, .05);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 25px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: 700;
}

.faq-question i {
    color: #2563eb;
    transition: .3s;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: .35s;
}

.faq-answer p {
    padding: 0 30px 25px;
    color: #64748b;
    font-size: 17px;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 250px;
}

.faq-item.active i {
    transform: rotate(180deg);
}

@media(max-width:768px) {

    .kids-faq {
        padding: 70px 25px;
    }

    .faq-heading h2 {
        font-size: 34px;
    }

    .faq-question {
        padding: 20px;
        font-size: 18px;
    }

    .faq-answer p {  
        padding: 0 20px 20px;
        font-size: 16px;

    }
}

/*==================================
            FINAL CTA
==================================*/

.cta-section{
    width:100%;
    padding:100px 0;
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
}

.cta-container{
    width:calc(100% - 240px);
    max-width:1400px;
    margin:auto;

    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:80px;
}

/*==================================
            CONTENT
==================================*/

.cta-content{
    flex:1;
}

.cta-badge{
    display:inline-block;
    padding:10px 20px;
    background:rgba(255,255,255,.15);
    border-radius:50px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    font-family:'Nunito',sans-serif;
    margin-bottom:25px;
}

.cta-content h2{
    font-size:52px;
    line-height:1.2;
    font-weight:800;
    color:#fff;
    margin-bottom:25px;
    font-family:'Nunito',sans-serif;
}

.cta-content p{
    font-size:20px;
    line-height:1.8;
    color:#E5E7EB;
    margin-bottom:40px;
    font-family:'Nunito',sans-serif;
}

/*==================================
            BUTTONS
==================================*/

.ctas-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    margin-bottom:45px;
}

.ctas-buttons .btns-primary,
.ctas-buttons .btns-secondary{
    display:inline-flex;
    justify-content:center;
    align-items:center;
    padding:16px 34px;
    border-radius:10px;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
    font-family:'Nunito',sans-serif;
    transition:.3s;
}

.ctas-buttons .btns-primary{
    background:#fff;
    color:#2563EB;
}

.ctas-buttons .btns-primary:hover{
    background:#f8fafc;
    transform:translateY(-3px);
}

.ctas-buttons .btns-secondary{
    border:2px solid #fff;
    color:#fff;
}

.ctas-buttons .btns-secondary:hover{
    background:rgba(255,255,255,.15);
    transform:translateY(-3px);
}

/*==================================
            STATS
==================================*/

.cta-stats{
    display:flex;
    gap:45px;
    flex-wrap:wrap;
}

.cta-stats h3{
    font-size:34px;
    color:#fff;
    margin-bottom:6px;
    font-family:'Nunito',sans-serif;
}

.cta-stats span{
    font-size:16px;
    color:#DBEAFE;
    font-family:'Nunito',sans-serif;
}

/*==================================
            IMAGE
==================================*/

.cta-image{
    flex:1;
    display:flex;
    justify-content:center;
}

.cta-image img{
    width:100%;
    max-width:500px;
    display:block;
    border-radius:18px;
}

/*==================================
        TABLET (1200px)
==================================*/

@media (max-width:1200px){

    .cta-section{
        padding:80px 0;
    }

    .cta-container{
        width:calc(100% - 80px);
        gap:60px;
    }

    .cta-content h2{
        font-size:42px;
    }

    .cta-content p{
        font-size:18px;
    }

    .cta-image img{
        max-width:420px;
    }

}

/*==================================
        MOBILE & TABLET (768px)
==================================*/

@media (max-width:768px){

    .cta-section{
        padding:70px 0;
    }

    .cta-container{
        width:calc(100% - 40px);
        flex-direction:column-reverse;
        text-align:center;
        gap:45px;
    }

    .cta-content,
    .cta-image{
        width:100%;
    }

    .cta-content h2{
        font-size:36px;
    }

    .cta-content p{
        font-size:17px;
        line-height:1.7;
    }

    .ctas-buttons{
        justify-content:center;
        flex-direction:column;
        gap:15px;
    }

    .ctas-buttons .btns-primary,
    .ctas-buttons .btns-secondary{
        width:100%;
    }

    .cta-stats{
        justify-content:center;
        gap:30px;
    }

    .cta-image img{
        max-width:340px;
    }

}

/*==================================
        SMALL MOBILE (425px)
==================================*/

@media (max-width:425px){

    .cta-section{
        padding:60px 0;
    }

    .cta-container{
        width:calc(100% - 40px);
    }

    .cta-badge{
        font-size:14px;
        padding:8px 18px;
    }

    .cta-content h2{
        font-size:30px;
    }

    .cta-content p{
        font-size:15px;
    }

    .ctas-buttons .btns-primary,
    .ctas-buttons .btns-secondary{
        font-size:16px;
        padding:15px 20px;
    }

    .cta-stats{
        gap:25px;
    }

    .cta-stats h3{
        font-size:28px;
    }

    .cta-stats span{
        font-size:14px;
    }

    .cta-image img{
        max-width:280px;
    }

}

/*==================================
        CONTACT SECTION
==================================*/
.contact-section {
    width: 100%;
    padding: 100px 120px;
    background: #f8fbff;
}

.contact-container {
    max-width: 1400px;
    margin: auto;
    display: flex;
    gap: 70px;
}

.contact-left {
    width: 55%;
}

.contact-left h2 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #111827;
    font-family: 'Nunito', sans-serif;
}

.contact-left p {
    font-size: 18px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 35px;
}

.contact-left form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-left input,
.contact-left select {
    width: 100%;
    height: 58px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 0 20px;
    font-size: 16px;
}

.contact-left button {
    height: 60px;
    border: none;
    background: #2563eb;
    color: #fff;
    border-radius: 12px;
    font-size: 18px;
    cursor: pointer;
}

.contact-right {
    width: 45%;
}

.contact-card {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, .08);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
}

.contact-item p {
    color: #6b7280;
    line-height: 1.6;
}

@media(max-width:768px) {

    .contact-section {
        padding: 70px 25px;
    }

    .contact-container {
        flex-direction: column;
    }

    .contact-left,
    .contact-right {
        width: 100%;
    }

    .contact-left h2 {
        font-size: 34px;
    }

    .contact-card {
        padding: 30px;
    }
}

