*{
    padding: 0;
    margin: 0;
    font-family: 'Poppins',sans-serif;
    box-sizing: border-box;
}
.bg-cream{
    background-color: #fff2e1;
}

body {
    font-family: 'Poppins', system-ui, -apple-system, sans-serif;
    background: #fafbfc;
}
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}
 
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 30px;
    position: relative;
}

.navbar .logo {
    display: flex;
    align-items: center;
    position: relative;
}

.navbar .logo .square {
    background-color: #fff2e1b3;
    width: 40px;
    height: 40px;
    border-radius: 3px;
    transform: rotate(45deg);
    position: absolute;
}

.navbar .logo h4 {
    position: relative;
    margin-left: 8px;
    letter-spacing: 2px;
}

.navbar .nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar .nav-list li {
    list-style: none;
    font-size: 18px;
    font-weight: 400;
    position: relative;
}

.navbar .nav-list li a {
    text-decoration: none;
    color: black;
    display: inline-block;
    padding: 5px 0;
    transition: all 0.3s ease;
    position: relative;
}

/* Hover effect - underline */
.navbar .nav-list li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #ffa27a;
    transition: width 0.3s ease;
}

.navbar .nav-list li a:hover::after {
    width: 100%;
}

.hamburger{
    display: none;
    flex-direction: column;
    gap: 5px;
}
.hamburger .line{
    width: 30px;
    height: 3px;
    transition: all 0.3s ease-in-out;
    background-color: black;
    border-radius: 5px;
}
.hamburger .line:nth-child(3){
    width: 15px;
    margin-left: auto;
}
.hero{
    border-bottom-left-radius: 20%;
    border-bottom-right-radius: 20%;
}
.hero .main{
    display: flex;
    align-items: center;
    padding: 0px 30px;
}
.hero .hero-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.hero .main .hero-content h2{
    font-size: 3rem;
    color: #2f327d;
}
.hero .main .hero-content span{
    color: #f48c06;
}
.hero .hero-content p{
    font-size: 25px;
}
.hero .hero-content .buttons{
    display: flex;
    align-items: center;
    gap: 2rem;
}
.hero .hero-content button{
    border: none;
    background-color: #f48c06;
    color: #fff;
    padding: 10px 30px;
    font-size: 20px;
    border-radius: 30px;
    font-weight: 600;
}
.play{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.play a{
    text-decoration: none;
    color: black;
    font-size: 20px;
}
.play i{
    font-size: 30px;
    color: #23bdee;
    background-color: #fff;
    padding: 10px 10px 10px 15px;
    border-radius: 50%;
}
.hero .main .img img{
    width: 90%;
}
/* rgba(156,163,175 */
.partner{
    margin-top: 4rem;
}
.partner p{
    text-align: center;
    font-size: 17px;
    font-weight: 500;
    color: rgb(156,163,175);
}
.partner .img{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-top: 1rem;
}
.partner .img img{
    width: 100px;
}
.mt-4{
    margin-top: 4rem;
}
.mt-5{
    margin-top: 5rem;
}
.heading {
    text-align: center;
}
.heading-intro{
    text-align: center;
}
.heading-intro h4{
    font-size: 2.7rem;
    color: #2f327d;
}
.heading h4{
    font-size: 2.7rem;
    color: #2f327d;
}
.heading h4 span{
    color: #f48c06;
}
.heading p{
    color: #6b7280;
    margin-top: 1rem;
}
.heading-intro p{
    color: #2f327d;
    margin-top: 1rem;
    padding: 0% 15%;
    font-size: large;
    font-weight: 600;
    text-align: justify;
}
.text-white{
    color: #fff;
}
.feature .feature-card{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    padding: 0px 30px;
    margin-top: 2rem;
}
.feature-card .card{
    padding: 30px 30px;
    text-align: center;
    border: 1px solid #e0e0e0;
    width: 230px;
    /* box-shadow: 2px 2px 15px rgb(217, 216, 216); */
    border-radius: 10px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.feature-card .card:hover{
    background-color: #f3f0eced;
}
.feature-card .card svg{
    width: 50px;
    height: 50px;
}
.feature-card .card:nth-child(1) svg{
    background-color: #5b72ee;
    padding: 15px 5px;
    border-radius: 5px;
}
.feature-card .card:nth-child(2) svg{
    background-color: #f48c06;
    padding: 15px 10px;
    border-radius: 5px;
}
.feature-card .card:nth-child(3) svg{
    background-color: #29b9e7;
    padding: 15px 10px;
    border-radius: 5px;
}
.feature-card .card h4{
    color: #2f327d;
    font-weight: 600;
    font-size: 20px;
}
.feature-card .card p{
    color: #6b7280;
}

.intro .container{
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}
.intro .container .instructor{
    background-image: url("https://mhaecal.github.io/frontend/img/Rectangle%2019.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
    width: 420px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.intro .container .student{
    background-image: url("https://mhaecal.github.io/frontend/img/Rectangle%2021.png");
    background-repeat: no-repeat;
    background-size: cover;
    height: 280px;
    width: 420px;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.intro .platform h4{
    color: #fff;
}
.intro .instructor button{
    border: 1px solid #fff;
    border-radius: 20px;
    background-color: transparent;
    color: #fff;
    font-weight: 500;
    padding: 10px 30px;
    cursor: pointer;
    transition: 0.3s ease-in-out;

}
.intro .student button{
    border: none;
    background-color: rgba(35, 189, 238,0.9);
    padding: 10px 30px;
    color: #fff;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 500;
    transition: 0.3s ease-in-out;
}
.intro button:hover{
    transform: scale(1.1,1.1);
}
.mt-6{
    margin-top: 6rem;
}
.everything .main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
}
.everything .content{
    width: 40%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
}
.everything .orange-circle{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #f48c06;
    position: absolute;
    z-index: -1;
    top: -13px;
    left: -15px;
    animation: flicker 2s infinite ease-in-out;
    
}
@keyframes flicker {
    0%{
        opacity: 1;
    }
    50%{
        opacity: 0.5;
    }
    100%{
        opacity: 1;
    }
}
.everything .content h4{
    font-size: 22px;
    color: #2f327d;
    font-weight: 600;
}
.everything .content span{
    color: #f48c06;
}
.everything .content p{
    color: #6b7280;
}
.everything .content a{
    color: #6b7280;
}
.everything .img{
    position: relative;
    z-index: 1;
}
.everything .img img{
    width: 400px;
}
.everything .blue{
    position: absolute;
    top: -15px;
    left: -15px;
    width: 100px;
    height: 100px;
    background-color: #23bdee;
    border-radius: 10px;
    z-index: -1;
    animation: floating 3s infinite ease-in-out;
}
.everything .orange{
    width: 150px;
    height: 150px;
    background-color: #f48c06;
    border-radius: 10px;
    position: absolute;
    bottom: -5px;
    right:-15px;
    z-index: -2;
    animation: floating 3s infinite ease-in-out;
}
.everything .img .play{
    position: absolute;
    top: 38%;
    left: 45%;
}

@keyframes floating {
    0%{
        transform: translateY(0px);
    }
    50%{
        transform: translateY(10px);
    }
    100%{
        transform: translateY(0px);
    }
}

mb-5{
    margin-bottom: 5rem;
}
.user-interface .main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px 30px;
    margin-top: 9rem;
}
.user-interface .main .img{
    position: relative;
}
.user-interface .main .img img{
    width: 500px;
    animation: floating 3s infinite ease-in-out;
}
.user-interface .green,.user-interface .blue{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    position: absolute;
}
.user-interface .green{
    background-color: #33efa0;
    top: -15%;
    z-index: -1;
    left: 5%;
    animation: flicker 2s infinite ease-in-out;
}
.user-interface .blue{
    background-color: #5b72ee;
    bottom: 0px;
    z-index: -1;
    right: 20%;
    animation: flicker 2s infinite ease-in-out;
}
.user-interface .content{
    width: 40%;
}
.user-interface .content h4{
    color: #2f327d;
    font-size: 22px;
    font-weight: 600;
}
.user-interface .content span{
    color: #f48c06;
}
.user-interface .content .list li{
    list-style: none;
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}
.user-interface .list p{
    color: #6b7280;
}
.user-interface .content .list svg{
    width: 30px;
    background-color: #fff;
    border-radius: 50%;
    padding: 0px 15px;
    box-shadow: 0px 3px 4px #aaa;
}
.user-interface .list svg:nth-child(2),.user-interface .list svg:nth-child(2){
    padding: 0px 5px;
}

.tool .main{
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 0px 30px;
}
.content{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.content h4{
    font-weight: 600;
    color: #2f327d;
    font-size: 30px;
}
.content span{
    color: #f48c06;
}
.content p{
    color: #6b7280;
}
.img img{
    width: 500px;
}

.test .main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.test .img img{
    width: 400px;
}

.management .main{
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.discussion .main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.discussion .img img{
    width: 450px;
}
.btn{
    text-align: center;
}
.mt-2{
    margin-top: 2rem;
}
.more{
    border: 1px solid #f48c06;
    padding: 10px 30px;
    background-color: #fff;
    color: #f48c06;
    border-radius: 20px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
}

.integration .main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.integration .img img{
    width: 300px;
}
small{
    display: flex;
    align-items: center;
    color: #9ca3af;
    font-size: 15px;
}
.line{
    width: 60px;
    height: 2px;
    background-color: #e0e0e0;
    margin-right: 1.3rem;
}
.integration h4{
    line-height: 2.5rem;
}
.integration .content button{
    border: 1px solid #f48c06;
    color: #f48c06;
    font-size: 17px;
    font-weight: 500;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 10px;
    width: 200px;
    cursor: pointer;
    transition: 0.3s ease-in-out;

}

.testimonial .main{
    display: flex;
    justify-content: space-around;
}
.testimonial .img img{
    width: 400px;
}
.testimonial .content button{
    border: 1px solid #f48c06;
    color: #f48c06;
    font-size: 17px;
    font-weight: 500;
    background-color: #fff;
    border-radius: 30px;
    padding: 10px 10px;
    width: 270px;
    cursor: pointer;
    transition: 0.3s ease-in-out;
}
.testimonial button i{
    font-size: 20px;
    margin-left: 10px;
}
.content button:hover{
    transform: scale(1.1,1.1);
}

.blog .blog-container{
    display: flex;
    justify-content: space-around;
    padding: 0px 30px;
    margin-top: 3rem;
    gap: 2rem;
}
.blog .blog-container .main-blog,.blog-container .main-blog img{
    width: 400px;
}
.blog-container .main-blog .blog-content{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 0.5rem;
}
.blog-container .main-blog h4{
    color: #1f2937;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.6rem;
}
.blog-container .main-blog p{
    color: #6b7280;
}
.blog-container .main-blog a{
    color: #6b7280;
}
.blog-container .blog-post{
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 450px;
}
.blog-container .blog-post .post{
    display: flex;
    align-items: center;
    gap: 1rem;
}
.blog-container .blog-post .img img{
    width: 150px;
}
.blog-post .post .blog-content h4{
    color: #1f2937;
    font-size: 18px;
    font-weight: 600;
}
.blog-post .post .blog-content p{
    color: #6b7280;
    font-size: 12px;
    margin-top: 0.5rem;
}

footer{
    background-color: #252641;
    text-align: center;
    padding: 30px 20px;
}
footer .logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
footer .logo .square{
    width: 30px;
    position: absolute;
    height: 30px;
    border: 1px solid #23bdee;
    border-radius: 5px;
    transform: rotate(45deg);
}
footer .logo h4{
    position: relative;
    top: 0;
    color: #fff;
    left: 20px;
}
.v-line{
    width: 1px;
    height: 60px;
    background-color: #9ca3af;
    margin-left: 1.5rem;
}

footer {
    background-color: #252641;
    padding: 50px 20px 30px;
    color: #fff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2.5rem 2rem;
    justify-items: center;
}

/* Logo Section */
footer .edu-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

footer .logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

footer .logo .square {
    width: 30px;
    position: absolute;
    height: 30px;
    border: 1px solid #23bdee;
    border-radius: 5px;
    transform: rotate(45deg);
}

footer .logo h4 {
    position: relative;
    top: 0;
    color: #fff;
    left: 20px;
    font-size: 1.3rem;
}

.v-line {
    width: 1px;
    height: 60px;
    background-color: #9ca3af;
    margin-left: 1.5rem;
}

.edu-logo span {
    width: 100px;
    color: #fff;
    font-size: 15px;
}

/* Section Headers */
.footer-container h5 {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-container h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(105.5deg, rgb(84, 90, 231) 19.57%, rgb(57, 63, 207) 78.85%);
}

/* About Section */
.footer-about p {
    color: #9ca3af;
    font-size: 14px;
    line-height: 1.6;
    max-width: 250px;
    text-align: center;
}

/* Services Section */
.footer-services ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-services ul li {
    margin-bottom: 0.6rem;
}

.footer-services ul li a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-services ul li a:hover {
    color: #23bdee;
}

/* Subscribe Section */
.subscribe-letter h5 {
    color: rgb(209, 213, 219);
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.subscribe-letter .form {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

.subscribe-letter input {
    border: 1px solid #9ca3af;
    background-color: transparent;
    padding: 8px 20px;
    border-radius: 25px;
    width: 180px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
}

.subscribe-letter input::placeholder {
    color: #9ca3af;
}

.subscribe-letter input:focus {
    outline: none;
    border-color: #23bdee;
}

.subscribe-letter button {
    background: linear-gradient(105.5deg, rgb(84, 90, 231) 19.57%, rgb(57, 63, 207) 78.85%);
    border: none;
    padding: 10px 25px;
    color: #fff;
    font-size: 15px;
    border-radius: 20px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.subscribe-letter button:hover {
    opacity: 0.9;
}

/* Contact Section */
.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    justify-content: center;
}

.contact-item i {
    color: #23bdee;
    font-size: 16px;
}

.contact-item a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #23bdee;
}

/* Social Media Section */
.social-icons {
    display: flex;
    gap: 0.8rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #9ca3af;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 16px;
}

.social-icons a:hover {
    background: linear-gradient(105.5deg, rgb(84, 90, 231) 19.57%, rgb(57, 63, 207) 78.85%);
    color: #fff;
    transform: translateY(-3px);
}

/* Links Section */
.links {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.links a {
    color: #9ca3af;
    text-decoration: none;
    font-size: 13px;
    padding: 0 12px;
    transition: color 0.3s ease;
}

.links a:hover {
    color: #23bdee;
}

.links a:nth-child(1),
.links a:nth-child(2) {
    border-right: 1px solid #9ca3af;
}

/* Copyright Section */
.copyright {
    grid-column: 1 / -1;
    text-align: center;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(156, 163, 175, 0.2);
}

.copyright p {
    color: #9ca3af;
    font-size: 13px;
    margin: 0;
}

    /* ---------- HERO (about) ---------- */
    .hero {
      border-bottom-left-radius: 20%;
      border-bottom-right-radius: 20%;
      padding: 2rem 0;
    }
    .hero .main {
      display: flex;
      align-items: center;
      padding: 0 30px;
      gap: 2rem;
    }
    .hero .hero-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }
    .hero .main .hero-content h2 {
      font-size: 3rem;
      color: #2f327d;
    }
    .hero .main .hero-content span {
      color: #f48c06;
    }
    .hero .hero-content p {
      font-size: 1.2rem;
      color: #4b5563;
    }
    .hero .main .img img {
      width: 90%;
      max-width: 500px;
    }

    /* ---------- ABOUT SECTION (new) ---------- */
    .about-detail .about-grid {
      display: flex;
      align-items: center;
      gap: 4rem;
      padding: 0 30px;
    }
    .about-detail .about-text {
      flex: 1;
    }
    .about-detail .about-text h4 {
      font-size: 2rem;
      color: #2f327d;
      margin-bottom: 0.5rem;
    }
    .about-detail .about-text h4 span {
      color: #f48c06;
    }
    .about-detail .about-text p {
      color: #6b7280;
      line-height: 1.7;
      margin-top: 0.5rem;
    }
    .about-detail .about-video {
      flex: 1;
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }
    .about-detail .about-video img {
      width: 100%;
      display: block;
    }
    .about-detail .about-video .play-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      background: rgba(255,255,255,0.9);
      width: 70px;
      height: 70px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f48c06;
      font-size: 2rem;
      cursor: pointer;
      transition: 0.3s;
      box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    }
    .about-detail .about-video .play-btn:hover {
      transform: translate(-50%, -50%) scale(1.1);
      background: #fff;
    }

    /* ---------- WHY CHOOSE US (cards) ---------- */
    .why-choose .feature-card {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 2rem;
      padding: 0 30px;
      margin-top: 2rem;
    }
    .why-choose .feature-card .card {
      padding: 30px 30px;
      text-align: center;
      border: 1px solid #e0e0e0;
      width: 230px;
      border-radius: 10px;
      cursor: default;
      transition: 0.3s ease-in-out;
      background: #fff;
    }
    .why-choose .feature-card .card:hover {
      background-color: #f3f0eced;
    }
    .why-choose .feature-card .card svg {
      width: 50px;
      height: 50px;
      margin-bottom: 1rem;
    }
    .why-choose .feature-card .card:nth-child(1) svg {
      background-color: #5b72ee;
      padding: 15px 5px;
      border-radius: 5px;
    }
    .why-choose .feature-card .card:nth-child(2) svg {
      background-color: #f48c06;
      padding: 15px 10px;
      border-radius: 5px;
    }
    .why-choose .feature-card .card:nth-child(3) svg {
      background-color: #29b9e7;
      padding: 15px 10px;
      border-radius: 5px;
    }
    .why-choose .feature-card .card h4 {
      color: #2f327d;
      font-weight: 600;
      font-size: 20px;
      margin: 0.5rem 0;
    }
    .why-choose .feature-card .card p {
      color: #6b7280;
    }
    .about-section {
      padding: 0 30px;
    }
    /* left */
    .about-wrapper {
      display: flex;
      gap: 4rem;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      padding: 3rem;
      margin-top: 2rem;
    }
    .contact-about-info {
      flex: 1;
      /* background: #f8f9fc; */
      border-radius: 24px;
      padding:0rem 2rem;
    }
    .contact-about-info h3 {
      font-size: 1.8rem;
      color: #2f327d;
      margin-bottom: 0.5rem;
      display: flex;
      justify-content: center;
    }
    .contact-about-info h3 span {
      color: #f48c06;
    }
    .contact-about-info p {
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    /* right */
    .contact-about-form {
      flex: 1.2;
    }
    .contact-about-form h3 {
      font-size: 1.8rem;
      color: #2f327d;
      margin-bottom: 0.3rem;
      display: flex;
      justify-content: center;
    }
    .contact-about-form h3 span {
      color: #f48c06;
    }
    .contact-about-form .sub {
      color: #6b7280;
      margin-bottom: 1.8rem;
    }

    /* Message from director */

    .message-director h3 a {
      font-size: 1.5rem;
      color: #2f327d;
      margin-bottom: -3.7rem;
      display: flex;
      justify-content: center;
      text-decoration: none;
      padding-top: 1.2rem;
    }
    .managing-director {
      flex: 1.2;
    }
    .managing-director h3 {
      font-size: 2.1rem;
      color: #2f327d;
      margin-bottom: 0.3rem;
      display: flex;
      justify-content: center;
    }
    .managing-director h3 span {
      color: #f48c06;
    }
    .managing-director .sub {
      color: #353639;
      margin-bottom: 1.8rem;
      font-size: large;
      font-weight: 600;
      text-align: justify;
    }


/* About Ends */

    /* ---------- CONTACT FORM SECTION ---------- */
    .contact-section {
      padding: 0 30px;
    }
    .contact-wrapper {
      display: flex;
      gap: 4rem;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.08);
      padding: 3rem;
      margin-top: 2rem;
    }
    /* left: info */
    .contact-info {
      flex: 1;
      background: #f8f9fc;
      border-radius: 24px;
      padding: 2.5rem 2rem;
    }
    .contact-info h3 {
      font-size: 1.8rem;
      color: #2f327d;
      margin-bottom: 0.5rem;
    }
    .contact-info h3 span {
      color: #f48c06;
    }
    .contact-info p {
      color: #6b7280;
      line-height: 1.6;
      margin-bottom: 2rem;
    }
    .info-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.5rem;
    }
    .info-item .icon-circle {
      width: 48px;
      height: 48px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f48c06;
      font-size: 1.2rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      flex-shrink: 0;
    }
    .info-item .text h5 {
      font-size: 1rem;
      color: #1f2937;
      font-weight: 600;
    }
    .info-item .text span {
      color: #6b7280;
      font-size: 0.95rem;
    }
    .social-links {
      display: flex;
      gap: 0.8rem;
      margin-top: 2rem;
    }
    .social-links a {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #2f327d;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.06);
      transition: 0.3s ease;
    }
    .social-links a:hover {
      background: #f48c06;
      color: #fff;
      transform: translateY(-3px);
    }

    /* right: form */
    .contact-form {
      flex: 1.2;
    }
    .contact-form h3 {
      font-size: 1.6rem;
      color: #2f327d;
      margin-bottom: 0.3rem;
    }
    .contact-form h3 span {
      color: #f48c06;
    }
    .contact-form .sub {
      color: #6b7280;
      margin-bottom: 1.8rem;
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-group label {
      display: block;
      font-weight: 500;
      color: #1f2937;
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 88%;
      padding: 12px 18px;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      font-size: 1rem;
      background: #fafbfc;
      transition: 0.3s;
      color: #1f2937;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #f48c06;
      box-shadow: 0 0 0 3px rgba(244, 140, 6, 0.15);
      background: #fff;
    }
    .form-group textarea {
      min-height: 120px;
      resize: vertical;
    }
    .form-row {
      display: flex;
      gap: 1.5rem;
    }
    .form-row .form-group {
      flex: 1;
    }
    .submit-btn {
      background: #f48c06;
      color: #fff;
      border: none;
      padding: 14px 40px;
      border-radius: 40px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }
    .submit-btn:hover {
      background: #e07c00;
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(244, 140, 6, 0.3);
    }
    .submit-btn i {
      font-size: 1.2rem;
    }

/* Contact ends */


/* Services Starts */

    /* ---------- HERO (services) ---------- */
    .hero {
      border-bottom-left-radius: 20%;
      border-bottom-right-radius: 20%;
      padding: 2rem 0;
    }
    .hero .main {
      display: flex;
      align-items: center;
      padding: 0 30px;
      gap: 2rem;
    }
    .hero .hero-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }
    .hero .main .hero-content h2 {
      font-size: 3rem;
      color: #2f327d;
    }
    .hero .main .hero-content span {
      color: #f48c06;
    }
    .hero .hero-content p {
      font-size: 1.2rem;
      color: #4b5563;
    }
    .hero .main .img img {
      width: 90%;
      max-width: 500px;
    }

    /* ---------- SERVICES GRID (extended from feature cards) ---------- */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
      gap: 2rem;
      padding: 0 30px;
      margin-top: 2rem;
    }
    .service-card {
      background: #fff;
      border: 1px solid #e5e7eb;
      border-radius: 20px;
      padding: 2rem 1.8rem;
      text-align: center;
      transition: 0.3s ease-in-out;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
    }
    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.06);
      border-color: #f48c06;
      background: #faf9f7;
    }
    .service-card .icon {
      width: 64px;
      height: 64px;
      margin: 0 auto 1.2rem;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #fff;
    }
    .service-card .icon.blue { background: #5b72ee; }
    .service-card .icon.orange { background: #f48c06; }
    .service-card .icon.cyan { background: #29b9e7; }
    .service-card .icon.green { background: #33efa0; color: #1f2937; }
    .service-card .icon.purple { background: #8b5cf6; }
    .service-card .icon.pink { background: #ec4899; }

    .service-card h4 {
      font-size: 1.3rem;
      color: #2f327d;
      margin-bottom: 0.5rem;
      font-weight: 600;
    }
    .service-card p {
      color: #6b7280;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    /* ---------- CTA BANNER (similar to intro platform) ---------- */
    .cta-banner {
      background: #252641;
      border-radius: 30px;
      padding: 3rem 2rem;
      margin: 3rem 30px 0;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 2rem;
    }
    .cta-banner h3 {
      color: #fff;
      font-size: 1.8rem;
      font-weight: 600;
    }
    .cta-banner h3 span {
      color: #f48c06;
    }
    .cta-banner p {
      color: #cbd5e1;
      font-size: 1rem;
      max-width: 500px;
    }
    .cta-banner .cta-btn {
      background: #f48c06;
      color: #fff;
      border: none;
      padding: 14px 40px;
      border-radius: 40px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      white-space: nowrap;
    }
    .cta-banner .cta-btn:hover {
      background: #e07c00;
      transform: scale(1.03);
      box-shadow: 0 8px 24px rgba(244, 140, 6, 0.3);
    }

/* Services Ends */



    /* ---------- HERO (inquiry) ---------- */
    .hero {
      border-bottom-left-radius: 20%;
      border-bottom-right-radius: 20%;
      padding: 2rem 0;
    }
    .hero .main {
      display: flex;
      align-items: center;
      padding: 0 30px;
      gap: 2rem;
    }
    .hero .hero-content {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }
    .hero .main .hero-content h2 {
      font-size: 3rem;
      color: #2f327d;
    }
    .hero .main .hero-content span {
      color: #f48c06;
    }
    .hero .hero-content p {
      font-size: 1.2rem;
      color: #4b5563;
    }
    .hero .main .img img {
      width: 90%;
      max-width: 500px;
    }
 
    /* ---------- INQUIRY SECTION ---------- */
    .inquiry-section {
      padding: 0 30px;
    }
    .inquiry-wrapper {
      display: flex;
      gap: 3rem;
      background: #fff;
      border-radius: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.06);
      padding: 3rem;
      margin-top: 2rem;
    }
    /* left: form */
    .inquiry-form {
      flex: 1.3;
    }
    .inquiry-form h3 {
      font-size: 1.6rem;
      color: #2f327d;
      margin-bottom: 0.3rem;
    }
    .inquiry-form h3 span {
      color: #f48c06;
    }
    .inquiry-form .sub {
      color: #6b7280;
      margin-bottom: 1.8rem;
    }
    .form-group {
      margin-bottom: 1.5rem;
    }
    .form-group label {
      display: block;
      font-weight: 500;
      color: #1f2937;
      margin-bottom: 0.3rem;
      font-size: 0.95rem;
    }
    .form-group label .required {
      color: #ef4444;
      margin-left: 2px;
    }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 18px;
      border: 1px solid #e5e7eb;
      border-radius: 16px;
      font-size: 1rem;
      background: #fafbfc;
      transition: 0.3s;
      color: #1f2937;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      outline: none;
      border-color: #f48c06;
      box-shadow: 0 0 0 3px rgba(244, 140, 6, 0.12);
      background: #fff;
    }
    .form-group textarea {
      min-height: 130px;
      resize: vertical;
    }
    .form-row {
      display: flex;
      gap: 2.8rem;
    }
    .form-row .form-group {
      flex: 1;
    }
    .checkbox-group {
      display: flex;
      align-items: flex-start;
      gap: 0.8rem;
      margin: 0.5rem 0 1.5rem;
    }
    .checkbox-group input[type="checkbox"] {
      width: 20px;
      height: 20px;
      margin-top: 2px;
      accent-color: #f48c06;
      cursor: pointer;
      flex-shrink: 0;
    }
    .checkbox-group label {
      font-size: 0.95rem;
      color: #4b5563;
      cursor: pointer;
    }
    .checkbox-group label a {
      color: #f48c06;
      font-weight: 500;
    }
    .submit-btn {
      background: #f48c06;
      color: #fff;
      border: none;
      padding: 14px 44px;
      border-radius: 40px;
      font-size: 1.1rem;
      font-weight: 600;
      cursor: pointer;
      transition: 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
    }
    .submit-btn:hover {
      background: #e07c00;
      transform: translateY(-2px);
      box-shadow: 0 8px 24px rgba(244, 140, 6, 0.3);
    }
    .submit-btn i {
      font-size: 1.2rem;
    }

    /* right: sidebar */
    .inquiry-sidebar {
      flex: 0.8;
      background: #f8f9fc;
      border-radius: 24px;
      padding: 2rem 1.8rem;
      align-self: flex-start;
    }
    .inquiry-sidebar h4 {
      font-size: 1.2rem;
      color: #2f327d;
      margin-bottom: 0.3rem;
    }
    .inquiry-sidebar .sub {
      color: #6b7280;
      font-size: 0.95rem;
      margin-bottom: 1.8rem;
    }
    .sidebar-item {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1.8rem;
    }
    .sidebar-item .icon {
      width: 44px;
      height: 44px;
      background: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f48c06;
      font-size: 1.1rem;
      box-shadow: 0 4px 12px rgba(0,0,0,0.05);
      flex-shrink: 0;
    }
    .sidebar-item .text h5 {
      font-size: 0.95rem;
      color: #1f2937;
      font-weight: 600;
    }
    .sidebar-item .text span {
      color: #6b7280;
      font-size: 0.9rem;
      display: block;
    }
    .sidebar-item .text a {
      color: #f48c06;
      font-weight: 500;
      font-size: 0.95rem;
    }
    .whatsapp-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #25d366;
      color: #fff;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: 0.3s ease;
      margin-top: 0.5rem;
      width: 100%;
      justify-content: center;
    }
    .whatsapp-btn:hover {
      background: #1ebe5d;
      transform: scale(1.02);
    }
    .whatsapp-btn i {
      font-size: 1.3rem;
    }
    .business-btn {
      display: inline-flex;
      align-items: center;
      gap: 0.6rem;
      background: #f48c06;
      color: #fff;
      padding: 12px 28px;
      border-radius: 40px;
      font-weight: 600;
      font-size: 1rem;
      border: none;
      cursor: pointer;
      transition: 0.3s ease;
      margin-top: 0.5rem;
      width: 100%;
      justify-content: center;
    }
    .business-btn:hover {
      background: #f48c06;
      transform: scale(1.02);
    }
    .business-btn i {
      font-size: 1.3rem;
    }


    /* Inqiry ends */

@media only screen and (max-width: 767px){
    .hamburger{
        display: flex;
    }
    .hamburger.active .line:nth-child(1) {
        transform: translateY(10px) rotate(45deg);
    }
    .hamburger.active .line:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .line:nth-child(3) {
        width: 30px;
        transform: translateY(-6px) rotate(-45deg);
    }
    .navbar ul{
        position: fixed;
        left: -100%;
        top: 6rem;
        flex-direction: column;
        background-color: #fff2e1;
        width: 100%;
        height: 100vh;
        transition: 0.3s;
        padding-top: 3rem;
    }
    .nav-list.active{
        left: 0;
    }
    

    .hero .main{
        display: flex;
        flex-direction: column;
        padding-top: 3rem;
    }
    .hero .hero-content{
        text-align: center;
    }
    .hero .hero-content .buttons{
        display: flex;
        flex-direction: column;
    }
    .intro .container{
        display: flex;
        flex-direction: column;
        padding: 0px;
        width: 100%;
    }
    .intro .container .platform{
        width: 350px;
        display: flex;
        text-align: center;
        align-items: center;
        background-size: contain;
        height: 280px;
        margin: auto;
    }

    .main{
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }
    .main .img{
        width: 90%;
    }
    .main .img img{
        width: 100%;
    }
    .everything .content{
        align-self: flex-start;
        width: 80%;
    }
    .user-interface .img{
        width: 90%;
    } 
    .user-interface .img img{
        width: 100%!important;
    }
    .user-interface .green,.user-interface .blue{
        width: 20%;
        height: 28%;
    }
    .user-interface .main .content{
        align-self: flex-start;
        width: 90%;
    }
    .tool .main .content{
        align-self: flex-start;
        width: 90%;
    }
    .test .main{
        flex-direction: column-reverse;
    }
    .management .main img{
        width: 90%;
    }
    .discussion .main{
        flex-direction: column-reverse;
    }
    .discussion .main .img img{
        padding: 0px 10px;
    }
    .testimonial .main{
        flex-direction: column-reverse;
        padding: 0px 30px;
    }

    .main .content{
        width: 80%;
    }
}

@media only screen and (max-width: 890px){
    .blog-container{
        flex-direction: column;
    }
    .blog-container .main-blog{
        align-self: center;
        width: 80%!important;
    }
    .blog-container .main-blog img{
        width: 100%;
    }
    .blog-container .blog-post{
        width: 80%;
        align-self: center;
    }
    .blog-container .blog-post img{
        width: 70%!important;
    }
    
}
@media only screen and (max-width: 567px){
    .blog-container .blog-post{
        width: 100%;
        /* align-self: center; */
    }
}
@media only screen and (max-width: 420px){
    .blog-container .blog-post .post h4{
        font-size: 12px;
    }
}

@media only screen and (max-width: 677px){
    .blog-container .blog-post img{
        width: 100%!important;
    }
}
@media only screen and (max-width: 380px) {
    footer .subscribe-letter .form{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
/* Responsive Design */
@media only screen and (max-width: 768px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem 1.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
    
    .links,
    .copyright {
        grid-column: 1 / -1;
    }
    
    .footer-about p {
        max-width: 100%;
    }
}

@media only screen and (max-width: 480px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    footer {
        padding: 30px 15px 20px;
    }
    
    .subscribe-letter .form {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }
    
    .subscribe-letter input {
        width: 100%;
        max-width: 280px;
    }
    
    .links a {
        padding: 0 8px;
        font-size: 12px;
    }
    
    .links a:nth-child(1),
    .links a:nth-child(2) {
        border-right: none;
    }
    
    .links {
        flex-direction: column;
        align-items: center;
        gap: 0.3rem;
    }
}

@media only screen and (max-width: 380px) {
    .edu-logo {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .v-line {
        display: none;
    }
    
    .edu-logo span {
        width: auto;
    }
}

