@import url('https://fonts.googleapis.com/css2?family=Karla:ital,wght@0,200..800;1,200..800&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

*{
    margin: 0;
    padding: 0;
    
}

html{
    scroll-behavior: smooth;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;

}

body{
    font-family: "Roboto", serif;
   
}

/* Sticky header */
header {
    position: sticky;
    top: 0;
    width: 100%;
    padding: 10px 0;
    background: linear-gradient(180deg, rgba(38, 36, 123, 0) 0%, rgba(12, 123, 195, 0) 153.44%);
    backdrop-filter: blur(10px);
    z-index: 100000;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    }
    
    header.scrolled {
        background: linear-gradient(180deg, rgba(38, 36, 123, 0.8) 0%, rgba(12, 123, 195, 0.8) 153.44%);
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
        z-index: 100000;
    }

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 20px;
}

/* Desktop Menu */
.navbar .navbar-menu ul {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.navbar-menu ul li a {
    text-decoration: none;
    color: #fff;
}

/* Register Button */
.nav-btn .register-btn {
    background: linear-gradient(247.56deg, #F49664 7.33%, #ED175D 89.87%);
    padding: 10px 25px;
    border: none;
    border-radius: 500px;
    color: #fff;
    font-size: 14px;
}

.register-btn a {
    text-decoration: none;
    color: #fff;
    font-family: "Karla", serif;
}

/* Mobile Menu */
.hamburger-menu {
    display: none; /* Default hidden for desktop */
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-menu span {
    width: 25px;
    height: 3px;
    background: #fff;
    display: block;
    transition: 0.3s;
}

/* Ensure no overflow caused by the mobile menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100vw; /* Moves it completely out of view */
    width: 250px;
    height: 100vh;
    background: rgba(38, 36, 123, 0.9);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    transition: left 0.3s ease-in-out; /* Animate from left */
}

/* When active, slide in from left */
.mobile-menu.active {
    left: 0;
}


/* Close button */
.mobile-menu .close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: #fff;
    cursor: pointer;
}

/* Mobile Menu List */
.mobile-menu ul {
    list-style: none;
    text-align: center;
    margin-left: 40px;
    margin-top: 100px;
}

.mobile-menu ul li {
    margin: 45px 0;
}

.mobile-menu ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 18px;
}

.mobile-menu ul li .register-btn {
    width: 100%;
    text-align: center;
    background: linear-gradient(247.56deg, #F49664 7.33%, #ED175D 89.87%);
    padding: 10px 25px;
    border: none;
    border-radius: 500px;
    color: #fff;
    font-size: 14px;
}


.banner-section{
    padding: 10px 50px 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: radial-gradient(54.56% 54.56% at 0% 48%, rgba(244, 150, 100, 0.4) 0%, rgba(244, 150, 100, 0) 100%),
    radial-gradient(52.79% 52.79% at 90% 60%, rgba(237, 23, 93, 0.3) 0%, rgba(237, 23, 93, 0) 100%);
    margin-bottom: 20px;
    backdrop-filter: blur(60px);
}



.banner-content h2,
.banner-content p{
    text-align: center;
    margin: 10px auto;
}

.banner-content h2{
    overflow: hidden;
}

.banner-heading span {
    position: relative;
    top: 100px;
    animation: bannerheading 1.0s 1 forwards;
}
  
.banner-heading span:nth-child(1) {
    animation-delay: 0.1s;
}
  
.banner-heading span:nth-child(2) {
    animation-delay: 0.25s;
}
  
.banner-heading span:nth-child(3) {
    animation-delay: 0.45s;
}
  
@keyframes bannerheading {
    from {
      top: 100px;
    }
  
    to {
      top: 0px;
    }
}

.banner-content h2{
    font-size: 35px;
    font-weight: 700;
}

.banner-content p{
    width: 70%;
    font-size: 20px;
    padding: 20px;
    animation: fadeUp 1.5s ease-out; /* Animation duration and easing */
}

@keyframes fadeUp {
    0% {
      opacity: 0;
      transform: translateY(20px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
}


.banner-button{
    margin: 0px auto;
    padding-bottom: 20px;
}

.banner-button .banner-cta{
    padding: 10px 25px;
    background: linear-gradient(247.56deg, #F49664 7.33%, #ED175D 89.87%);
    box-shadow: 0px 2px 10px 0px #FFFFFF inset;
    border-radius: 500px;
    border: none;
    font-size: 14px;
    color: #fff;
}

.banner-image{
    position: relative;
}

.banner-image .classroom-1{
    position: absolute;
    left: -13%;
    bottom: 30%;
    z-index: 3;
}

.banner-image .classroom-2{
    position: absolute;
    right: -10%;
    top: 20%;
    z-index: 2;
}

.classroom-image .classroom-img {
    position: relative;
    z-index: 1; /* Lowest z-index to appear behind */
}



.founder-section {
    text-align: center;
    padding-top: 30px;
}
  
.founder-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 10px;
}
  
.founder-companies {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}
  
.company {
    text-align: center;
}
  
.company h2 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
}
  
.company p {
    font-size: 13px;
    margin: 0;
    color: #000;
}
  
.divider {
    width: 1px;
    height: 40px;
    background-color: #000;
}

.video-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: -150px;
    padding-top: 160px;
    margin-bottom: 20px;
    background: url('images/Group%20121076%201.jpg') no-repeat center center / cover;


    /* box-shadow: 0px -50px 50px 0px #F49664; */
    border-radius: 0px 0px 15px 15px;

}

.video-content{
    margin-bottom: 30px;
    transition: transform 0.3s ease-in-out;
}

.video-part{
    margin-bottom: -10px;
    width: 70%; /* Make the video fit the container */
    padding: 0 15px; /* Add some padding for spacing */
    box-sizing: border-box; /* Ensure padding doesn’t affect the width */
    transition: transform 0.3s ease-in-out;
}

.video-part video{
    width: 100%;
    border-radius: 10px;
}

.video-content h2{
    text-align: center;
    font-family: "Karla", serif;
    font-size: 35px;
    margin: 0px auto;
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
    color: #fff;
}

.video-content p{
    font-family: "Karla", serif;
    font-size: 18px;
    color: #fff;
    text-align: center;
    margin-bottom: 60px;
}

.video-content h2 span img{
    padding: 0px 5px;
}

.content-section{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    background: radial-gradient(24.56% 18.56% at 10% 17%, rgba(244, 150, 100, 0.4) 0%, rgba(244, 150, 100, 0) 100%), radial-gradient(10.12% 10.12% at 46% 26%, rgba(237, 23, 93, 0.3) 0%, rgba(237, 23, 93, 0) 100%), radial-gradient(14.56% 14.56% at 35% 53%, rgba(244, 150, 100, 0.4) 0%, rgba(244, 150, 100, 0) 100%), radial-gradient(8.12% 8.12% at 88% 59%, rgba(237, 23, 93, 0.3) 0%, rgba(237, 23, 93, 0) 100%), radial-gradient(13.12% 13.12% at 45% 81%, rgba(237, 23, 93, 0.3) 0%, rgba(237, 23, 93, 0) 100%), radial-gradient(24.56% 24.56% at 90% 87%, rgba(244, 150, 100, 0.4) 0%, rgba(244, 150, 100, 0) 100%);
;
}

.content-box-1 h2,
.content-box-2 h2,
.content-box-3 h2{
    font-size: 30px;
    font-weight: 800;
    font-family: "Karla", serif;
    padding: 30px 0px 30px 0px;
}

.content-box-1,
.content-box-2,
.content-box-3{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}


.nested-box-1,
.nested-box-2,
.nested-box-3{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 4rem;
    padding: 0px 70px;
    /* height: 100vh; */
}

.content-box-1{
    background: radial-gradient(24.56% 34.56% at 30% 40%, rgba(244, 150, 100, 0.8) 0%, rgba(244, 150, 100, 0) 100%), radial-gradient(13.12% 23.12% at 40% 70%, rgba(237, 23, 93, 0.7) 0%, rgba(237, 23, 93, 0) 100%), #26247B;
}

.content-box-2{
    background: radial-gradient(13.12% 23.12% at 90% 70%, rgba(237, 23, 93, 0.7) 0%, rgba(237, 23, 93, 0) 100%),#F58F5C;
}

.content-box-3{
    background: radial-gradient(24.56% 44.56% at 80% 70%, #F49664 0%, rgba(244, 150, 100, 0) 100%), #EF3B64;
}

.box-img{
    max-width: 40%;
}

video.video-ai {
    width: 100%;
    border-radius: 10px;
}

.content-box-1 .box-img img,
.content-box-2 .box-img img,
.content-box-3 .box-img img{
    width: 100%;
}

.content-box-1 h2,
.content-box-2 h2,
.content-box-3 h2{
    font-family: "Karla", serif;
    font-size: 30px;
    margin-bottom: 20px;
    color: #fff;
}

.content-box-1 h5,
.content-box-2 h5,
.content-box-3 h5{
    font-family: "Karla", serif;
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.content-box-1 p,
.content-box-2 p,
.content-box-3 p{
    font-family: "Karla", serif;
    font-size: 18px;
    margin-bottom: 20px;
    width: 85%;
    color: #fff;
}

.content-box-1 ul{
    color: #fff;
    font-family: "Karla", serif;
}

.box-content{
    width: 50%;
}
  
.benefit-section{
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(222.7deg, #F6A45A -8.02%, #ED2566 93%);
}

.benefit-section h2{
    font-family: "Karla", serif;
    font-weight: 800;
    font-size: 50px;
    color: #fff;
    margin-bottom: 0px;
}

.benefit-section .tag-line{
    font-family: "Karla", serif;
    font-weight: 400;
    font-size: 30px;
    color: #fff;
    letter-spacing: -0.01em;
    margin-bottom: 50px;
}

.benefit-section .benefit-content{
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 2.5rem;
    
}

.benefit-section .benefit-content > * {
    flex: 1;
    text-align: center; /* Optional: Ensures content inside is centered */
    max-width: 100%; /* Prevents overflow */
}
  
.benefit-content .text-box-1{
    background: #FFFFFF4D;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 20px 20px 0px 20px;
    opacity: 0px;
}

.benefit-content .text-box-2{
    background: #FFFFFF4D;
    margin-bottom: 40px;
    padding: 20px;
    border-radius: 20px 20px 0px 20px;
    opacity: 0px;
}

.text-box-1 p,
.text-box-2 p{
    font-family: "Karla", serif;
    font-weight: 700;
    font-size: 16px;
}

.empower-section{
    padding: 0px 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #000000;
}

.empower-section h2{
    color: #fff;
    font-family: "Karla", serif;
    font-size: 50px;
    font-weight: 800;
    margin-bottom: 10px;
}

.empower-section p{
    color: #fff;
    font-family: "Karla", serif;
    font-size: 25px;
    font-weight: 300;
    letter-spacing: 0.1rem;
    margin-bottom: 50px;
}

.empower-cards{
    display: flex;
    justify-content: center;
    align-items: center;
}

.empower-icon-box{
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    padding: 30px;
    border: 1px solid; /* Set the width of the border */
    border-image-source: linear-gradient(257.17deg, #F5945C -9.85%, #ED2566 104.16%);
    border-image-slice: 1; /* Ensures the gradient is applied across the entire border */
    border-radius: 16px; /* Sets the rounded corners */ 
}

.empower-icon-box .icon-content h4{
    font-size: 25px;
    color: #fff;
    font-family: "Karla", serif;
    margin-bottom: 0px;
}

.empower-icon-box .icon-content p{
    font-size: 16px;
    color: #fff;
    font-family: "Karla", serif;
    margin-bottom: 0px;
}

.contact-form{
    background: linear-gradient(228.94deg, #ED2063 -59.65%, #F59F63 93.51%);
    /* padding: 50px; */
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 50px;
}

.form-container {
    /* background: rgba(255, 255, 255, 0.1); */
    border-radius: 10px;
    padding: 20px;
    /* max-width: 400px; */
    width: 50%;
}

.form-container h1 {
    text-align: center;
    color: white;
    margin-bottom: 30px;
    font-family: "Karla", serif;
    font-size: 35px;
}

form .form-group {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    background: #1E1E1E40;
    backdrop-filter: blur(60px);
    box-shadow: 0px 6px 20px 0px #FFFFFF1A;
    border-radius: 20px;
    padding: 20px;
}

.form-group .icon {
    width: 30px;
    color: white;
    font-size: 18px;
    text-align: center;
    margin-right: 30px;
}

.form-group .label {
    flex: 1;
    font-size: 20px;
    color: white;
    font-family: "Karla", serif;
}

.form-group .divider {
    width: 1px;
    height: 30px;
    background: rgba(255, 255, 255, 0.5);
    margin: 0 30px 0 10px;
}

.form-group input {
    flex: 2;
    border: none;
    background: transparent;
    font-size: 16px;
    color: #BABABA;
    outline: none;
    font-family: "Karla", serif;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.form-btn-container{
    text-align: center;
}
  

.form-button {
    background: #ED2566;
    color: white;
    text-align: center;
    padding: 10px 25px;
    border: none;
    border-radius: 500px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.3s;
    font-family: "Karla", serif;
}

.form-button:hover {
    background: #ff3d63;
}

.form-container {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-status-message {
    display: none;
    margin-top: 25px;
    padding: 30px 20px;
    border-radius: 20px;
    background: #1E1E1E40;
    box-shadow: 0px 6px 20px 0px #FFFFFF1A;
    text-align: center;
    color: #fff;
    font-family: "Karla", serif;
}

.form-status-message h2 {
    margin-bottom: 10px;
    font-size: 28px;
}

.form-status-message p {
    margin: 0;
    font-size: 18px;
}

.form-status-message.active {
    display: block;
}

.form-status-message--error {
    color: #FFE5E5;
}

.form-hidden {
    display: none !important;
}

.form-container--submitted .form-status-message {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 100%;
    flex: 1;
}

.form-container--submitted h1 {
    display: none;
}

.form-error-message {
    width: 100%;
    margin: 8px 0 0;
    font-size: 14px;
    color: #FFE5E5;
    font-family: "Karla", serif;
}

.form-error-message.form-hidden {
    display: none;
}

.benefit-section,
.empower-section,
.contact-form,
.content-box-1,
.content-box-2,
.content-box-3{
    position: sticky;
    top: 0;
    z-index: 1;
    /* animation: fadeIn 1.5s ease-in-out; */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(50px);
    /* opacity: 0; */
    height: 100vh;
}



footer{
    position: sticky;
    top: 0;
    z-index: 1;
    /* animation: fadeIn 1.5s ease-in-out; */
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    transform: translateY(50px);
    /* opacity: 0; */
    height: 100vh;
}

.content-box-1.sticky-visible,
.content-box-2.sticky-visible,
.content-box-3.sticky-visible,
.benefit-section.sticky-visible,
.empower-section.sticky-visible,
.contact-form.sticky-visible,
footer.sticky-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}




footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Adjust the gap between columns */
    padding: 50px 70px;
    background: radial-gradient(20% 30% at 100% 100%, rgba(237, 37, 102, 0.4) 0%, rgba(237, 37, 102, 0) 100%), radial-gradient(20% 30% at 0% 100%, rgba(237, 23, 93, 0.3) 0%, rgba(244, 150, 100, 0) 100%), #000;
}

.footer-section {
    flex: 1 1 22%; /* Each section takes equal width, adjust the percentage for spacing */
    min-width: 250px; /* Ensure the sections don't get too narrow on small screens */
    height: 390px;
}

footer .about-us,
footer .footer-link {
    padding: 20px;
}

footer .about-us h2,
footer .footer-link h2 {
    color: #fff;
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 20px;
    height: 30px;
}

footer .about-us p {
    color: #fff;
    font-size: 16px;
    font-weight: 300;
    margin-bottom: 20px;
    line-height: 38px;
    height: 300px;
}

footer .footer-link ul{
    list-style: none;
    line-height: 35px;
}

.footer-link ul li a{
    text-decoration: none;
    color: #fff;
    font-weight: 300;
    font-size: 16px;
}

.footer-logo{
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media screen and (max-width: 1280px){
    .content-box-1, .content-box-2, .content-box-3{
        padding: 80px 30px;
    }
}




@media (max-width: 820px) {

    /* .banner-image{
        padding: 20px;
    } */

    .banner-image .classroom-1{
        left: 0%;
    }

    .banner-image .classroom-2{
        right: 0%;
    }

    .video-part .video-img{
        width: 100%;
    }

    .video-part{
        padding: 20px;
        width: 90%;
    }

    .benefit-section .benefit-content{
        flex-direction: column;
        gap: 0;
    }

    .text-part-1{
        order: 1;
        width: 450px;
    }

    .text-part-2{
        order: 2;
    }

    .empower-cards{
        flex-wrap: wrap;
    }

    .contact-form{
        padding: 20px;
    }


    .form-container {
      padding: 15px;
      width: 65%;
    }

    .form-group .label {
      font-size: 14px;
    }

    .form-group input {
      font-size: 14px;
    }

    .form-button {
      font-size: 16px;
    }
}

@media screen and (max-width: 480px){

     *{
        overflow-x: clip;
    } 
    
    .hamburger-menu {
        display: flex; /* Show only on mobile */
    }
    
    .navbar-menu {
        display: none; /* Hide desktop menu */
    }
    
    .nav-btn .register-btn{
        display: none;
    }
    
    .navbar{
        justify-content: space-between;
        padding: 5px 20px;
    }
    
    .content-box-1{
        transform: translateY(10px);
    }

    
    .navbar-menu {
        display: none;
        flex-direction: column;
        background-color: #fff;
        position: absolute;
        top: 70px;
        right: 20px;
        width: 200px;
        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
        padding: 20px;
        border-radius: 8px;
        z-index: 100000;
        margin-top: 20px;
    }

    .navbar-menu ul {
        flex-direction: column;
        gap: 15px;
    }

    .navbar-menu ul li a {
        color: #000 !important; /* Black color for mobile */
        z-index: 1000;
    }

    .hamburger-menu {
        display: flex;
        z-index: 1000;
    }

    .navbar-menu.active {
        display: flex;
        z-index: 9999;
    }


    .navbar-logo img{
        width: 70px;
    }

    .navbar-logo img{
        width: 70px;
    }

    .banner-section{
        padding: 15px;
    }

    .banner-section .classroom-img{
        width: 100%;
    }

    .banner-section .classroom-1{
        width: 100px;
    }

    .banner-section .classroom-2{
        width: 200px;
    }

    .navbar .navbar-menu ul{
        gap: 15px;
    }

    .text-part-1, .text-part-2{
        width: 340px;
    }

    .content-box-1 h2,
    .content-box-2 h2,
    .content-box-3 h2{
        padding: 0px;
    }

    .nested-box-1,
    .nested-box-2,
    .nested-box-3{
        flex-direction: column;
        gap: 30px;
        padding: 20px 20px;
    }

    .content-box-1, .content-box-2, .content-box-3{
        flex-direction: column;
        gap: 30px;
        padding: 20px 20px;
    }

    .content-box-2 .box-content{
        order: 2;
    }

    

    .contact-form{
        flex-direction: column;
	justify-content: flex-start;
        padding-top: 80px;
    }

    .form-container{
        width: 100%;
    }

    .contact-img{
        width: 200px;
    }

    footer{
        padding: 30px;
    }

    .banner-content h2 {
        font-size: 25px;
    }

    .banner-content p{
        width: auto;
        font-size: 18px;
        padding: 0px;
        margin-top: 20px;
        margin-bottom: 20px;
    }

    .video-content h2 {
        width: auto;
        font-size: 30px;
        padding: 10px;
        margin-bottom: 10px;
        z-index: 1;
    }

    .empower-section h2{
        text-align: center;
        font-size: 30px;
    }

    .empower-section{
        padding: 20px;

    }

    .empower-icon-box{
        padding: 20px;
    }

    .empower-section p{
        font-size: 20px;
        text-align: center;
    }

    .empower-icon-box .icon-content p{
        text-align: left;
        font-size: 14px;
    }

    .benefit-section{
        padding: 20px;
    }

    .benefit-section h2{
        font-size: 30px;
    }

    .benefit-section .tag-line{
        text-align: center;
        margin-bottom: 10px;
        font-size: 18px;
    }

    .empower-icon-box .icon-content h4 {
        margin-bottom: 10px;
    }



    .content-box-1 h2, .content-box-2 h2, .content-box-3 h2{
        font-size: 25px;
        text-align: center;
    }

    .content-box-1 h5, .content-box-2 h5, .content-box-3 h5{
        text-align: center;
    }

    .content-box-1 p, .content-box-2 p, .content-box-3 p{
        text-align: center;
        width: auto;
    }

    .img-part img{
        width: 70%;
    }

    .benefit-content .text-box-1{
        margin-bottom: 10px;
    }

    .benefit-content .text-box-2{
        margin-bottom: 10px;
    }

    .benefit-section, .contact-form{
        height: 100vh;
    }

    

    .box-img{
        max-width: 100%;
    }

    .box-content{
        width: 90%;
    }

    .video-content{
        margin-bottom: 0px;
    }

    .content-section{
        margin-top: 0px;
    }

    .content-section h2{
        font-size: 25px;
        text-align: center;
    }

    [data-aos] {
        transform: none !important;
        opacity: 1 !important; /* Ensures elements remain visible */
        transition: none !important;
    }

    .benefit-section,
    .empower-section,
    .contact-form,
    .content-box-1,
    .content-box-2,
    .content-box-3,
    footer{
        height: auto; /* Let content determine height */
        min-height: 100vh; /* Ensure it still takes full height when needed */
        padding-bottom: 50px;
    }

    .form-group .divider{
        margin: 0px 10px 0px 0px;
    }

    .form-group .icon{
        margin-right: 10px;
    }

    .video-content h2 span img{
        vertical-align: middle;
    }
    
    .footer-section{
        height: auto;
    }
    
    footer .about-us p{
        height: auto;
    }
    
    .img-part img{
        display: none;
    }
    
    .contact-form .image-box{
        display: none;
    }
}

@media screen and (max-width: 380px){
    
    header{
        padding: 0px;
    }
    
    .content-section h2{
        padding: 20px 0px 30px 0px;
    }
    
    .video-content p{
        margin-bottom: 20px;
    }

    .content-box-1{
        transform: translateY(0px);
    }

    .content-box-1, .content-box-2, .content-box-3 {
        gap: 10px;
    }

    .content-box-1 h2, .content-box-2 h2, .content-box-3 h2{
        margin-bottom: 10px;
    }

    .nested-box-1, .nested-box-2, .nested-box-3{
        gap: 20px;
    }

    .content-box-1 h5, .content-box-2 h5, .content-box-3 h5{
        font-size: 16px;
        margin-bottom: 10px;
    }

    .content-box-1 p, .content-box-2 p, .content-box-3 p{
        font-size: 14px;
        margin-bottom: 10px;
    }

    .content-box-1 ul{
        font-size: 14px;
    }

    video.video-ai{
        width: 70%;
    }

    .box-img{
        text-align: center;
    }

    .empower-section p{
        margin-bottom: 10px;
    }

    .empower-icon-box .icon-content h4{
        font-size: 20px;
    }

    .empower-icon-box .icon-content p{
        font-size: 12px;
    }

    .img-part img{
        display: none;
    }

    .text-box-1 p, .text-box-2 p{
        font-size: 14px;
    }

    .contact-form .image-box{
        display: none;
    }

    form .form-group{
        padding: 15px 10px;
    }
    
    .content-box-1, .content-box-2, .content-box-3{
        gap: 10px;
    }

    .contact-form{
	
	padding-top: 50px;
		
	}

	

    
}
