/* Reset and Basic Styles (from previous) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


body {
    font-family: sans-serif;
    color: #fff;

    background: linear-gradient(to bottom, #2D2D2D, #C33F2A ,#E98144);
    background-attachment: fixed;
    background-size: 200% 200%; /* Make the gradient larger */
    animation: gradientMove 5s ease infinite; /* Add animation */
}

/* Define the animation */
@keyframes gradientMove {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}



.container-start-first{
display: grid; grid-template-columns: 2fr 1fr; grid-gap: 20px; align-items: center;
margin-left: 70px;
}
.hero-subtitle{
    text-align:left;
    margin-right: 55%;
}




.lottifie-animation-main-first{
grid-column: 2 / 3; text-align: center;
}

.button-how-main-last{
grid-column: 1 / 3; text-align: center;
}

/* General Styling */
.why-better-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 20px;
    margin-top: 20px;

}

.card {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 10px;
    width: 200px;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease, transform 1s ease;
}

.card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Card Icon Styling */
.card-icon img {
    width: 50px;
    height: 50px;
    margin-bottom: 15px;
}

/* Centered Cards Container */
.centered-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}


#galaxyCanvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.3;
  }


.card-icon {
    display: inline-block;
}

.centered-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-right: -670px;
}

.centered-cards .card {
    flex: 0 0 auto;
}

.testimonial-button-slide {
    height: 1px;
    width: 1px;
    background-color: transparent;
}

.locations-list,
.services-list {
    list-style: none;
    line-height: 1.8;
    color: #ddd;
}


.key-icon {
    width: 30px;
    /* Adjust the size of the icon */
    height: auto;
    /* Keep aspect ratio intact */
}

.logo {
    font-size: 20px;
    max-width: 80%;
    display: flex;
    align-items: center;
    /* Centers the text and logo vertically */
    margin-left: 0;
    margin-right: 0;
}

.logo-image {
    width: 70%;
    /* Adjust size of logo */
    height: auto;
    /* Keeps aspect ratio */
    margin-right: 10px;
    /* Space between logo and text */
}

.submenu {
    display: none;
    list-style-type: none;
    padding: 0;
    background-color: #333;
    /* Submenu background color */
}

.has-submenu:hover .submenu {
    display: block;
    /* Show submenu on hover */
}

/* Styling for the submenu */
.submenu li {
    padding: 10px;
    text-align: center;
}

.submenu li a {
    color: white;
    text-decoration: none;
}

.card-icon img {
    width: 40px;
    /* Adjust the size as needed */
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: #fff;
}

/* Header Styles (from previous) */
header {
    padding: 20px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

nav ul {
    list-style: none;
    display: flex;
}

nav ul li {
    margin-left: 25px;
}

nav ul li a {
    font-size: 16px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 1;
}

.get-started-btn {
    background-color: #C53E29;
    /* Orange button color */
    color: #fff;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 500;
    border: black 1px solid;
    display: inline-block;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover effect for the get-started button */
.get-started-btn:hover {
    background-color: #e66a4d; /* Lighter orange on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    transform: scale(1.05); /* Slight scaling effect */
}

/* Liquid ripple effect */
.get-started-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    /* background-color: rgba(255, 255, 255, 0.1); */
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    opacity: 0;
}

/* Trigger ripple effect on hover */
.get-started-btn:hover:before {
    opacity: 1;
    width: 400%;
    height: 400%; /* Expanding ripple effect */
    animation: rippleEffect 0.6s linear; /* Ripple animation */
}

/* Ripple animation */
@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Active state for clicking */
.get-started-btn:active {
    transform: scale(1) rotate(0deg); /* Reset to original size on click */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hero Section Styles (from previous) */
.hero-section {
    padding: 25px 0;
    text-align: left;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: 20px;

}

.hero-subtitle {
    font-size: 1.1rem;
    color: #ddd;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-get-started-btn-main-last {
    background-color: #C53E29;
    /* Orange button color */
    color: #fff;
    border: black 1px solid;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    margin-left: 54%;
    margin-top: -6%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Hover effect for the main button */
.hero-get-started-btn-main-last:hover {
    background-color: #F79C42;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
    transform: scale(1.05); /* Slight scaling on hover */
}

/* Liquid ripple effect */
.hero-get-started-btn-main-last:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    opacity: 0;
}

/* When hovered, trigger the wave expansion */
.hero-get-started-btn-main-last:hover:before {
    opacity: 1;
    width: 400%;
    height: 400%; /* Expanding ripple effect */
    animation: rippleEffect 0.6s linear; /* Liquid ripple animation */
}

/* Ripple animation */
@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Active state for click interaction */
.hero-get-started-btn-main-last:active {
    transform: scale(1) rotate(0deg); /* Reset size when clicked */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hero-get-started-btn {
    background-color: #C53E29;
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}


.hero-get-started-btn:hover {
    background-color: #F79C42;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transform: scale(1.05); /* Slight scale-up */
}


.hero-get-started-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    opacity: 0;
}


.hero-get-started-btn:hover:before {
    opacity: 1;
    width: 400%;
    height: 400%;
    animation: rippleEffect 0.6s linear;
}


@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Active state */
.hero-get-started-btn:active {
    transform: scale(1) rotate(0deg);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


/* Discover Section Styles (from previous) */
.discover-section {
    padding: 80px 0;
    text-align: center;
}

.discover-title {
    font-size: 2.5rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.card-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;

    /* Allow cards to wrap on smaller screens */

}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    /* Dark card background with slight transparency */
    border-radius: 15px;
    padding: 30px;
    text-align: left;
    flex: 1;
    /* Equal width distribution */
    min-width: 350px;
    /* Minimum width for cards */
    border: 1px solid rgb(245 245 220);
    height: 100%;
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.card-title {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 15px;
}

.card-description {
    color: #ddd;
    line-height: 1.5;
    margin-bottom: 25px;
    font-size: 0.9rem;
}

.card-arrow-btn {
    background-color: #FFA552;
    /* Orange button color */
    color: #fff;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    float: right;
    /* Align arrow to the right */
    transition: background-color 0.3s ease;
}

.card-arrow-btn:hover {
    background-color: #e66a4d;
}

.card-arrow-btn::after {
    content: '\2192';
    /* Unicode arrow right */
    font-size: 1.2rem;
}

/* Web Portal Section Styles (from previous) */
.web-portal-section {
    padding: 100px 0;
    /* margin-left: 100px; */
}

.web-portal-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}

.web-portal-text {
    flex: 1;
    text-align: left;
}

.web-portal-text h2 {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.web-portal-text p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.learn-more-btn {
    background-color: #C53E29;
    /* Orange button color */
    color: #fff;
    border: black 1px solid;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    margin-left: 8px;
}

/* Hover effect for the learn-more button */
.learn-more-btn:hover {
    background-color: #e66a4d; /* Lighter orange on hover */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3); /* Enhanced shadow */
    transform: scale(1.05); /* Slight scaling effect */
}

/* Liquid ripple effect */
.learn-more-btn:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300%;
    height: 300%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
    opacity: 0;
}

/* Trigger ripple effect on hover */
.learn-more-btn:hover:before {
    opacity: 1;
    width: 400%;
    height: 400%; /* Expanding ripple effect */
    animation: rippleEffect 0.6s linear; /* Ripple animation */
}

/* Ripple animation */
@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0.5);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

/* Active state for clicking */
.learn-more-btn:active {
    transform: scale(1) rotate(0deg); /* Reset to original size on click */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.web-portal-image {
    flex: 1;
    max-width: 50%;
    /* Adjust as needed */
}

.web-portal-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Optional: if you want rounded corners for image */
}

/* Why Better Section Styles (from previous) */
.why-better-section {
    padding: 80px 0;
    text-align: center;
}

.why-better-title {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.why-better-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    /* Responsive grid */
    gap: 25px;
}

.why-better-cards .card {
    background-color: rgba(255, 255, 255, 0.05);
    /* Dark card background with slight transparency */
    border-radius: 15px;
    padding: 35px;
    border: 1px solid rgb(245 245 220);
    text-align: center;
    /* Center text in these cards */
}

.why-better-cards .card-icon {
    font-size: 3rem;
    /* Larger icons for why better section */
    margin-bottom: 20px;
    opacity: 0.7;
}

.why-better-cards .card-title {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0;
    /* Reduced margin for title */
}

/* Memberships Section Styles (from previous) */
.memberships-section {
    padding: 80px 0;
    text-align: center;
}

.memberships-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.membership-logos {
    display: flex;
    justify-content: center;
    /* Center logos horizontally */
    gap: 30px;
    flex-wrap: wrap;
    /* Allow logos to wrap on smaller screens */
}

.membership-logos img {
    height: 100px;
    /* Adjust logo height as needed */
    width: auto;
    transition: opacity 0.3s ease;
}

.membership-logos img:hover {
    opacity: 1;
}

/* Regional Coverage Section Styles (from previous) */
.regional-coverage-section {
    padding: 80px 0;
    text-align: center;
}

.regional-coverage-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.regional-map img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    /* Optional: rounded corners for map */
}

/* They Trust Us Section Styles (from previous) */
.trust-us-section {
    padding: 80px 0;
    text-align: center;
}

.trust-us-title {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 40px;
}

.trust-us-logos {
    display: flex;
    justify-content: center;
    /* Center logos horizontally */
    gap: 50px;
    flex-wrap: wrap;
    /* Allow logos to wrap */
}

.trust-us-logos img {
    height: 126px;
    /* Adjust logo height as needed */
    width: auto;
    transition: opacity 0.3s ease;
}



/* Testimonials Section Styles (from previous) */
.testimonials-section {
    padding: 80px 0;
    /*text-align: center;*/
    position: relative;
    overflow: hidden;
}

.testimonials-title {
    font-size: 2.5rem;
    font-weight: 500;
}

.testimonials-container-wrapper {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}



.testimonial-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: white;
    cursor: pointer;
    width: 30px;
    z-index: 1;
}

.testimonial-arrow.left {
    left: 0px;
}

.testimonial-arrow.right {
    right: 5px;
}

.testimonials-container {
    display: flex;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 30px;
    margin-left: 2%;
    margin-right: -1%;
    text-align: left;
    flex: 0 0 360px;
    /* Fixed width for each card */
    scroll-snap-align: start;
    /* Snap to the start of each card */
    border: 1px solid rgb(245 245 220);
    box-sizing: border-box;

}

.foot {
    padding-bottom: 15px;
    ;
}

.testimonials-slider {
    overflow: hidden;
    position: relative;
}


.testimonial-card p {
    color: #ddd;
    font-size: 0.95rem;
}

.testimonial-author {
    font-weight: 500;
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 5px;
}

.testimonial-company {
    font-size: 0.9rem;
    color: #ccc;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-nav-btn {
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 10px;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.3s, background-color 0.3s;
}

.testimonial-nav-btn:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: default;
}

.testimonial-nav-btn::after {
    font-size: 1.2rem;
}

.testimonial-nav-btn.prev::after {
    content: '\2190';
    /* Left arrow */
}

.testimonial-nav-btn.next::after {
    content: '\2192';
    /* Right arrow */
}


/* Next Step Section Styles (from previous) */
.next-step-section {
    padding: 100px 0;
    text-align: center;
}

.next-step-title {
    font-size: 2.8rem;
    font-weight: 500;
    line-height: 1.3;
    margin-bottom: 20px;
}

.next-step-subtitle {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 40px;
    text-align: center;
    font-size: 1.1rem;
}

.next-step-get-started-btn {
    background-color: #C53E29;
    /* Orange button color */
    color: #fff;
    padding: 15px 35px;
    border-radius: 30px;
    font-size: 1.2rem;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.next-step-get-started-btn:hover {
    background-color: #e66a4d;
}

/* Let's Have a Call Section Styles */
.call-section {

    padding-top: 50px;
    text-align: left;
    /* Align text to left in this section */
}

.call-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    /* Three columns layout */
    gap: 50px;
}

.call-text h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.call-text p {
    color: #ddd;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-us-btn {
    background-color: rgba(255, 165, 82, 1);
    color: rgba(64, 60, 60, 1);
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 500;
    display: inline-block;
    transition: background-color 0.3s ease;
    font-size: 1.1rem;
}

.contact-us-btn:hover {
    background-color: #e66a4d;
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.social-icon-img {
    width: 24px;
    /* Adjust the width */
    height: 24px;
    /* Adjust the height */
}



.social-icon:hover {
    opacity: 1;
    background-color: rgba(255, 255, 255, 0.2);
}





.locations-services {
    display: flex;
    flex-direction: column;
}

.locations-services h3,
.services-list h3 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.locations-list,
.services-list {
    list-style: none;
    line-height: 1.8;
    color: #ddd;
}

.company-logo-large {
    color: #fff;
    font-size: 190px; /* Large logo text size */
    font-weight: 500;
    text-align: center; /* Center the logo */
    opacity: 0; /* Initially hidden */
    transform: translateY(50px); /* Start slightly below */
    transition: all 1s ease-out; /* Smooth transition */
    /* text-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 20px rgba(255, 255, 255, 0.6), 0 0 30px rgba(255, 255, 255, 0.4); Initial glow */
  }

.hamburger-menu {
    display: none;
    /* Menu is hidden by default */
}

footer {
    text-align: center;
    padding-bottom: 30px;
    font-size: 0.9rem;
    color: #ccc;
}

footer a {
    color: #ccc;
    margin: 0 15px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

footer a:hover {
    opacity: 1;
}


/* Responsive Design (from previous + modifications) */
@media (max-width: 960px) {
    .hero-title {
        font-size: 2.8rem;
    }

    .testimonial-arrow {
        display: none;
    }

    .discover-title,
    .why-better-title,
    .memberships-title,
    .regional-coverage-title,
    .trust-us-title,
    .testimonials-title,
    .call-text h2 {
        font-size: 2rem;
    }



    .header-container {
        justify-content: space-around;
        /* Distribute space more evenly */
    }

    .web-portal-container {
        flex-direction: column;
        /* Stack text and image vertically */
        text-align: center;
    }

    .web-portal-text {
        text-align: center;
        /* Center align text when stacked */
    }


    .web-portal-image {
        max-width: 80%;
        /* Make image smaller when stacked */
        margin: 20px auto 0;
        /* Center image */
    }

    .membership-logos,
    .trust-us-logos {
        justify-content: space-around;
        /* Distribute logos more evenly on smaller screens */
    }

    .testimonials-container {
        overflow-x: scroll;
        /* Re-enable scroll on smaller screens if needed */
        justify-content: flex-start;
        /* Align items to start in scroll view */
    }

    .testimonial-card .right-column {
        margin-right: 15px;

        /* Add spacing between cards in scroll view */
    }

    .next-step-title,
    .call-text h2 {
        font-size: 2.5rem;
    }

    .call-container {
        grid-template-columns: 1fr;
        /* Stack columns on smaller screens */
        text-align: center;
        /* Center text in stacked columns */
    }

    .call-text {
        text-align: center;
        margin-bottom: 0px;
    }

    .company-logo-large {
        font-size: 5rem;
        /* Slightly smaller logo on medium screens */
    }

    .social-icons {
        gap: 1px;

    }
}

@media (min-width: 769px) {
    .hamburger {
        display: none;
    }

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

    .nav-links {
        display: flex;
    }

    .nav-links li {
        margin: 0 20px;
    }

    .has-submenu {
        position: relative;
    }

    /* Show submenu when parent list item is hovered */
    .has-submenu:hover .submenu {
        display: block;
    }

    /* Styling for submenu */
    .submenu {
        display: none;
        position: absolute;
        left: -53px;
        top: 100%;
        background-color: #c53e29;
        width: 200px;
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    }

    .submenu li {
        padding: 10px;
        margin-left: 0px;
    }
    .submenu li a {
        color: white;
        text-decoration: none;
    }


}
@media (max-width: 480px) {
    .card-container {
        margin-left: 30px;
    }
    .hero-subtitle{
        text-align:center;
        margin: 0%;
        margin-left: -18%;
    }
    .hero-title{
        margin-left: 25%;
    }
    .animated-solutions{
        width:42%
    }

.hero-get-started-btn{
margin-left: 10%;
margin-top: 5%;
}

.button-how-main-last {

margin-left: -180%;
}
.discover-title{
font-size: -50px;
}
.hero-get-started-btn-main-last{
    margin-left: 10px
}
.why-better-title{
    margin-left:10px
}
}


@media (max-width: 768px) {
    .trust-us-logos img {
        height: 70px;
    }

    .web-portal-text h2 {
        text-align: left;
      }

      .web-portal-text p {
        text-align: left;
      }

      .web-portal-text.learn-more-btn {
        text-align: left;
      }

        .container-start-first {
          display: block;
        }
         .grid-container {
          display: block;
        }
        .hero-subtitle{
            text-align:center;
            margin: 0%;
        }
        .hero-title{
            margin-left: 25%;
        }
        .animated-solutions{
            width:42%
        }

.hero-get-started-btn{
margin-left: 28%;
}
    .web-portal-text h2 {
        font-size: 1.8rem;
        text-align: left !important;
    }

    .web-portal-container {
        margin-left: 0px;
    }

    .testimonial-arrow {
        display: none;
    }

    .hero-title {
        font-size: 1.5rem;
    }

    .hero-section {
        padding: 80px 0;
    }

    .card {
        flex: 1 1 100%;
        /* Cards take full width on smaller screens in discover section */
        margin-bottom: 20px;
    }

    .card-container {
        flex-direction: column;
        margin-left: 30px;
        /* Stack cards vertically on smaller screens in discover section*/
    }

    .why-better-cards {
        grid-template-columns: 1fr;
        margin-left: 30px;
        /* Stack cards in why better section */
    }

    .testimonial-card {
        flex: 1 1 100%;
        /* Testimonial cards full width on very small screens */
        margin-right: 0;
        /* Remove right margin when full width */
        margin-bottom: 20px;

    }

    .testimonials-container {
        flex-direction: column;
        /* Stack testimonials vertically on smaller screens */
        overflow-x: hidden;
        /* Disable horizontal scroll when stacked */
        width: 80%;
        margin-left: 20%;
        padding-left: 90px;
    }

    .next-step-title,
    .call-text h2 {
        font-size: 2rem;
        /* Even smaller titles on very small screens */
    }

    .company-logo-large {
        font-size: 4rem;
        /* Even smaller logo on very small screens */
    }

    .hamburger {
        display: flex;
        /* Show hamburger icon on mobile */
        flex-direction: column;
        cursor: pointer;
        margin-left: 20px;
    }

    .social-icon {
        gap: 1px;
    }

    .buller-points {
        list-style-type: none;
    }

    .hamburger .bar {
        width: 25px;
        height: 3px;
        background-color: white;
        margin: 4px 0;
    }

    /* Hide "Get Started" button on mobile */
    .get-started-btn {
        display: none;
    }


    .hamburger.active .hamburger-menu {
        display: block !important;
        background-color: #c53e29;
        position: absolute;
        top: 86px;
        height: 100%;
        right: 0;
        width: 100%;
        padding: 10px 0;
        z-index: 999;
        transition: background-color 0.3sease;
    }



    .hamburger-menu:hover {
        background-color: #ff5722;
    }

    .hamburger-menu ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
    }

    .hamburger-menu ul li {
        margin: 10px 20px;
    }

    .hamburger-menu ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
    }

    .hamburger-menu ul li {
        margin: 10px 20px;
    }

    /* Hide submenu by default */
    .submenu {
        display: none;
        background-color: #c53e29;
    }

    /* Show submenu when parent list item is clicked on mobile */
    .has-submenu.active .submenu {
        display: block;
    }

    .has-submenu>a:after {
        content: " ▼";
        /* Add an arrow to indicate a dropdown */
    }

    .has-submenu.active>a:after {
        content: " ▲";
        /* Change arrow direction when the submenu is visible */
    }

    .web-portal-image {
        margin-left: -50px;
    }

    .centered-cards {
        justify-content: center;
        gap: 20px;
        display: contents;
        margin: 0;
        flex-direction: column;
        ;
    }
}

@media (max-width: 430px) {

    .web-portal-text {
        margin-left: 2px;
    }

    .testimonial-arrow {
        display: none;
    }

    .web-portal-image {
        padding-left: 20px;
        margin-right: 2px;
    }

    .testimonials-container {
        padding: 0px;
        margin-left: 0%;
        width: 100%;
    }
    .right-column {
        padding: 0px;
    }

}

@media (max-width: 375px) {
    .testimonials-container {
        margin-left: 0%;
        width: 100%;
    }

    .testimonial-arrow {
        display: none;
    }



    .membership-logos,
    .trust-us-logos {
        gap: 70px;
    }

}

@media (max-width: 330px) {
    .testimonials-container {
        margin-left: 0px;
        width: 99%;
    }

    .testimonial-arrow {
        display: none;
    }



    .membership-logos,
    .trust-us-logos {
        gap: 10px;
    }

}
