.carousel-container {
    width: 100%;
    height: 550px;
    overflow: hidden;
    position: relative;
}

.carousel-slide {
    display: flex;
    flex-direction: column;
    /* Stack vertically */
    transition: transform 0.5s ease-in-out;
    height: 1500px;
    /* 500px * 3 slides */
}

.carousel-item {
    position: relative;
    width: 100%;
    height: 550px;
    flex-shrink: 0;
}

.carousel-item img {
    width: 100%;
    height: 550px;
    object-fit: cover;
}

.slide-text {
    position: absolute;
    bottom: 40px;
    left: 50px;
    color: #fff;
    font-size: 2rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.dots {
    position: absolute;
    bottom: 15px;
    width: 100%;
    text-align: center;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
}

.dot.active {
    background-color: #333;
}


/* .carousel-item {
    position: relative;
    width: 100vw;
    height: 600px;
    flex-shrink: 0;
} */


/* .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
} */

.slide-text {
    position: absolute;
    top: 80px;
    left: 50px;
    color: #fff;
    font-size: 3rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.slide-text p {
    margin-top: 20px;
    line-height: 25px;
    font-size: 20px;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.what-we-do {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 40px 5%;
    background-color: #caf0f8;
    align-items: center;
    gap: 40px;
}

.content {
    flex: 1;
    min-width: 300px;
}

.content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #333;
    text-align: justify;
}

.subtext {
    margin-bottom: 20px;
    color: #777;
}

.content ul {
    list-style: none;
    padding: 0;
    font-size: 1rem;
    line-height: 1.8;
}

.content ul li::before {
    content: "✅ ";
    color: #00aaff;
}

.video-player {
    flex: 1;
    min-width: 300px;
}

.video {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.visibility-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 5px 5%;
    padding-top: 35px;
    align-items: center;
    background-color: #fdfdfd;
    gap: 40px;
}

.visibility-text {
    flex: 1;
    max-width: 600px;
}

.visibility-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #222;
}

.visibility-text p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #ff6a00;
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: bold;
}

.btn-outline {
    background-color: transparent;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border: 2px solid #000;
    border-radius: 4px;
    font-weight: bold;
}

.visibility-image {
    flex: 1;
    max-width: 500px;
    display: flex;
    justify-content: center;
    background-color: #c3cac9;
    border-radius: 15px;
}

.visibility-image img {
    width: 450px;
    height: 350px;
    margin: 20px;
    border-radius: 15px;
}


/* Tablet */

@media (max-width: 992px) {
    .visibility-image img {
        width: 100%;
        height: auto;
    }
}


/* Mobile */

@media (max-width: 600px) {
    .visibility-image img {
        width: 100%;
        height: auto;
        margin: 10px 0;
    }
}


/* Tablet View */

@media (max-width: 992px) {
    .visibility-section {
        justify-content: center;
        text-align: center;
        gap: 30px;
    }
}


/* Mobile View */

@media (max-width: 600px) {
    .visibility-section {
        flex-direction: column;
        text-align: center;
        padding: 20px 5%;
        gap: 20px;
    }
}


/* .visibility-video {
    flex: 1;
    min-width: 300px;
    display: flex;
    justify-content: center;
} */

.video-wrapper {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 16 / 9;
    border: 8px solid #ccc;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    background-color: #000;
}

video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.planning-section {
    padding: 60px 20px;
    background-color: #fff;
}

.planning-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.planning-image {
    flex: 1;
    max-width: 500px;
    background: #05584b;
    border-radius: 15px;
    margin-right: 80px;
}

.planning-image img {
    width: 100%;
    max-width: 460px;
    margin: 20px;
    border-radius: 15px;
}

.planning-content {
    flex: 1;
    min-width: 300px;
}

.planning-content h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.planning-content h2 span {
    color: #000000;
}

.planning-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn.blue {
    background-color: #05584b;
    color: #fff;
}

.btn.blue:hover {
    background-color: #0b5ed7;
}

.btn.outline {
    border: 2px solid #000;
    color: #000;
}

.btn.outline:hover {
    background-color: #000;
    color: #fff;
}

.dashboard-section {
    /* padding: 60px 20px; */
    background-color: #caf0f8;
}

.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.dashboard-text {
    flex: 1;
    min-width: 300px;
}

.dashboard-text h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
    font-weight: bold;
}

.dashboard-text h2 span {
    color: #000000;
}

.dashboard-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
    text-align: justify;
}

.dashboard-image {
    flex: 1;
    min-width: 300px;
    text-align: right;
}

.dashboard-image img {
    width: 100%;
    margin-top: 20px;
    margin-bottom: 15px;
    max-width: 500px;
    border-radius: 15px;
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn.blue {
    background-color: #05584b;
    color: #fff;
}

.btn.blue:hover {
    background-color: #0b5ed7;
}

.btn.outline {
    border: 2px solid #000;
    color: #000;
}

.btn.outline:hover {
    background-color: #000;
    color: #fff;
}

.about-section {
    padding: 60px 20px;
    background-color: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 2.8em;
    margin-bottom: 15px;
    font-weight: bold;
}

.about-text h4 {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 20px;
    font-weight: normal;
    text-align: justify;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 15px;
    text-align: justify;
}

.about-image {
    flex: 1;
    max-width: 500px;
    text-align: right;
    background-color: #05584b;
    height: 400px;
    border-radius: 15px;
    margin-left: 80px;
}

.about-image img {
    width: 100%;
    max-width: 460px;
    border-radius: 5px;
    height: 350px;
    margin-top: 25px;
    margin-right: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.button-group {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.btn {
    padding: 12px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn.blue {
    background-color: #ff6a00;
    color: #fff;
}

.btn.blue:hover {
    background-color: #0b5ed7;
}

.btn.outline {
    border: 2px solid #000;
    color: #000;
}

.btn.outline:hover {
    background-color: #000;
    color: #fff;
}

.how-it-works-section {
    background-color: #caf0f8;
    color: #000000;
    padding: 30px 20px;
    text-align: center;
}

.how-it-works-container {
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-container h2 {
    font-size: 2.8em;
    margin-bottom: 10px;
}

.subheading {
    font-size: 1.2em;
    margin-bottom: 40px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.step-box {
    background-color: #fff;
    color: #333;
    padding: 30px 36px;
    border-radius: 6px;
    flex: 1 1 280px;
    max-width: 350px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 400px;
}

.icon-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-circle img {
    width: 46px;
    height: 46px;
    border-radius: 50%;
}

.orange {
    background-color: #ff9800;
}

.red {
    background-color: #f44336;
}

.green {
    background-color: #8bc34a;
}

.step-box h3 {
    font-size: 1.25em;
    margin-bottom: 15px;
}

.step-box p {
    font-size: 1em;
    line-height: 2;
}

.cta-section {
    background-color: #caf0f8;
    /* Adjust to match exact blue if needed */
    padding: 60px 20px;
    text-align: center;
}

.cta-container {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    letter-spacing: 1px;
}

.filled-btn {
    background-color: #ff6a00;
    color: #ffffff;
    border: none;
}

.filled-btn:hover {
    background-color: #e0e0e0;
}

.outlined-btn {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
}

.outlined-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.trusted-section {
    padding: 60px 20px;
    background-color: #fff;
}

.trusted-container {
    max-width: 1200px;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.trusted-text {
    flex: 1 1 30%;
    padding-right: 40px;
}

.trusted-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

.trusted-button {
    display: inline-block;
    background-color: #ff6a00;
    color: white;
    font-weight: bold;
    padding: 12px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.trusted-logos {
    flex: 1 1 65%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.trusted-logos img {
    width: 100%;
    max-width: 180px;
    height: auto;
    object-fit: contain;
}

.testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 400px;
    background-image: url(/image/img7.jpg);
    background-position: center;
    background-size: cover;
    margin-bottom: 20px;
    background-repeat: no-repeat;
}

.testimonial-track {
    display: flex;
    width: 300%;
    height: 100%;
    transition: transform 1s ease-in-out;
}

.testimonial-slide {
    width: 100%;
    display: flex;
    flex-shrink: 0;
    height: 100%;
}

.testimonial-content {
    width: 50%;
    padding: 40px;
    display: flex;
    align-items: center;
}

.testimonial-content blockquote {
    border-left: 4px solid #009cde;
    padding-left: 20px;
    font-size: 35px;
    color: #ffffff;
    font-weight: 600;
}

.testimonial-content cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-size: 14px;
    color: #555;
}

.testimonial-image {
    width: 50%;
    background-size: cover;
    background-position: center;
}

.contact-section {
    display: flex;
    flex-wrap: wrap;
    background: #caf0f8;
    color: #000000;
    padding: 20px 40px;
    margin-bottom: 40px;
}

.contact-info,
.contact-form {
    flex: 1 1 50%;
    padding: 20px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-box {
    margin-bottom: 20px;
}

.contact-box h4 {
    margin: 10px 0;
    font-size: 18px;
}

.contact-box p {
    margin: 5px 0;
    font-size: 14px;
}

.contact-form form {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    color: #000;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    background-color: #ff6a00;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
}

@media (max-width: 768px) {
    .contact-section {
        flex-direction: column;
    }
}

.three-steps {
    padding: 20px 20px;
    text-align: center;
    font-family: 'Arial', sans-serif;
    margin-top: 35px;
    margin-bottom: 35px;
}

.section-subtitle {
    color: #05584b;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-size: 20px;
}

.section-title {
    color: #001233;
    font-family: robin;
    font-size: 35px;
    margin-bottom: 30px;
    padding: 0 25% 0 25%;
    letter-spacing: 1px;
}

.steps {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.step {
    max-width: 240px;
    flex: 1;
}

.step-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.step h4 {
    color: #000000;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.step p {
    color: #667085;
    font-size: 14px;
}

.step-line {
    width: 85px;
    height: 2px;
    background-color: #05584b;
    align-self: center;
    margin: 40px 10px;
}