@media only screen and (max-width: 600px) {
    * {
        margin: 0;
        padding: 0;
        border: border-box;
        overflow-x: hidden;

        font-family: Arial, Helvetica, sans-serif;
    }


    header {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 1000;
    }

    .nav {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 10px 20px;
        background-color: #00000000;
    }

    .nav__logo {
        display: flex;
        align-items: center;
    }

    .nav__logo-img {
        height: 50px;
        display: none;
    }

    .nav__logo-text-container {
        display: none;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 10px;

    }

    .nav__logo-text {
        color: #fff;
        font-size: 24px;
        font-weight: 700;
    }


    .nav__powered-by {
        font-size: 0.8em;
        color: #fff;
        margin-top: 2px;
        margin-left: 3%;
    }

    .nav__list {
        list-style: none;
        display: flex;
    }


    .nav__item {
        margin-left: 20px;
    }

    .nav__link {
        text-decoration: none;
        color: #fff;
        font-weight: 500;
        transition: color 0.3s ease;
    }


    .nav-toggle {
        display: none;
    }

    @media (max-width: 768px) {
        .nav {
            flex-direction: column;
            align-items: flex-start;
            padding: 10px;
        }

        .nav__list {
            flex-direction: column;
            width: 100%;
            display: none;
        }

        .nav__list1 {
            flex-direction: column;
            width: 100%;
            display: none;
        }

        .nav__item {
            margin: 10px 0;
        }

        .nav-toggle {
            display: block;
            background: none;
            border: none;
            font-size: 24px;
            color: #fff;
            cursor: pointer;
        }

        .nav__list.active {
            display: flex;
        }
    }

    .nav-toggle:focus {
        outline: none;
    }

    .nav__list {
        transition: all 0.3s ease;
    }



    .heading1 {
        color: white;
        font-size: 1.5rem;
        margin-bottom: 20px;
        width: 100%;
        text-align: center;
    }

    @media (max-width: 768px) {


        .heading1 {
            font-size: 1.5rem;
            margin-bottom: 15px;
        }

        .sidebar-text {
            font-size: 1rem;
            margin: 10px 0;
            text-align: justify;
            margin-left: 5%;
            margin-right: 5%;
        }

        .btn {
            width: 45%;
            margin: 20px 80px;
        }
    }

    .card {
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        display: flex;
        flex-direction: row;
        width: 100%;
        max-width: 1600px;
        height: 400px;
        overflow: hidden;
        position: relative;
    }

    .card .text-container {
        padding: 20px;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .card .text-container h1 {
        margin: 0;
        font-size: 2rem;
        font-weight: 700;
    }

    .card .text-container p {
        margin: 30px 0 0;
        font-size: 1.2rem;
        font-weight: 400;
        text-align: justify;
        margin-right: 15px;

    }

    .card .image-container {
        flex: 1;
        background-size: cover;
        background-position: center;
    }



    .btn01 {
        background-color: transparent;
        color: black;
        padding: 10px 10px;
        border: 2px solid black;
        border-radius: 30px;
        text-align: center;
        cursor: pointer;
        margin-top: 20px;
        text-decoration: none;
        display: inline-block;
        margin-left: 280px;
        width: 15%;
    }

    .btn01:hover {
        background-color: rgb(0, 0, 0);
        color: white;
    }

    @media (max-width: 768px) {
        .card {
            flex-direction: row-reverse;
            flex-wrap: wrap;
            height: auto;
            margin-left: 0px;
        }

        .card .text-container,
        .card .image-container {
            flex: 1 1 100%;
        }

        .card .text-container {
            order: 1;
            padding: 0px;
            margin-bottom: 15px;
        }

        .card .text-container h1 {
            font-size: 1.5rem;
            text-align: center;
        }

        .card .text-container p {
            font-size: 1rem;
            margin: 25px 40px;
            line-height: 1.6;
        }

        .card .image-container {
            order: 2;
            height: 250px;
            margin-top: -15%;
        }


        .btn01 {
            margin-left: 30%;
            width: 40%;
            margin-bottom: 5%;
        }


    }

    @media (max-width: 768px) {
        .section__heading {
            font-size: 25px;
            margin-top: 5%;
        }

        .client-partners {
            flex-direction: column;
            align-items: center;
        }

        .partner-item {
            width: 100px;
            height: 100px;
        }

        .logos:before,
        .logos:after {
            width: 50px;
        }

        .logos-slide img {
            height: 100px;
            margin: 0 10px;
        }
    }

    .section {
        padding: 30px 10px;
        text-align: center;
    }

    .section__heading {
        font-size: 28px;
        margin-bottom: 8px;
        color: black;
        text-align: left;
    }

    .section__content {
        font-size: 16px;
        line-height: 1.4;
        color: black;
    }

    .section__content ul {
        list-style: none;
        padding: 0;
    }

    .section__content li {
        margin: 8px 0;
    }

    .about-container {
        overflow: hidden;
        max-width: 100%;
        margin: 0 auto;
        text-align: justify;
        opacity: 0;
        transform: translateY(50px) scale(0.9);
        transition: opacity 0.5s ease, transform 0.5s ease;
        border-radius: 10px;
        padding: 5px;
    }

    .about-container.slide {
        opacity: 1;
        transform: translateY(0) scale(1);
    }

    .about-container:hover {
        transform: translateY(0) scale(1.05);
    }

    @media (max-width: 768px) {
        .section {
            padding: 0px;
        }

        .section__heading {
            font-size: 25px;
            margin-bottom: 25px;
            text-align: center;
            padding: 5px;
        }

        .section__heading1 {
            padding: 6px;
        }

        .section__content {
            font-size: 1rem;
            line-height: 1.6;
            margin: 0px 27px;
            margin-bottom: 10px;
        }

        .section__content li {
            margin: 6px 0;
        }

        .about-container {
            padding: 40px;
        }

        .about-wrapper {
            padding: 30px 20px;
        }

        .about-content {
            margin-top: -5%;

        }

        .about-img {
            width: 90%;
            height: 90%;
        }

        .about-image {
            margin-top: -25px;
            width: 94%;
            margin-left: 9px;
        }

        .section__heading::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 134px;
            width: 50px;
            height: 3px;
            background-color: #007bff;
        }

        .section__heading1::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 154px;
            width: 50px;
            height: 2.5px;
            background-color: #007bff;
        }

        .section__heading3::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 155px;
            width: 50px;
            height: 3px;
            background-color: #007bff;
        }

        .section__heading5::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 125px;
            width: 50px;
            height: 3px;
            background-color: #007bff;
        }

        .section__heading4::after {
            content: '';
            position: absolute;
            bottom: 0px;
            left: 137px;
            width: 50px;
            height: 3px;
            background-color: #007bff;
        }

        .section__heading5 {
            font-size: 28px;
            color: #333;
            margin-bottom: 20px;
            position: relative;
            text-align: center;
            margin-left: 3%;
        }
    }

    @media (max-width: 768px) {
        .valued-clients-title {
            text-align: left;
            margin-left: 5%;
            margin-bottom: 20px;
        }

        .valued-clients-content {
            flex-direction: column;
            align-items: flex-start;
            width: 100%;
        }

        .client-showcase-image {
            order: -1;
            /* This moves the image to the top */
            max-width: 100%;
            margin-bottom: 30px;
        }

        .client-showcase-image img {
            width: 100%;
            height: auto;
            margin: 0;
            border-radius: 5px;
        }

        .client-names-container {
            flex-direction: row;
            flex-wrap: wrap;
            padding-right: 0;
            margin: 0 5%;
            width: 90%;
        }

        .client-names-list {
            width: 50%;
            margin-bottom: 20px;
        }

        .client-names-list li {
            width: 100%;
            margin-left: 0;
            justify-content: flex-start;
            font-size: 1.2rem;
        }

        #our-valued-clients {
            background-color: #d3eaffa0;
            padding: 30px 0;
            overflow: hidden;
            padding-bottom: 5px;
        }
    }

    @media (max-width: 480px) {
        .valued-clients-title {
            font-size: 1.5rem;
        }

        .client-names-list {
            width: 100%;
        }

        .client-names-list li {
            font-size: 13px;
            margin-left: 10px;
            text-align: left;
        }

        .client-names-list li i {
            font-size: 10px;
        }
    }

    /* Responsive adjustments */
    @media (max-width: 1200px) {
        .services-content {
            flex-direction: column;
            margin-left: 20px;
        }

        .services-content1 {
            margin-left: 7%;
        }

        .services-description {
            margin-top: 17%;
            margin-right: 7%;
            font-size: 1rem;
            line-height: 1.6;
            margin-left: 1%;
        }

        .services-container {
            padding: 20px 20px;
        }

        .service-card h3 {
            font-size: 1.1rem;
            color: #333;
            margin-bottom: 0px;
            margin-top: -6%;
        }

        .btn-explore {
            margin-left: 25%;
            padding: 12px 12px;
        }

        .section__heading4 {
            font-size: 25px;
        }
    }

    @media (max-width: 768px) {
        .services-grid {
            flex-direction: column;
            align-items: center;
        }

        .service-card {
            width: 100%;
            max-width: 280px;
            margin-left: 1px;
        }

        .services-description2 {
            margin-top: 4%;
            margin-left: -4%;
            padding-bottom: 3%;
        }
    }

    /* Screen size adjustments */
    @media (min-width: 1600px) {
        .services-container {
            max-width: 80%;
            margin: 0 auto;
        }
    }

    @media (min-width: 2400px) {
        .services-container {
            max-width: 70%;
        }
    }


    @media (max-width: 768px) {
        .footer-content {
            flex-direction: column;
            gap: 5px;
            padding-bottom: 5px;
            align-items: center;
        }

        .footer-section {
            min-width: unset;
            margin-bottom: 10px;
            text-align: center;
            padding: 0 10px;
        }

        .footer-section h3 {
            font-size: 14px;
            margin-bottom: 4px;
            width: 110px;
            padding-bottom: 2px;
            margin-left: auto;
            margin-right: auto;
        }

        .footer-section p,
        .footer-section ul {
            font-size: 12px;
            margin-bottom: 6px;
            text-align: center;
            margin-right: 0;
        }

        .footer-nav li,
        .about-list li,
        .clients-list li {
            margin-bottom: 4px;
        }

        .footer-contact p {
            margin: 2px 0;
            margin-right: 0;
            text-align: center;
            font-size: 12px;
        }

        .footer-social ul {
            margin-right: 0;
            margin-left: 0;
            justify-content: center;
        }

        .footer-social li {
            margin-right: 8px;
        }

        .footer-social a {
            font-size: 14px;
        }

        .footer-bottom {
            margin-top: 10px;
            font-size: 12px;
        }
    }


    .slideshow {
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        overflow: hidden;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .slideshow img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slideshow img.active {
        opacity: 1;
    }

    .heading {
        font-size: 40px;
        color: #fff;
        position: relative;
        z-index: 100;
        margin: 0;
    }

    .subheading {
        font-size: 25px;
        color: #fff;
        position: relative;
        z-index: 100;
        margin: 10px 0 0;
        text-align: center;
    }

    @media (max-width: 600px) {
        .heading {
            font-size: 20px;
            margin-top: 0px;
            padding: 5px 4px;
        }

        .subheading {
            font-size: 14px;
            margin-top: 5px;
        }

        .slideshow {
            height: 100%;
        }

        .overlay {
            height: 100%;
        }

        .head {
            margin-top: 400px;
            padding: 5px;
            width: 300px;
            text-align: center;
            margin-left: 119px;
        }

        .container {
            margin-left: -175px;
            width: 164%;
        }

    }

    @media (max-width: 600px) {
        #search-input {
            padding: 5px 0px;
            font-size: 0.6rem;
        }

        .search-container label {
            font-size: 0.6em;
        }

        .search-box {
            padding: 10px;
        }

        .search-container {
            top: 85%;
        }

        .video-section {
            height: 85vh;
        }

        .video-section1 {
            height: 85vh;
            margin-left: 14%;
        }
    }

    @media (max-width: 768px) {
        .wave-container {
            height: auto;
            min-height: 87vh;
            position: relative;
            overflow: hidden;
            /* Add this to contain the wave */
        }

        .wave {
            bottom: -20px;
            /* Set to -80px as requested */
            height: 30vh;
            position: absolute;
            left: 0;
            right: 0;
        }

        .inspiring-text {
            top: 20%;
            font-size: 24px;
            width: 70%;
        }

        .additional-content {
            padding: 40px;
            margin-top: -80px;
            /* Negative margin to pull content up */
            position: relative;
            z-index: 2;
            /* Ensure content is above the wave */
            background-color: #ffffff;
            margin-left: -6px;

        }

        .text-content-left {
            position: static;
            max-width: 100%;
            font-size: 18px;
            padding-top: 0px;
            margin-bottom: 20px;
            line-height: 1.5;
            text-align: justify;
        }

        .text-content-right {
            position: static;
            max-width: 100%;
            font-size: 12px;
            margin-bottom: -37px;
            line-height: 1.6;
            text-align: justify;
        }

        .box-heading {
            font-size: 20px;
            margin-top: 40px;
            text-align: justify;
        }

        .box-container {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 22px;
            width: 100%;
            margin-left: -18px;
        }

        .box {
            width: 100%;
            height: 150px;
            display: flex;
            justify-content: center;
            align-items: center;
            background-color: #eff7fbf4;
            /* Add a background color to the box */
        }

        .box img {
            width: 100%;
            /* Set a fixed width */
            height: 120px;
            /* Set a fixed height */
            object-fit: contain;
            background-color: #eff7fbf4;
            /* Optional: add a white background to the image */
        }
    }

    /* Mobile View */
    @media (max-width: 768px) {
        .custom-learning-development {
            padding: 20px 0;
        }

        .content-container {
            margin-left: 0;
            padding: 0 10px;
        }

        .content-box {
            flex-direction: column;
        }

        .left-box,
        .right-box {
            flex-direction: column;
        }

        .left-box .text-content,
        .right-box .text-content {
            order: 1;
            width: 290px;
        }

        .left-box .image-container,
        .right-box .image-container {
            order: 2;
            margin-top: -40px;
        }

        .text-content {
            max-width: 100%;
            text-align: center;
        }

        .image-container {
            flex: 0 0 auto;
            max-width: 100%;
        }

        .text-content h3::after {
            bottom: 0px;
            left: 48px;
            height: 2px;
        }

        .custom-image {
            height: auto;
        }
    }


    /* Mobile View Styles for Contact Inquiry Section */
    @media (max-width: 768px) {
        .contact-inquiry-section {
            padding: 20px 10px;
        }

        .inquiry-container {
            padding: 15px;
            border-radius: 6px;
        }

        .inquiry-heading {
            font-size: 1.2em;
        }

        .inquiry-text {
            font-size: 0.9em;
        }

        .contact-link {
            font-size: 1em;
            padding: 8px 16px;
        }
    }


    @media (max-width: 768px) {
        .contact-section {
            padding: 40px 20px;
        }

        .contact-container {
            flex-direction: column;
        }

        .contact-section .contact-image {
            order: -1;
            margin-bottom: 30px;
        }

        .contact-section .contact-image img {
            width: 100%;
            height: auto;
            margin-left: 0;
            margin-top: 30px;
        }

        .contact-section .contact-form {
            width: 100%;
            padding: 20px;
        }

        .contact-section .contact-form form .row {
            flex-direction: column;
        }

        .contact-section .contact-form form .row input {
            width: 100%;
            margin-bottom: 15px;
        }

        .contact-section .contact-form form input[type="submit"] {
            width: 100%;
            justify-content: center;
        }

        .contact-section .contact-text {
            padding: 20px;
            text-align: center;
        }

        .contact-section .contact-text .title {
            font-size: 28px;
        }

        .contact-section .contact-form form .form-header {
            justify-content: center;
            margin-bottom: 30px;
        }

        .contact-section .contact-form form .form-header h3 {
            font-size: 24px;
        }
    }

    /* Desktop view */
    .topic-box {
        flex: 0 0 calc(25% - 20px);
        margin: 0 5px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Mobile view for topic section */
    @media (max-width: 767px) {
        .core-topics {
            padding: 40px 0px;
        }

        .core-topics-heading {
            font-size: 1.2em;
        }

        .core-topics-subheading {
            font-size: 0.9em;
            margin-bottom: 20px;
        }

        .topics-carousel-container {
            padding: 0;
            position: relative;
        }

        .topics-carousel {
            display: flex;
            overflow: hidden;
        }

        .topic-box {
            flex: 0 0 100%;
            margin: 0;
            transition: transform 0.3s ease;
        }

        .topic-image {
            height: 200px;
            width: 79%;
        }

        .topic-box h3 {
            font-size: 0.9em;
        }

        .explore-link {
            padding: 4px 12px;
            font-size: 0.9em;
        }

        .nav-button {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background-color: rgba(0, 51, 102, 0.7);
            color: white;
            border: none;
            font-size: 20px;
            padding: 8px 12px;
            cursor: pointer;
            z-index: 3;
        }

        .prev-button {
            left: 0px;
            top: 40%;
        }

        .next-button {
            right: 0px;
            top: 40%;
        }
    }


    /* features */
    .features-section {
        background-color: #f8f9fa;
        padding: 60px 20px;
        text-align: center;
    }

    .features-heading {
        color: #0056b3;
        font-size: 2em;
        margin-bottom: 20px;
        animation: fadeInUp 1s ease-out;
    }

    .features-subheading {
        color: #4a4a4a;
        font-size: 1.1em;
        max-width: 800px;
        margin: 0 auto 40px;
        animation: fadeInUp 1s ease-out 0.2s;
    }

    .features-container {
        display: flex;
        justify-content: center;
        gap: 30px;
        flex-wrap: wrap;
    }

    .feature-box {
        background-color: #f1f9ff;
        border-radius: 8px;
        padding: 30px;
        width: 300px;
        box-shadow: 0 4px 6px rgba(0, 64, 255, 0.1);
        border: 2px solid #0090ce;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        animation: fadeInUp 1s ease-out 0.4s;
    }

    .feature-box:hover {
        transform: translateY(-10px);
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .feature-icon {
        font-size: 2em;
        color: #00aeff;
        margin-bottom: 20px;
    }

    .feature-box h3 {
        color: #0056b3;
        font-size: 1.1em;
        margin-bottom: 15px;
    }

    .feature-box p {
        color: #4a4a4a;
        margin-bottom: 20px;
        font-size: 14px;
    }

    .feature-button {
        background-color: #0090ce;
        color: white;
        border: none;
        padding: 10px 20px;
        border-radius: 30px;
        font-size: 1em;
        cursor: pointer;
        transition: background-color 0.3s ease;
    }

    .feature-button:hover {
        background-color: #0056b3;
    }

    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(20px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* Mobile view */
    @media (max-width: 767px) {
        .features-section {
            padding: 40px 15px;
        }

        .features-heading {
            font-size: 1.5em;
            margin-bottom: 15px;
        }

        .features-subheading {
            font-size: 1em;
            margin-bottom: 30px;
        }

        .features-container {
            flex-direction: column;
            align-items: center;
            gap: 20px;
        }

        .feature-box {
            width: 100%;
            max-width: 280px;
            padding: 20px;
        }

        .feature-icon {
            font-size: 1.8em;
            margin-bottom: 15px;
        }

        .feature-box h3 {
            font-size: 1em;
            margin-bottom: 10px;
        }

        .feature-box p {
            font-size: 0.9em;
            margin-bottom: 15px;
        }

        .feature-button {
            padding: 8px 16px;
            font-size: 0.9em;
        }
    }


    @media (max-width: 768px) {

        /* Hero Section */
        .hero,
        .campus-hero {
            height: auto;
            padding: 100px 0;
            padding-bottom: 50px;
        }

        .hero__wrap,
        .campus-hero__wrap {
            flex-direction: column;
            padding: 0 1rem;
            text-align: center;
        }

        .hero__text,
        .campus-hero__text {
            padding-right: 0;
            margin-bottom: 2rem;
        }

        .hero__subtitle,
        .campus-hero__subtitle {
            font-size: 18px;
        }

        .hero__title,
        .campus-hero__title {
            font-size: 32px;
        }

        .hero__img,
        .campus-hero__img {
            text-align: center;
        }

        .hero__img img,
        .campus-hero__img img {
            max-width: 100%;
            height: auto;
        }

        /* Overview Section */

        .campus-overview__wrap {
            flex-direction: column;
            padding: 0 1rem;
            margin-left: 0;

        }

        .overview__wrap {
            flex-direction: column;
            padding: 0 1rem;
        }

        .overview__img {
            margin-right: 0;
            margin-bottom: -2rem;
            height: auto;
        }

        .campus-overview__img {
            height: auto;
            width: 100%;
            border-radius: 10px;
            margin-left: 0px;
            margin-top: 23px;
        }

        .overview__img img,
        .campus-overview__img img {
            height: auto;
            width: 97%;
            border-radius: 10px;
            margin-left: 12px;
        }

        .overview__text {
            margin-left: 0;
            width: 90%;
            text-align: center;
        }

        .overview__title {
            font-size: 28px;
        }

        .overview__desc {
            margin-bottom: 30px;
        }

        .campus-overview__text {
            margin-left: 12px;
            margin-right: 12px;
            text-align: center;
            padding-bottom: 20px;
        }

        .campus-overview__title {
            font-size: 28px;
        }

        /* Features Section */
        .features,
        .campus-features {
            padding: 40px 0;
        }

        .features__grid,
        .campus-features__grid {
            grid-template-columns: 1fr;
        }

        .campus-features__title {
            font-size: 27px;
        }


        .features__title {
            font-size: 25px;
        }

        .campus-testimonials__image img,
        .testimonials__image img {
            height: 280px;
        }


        /* Global Access Section */
        .global-access__map img {
            height: auto;
            width: 100%;
        }

        .global-access__stats {
            flex-direction: column;
            align-items: center;
        }

        .global-access__wrap {
            max-width: 90%;
        }

        /* Testimonials Section */
        .testimonials__wrap,
        .campus-testimonials__wrap {
            flex-direction: column;
        }

        .testimonials__image,
        .campus-testimonials__image {
            padding-right: 0;
            margin-bottom: 2rem;
        }

        .testimonials__content,
        .campus-testimonials__content {
            margin-left: 0;
            width: 90%;
        }

        .testimonial,
        .campus-testimonial {
            flex: 1 1 48%;
            width: 100%;
            height: 310px;
        }

        .testimonial p,
        .campus-testimonial p {
            margin-bottom: 0;
            height: auto;
        }

        .testimonial__author, .campus-testimonial__author {
            margin-bottom: 5px;
            margin-top: 14px;
            height: auto;
        }

        /* FAQ Section */
        .faq__wrap {
            flex-direction: column;
            width: 90%;
        }

        .faq {
            padding-bottom: 30px;
        }

        .faq__header {
            position: static;
            text-align: center;
            margin-bottom: 2rem;
        }

        .faq__header img {
            width: 45%;
            margin-right: -27px;
            margin-top: -249px;
        }

        .faq__list {
            max-height: none;
        }

        /* Assessment Modal */
        .assessmentModalContent {
            width: 95%;
            padding: 15px;
        }

        .stepsWrapper {
            flex-direction: column;
        }

        .singleStep {
            margin-bottom: 20px;
            height: auto;
        }

        .directionArrow {
            transform: rotate(90deg);
            margin: 10px 0;
        }

        .demoBtn,
        .demoBtn1 {
            width: 100%;
            margin-left: 0;
        }

        /* Enquiry Form Modal */
        .enquiryFormModalContent {
            padding: 20px;
        }

        .submitBtn {
            width: 100%;
            margin-left: 0;
        }
    }

}

.txt-containerr {
    display: block;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 35px;
    margin-top: 0%;
    width: 140px;
}

.txt-head {
    color: #0090ce;
    font-size: 20px;
    font-weight: 700;
}

.txt-powered-by {
    font-size: 0.6em;
    color: #0090ce;
    margin-top: 2px;
    margin-left: 2%;
    font-weight: 500;
}

@media (max-width: 768px) {
    .sidepanel {
        width: 0;
        position: fixed;
        z-index: 1;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.99);
        overflow-x: hidden;
        transition: 0.5s;
        padding-top: 60px;
        display: none;
        top: 0;
    }

    .sidepanel-content {
        width: 100%;
        margin-left: 12%;
    }

    .sidepanel a {
        padding: 15px 15px 8px 58px;
        text-decoration: none;
        font-size: 18px;
        color: #0090ce;
        display: block;
        transition: 0.3s;
        text-align: justify;
        margin-left: -7%;
        align-items: left;
        font-weight: bolder;

    }

    .sidepanel a:hover {
        color: gray;
    }

    .sidepanel img {
        display: block;
    }

    .sidepanel .closebtn {
        position: absolute;
        top: -6px;
        right: 0px;
        font-size: 34px;
    }

    .openbtn {
        font-size: 25px;
        cursor: pointer;
        color: #0090ce;
        background-color: rgba(0, 0, 0, 0);
        border: none;
        font-weight: bold;
        padding: 10px;
        top: 0;
        left: 0;
        margin: 0;
        width: 50px;
        height: 50px;
        line-height: 50px;
        text-align: center;
        display: table;
        margin-top: -15px;
    }

    .openbtn:hover {
        color: #0090ce;
    }

    .android_menu_logo {
        height: 115px;
        width: 120px;
        border-radius: 50%;
        margin-left: 26%;
        margin-bottom: 8%;
    }

    .header-container {
        display: flex;
        align-items: center;
        padding: 10px;
        background-color: #fff;
    }

    .txt-containerr {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-left: 1px;
        margin-top: 5px;
    }
}