/*** Spinner Start ***/
/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;
}

/*** Spinner End ***/

.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: 45px;
    height: 45px;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
    z-index: 99;
}

/*** Button Start ***/
.btn {
    font-weight: 600;
    transition: .5s;
}

.btn-square {
    width: 32px;
    height: 32px;
}

.btn-sm-square {
    width: 34px;
    height: 34px;
}

.btn-md-square {
    width: 44px;
    height: 44px;
}

.btn-lg-square {
    width: 56px;
    height: 56px;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50%;
}

.btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-primary:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

.btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.btn.btn-light:hover {
    box-shadow: inset 300px 0 0 0 var(--bs-primary);
    color: var(--bs-light) !important;
}

.btn-hover {
    transition: 0.5s;
}

.btn-hover:hover {
    color: var(--bs-secondary) !important;
}

/*** Section Title Start ***/
.section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-primary) !important;
}

.sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-primary) !important;
}


/*** Topbar Start ***/
.fixed-top .container {
    transition: 0.5s;
}

.topbar {
    padding: 2px 10px 2px 20px;
    background: var(--bs-primary) !important;
}

.topbar a,
.topbar a i {
    transition: 0.5s;
}

.topbar a:hover,
.topbar a i:hover {
    color: var(--bs-secondary) !important;
}


@media (max-width: 576px) {
    .topbar {
        display: none;
    }
}

/*** Topbar End ***/
/*** Topbar End ***/

/*** Navbar ***/
.navbar-light {
    height: 90px;
    display: flex;
    color: white;
    align-items: center;
}

.navbar-light .navbar-nav .nav-link {
    font-family: 'Open Sans', sans-serif;
    position: relative;
    margin-right: 35px;
    padding: 20px 0;
    color: var(--bs-dark) !important;
    font-size: 17px;
    outline: none;
    transition: .5s;
    gap: 5rem;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 10px 0;
    color: var(--dark) !important;
}

.navbar-light .navbar-brand img {
    max-height: 45px;
    max-width: 100%;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 40px;
    color: #000;
}

@media (min-width: 1400px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 25px;
        margin-right: 50px;
        padding: 20px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: #000000 !important;
        font-weight: bold;
        background-color: #c6c6c6;
        text-align: center;
        width: 100%; /* Full width for nav links */
    }

    .navbar-light .navbar-nav .btn {
        width: auto; /* Button remains auto width */
        margin: 10px auto; /* Center the button */
        padding: 10px 20px; /* Padding for better appearance */
        display: block; /* Ensure it behaves as a block element */
    }

    .navbar-light .navbar-brand img {
        max-height: 35px;
    }
}

@media (min-width: 1300px) {
    .navbar-light .navbar-nav .nav-link {
        font-size: 20px;
        margin-right: 60px;
        padding: 25px 0;
    }

    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (min-width: 1200px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        border: 0;
        border-radius: 10px;
        transition: .5s;
        opacity: 0;
    }
}

.dropdown .dropdown-menu a:hover {
    background: var(--bs-primary);
    color: var(--bs-white);
}

.navbar .nav-item:hover .dropdown-menu {
    transform: rotateX(0deg);
    visibility: visible;
    background: var(--bs-light) !important;
    transition: .5s;
    opacity: 1;
}

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: var(--bs-white);
    }

    .navbar.navbar-expand-lg .navbar-toggler {
        padding: 10px 20px;
        border: 1px solid var(--bs-primary);
        color: var(--bs-primary);
    }

    .navbar-light .navbar-collapse {
        margin-top: 10px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: black !important;
        font-weight: bold;
        background-color: #15B9D9;
        text-align: left;
        width: 100%; /* Full width for nav links */
    }

    .navbar-light .navbar-brand img {
        max-height: 35px;
    }
}

@media (min-width: 992px) {
    .navbar-light {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        z-index: 999;
    }

    .sticky-top.navbar-light {
        position: fixed;
        background: rgb(11, 11, 10) !important;
    }

    .navbar-light .navbar-nav .nav-link::before {
        position: absolute;
        content: "";
        width: 0;
        height: 2px;
        bottom: -1px;
        left: 50%;
        background: var(--bs-primary);
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-link:hover::before,
    .navbar-light .navbar-nav .nav-link.active::before {
        width: calc(100% - 2px);
        left: 1px;
    }

    .navbar-light .navbar-nav .nav-link.nav-contact::before {
        display: none;
    }
}

/* New Media Query for Larger Screens  */
@media (min-width: 2000px) {
    .navbar-light {
        height: 100px;
    }

    .navbar-light .navbar-nav .nav-link {
        font-size: 35px;
        margin-right: 70px;
        padding: 25px 0;
    }

    .navbar-light .navbar-brand img {
        max-height: 85px;
    }

    .navbar .nav-item .dropdown-menu {
        border-radius: 15px;
        transition: .3s;
    }

    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 15px 0;
        font-size: 32px;
    }

    .btn {
        font-size: 30px;
    }

    .sticky-top.navbar-light .navbar-brand img {
        max-height: 85px;
        color: #000;
    }
}


/*** Carousel Hero Header Start ***/
.header-carousel {
    position: relative;
}

.header-carousel .owl-nav .owl-prev {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-next {
    position: absolute;
    width: 70px;
    height: 70px;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: var(--bs-primary);
    color: var(--bs-white);
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev,
.header-carousel .owl-nav .owl-next {
    transition: 0.5s;
}

.header-carousel .owl-nav .owl-prev:hover,
.header-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 150px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

@media (max-width: 576px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        top: 630px;
        transition: 0.5s;
    }

    .header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
        width: 95% !important;
    }

}

.header-carousel .header-carousel-item,
.header-carousel .header-carousel-item img {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 95px;
    display: block;
    object-fit: cover;
    transition: 0.5s;

}

@media (max-width: 992px) {

    .header-carousel .header-carousel-item,
    .header-carousel .header-carousel-item img {
        margin-top: 0;
        transition: 0.5s;
    }

}

@media (min-width: 992px) {

    .header-carousel .owl-nav .owl-prev,
    .header-carousel .owl-nav .owl-next {
        margin-top: 50px;
    }
}

.header-carousel .header-carousel-item .carousel-caption {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, .5);
}

.header-carousel .header-carousel-item .carousel-caption .carousel-caption-content {
    position: relative;
    width: 75%;

}

/*** Carousel Hero Header End ***/


/*** Single Page Hero Header Start ***/
.bg-breadcrumb {
    background: linear-gradient(rgba(0, 0, 0, 0.11), rgba(233, 232, 232, 0.089));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 100%;
    padding: 110px 0 10px 0;

}

.bg-breadcrumb .breadcrumb-item a {
    color: var(--bs-white) !important;
}

/*** Single Page Hero Header End ***/


/*** About Start ***/
.about .about-img {
    position: relative;
    overflow: hidden;
    height: 100%;
    border-radius: 10px;
}

.about .about-img .about-img-inner {
    position: absolute;
    left: 0;
    bottom: 0;
    border: 10px solid;
    border-color: #faf9fb;
    border-radius: 50%;

}

.about .about-img .about-experience {
    position: absolute;
    top: 125px;
    left: -125px;
    transform: rotate(-90deg);
    background: transparent;
    color: var(--bs-primary);
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 4px;
}

/*** About End ***/

/*** Feature Start ***/
.feature .feature-item {
    position: relative;
    display: flex;
    border: 1px solid var(--bs-primary);
    border-radius: 10px;
    background: var(--bs-light);
    transition: 0.5s;

}

.feature .feature-item::before {
    width: 0;
    height: 100%;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover::before {
    width: 100%;
    background: var(--bs-primary);
}

.feature .feature-item .feature-icon {
    display: inline-flex;
    border-radius: 10px;
    transition: 0.5s;
}

.feature .feature-item:hover .feature-icon {
    position: relative;
    z-index: 2;
}

.feature .feature-item:hover .feature-content {
    position: relative;
    color: var(--bs-white);
    z-index: 2;
}

.feature .feature-item:hover .feature-content h5 {
    color: var(--bs-dark);
}

/*** Feature End ***/


/*** Appointment Start ***/
.appointment {
    background: linear-gradient(rgba(186, 181, 181, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.appointment .appointment-form {
    background: rgba(225, 223, 222, 0.3);
}

.appointment .appointment-form .btn.btn-primary {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.appointment .appointment-form .btn.btn-primary:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-light) !important;
    color: var(--bs-primary) !important;
}

/*** Youtube Video start ***/
.video {
    position: relative;
}

.video .btn-play {
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-sizing: content-box;
    display: block;
    width: 33px;
    height: 44px;
    border-radius: 50%;
    transition: 0.5s;


}

.video .btn-play:before {
    content: "";
    position: absolute;
    z-index: 0;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 115px;
    height: 115px;
    background: var(--bs-primary);
    border-radius: 50%;
    animation: pulse-border 1500ms ease-out infinite;
    transition: 0.5s;
}

.video .btn-play:after {
    content: "";
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 100px;
    height: 100px;
    background: var(--bs-secondary);
    border-radius: 50%;
    transition: all 300ms;
}

.video .btn-play span {
    display: block;
    position: relative;
    z-index: 3;
    width: 0;
    height: 0;
    border-left: 33px solid var(--bs-white);
    border-top: 22px solid transparent;
    border-bottom: 22px solid transparent;
    margin-left: 5px;
}

@keyframes pulse-border {
    0% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
        opacity: 0;
    }
}

#videoModal {
    z-index: 99999;
}

#videoModal .modal-dialog {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0 auto;
}

#videoModal .modal-body {
    position: relative;
    padding: 0px;
}

#videoModal .close {
    position: absolute;
    width: 30px;
    height: 30px;
    right: 0px;
    top: -30px;
    z-index: 999;
    font-size: 30px;
    font-weight: normal;
    color: #ffffff;
    background: #000000;
    opacity: 1;
}

/*** Youtube Video End ***/
/*** Appointment End ***/


/*** Team Start ***/
.team .team-item .team-img {
    position: relative;
    overflow: hidden;
}

.team .team-item .team-img::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.team .team-item .team-img .team-icon {
    position: absolute;
    bottom: -125px;
    left: 50%;
    transform: translateX(-50%);
    transition: 0.5s;
}

.team .team-item .team-img:hover .team-icon {
    margin-bottom: 145px;
}

.team .team-item:hover .team-img::before {
    background: rgba(21, 185, 217, .3);
}

.team .team-item .team-content {
    color: var(--bs-primary);
    transition: 0.5s;
}

.team .team-item .team-content h5 {
    color: var(--bs-secondary);
    transition: 0.5s;
}

.team .team-item:hover .team-content h5 {
    color: var(--bs-dark);
}

.team .team-item:hover .team-content {
    background: var(--bs-primary);
    color: var(--bs-white);
}

/*** Team End ***/


/*** testimonial Start ***/
.testimonial {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9)), url(../image/MonarchBG.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
}

.testimonial .testimonial-item .testimonial-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-radius: 10px;
    background: transparent;
}

.testimonial .testimonial-item .testimonial-inner .testimonial-inner-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 5px solid var(--bs-white);
}

.testimonial .testimonial-carousel.owl-carousel {
    position: relative;
}

.testimonial .testimonial-carousel .owl-nav .owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}

.testimonial .testimonial-carousel .owl-nav .owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    background: var(--bs-light);
    color: var(--bs-primary);
    transition: 0.5s;
}


.testimonial .testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial .testimonial-carousel .owl-nav .owl-next:hover {
    box-shadow: inset 100px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}


@media (max-width: 900px) {
    .testimonial .testimonial-carousel .owl-nav .owl-prev {
        margin-top: -190px;
        margin-left: 40px;
    }

    .testimonial .testimonial-carousel .owl-nav .owl-next {
        margin-top: -190px;
        margin-right: 40px;
    }

}

.testimonial-carousel .owl-dots {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.testimonial-carousel .owl-dots .owl-dot {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 15px;
    border: 1px solid var(--bs-white);
    background: transparent;
    transition: 0.5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 20px;
    height: 20px;
    background: var(--bs-secondary) !important;
}

.testimonial-carousel .owl-dots .owl-dot span {
    position: relative;
    margin-top: 50%;
    margin-left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-carousel .owl-dots .owl-dot span::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1px;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: var(--bs-white);
}

.testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
    transition: 0.5s;
}

@media (min-width: 900px) {
    .testimonial .testimonial-carousel .testimonial-item .testimonial-inner p.fs-7 {
        font-size: 20px;
    }
}


/* Testimonial Section Title Start */
.testimonial .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.testimonial .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.testimonial .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.testimonial .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Testimonial End ***/


/*** Blog Start ***/
.blog .blog-item .blog-img {
    position: relative;
    overflow: hidden;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
}

.blog .blog-item .blog-img::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: 0.5s;
}

.blog .blog-item .blog-img img {
    transition: 0.5s;
}

.blog .blog-item .blog-img:hover img {
    transform: scale(1.3);
}

.blog .blog-item:hover .blog-img::after {
    background: rgba(21, 185, 217, .5);
}

.blog .blog-item .blog-centent {
    background: var(--bs-light);
    border: 1px solid var(--bs-primary);
    border-top: 0;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

/*** Blog End ***/


/*** Contact Start ***/
.contact {
    background: linear-gradient(rgba(21, 185, 217, 0.9), rgba(21, 185, 217, 0.9));
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    margin-top: -30px;
}


.contact .contact-form .btn.btn-light {
    box-shadow: inset 0 0 0 0 var(--bs-primary);
}

.contact .contact-form .btn.btn-light:hover {
    box-shadow: inset 600px 0 0 0 var(--bs-primary) !important;
    color: var(--bs-white) !important;
}

.contact .contact-form .form-floating input,
.contact .contact-form .form-floating textarea,
.contact .contact-form .form-floating label {
    color: var(--bs-light);
}



/* Testimonial Section Title Start */
.contact .section-title {
    max-width: 900px;
    text-align: center;
    margin: 0 auto;
}

.contact .section-title .sub-style {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-style::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-left: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-style::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    margin-bottom: 5px;
    margin-left: -50px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title {
    position: relative;
    display: inline-block;
    text-transform: uppercase;
    color: var(--bs-primary);
}

.contact .section-title .sub-title::before {
    content: "";
    width: 100px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-top: 8px;
    margin-right: -100px;
    border: 1px solid var(--bs-white) !important;
}

.contact .section-title .sub-title::after {
    content: "";
    width: 50px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin-bottom: 8px;
    margin-right: -50px;
    border: 1px solid var(--bs-white) !important;
}

/*** Contact End ***/


/*** Footer Start ***/
.footer {
    background: black;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

.footer .footer-item a {
    line-height: 25px;
    color: white;
    transition: 0.5s;
}

.footer .footer-item p {
    line-height: 35px;
}

.footer .footer-item a:hover {
    letter-spacing: 2px;
    color: var(--bs-primary);
}

/*** Footer End ***/


/* my style */

body,
html {
    margin: 0;
    /* Remove default margin */
    padding: 0;
    /* Remove default padding */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */


}

/*** Navbar Styles ***/
.navbar-container {
    z-index: 1000;
    /* Ensure navbar is on top of other content */
}

.navbar-logo {
    max-height: 60px;
    /* Adjust as needed */
}

/*** Hero Banner Styles ***/
.hero-banner-section {
    position: relative;
    width: 100%;
    /* Use full width of the container */
    height: 100vh;
    /* Full viewport height */
    overflow: hidden;
    /* Ensure any overflow is hidden */
    display: flex;
    /* Flexbox layout to center content */
    align-items: center;
    /* Center vertically */
    justify-content: center;
    /* Center horizontally */
    margin-top: 0;
    /* Remove top margin */
    text-align: center;
    /* Center text and inline-block elements */
}

.hero-banner-image {
    max-width: 90%;
    /* Limit the maximum width to 90% of the container */
    max-height: 90%;
    /* Limit the maximum height to 90% of the container */
    object-fit: cover;
    /* Cover the container without distortion */
    object-position: center;
    /* Center the image */
    border-radius: 20px;
    /* Rounded rectangle shape */
    display: block;
    /* Ensures no unexpected behavior due to default display properties */
    margin: 0 auto;
    /* Center the image horizontally */
}

/* Adjustments for different screen sizes */

/* Mobile: Up to 575px */
@media (max-width: 575px) {
    .hero-banner-section {
        margin-top: 60px;
        /* Adjust margin for smaller screens */
    }

    .hero-banner-image {
        max-width: 90%;
        /* Adjust width for smaller screens */
        max-height: 90%;
        /* Adjust height for smaller screens */
        border-radius: 15px;
        /* Adjust rounded corners for smaller screens */
    }
}

/* Tablet: 576px to 991px */
@media (min-width: 576px) and (max-width: 991px) {
    .hero-banner-section {
        margin-top: 70px;
        /* Adjust margin for medium screens */
    }

    .hero-banner-image {
        max-width: 85%;
        /* Adjust width for medium screens */
        max-height: 85%;
        /* Adjust height for medium screens */
        border-radius: 18px;
        /* Adjust rounded corners for medium screens */
    }
}

/* Desktop: 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .hero-banner-section {
        margin-top: 0;
        /* No margin adjustments for larger screens */
    }

    .hero-banner-image {
        max-width: 80%;
        /* Adjust width for larger screens */
        max-height: 80%;
        /* Adjust height for larger screens */
        border-radius: 20px;
        /* Maintain rounded corners for larger screens */
    }
}

/* Large Screens: 1200px to 1999px */
@media (min-width: 1200px) and (max-width: 1999px) {
    .hero-banner-section {
        margin-top: 0;
        /* Maintain margin for large screens */
    }

    .hero-banner-image {
        max-width: 75%;
        /* Adjust width for large screens */
        max-height: 75%;
        /* Adjust height for large screens */
        border-radius: 20px;
        /* Maintain rounded corners */
    }
}

/* Extra Large Screens: 2000px to 4000px */
@media (min-width: 2000px) and (max-width: 4000px) {
    .hero-banner-section {
        margin-top: 0;
        /* No margin adjustments for extra large screens */
    }

    .hero-banner-image {
        max-width: 70%;
        /* Adjust width for extra large screens */
        max-height: 70%;
        /* Adjust height for extra large screens */
        border-radius: 20px;
        /* Maintain rounded corners */
    }
}

.hero-banner {
    margin-top: -6rem;
    /* Apply negative margin to pull the hero banner up */
    position: relative;
    /* Ensure relative positioning for stacking */
    overflow: hidden;
    /* Hide overflow if any */
    z-index: 1;
    /* Ensure it is above the background section */
}

/*** Navbar Styles ***/
.navbar {
    padding-top: 1rem;
    /* Default padding */
    padding-bottom: 1rem;
    /* Default padding */
}

/*** Ensure Content Is Not Hidden Behind Navbar ***/
.text-section {
    margin-top: -60px;
    /* Default negative margin */
    padding: 10rem 0;
    /* Default padding */
}

/* Mobile: Up to 575px */
@media (max-width: 575px) {
    .navbar {
        padding-top: 0.5rem;
        /* Reduced padding for smaller screens */
        padding-bottom: 0.5rem;
        /* Reduced padding for smaller screens */
    }

    .text-section {
        padding: 5rem 0;
        /* Reduced padding to fit content better */
    }
}

/* Tablet: 576px to 991px */
@media (min-width: 576px) and (max-width: 991px) {
    .navbar {
        padding-top: 0.75rem;
        /* Slightly increased padding for tablets */
        padding-bottom: 0.75rem;
        /* Slightly increased padding for tablets */
    }

    .text-section {
        margin-top: -50px;
        /* Adjusted margin for tablets */
        padding: 7rem 0;
        /* Moderate padding for tablet view */
    }
}

/* Desktop: 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .navbar {
        padding-top: 1rem;
        /* Default padding for desktops */
        padding-bottom: 1rem;
        /* Default padding for desktops */
    }

    .text-section {
        margin-top: -60px;
        /* Original negative margin */
        padding: 8rem 0;
        /* Slightly reduced padding */
    }
}

/* Large Screens: 1200px and above */
@media (min-width: 1200px) {
    .navbar {
        padding-top: 1.5rem;
        /* Increased padding for larger screens */
        padding-bottom: 1.5rem;
        /* Increased padding for larger screens */
    }

    .text-section {
        margin-bottom: -120px;
        margin-top: -120px;
        padding: 10rem 0;
        /* Original padding */

    }
}

/* Extra Large Screens: 2000px and above */
@media (min-width: 2000px) {
    .navbar {
        padding-top: 2rem;
        /* More padding for extra large screens */
        padding-bottom: 2rem;
        /* More padding for extra large screens */
    }

    .text-section {
        margin-top: -150px;
        /* Increased negative margin to adjust for larger screens */
        padding: 12rem 0;
        /* Increased padding to make use of larger screen space */
    }
}




/*** Text Section Styles ***/
.title-container {
    display: inline-block;
    background-color: rgba(240, 240, 240, 0.281);
    /* Oval background color */
    padding: 5px 10px;
    /* Adjust padding as needed */
    border-radius: 20px;
    /* Oval shape */
    margin-bottom: 1rem;
}

.title {
    color: orange;
    /* Orange text color */
    font-size: 0.7rem;
    /* Font size 10px */
    margin: 0;
    font-family: Arial, sans-serif;
}

.description {
    color: black;
    /* Black text color */
    font-size: 2.3rem;
    /* Font size 40px */
    margin: 0 0 15px 0;
    /* Margin bottom 15px */
    line-height: 1.2;
    /* Adjust line height for better readability */
    font-family: Arial, sans-serif;
}

.subtitle {
    color: grey;
    /* Grey text color */
    font-size: 1.125rem;
    /* Font size 18px */
    margin: 0;
    /* No margin for the bottom */
    font-family: Arial, sans-serif;
}

/* Mobile: Up to 575px */
@media (max-width: 575px) {
    .description {
        font-size: 1.5rem;
        /* Font size 24px */
        margin-bottom: 10px;
        /* Adjust margin for smaller screens */
    }

    .subtitle {
        margin-bottom: 80px;

        font-size: 1rem;
        /* Font size 16px */
    }
}

/* Tablet: 576px to 991px */
@media (min-width: 576px) and (max-width: 991px) {
    .description {
        font-size: 1.8rem;
        /* Font size 29px */
        margin-bottom: 12px;
        /* Adjust margin for medium screens */
    }

    .subtitle {
        font-size: 1.125rem;
        /* Font size 18px */
    }
}

/* Desktop: 992px to 1199px */
@media (min-width: 992px) and (max-width: 1199px) {
    .description {
        font-size: 2rem;
        /* Font size 32px */
        margin-bottom: 14px;
        /* Adjust margin for larger screens */
    }

    .subtitle {
        font-size: 1.125rem;
        /* Font size 18px */
    }
}

/* Large Screens: 1200px and above */
@media (min-width: 1200px) {
    .description {
        font-size: 2.3rem;
        /* Font size 37px */
        margin-bottom: 15px;
        /* Original margin */
    }

    .subtitle {
        font-size: 1.125rem;
        /* Font size 18px */
    }
}

/* Extra Large Screens: 2000px and above */
@media (min-width: 2000px) {
    .description {
        font-size: 3.8rem;
        /* Font size 45px */
        margin-bottom: 20px;
        /* Increased margin for large screens */
    }

    .subtitle {
        font-size: 1.5rem;
        /* Font size 24px */
    }
}



/*** Background Section Styles ***/
.background-section {
    background-color: black;
    /* Black background color */
    color: white;
    /* White text color */
    padding: 1rem 1rem 2rem;
    /* Add padding */
    text-align: center;
    /* Center text */
    position: relative;
    /* Ensure correct stacking */
    margin-top: -90px;
    z-index: 0;
    /* Ensure it is below the hero banner */
}

/* Main title styling */
.main-title {
    color: orange;
    /* Orange text color */
    font-size: 0.9rem;
    /* Font size for main title */
    margin-top: 5rem;
    margin-bottom: 3rem;
    /* Bottom margin */
    font-family: 'ans-serif', sans-serif;
    /* Apply Roboto font */
}

/* Sub-description styling */
.sub-description {
    color: rgb(193, 191, 191);
    /* White text color */
    font-size: 1rem;
    /* Font size for sub-description */
    margin-bottom: 3rem;
    /* Bottom margin */
    font-family: 'ans-serif', sans-serif;
    /* Apply Roboto font */
}

/* Base Styles for .stats */
.stats {
    display: flex;
    /* Display items in a row */
    justify-content: space-between;
    /* Evenly space out items */
    flex-wrap: wrap;
    /* Wrap to new lines if needed */
    padding: 0 2rem;
    /* Add padding to the container to control spacing at the edges */
}

.stat-item {
    position: relative;
    /* Ensure the pseudo-element is positioned relative to the stat-item */
    margin: 0;
    /* Remove excessive margins to maintain even spacing */
    font-family: 'sans-serif', sans-serif;
    /* Apply Roboto font */
    padding: 2rem;
    /* Add padding for better spacing inside the border */
    flex: 1;
    /* Allow items to grow and take up available space evenly */
    min-width: 250px;
    /* Minimum width for each stat-item to prevent excessive shrinking on smaller screens */
    box-sizing: border-box;
    /* Ensure padding is included in the total width/height */
}

/* Pseudo-element for the border line */
.stat-item:not(:last-child)::after {
    content: '';
    /* Empty content for the pseudo-element */
    position: absolute;
    /* Position it absolutely within the stat-item */
    top: 0;
    /* Align to the top of the stat-item */
    bottom: 0;
    /* Stretch to the bottom of the stat-item */
    left: 100%;
    /* Position it exactly at the right edge of the stat-item */
    margin-left: -0.5px;
    /* Offset the line slightly to the left to position it between items */
    width: 1px;
    /* Border width */
    height: 100%;
    /* Stretch the line across the height of the stat-item */
    background-color: #e0e0e0;
    /* Border color */
    z-index: -1;
    /* Ensure the line is behind the content */
}

/* No changes to last item since we don't need a line after it */
.stat-item:last-child::after {
    display: none;
    /* Hide the pseudo-element for the last item */
}

.stat-value {
    font-size: 2rem;
    /* Font size for statistic values */
    font-weight: bold;
    /* Bold text */
    color: white;
    /* White text color */
    font-family: 'sans-serif', sans-serif;
    /* Apply Roboto font */
}

.stat-label {
    font-size: 0.8rem;
    /* Font size for labels */
    margin: 0;
    /* No margin for labels */
    font-family: 'sans-serif', sans-serif;
    /* Apply Roboto font */
}

/* Responsive adjustments */

/* Small devices (up to 575px) */
@media (max-width: 575px) {
    .stats {
        justify-content: center;
        /* Center items on smaller screens */
        padding: 0 1rem;
        /* Reduce padding on smaller screens */
    }

    .stat-item {
        flex: 0 0 45%;
        /* Reduce the flex basis to 45% to fit two items per row */
    }

    .stat-item:not(:last-child)::after {
        display: none;
        /* Hide the pseudo-element on smaller screens */
    }

    .stat-value {
        font-size: 1.5rem;
        /* Adjust font size for smaller screens */
    }

    .stat-label {
        font-size: 0.7rem;
        /* Adjust label font size for smaller screens */
    }
}

/* Medium devices (576px to 991px) */
@media (min-width: 576px) and (max-width: 991px) {
    .stats {
        padding: 0 1.5rem;
        /* Adjust padding for medium devices */
    }

    .stat-item {
        flex: 0 0 48%;
        /* Slightly adjust flex basis for medium devices */
    }

    .stat-value {
        font-size: 1.75rem;
        /* Adjust font size for medium screens */
    }

    .stat-label {
        font-size: 0.75rem;
        /* Adjust label font size for medium screens */
    }
}

/* Large devices (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .stats {
        padding: 0 2rem;
        /* Maintain padding for larger devices */
    }

    .stat-item {
        flex: 0 0 30%;
        /* Increase flex basis for larger screens */
    }

    .stat-value {
        font-size: 2rem;
        /* Maintain font size for large screens */
    }

    .stat-label {
        font-size: 0.8rem;
        /* Maintain label font size for large screens */
    }
}

/* Extra large devices (1200px to 1999px) */
@media (min-width: 1200px) and (max-width: 1999px) {
    .stats {
        padding: 0 3rem;
        /* Increase padding for extra large screens */
    }

    .stat-item {
        flex: 0 0 24%;
        /* Adjust flex basis for extra large screens */
    }

    .stat-value {
        font-size: 2.25rem;
        /* Slightly increase font size for extra large screens */
    }

    .stat-label {
        font-size: 0.85rem;
        /* Slightly increase label font size */
    }
}

/* Very large devices (2000px and above) */
@media (min-width: 2000px) {
    .stats {
        padding: 0 4rem;
        /* Further increase padding for very large screens */
    }

    /* .stat-item { */
    /* flex: 0 0 20%; Adjust flex basis for very large screens */
    /* } */

    .stat-value {
        font-size: 2.5rem;
        /* Increase font size for very large screens */
    }

    .stat-label {
        font-size: 0.9rem;
        /* Increase label font size */
    }
}

/* 4K Screens (2560px and above) */
@media (min-width: 2560px) {
    .stats {
        padding: 0 5rem;
        /* Further increase padding for 4K screens */
    }

    .stat-item {
        /* flex: 0 0 18%; Adjust flex basis for 4K screens */
    }

    .stat-value {
        font-size: 3.75rem;
        /* Increase font size for 4K screens */
        text-align: center;

    }

    .stat-label {
        font-size: 1.8rem;
        /* Increase label font size */
        text-align: center;
    }
}

/* Ultrawide Screens (3840px and above) */
@media (min-width: 3840px) {
    .stats {
        padding: 0 6rem;
        /* Further increase padding for ultrawide screens */
    }

    .stat-item {
        flex: 0 0 16%;
        /* Adjust flex basis for ultrawide screens */
    }


    .stat-value {
        font-size: 3rem;
        /* Increase font size for ultrawide screens */
    }

    .stat-label {
        font-size: 1.1rem;
        /* Increase label font size */
    }
}

/* Description1 styling adjustments for different screen sizes */
.description1 {
    color: rgb(255, 255, 255);
    /* White text color */
    font-size: 1.3rem;
    /* Base font size */
    font-weight: bold;
    margin: 0 0 15px 0;
    /* Margin bottom 15px */
    line-height: 1.2;
    /* Adjust line height for better readability */
    font-family: "Playfair Display", serif;
    margin-bottom: 50px;
    /* Base margin-bottom */
}

/* Small devices (up to 575px) */
@media (max-width: 575px) {
    .description1 {
        font-size: 1.5rem;
        /* Adjust font size for smaller screens */
        margin-bottom: 30px;
        /* Reduce margin-bottom */
    }
}

/* Medium devices (576px to 991px) */
@media (min-width: 576px) and (max-width: 991px) {
    .description1 {
        font-size: 1.75rem;
        /* Adjust font size for medium screens */
        margin-bottom: 40px;
        /* Adjust margin-bottom */
    }
}

/* Large devices (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .description1 {
        font-size: 2rem;
        /* Maintain font size for larger screens */
        margin-bottom: 50px;
        /* Maintain margin-bottom */
    }
}

/* Extra large devices (1200px to 1999px) */
@media (min-width: 1200px) and (max-width: 1999px) {
    .description1 {
        margin-top: 100px;

        font-size: 2.25rem;
        /* Slightly increase font size for extra large screens */
        margin-bottom: 60px;
        /* Increase margin-bottom */
    }
}

/* Very large devices (2000px and above) */
@media (min-width: 2000px) {
    .description1 {
        font-size: 2.5rem;
        /* Increase font size for very large screens */
        margin-bottom: 70px;
        /* Further increase margin-bottom */
        margin-top: 150px;

    }
}

/* 4K Screens (2560px and above) */
@media (min-width: 2560px) {
    .description1 {
        font-size: 3.75rem;
        /* Further increase font size for 4K screens */
        margin-bottom: 80px;
        /* Further increase margin-bottom */
    }
}

/* Ultrawide Screens (3840px and above) */
@media (min-width: 3840px) {
    .description1 {
        font-size: 3rem;
        /* Increase font size for ultrawide screens */
        margin-bottom: 90px;
        /* Further increase margin-bottom */
    }
}




/*** Brand Section Styles ***/
.brand-section {
    padding: 0.5rem 1rem;
    /* Increase padding for more space around the logos */
    background-color: #000000;
    /* Light background color */
    margin: 0 -2rem;
    /* Negative margin to extend background beyond the container */
    overflow: hidden;
    /* Hide overflow to keep the scrolling clean */
    position: relative;
    /* Set position to relative to contain absolute elements */
}

/* Brand logos container */
.brand-logos {
    display: flex;
    /* Display logos in a row */
    flex-wrap: nowrap;
    /* Prevent wrapping */
    justify-content: start;
    /* Align logos to the start */
    gap: 20rem;
    /* Space between logos */
    animation: scroll 19s linear infinite;
    /* Apply scrolling animation */
    animation-timing-function: linear;
    /* Linear animation for smooth scrolling */
    width: 200%;
    /* Double the width to accommodate two sets of logos */
}

/* Keyframes for scrolling animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Individual brand logo styling */
.brand-logo {
    background-color: #000;
    width: 55px;
    /* Explicit width for each logo */
    height: 45px;
    /* Explicit height for each logo */
    justify-content: center;
    /* Center logo horizontally */
    cursor: pointer;
    /* Change cursor to pointer for interactive elements */
    transition: transform 0.3s;
    /* Smooth hover effect */
    gap: 20rem;
    /* Space between logos */

}

.brand-logo:hover {
    transform: scale(1.1);
    /* Slight zoom effect on hover */
}

.brand-logos.paused {
    animation-play-state: paused;
    /* Pause animation when class 'paused' is added */
}

/* Responsive adjustments for .description1 */
@media (max-width: 1024px) {
    .description1 {
        font-size: 2.2rem;
        /* Slightly smaller font size for tablets */
    }

    .brand-logos {
        display: flex;
        /* Display logos in a row */
        flex-wrap: nowrap;
        /* Prevent wrapping */
        justify-content: start;
        /* Align logos to the start */
        gap: 7rem;
        /* Space between logos */
        animation: scroll 15s linear infinite;
        /* Apply scrolling animation */
        animation-timing-function: linear;
        /* Linear animation for smooth scrolling */
        width: 200%;
        /* Double the width to accommodate two sets of logos */
    }
}

@media (max-width: 768px) {
    .description1 {
        font-size: 2rem;
        /* Smaller font size for small tablets */
    }

    .brand-section {
        padding: 1rem;
        margin: 0;
    }

    .brand-logos {
        justify-content: start;
        gap: 6rem;
    }

    .brand-logo {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 576px) {
    .description1 {
        font-size: 1.6rem;
    }

    .brand-logo {
        width: 30px;
        height: 30px;
    }

    .brand-section {
        padding: 0.5rem;
        /* Smaller padding for very small screens */
    }
}

/* Responsive adjustments for larger screens */

/* For screens 1200px to 1599px */
@media (min-width: 1200px) and (max-width: 1599px) {
    .brand-section {
        padding: 1rem 2rem;
        /* Increased padding for larger screens */
    }

    .brand-logos {
        gap: 8rem;
        /* Space between logos */
    }

    .brand-logo {
        width: 80px;
        /* Larger logo size for mid-size screens */
        height: 60px;
        /* Maintain aspect ratio */
    }
}

/* For screens 1600px to 1999px */
@media (min-width: 1600px) and (max-width: 1999px) {
    .brand-section {
        padding: 1rem 2rem;
        /* Maintain padding */
    }

    .brand-logos {
        gap: 9rem;
        /* Larger space between logos */
    }

    .brand-logo {
        width: 100px;
        /* Larger logo size for larger screens */
        height: 80px;
        /* Maintain aspect ratio */
    }
}

/* For screens 2000px and above */
@media (min-width: 2000px) {
    .brand-section {
        padding: 1rem 2rem;
        /* Further increased padding for very large screens */
    }

    .brand-logos {
        gap: 10rem;

    }

    .brand-logo {
        width: 120px;
        /* Larger logo size for very large screens */
        height: 90px;
        /* Maintain aspect ratio */
    }
}

/* For screens 2560px and above */
@media (min-width: 2560px) {
    .brand-section {
        padding: 1rem 3rem;
        /* Increased padding for 4K screens */
    }

    .brand-logos {
        gap: 15rem;

    }

    .brand-logo {
        width: 150px;
        /* Larger logo size for 4K screens */
        height: 110px;
        /* Maintain aspect ratio */
    }
}

/* For ultrawide screens (3840px and above) */
@media (min-width: 3840px) {
    .brand-section {
        padding: 1rem 4rem;
        /* Further increased padding for ultrawide screens */
    }

    .brand-logos {
        gap: 10rem;
        /* More space between logos */
    }

    .brand-logo {
        width: 180px;
        /* Larger logo size for ultrawide screens */
        height: 130px;
        /* Maintain aspect ratio */
    }
}

/* Details Container */
.details-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping to accommodate smaller screens */
    height: auto;
    /* Remove fixed height to allow flexible height */
    width: 100%;
    /* Full width for better responsiveness */
    align-items: stretch;
    /* Stretch children to fill the container height */
}

/* Left Side */
.details-left-side {
    flex: 1;
    margin-top: 20px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Full width on small screens */
    padding: 1rem;
    /* Add padding for smaller screens */
}

/* Image Container */
.details-image-container {
    position: relative;
    width: 100%;
    /* Container size for the image */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* Rounded corners for the container */
    overflow: hidden;
    /* Ensure the image doesn't overflow */
}

/* Main Image */
.details-main-image {
    width: 80%;
    /* Main image size */
    height: 69%;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    /* Rounded corners for the image */
}

/* Overlay Styles */
.details-overlay {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 100px;
    /* Rounded corners for the overlay */
}

.details-small {
    width: 90%;
    /* Increased size for the small overlay */
    height: 79%;
    background-color: rgba(128, 207, 241, 0.3);
    /* Light Blue */
}

.details-medium {
    width: 90%;
    /* Increased size for the medium overlay */
    height: 89%;
    background-color: rgba(168, 209, 246, 0.3);
    /* Medium Blue */
}

.details-large {
    width: 90%;
    /* Increased size for the large overlay */
    height: 99%;
    background-color: rgba(128, 207, 241, 0.3);
    /* Dark Blue */
}

/* Overlay Image */
.details-overlay-image {
    position: absolute;
    z-index: 2;
    border-radius: 15px;
    /* Rounded corners for the overlay images */
}

.details-top-right {
    top: 15%;
    /* Slightly adjusted position */
    right: 5%;
    /* Slightly adjusted position */
    width: 40%;
    /* Increased size for the top-right image */
    height: 30%;
    object-fit: cover;
}

.details-bottom-left {
    bottom: 36%;
    /* Slightly adjusted position */
    left: -5%;
    /* Slightly adjusted position */
    width: 40%;
    /* Increased size for the bottom-left image */
    height: 30%;
    object-fit: cover;
}

/* Right Side */
.details-right-side {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    /* Align items to the start (left) */
    padding: 2rem;
    background-color: white;
    max-width: 650px;
    /* Maximum width of the section */
    margin: 0;
    /* Remove auto margin to keep it left-aligned */
    width: 100%;
    /* Full width on small screens */
}

/* Description */
.details-description {
    font-size: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    text-align: left;
    /* Align text to the left */
}

/* Software Service */
.details-software-service {
    display: inline-block;
    background-color: rgba(240, 240, 240, 0.281);
    /* Oval background color */
    padding: 7px 12px;
    border-radius: 5px;
    /* Reduced border radius */
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: orange;
    font-family: Arial, sans-serif;
    text-align: left;
    /* Align text to the left */
}

/* Title */
.details-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: left;
    /* Align text to the left */
    font-weight: 900;
}

/* Subtitle */
.details-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-align: left;
    color: #000;

    /* Align text to the left */
}

/* Export Button */
.details-export-button {
    align-self: flex-start;
    padding: 0.5rem 2rem;
    background-color: #15B9D9;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
    /* Add margin for spacing */
}

.details-export-button:hover {
    background-color: rgb(0, 0, 0);
    ;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .details-right-side {
        max-width: 500px;
        /* Reduce max width for tablets */
        padding: 1.5rem;
        /* Reduce padding for tablets */
        margin-bottom: 30px;

    }

    .details-title {
        font-size: 2rem;
        /* Smaller title font size for tablets */
    }

    .details-description {
        font-size: 0.9rem;
        /* Smaller description font size for tablets */
    }

    .details-subtitle {
        font-size: 0.75rem;
        /* Smaller subtitle font size for tablets */
    }
}

@media (max-width: 768px) {
    .details-container {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
    }

    .details-left-side,
    .details-right-side {
        width: 100%;
        /* Full width for both sides on smaller screens */
        padding: 1rem;
        /* Reduced padding for smaller screens */
    }

    .details-title {
        font-size: 1.8rem;
        /* Smaller title font size for small screens */
    }

    .details-description {
        font-size: 0.85rem;
        /* Smaller description font size for small screens */
    }

    .details-software-service {
        font-size: 0.7rem;
        /* Smaller software service font size for small screens */
    }

    .details-export-button {
        width: 100%;
        /* Full width button on small screens */
        text-align: center;
        /* Center text inside the button */
    }
}

@media (max-width: 576px) {
    .details-title {
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 25px;

    }

    .details-description {
        font-size: 0.8rem;
        /* Further reduce description font size for mobile */
    }

    .details-export-button {
        padding: 0.5rem 1.5rem;
        /* Adjust button padding for mobile */
        border-radius: 10px;
        /* Smaller border radius for mobile */
    }
}


/* Responsive Adjustments for 1900x900 screens */
@media (min-width: 1900px) and (max-width: 2000px) {
    .details-small {
        width: 95%;
        /* Increased size for the small overlay */
        height: 89%;
        background-color: rgba(128, 207, 241, 0.3);
        /* Light Blue */
    }

    .details-medium {
        width: 95%;
        /* Increased size for the medium overlay */
        height: 99%;
        background-color: rgba(168, 209, 246, 0.3);
        /* Medium Blue */
    }

    .details-large {
        width: 95%;
        /* Increased size for the large overlay */
        height: 109%;
        background-color: rgba(128, 207, 241, 0.3);
        /* Dark Blue */
    }

    .details-container {
        padding: 2rem;
        /* Add some padding for larger screens */
    }

    .details-left-side,
    .details-right-side {
        padding: 2rem;
        /* Increase padding for better spacing */
    }

    .details-title {
        font-size: 3rem;
        /* Larger title font size for large screens */
    }

    .details-description {
        font-size: 1.1rem;
        /* Larger description font size for large screens */
    }

    .details-subtitle {
        font-size: 1rem;
        /* Larger subtitle font size for large screens */
    }

    .details-right-side {
        max-width: 800px;
        /* Increase max-width for larger screens */
    }

    .details-main-image {
        width: 85%;
        /* Adjust image size for better fit on large screens */
        height: auto;
        /* Maintain aspect ratio */
    }
}

/* Responsive Adjustments for 2000x1600 screens */
@media (min-width: 2000px) {


    /* Overlay Image */
    .details-overlay-image {
        position: absolute;
        z-index: 2;
        border-radius: 15px;
        /* Rounded corners for the overlay images */
    }

    .details-top-right {
        top: 15%;
        /* Slightly adjusted position */
        right: 65%;
        /* Slightly adjusted position */
        width: 40%;
        /* Increased size for the top-right image */
        height: 30%;
        object-fit: cover;
    }

    .details-bottom-left {
        bottom: 6%;
        /* Slightly adjusted position */
        left: 55%;
        /* Slightly adjusted position */
        width: 40%;
        /* Increased size for the bottom-left image */
        height: 30%;
        object-fit: cover;
    }

    .details-container {
        padding: 3rem;
        /* Increase padding for even larger screens */
    }

    .details-left-side,
    .details-right-side {
        padding: 2.5rem;
        /* Increase padding for larger screens */
        /* right: -190px; */
        top: 10px;
    }

    .details-title {
        font-size: 3.5rem;
        /* Larger title font size for extra-large screens */
        margin-bottom: 50px;

    }

    .details-description {
        font-size: 1.2rem;
        /* Larger description font size for extra-large screens */
    }

    .details-subtitle {
        font-size: 1.7rem;
        /* Larger subtitle font size for extra-large screens */
        margin-top: 50px;
        color: black;
        margin-bottom: 50px;
        text-align: justify;


    }

    .details-right-side {
        max-width: 900px;
        /* Further increase max-width for extra-large screens */
    }

    .details-main-image {
        width: 85%;
        /* Adjust image size for better fit on extra-large screens */
        height: 85%;
        /* Maintain aspect ratio */

    }

    .details-export-button {
        align-self: flex-start;
        padding: 1rem 3rem;
        background-color: #15B9D9;
        color: white;
        border: none;
        font-weight: bold;
        border-radius: 20px;
        cursor: pointer;
        margin-top: 1rem;
        font-size: 30px;
    }

    .details-small {
        width: 90%;
        /* Increased size for the small overlay */
        height: 79%;
        background-color: rgba(128, 207, 241, 0.3);
        /* Light Blue */
    }

    .details-medium {
        width: 90%;
        /* Increased size for the medium overlay */
        height: 89%;
        background-color: rgba(168, 209, 246, 0.3);
        /* Medium Blue */
    }

    .details-large {
        width: 90%;
        /* Increased size for the large overlay */
        height: 99%;
        background-color: rgba(128, 207, 241, 0.3);
        /* Dark Blue */
    }
}

/* Details6 Container */
.details6-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping for smaller screens */
    height: auto;
    /* Flexible height */
    width: 100%;
    /* Full width for responsiveness */
    align-items: stretch;
    /* Stretch items to fill container height */
}

/* Left Side (Text) */
.details6-left-side {
    flex: 1;
    margin-top: 20px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Align text in a column */
    justify-content: flex-start;
    /* Align text to the start */
    padding: 2rem;
    background-color: white;
    max-width: 650px;
    /* Maximum width for the text section */
    width: 100%;
    /* Full width on smaller screens */
}

/* Right Side (Image) */
.details6-right-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* Full width on smaller screens */
    padding: 1rem;
    /* Padding for spacing */
}

/* Image Container */
.details6-image-container {
    position: relative;
    width: 100%;
    /* Container size for the image */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* Rounded corners for the container */
    overflow: hidden;
    /* Ensure the image doesn't overflow */
}

/* Main Image */
.details6-main-image {
    width: 80%;
    /* Main image size */
    height: auto;
    position: relative;
    z-index: 1;
    border-radius: 15px;
    /* Rounded corners for the image */
}

/* Overlay Styles */
.details6-overlay {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 100px;
    /* Rounded corners for the overlay */
}

.details6-small {
    width: 88%;
    /* Size for the small overlay */
    height: 60%;
    background-color: rgba(128, 207, 241, 0.3);
    /* Light Blue */
}

.details6-medium {
    width: 88%;
    /* Size for the medium overlay */
    height: 65%;
    background-color: rgba(168, 209, 246, 0.3);
    /* Medium Blue */
}

.details6-large {
    width: 88%;
    /* Size for the large overlay */
    height: 75%;
    background-color: rgba(128, 207, 241, 0.3);
    /* Dark Blue */
}

/* Overlay Image */
.details6-overlay-image {
    position: absolute;
    z-index: 2;
    border-radius: 15px;
    /* Rounded corners for the overlay images */
}

.details6-top-right {
    top: 15%;
    /* Adjusted position */
    right: 5%;
    /* Adjusted position */
    width: 40%;
    /* Size for the top-right image */
    height: 30%;
    object-fit: cover;
}

.details6-bottom-left {
    bottom: 6%;
    /* Adjusted position */
    left: -5%;
    /* Adjusted position */
    width: 40%;
    /* Size for the bottom-left image */
    height: 30%;
    object-fit: cover;
}

/* Title */
.details6-title {
    font-size: 2.1rem;
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: left;
    /* Align text to the left */
    font-weight: 900;
}

/* Subtitle */
.details6-subtitle {
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: left;
    /* Align text to the left */
}

/* Export Button */
.details6-export-button {
    align-self: flex-start;
    padding: 0.5rem 2rem;
    background-color: #15B9D9;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
    /* Add margin for spacing */
}

.details6-export-button:hover {
    background-color: rgb(0, 0, 0);
}



@media (max-width: 576px) {
    .details6-title {
        font-size: 1.3rem;
        font-weight: bold;
        text-align: center;
        margin-bottom: 25px;
    }

    .details6-subtitle {
        font-size: 0.8rem;
        /* Further reduce subtitle font size for mobile */
    }

    .details6-export-button {
        padding: 0.5rem 1.5rem;
        /* Adjust button padding for mobile */
        border-radius: 10px;
        /* Smaller border radius for mobile */
    }
}

/* Large Screen Adjustments */
@media (min-width: 1900px) and (max-width: 2000px) {

    .details6-left-side,
    .details6-right-side {
        padding: 2rem;
        /* Increase padding for better spacing */
    }

    .details6-title {
        font-size: 3rem;
        /* Larger title font size for large screens */
    }

    .details6-subtitle {
        font-size: 1rem;
        /* Larger subtitle font size for large screens */
    }

    .details6-left-side {
        max-width: 800px;
        /* Increase max-width for larger screens */
    }
}

@media (min-width: 2000px) {
    .details6-container {
        padding: 3rem;
        /* Increase padding for even larger screens */
        margin-left: 50px
    }

    .details6-main-image {
        width: 85%;
        /* Main image size */
        height: 88%;
        position: relative;
        z-index: 1;
        border-radius: 15px;
        /* Rounded corners for the image */
    }

    .details6-small {
        width: 90%;
        /* Size for the small overlay */
        height: 90%;
        background-color: rgba(128, 207, 241, 0.3);
        /* Light Blue */
    }

    .details6-medium {
        width: 90%;
        /* Size for the medium overlay */
        height: 90%;
        background-color: rgba(168, 209, 246, 0.3);
        /* Medium Blue */
    }

    .details6-large {
        width: 90%;
        /* Size for the large overlay */
        height: 100%;
        background-color: rgba(128, 207, 241, 0.3);
        /* Dark Blue */
    }

    .details6-left-side,
    .details6-right-side {
        padding: 2.5rem;
        /* Increase padding for larger screens */
        margin-right: 100px;
        height: auto;

    }


    .key-point {
        display: flex;
        /* Align icon and text */
        align-items: center;
        /* Center align icon and text vertically */
        margin-bottom: 1rem;
        /* Add margin below each key point */
        min-height: 35px;
        /* Set a minimum height to prevent icon resizing */
        color: #000;
        font-size: 22px;
        margin-bottom: 200px;
    }

    .tick-icon {
        display: inline-block;
        /* Allows for padding and borders */
        width: 25px;
        /* Set width of the icon */
        height: 25px;
        /* Set height of the icon */
        background-image: url('../image/checkmark.png');
        /* Background image for the checkmark */
        background-size: cover;
        /* Cover the entire icon area */
        background-repeat: no-repeat;
        /* Prevent background repetition */
        border-radius: 50%;
        /* Creates a circular shape */
        margin-right: 16px;
        /* Space between icon and text */
        flex-shrink: 0;
        /* Prevent icon from shrinking */
    }

    .key-point p {
        line-height: 1.5;
        /* Adjust line height for better spacing */
    }

    .details6-title {
        font-size: 3.5rem;
        /* Larger title font size for extra-large screens */
    }

    .details6-subtitle {
        font-size: 1.7rem;
        /* Larger subtitle font size for extra-large screens */
        margin-top: 50px;
        margin-bottom: 50px;
    }

    .details6-left-side {
        max-width: 900px;
        /* Further increase max-width for extra-large screens */
    }

    .details6-export-button {
        padding: 1rem 3rem;
        /* Adjust button padding */
        font-size: 30px;
        /* Increase font size for the button */
    }
}

/* Responsive Styles for Screens Less than 600px */
@media (max-width: 600px) {
    .details6-container {
        flex-direction: column;
        /* Stack items vertically */
    }

    .details6-left-side,
    .details6-right-side {
        width: 100%;
        /* Full width for both sections */
        max-width: none;
        /* Remove max-width constraint */
        padding: 1rem;
        /* Adjust padding for better fit */
        box-sizing: border-box;
        /* Include padding and border in element's total width and height */
    }

    .details6-right-side {
        order: -1;
        /* Place the image section above the text */
        margin-bottom: 1rem;
        /* Add some space below the image */
    }

    .details6-main-image {
        width: 90%;
        /* Adjust image width */
        height: auto;
        /* Maintain aspect ratio */
        margin: 0 auto;
        /* Center the image */
    }

    .details6-title {
        font-size: 1.5rem;
        /* Smaller font size for title */
        text-align: center;
        /* Center align text */
    }

    .details6-subtitle {
        font-size: 1rem;
        /* Adjust font size for subtitle */
        text-align: center;
        /* Center align text */
    }

    .details6-export-button {
        font-size: 14px;
        /* Smaller font size for button */
        padding: 0.5rem 1.5rem;
        /* Adjust button padding */
        border-radius: 10px;
        /* Smaller border radius */
        align-self: center;
        /* Center the button */
    }

    .key-point {
        font-size: 18px;
        /* Adjust font size for key points */
        margin-bottom: 1rem;
        /* Adjust spacing for key points */
    }

    .tick-icon {
        width: 20px;
        /* Adjust icon size */
        height: 20px;
        /* Adjust icon size */
        margin-right: 10px;
        /* Adjust spacing between icon and text */
    }
}


/* Details Section 5 */
.details5-container {
    display: flex;
    height: 100vh;
    width: auto;
}

.details5-left-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 600px;
    /* Adjusted maximum width */
}

.details5-image-container {
    position: relative;
    width: 100%;
    /* Container size for the image */
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    /* Reduced border radius */
    overflow: hidden;
    /* Ensure the image doesn't overflow */
}

.details5-main-image {
    width: 95%;
    /* Reduced size */
    height: 70%;
    position: relative;
    z-index: 1;
    right: -10px;
    border-radius: 10px;
    /* Reduced border radius */
}

.details5-overlay {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 100px;
    /* Adjusted border radius */
}

.details5-small {
    width: 100%;
    height: 85%;
    background-color: rgba(128, 207, 241, 0.3);
}

.details5-medium {
    width: 100%;
    height: 95%;
    background-color: rgba(168, 209, 246, 0.3);
}

.details5-large {
    width: 100%;
    height: 110%;
    background-color: rgba(128, 207, 241, 0.3);
}

.details5-overlay-image {
    position: absolute;
    z-index: 2;
    border-radius: 10px;
    /* Adjusted border radius */
}

.details5-top-right {
    top: 10%;
    right: 5%;
    width: 35%;
    height: 25%;
    object-fit: cover;
}

.details5-bottom-left {
    bottom: 5%;
    left: 5%;
    width: 35%;
    height: 25%;
    object-fit: cover;
}

.details5-right-side {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 1.5rem;
    /* Reduced padding */
    background-color: white;
    max-width: 600px;
    /* Adjusted maximum width */
}

.details5-software-service {
    display: inline-block;
    background-color: rgba(240, 240, 240, 0.281);
    padding: 5px 10px;
    /* Adjusted padding */
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: orange;
    font-family: Arial, sans-serif;
    text-align: left;
}

.details5-title {
    font-size: 2rem;
    /* Reduced font size */
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: left;
    font-weight: 900;
}

.details5-subtitle {
    font-size: 0.9rem;
    /* Reduced font size */
    margin-bottom: 1rem;
    text-align: left;
}

.details5-export-button {
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    /* Reduced padding */
    background-color: #15B9D9;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 15px;
    /* Adjusted border radius */
    cursor: pointer;
}

.details5-export-button:hover {
    background-color: rgb(0, 0, 0);
    ;
}

/* Default styles remain unchanged for larger screens */

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .details5-container {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
    }

    .details5-left-side {
        width: 100%;
        /* Full width for the image section */
        padding: 1rem;
        /* Padding for spacing */
        order: -1;
        /* Move the image section to the top */
    }

    .details5-right-side {
        width: 100%;
        /* Full width for the text section */
        padding: 1rem;
        /* Padding for spacing */
    }

    .details5-title {
        font-size: 1.8rem;
        /* Slightly reduce title font size for mobile screens */
    }

    .details5-subtitle {
        font-size: 0.8rem;
        /* Slightly reduce subtitle font size for mobile screens */
    }

    .details5-export-button {
        width: 100%;
        /* Make button full width on mobile */
        text-align: center;
        /* Center the text in the button */
    }
}

@media (max-width: 576px) {
    .details5-title {
        font-size: 1.5rem;
        /* Further reduce title font size for mobile screens */
    }

    .details5-subtitle {
        font-size: 0.75rem;
        /* Further reduce subtitle font size for mobile screens */
    }

    .details5-export-button {
        padding: 0.5rem 1rem;
        /* Adjust button padding for mobile */
        border-radius: 10px;
        /* Smaller border radius for mobile */
    }
}





.details3-container {
    display: flex;
    flex-wrap: wrap;
    /* Allow wrapping to accommodate smaller screens */
    height: auto;
    /* Remove fixed height to allow flexible height */
    width: 100%;
    /* Full width for better responsiveness */
    align-items: stretch;
    /* Stretch children to fill the container height */
}

.details3-left-side {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    background-color: white;
    max-width: 650px;
    /* Maximum width of the section */
    margin: 0;
    /* Remove auto margin to keep it left-aligned */
}

.details3-right-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    /* Maximum width of the section */
}

.details3-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.details3-main-image {
    width: 100%;
    height: 90%;
    position: relative;
    z-index: 1;
    border-radius: 15px;

}

.details3-overlay {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 110px;
}

.details3-small {
    width: 100%;
    height: 75%;
    background-color: rgba(128, 207, 241, 0.3);
}

.details3-medium {
    width: 100%;
    height: 90%;
    background-color: rgba(168, 209, 246, 0.3);
}

.details3-large {
    width: 100%;
    height: 100%;
    background-color: rgba(128, 207, 241, 0.3);
}

.details3-overlay-image {
    position: absolute;
    z-index: 2;
    border-radius: 15px;
}

.details3-top-right {
    top: 15%;
    right: 5%;
    width: 40%;
    height: 30%;
    object-fit: cover;
}

.details3-bottom-left {
    bottom: 6%;
    left: 5%;
    width: 40%;
    height: 30%;
    object-fit: cover;
}

.details3-software-service {
    display: inline-block;
    background-color: rgba(240, 240, 240, 0.281);
    padding: 7px 12px;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: orange;
    font-family: Arial, sans-serif;
    text-align: left;
}

.details3-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: left;
    font-weight: 900;
}

.details3-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.details3-export-button {
    align-self: flex-start;
    padding: 0.5rem 2rem;
    background-color: #15B9D9;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
}

.details3-export-button:hover {
    background-color: rgb(0, 0, 0);
    ;
}

/* Default styles remain unchanged for larger screens */

/* Responsive Adjustments for Smaller Screens */


@media (max-width: 576px) {
    .details3-title {
        text-align: center;
        font-size: 1.5rem;
        /* Further reduce title font size for smaller mobile screens */
    }

    .details3-subtitle {
        font-size: 0.7rem;
        /* Further reduce subtitle font size for smaller mobile screens */
    }

    .details3-export-button {
        padding: 0.5rem 1rem;
        /* Adjust button padding for mobile */
        border-radius: 10px;
        /* Smaller border radius for mobile */
    }
}


.key-point {
    display: flex;
    /* Align icon and text */
    align-items: center;
    /* Center align icon and text vertically */
    margin-bottom: 1rem;
    /* Add margin below each key point */
    min-height: 35px;
    /* Set a minimum height to prevent icon resizing */
    color: #000;
}

.tick-icon {
    display: inline-block;
    /* Allows for padding and borders */
    width: 25px;
    /* Set width of the icon */
    height: 25px;
    /* Set height of the icon */
    background-image: url('../image/checkmark.png');
    /* Background image for the checkmark */
    background-size: cover;
    /* Cover the entire icon area */
    background-repeat: no-repeat;
    /* Prevent background repetition */
    border-radius: 50%;
    /* Creates a circular shape */
    margin-right: 16px;
    /* Space between icon and text */
    flex-shrink: 0;
    /* Prevent icon from shrinking */
}

.key-point p {
    line-height: 1.5;
    /* Adjust line height for better spacing */
}

/* Styles for screen width between 1600px and 2000px */
@media (max-width: 2000px) and (min-width: 1600px) {


    .details5-small {
        width: 90%;
        height: 50%;
        background-color: rgba(128, 207, 241, 0.3);
    }

    .details5-medium {
        width: 90%;
        height: 60%;
        background-color: rgba(168, 209, 246, 0.3);
    }

    .details5-large {
        width: 90%;
        height: 70%;
        background-color: rgba(128, 207, 241, 0.3);
    }

    .details3-top-right {
        top: 18%;
        left: 60%;
        width: 40%;
        height: 30%;
        object-fit: cover;
    }

    .details3-bottom-left {
        bottom: -12%;
        left: -4%;
        width: 40%;
        height: 30%;
        object-fit: cover;
    }

    .details3-small {
        width: 90%;
        /* Increase width for larger screens */
        height: 75%;
        /* Increase height for larger screens */
        background-color: #02111423
            /* Retain the background color */
    }

    .details3-medium {
        width: 90%;
        /* Increase width for larger screens */
        height: 90%;
        /* Increase height for larger screens */
        background-color: #04abd023
            /* Retain the background color */
    }

    .details3-large {
        width: 90%;
        /* Increase width for larger screens */
        height: 100%;
        /* Increase height for larger screens */
        background-color: #04abd023
            /* Retain the background color */
    }


    .key-point {
        margin-bottom: 1.5rem;
        /* Increase margin for larger screens */
        min-height: 40px;
        /* Increase minimum height */
        font-size: 30px;
        color: #000;
        margin-top: 2.5rem;
    }

    .tick-icon {
        width: 35px;
        /* Increase icon width */
        height: 35px;
        /* Increase icon height */
        margin-right: 20px;
        /* Increase space between icon and text */
    }

    .key-point p {
        line-height: 1.6;
        /* Increase line height for better readability */
    }

    /* General Adjustments for all details sections */
    .details-title,
    .details5-title,
    .details3-title {
        font-size: 4.5rem;
        /* Adjust font size */
    }

    .details-subtitle,
    .details5-subtitle,
    .details3-subtitle {
        font-size: 1.5rem;
        /* Adjust subtitle font size */
    }

    .details-description,
    .details5-description,
    .details3-description {
        font-size: 5rem;
        /* Adjust description font size */
    }

    .details-export-button,
    .details5-export-button,
    .details3-export-button {
        padding: 0.75rem 2rem;
        /* Adjust button padding */
        font-size: 2rem;
        /* Adjust button font size */
    }

    .details-container,
    .details5-container,
    .details3-container {
        padding: 2rem;
        /* Add padding for larger screens */
        padding-top: 35px;
    }

    .details-right-side,
    .details5-right-side,
    .details3-left-side,
    .details3-right-side {
        max-width: 50%
            /* Increase max width for larger screens */
    }

    .details-main-image,
    .details5-main-image,
    .details3-main-image {
        width: 80%;
        /* Increase image width */
        height: 80%;
        /* Maintain aspect ratio */
        bottom: -70px;
    }

    .details-overlay,
    .details5-overlay,
    .details3-overlay {
        border-radius: 230px;
        /* Adjust overlay border radius */
        margin-top: 50px;
        margin-bottom: 60px;
    }


    .details-overlay-image,
    .details5-overlay-image,
    .details3-overlay-image {
        width: auto;
        /* Adjust overlay image size */
        height: auto;
        /* Adjust overlay image size */
        bottom: -110px;
    }

    .details-software-service,
    .details5-software-service,
    .details3-software-service {
        font-size: 0.9rem;
        /* Adjust font size for services */
    }

    .details3-image-container {
        position: relative;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        overflow: hidden;
        margin-bottom: 20px;
        /* margin-top: -80%; */
    }
}

/* Styles for screen width between 900px and 1900px */
@media (max-width: 1900px) and (min-width: 900px) {

    /* General Adjustments for all details sections */
    .details-title,
    .details5-title,
    .details3-title {
        font-size: 2.2rem;
        /* Adjust font size */
    }

    .details-subtitle,
    .details5-subtitle,
    .details3-subtitle {
        font-size: 0.9rem;
        /* Adjust subtitle font size */
    }

    .details-description,
    .details5-description,
    .details3-description {
        font-size: 0.9rem;
        /* Adjust description font size */
    }

    .details-export-button,
    .details5-export-button,
    .details3-export-button {
        padding: 0.5rem 1.5rem;
        /* Adjust button padding */
        font-size: 0.9rem;
        /* Adjust button font size */
    }

    .details-container,
    .details5-container,
    .details3-container {
        padding: 1.5rem;
        /* Add padding for medium screens */
        margin-bottom: 50px;

    }

    .details-right-side,
    .details5-right-side,
    .details3-left-side,
    .details3-right-side {
        max-width: 600px;
        /* Adjust max width for medium screens */
    }

    .details-main-image,
    .details5-main-image,
    .details3-main-image {
        width: 90%;
        /* Adjust image width */
        height: 80%;
        /* Maintain aspect ratio */
    }

    .details-overlay,
    .details5-overlay,
    .details3-overlay {
        border-radius: 110px;
        /* Adjust overlay border radius */
    }

    .details-small,
    .details5-small,
    .details3-small,
    .details-medium,
    .details5-medium,
    .details3-medium,
    .details-large,
    .details5-large,
    .details3-large {
        background-color: rgba(128, 207, 241, 0.3);
        /* Consistent background color */
    }

    .details-overlay-image,
    .details5-overlay-image,
    .details3-overlay-image {
        width: 40%;
        /* Adjust overlay image size */
        height: 30%;
        /* Adjust overlay image size */
    }

    .details-software-service,
    .details5-software-service,
    .details3-software-service {
        font-size: 0.8rem;
        /* Adjust font size for services */
    }

}

/* General Container Styles for Details 2 */
.details2-container {
    display: flex;
    height: 100vh;
    width: auto;
}

/* Styles for the left side (Images Section) */
.details2-left-side {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 650px;
    /* Maximum width of the section */
}

.details2-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 15px;
    overflow: hidden;
}

.details2-main-image {
    width: 80%;
    height: 55%;
    position: relative;
    z-index: 1;
    border-radius: 15px;
}

.details2-overlay {
    position: absolute;
    top: 50%;
    bottom: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 0;
    border-radius: 110px;
}

.details2-small {
    width: 75%;
    height: 65%;
    background-color: rgba(128, 207, 241, 0.3);
}

.details2-medium {
    width: 85%;
    height: 75%;
    background-color: rgba(168, 209, 246, 0.3);
}

.details2-large {
    width: 90%;
    height: 80%;
    background-color: rgba(128, 207, 241, 0.3);
}

.details2-overlay-image {
    position: absolute;
    z-index: 2;
    border-radius: 15px;
}

.details2-top-right {
    top: 15%;
    right: 5%;
    width: 40%;
    height: 30%;
    object-fit: cover;
}

.details2-bottom-left {
    bottom: 6%;
    left: 5%;
    width: 40%;
    height: 30%;
    object-fit: cover;
}

/* Styles for the right side (Text Section) */
.details2-right-side {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2rem;
    background-color: white;
    max-width: 650px;
    /* Maximum width of the section */
    margin: 0;
    /* Remove auto margin to keep it right-aligned */
}

.details2-software-service {
    display: inline-block;
    background-color: rgba(240, 240, 240, 0.281);
    padding: 7px 12px;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: orange;
    font-family: Arial, sans-serif;
    text-align: left;
}

.details2-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    color: #000000;
    text-align: left;
    font-weight: 900;
}

.details2-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1rem;
    text-align: left;
}

.details2-export-button {
    align-self: flex-start;
    padding: 0.5rem 2rem;
    background-color: #15B9D9;
    color: white;
    border: none;
    font-weight: bold;
    border-radius: 20px;
    cursor: pointer;
    margin-top: 1rem;
}

.details2-export-button:hover {
    background-color: rgb(0, 0, 0);
}

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .details2-container {
        flex-direction: column;
        /* Stack items vertically on smaller screens */
    }

    .details2-left-side {
        width: 100%;
        /* Full width for the image section */
        padding: 1rem;
        /* Padding for spacing */
        order: -1;
        /* Move the image section to the top */
    }

    .details2-right-side {
        width: 100%;
        /* Full width for the text section */
        padding: 1rem;
        /* Padding for spacing */
    }

    .details2-title {
        font-size: 1.8rem;
        /* Slightly reduce title font size for mobile screens */
    }

    .details2-subtitle {
        font-size: 0.75rem;
        color: #000;
        /* Slightly reduce subtitle font size for mobile screens */
    }

    .details2-export-button {
        width: 100%;
        /* Make button full width on mobile */
        text-align: center;
        /* Center the text in the button */
    }
}

@media (max-width: 576px) {
    .details2-title {
        font-size: 1.5rem;
        /* Further reduce title font size for smaller mobile screens */
    }

    .details2-subtitle {
        font-size: 0.7rem;
        /* Further reduce subtitle font size for smaller mobile screens */
    }

    .details2-export-button {
        padding: 0.5rem 1rem;
        /* Adjust button padding for mobile */
        border-radius: 10px;
        /* Smaller border radius for mobile */
    }
}

/* Styles for screen width between 1600px and 2000px */
@media (max-width: 2000px) and (min-width: 1600px) {

    /* Overlay Image */
    .details-overlay-image {
        position: absolute;
        z-index: 2;
        border-radius: 15px;
        /* Rounded corners for the overlay images */
    }

    .details-top-right {
        top: 15%;
        /* Slightly adjusted position */
        right: -5%;
        /* Slightly adjusted position */
        width: 40%;
        /* Increased size for the top-right image */
        height: 30%;
        object-fit: cover;
    }

    .details-bottom-left {
        bottom: -6%;
        /* Slightly adjusted position */
        left: -5%;
        /* Slightly adjusted position */
        width: 40%;
        /* Increased size for the bottom-left image */
        height: 30%;
        object-fit: cover;
    }

    .details2-top-right {
        top: 28%;
        left: 60%;
        width: 40%;
        height: 30%;
        object-fit: cover;
    }

    .details2-bottom-left {
        bottom: 22%;
        left: 5%;
        width: 40%;
        height: 30%;
        object-fit: cover;
    }

    .details2-small {
        width: 88%;
        /* Increase width for larger screens */
        height: 33%;
        /* Increase height for larger screens */
        background-color: #04abd023;
        /* Retain the background color */
    }

    .details2-medium {
        width: 88%;
        /* Increase width for larger screens */
        height: 37%;
        /* Increase height for larger screens */
        background-color: #04abd023;
        /* Retain the background color */
    }

    .details2-large {
        width: 88%;
        /* Increase width for larger screens */
        height: 42%;
        /* Increase height for larger screens */
        background-color: #04abd023;
        /* Retain the background color */
    }

    .key-point {
        margin-bottom: 1.5rem;
        /* Increase margin for larger screens */
        min-height: 40px;
        /* Increase minimum height */
        font-size: 30px;
        color: #000;
        margin-top: 2.5rem;
    }

    .tick-icon {
        width: 35px;
        /* Increase icon width */
        height: 35px;
        /* Increase icon height */
        margin-right: 20px;
        /* Increase space between icon and text */
    }

    .key-point p {
        line-height: 1.6;
        /* Increase line height for better readability */
    }

    /* General Adjustments for all details sections */
    .details-title,
    .details5-title,
    .details2-title {
        font-size: 4.5rem;
        /* Adjust font size */
    }

    .details-subtitle,
    .details5-subtitle,
    .details2-subtitle {
        font-size: 1.5rem;
        /* Adjust subtitle font size */
    }

    .details-description,
    .details5-description,
    .details2-description {
        font-size: 5rem;
        /* Adjust description font size */
    }

    .details-export-button,
    .details5-export-button,
    .details2-export-button {
        padding: 0.75rem 2rem;
        /* Adjust button padding */
        font-size: 2rem;
        /* Adjust button font size */
    }

    .details-container,
    .details5-container,
    .details2-container {
        padding: 2rem;
        /* Add padding for larger screens */
    }

    .details-right-side,
    .details5-right-side,
    .details2-right-side,
    .details2-left-side {
        max-width: 50%;
        /* Increase max width for larger screens */
        margin-left: 40px;
    }

    .details5-main-image,
    .details2-main-image {
        width: 100%;
        /* Increase image width */
        height: 80%;
        /* Maintain aspect ratio */
    }

    .details5-main-image {
        width: 100%;
        /* Increase image width */
        height: 90%;
        /* Maintain aspect ratio */
    }

    .details-overlay,
    .details5-overlay,
    .details2-overlay {
        border-radius: 230px;
        /* Adjust overlay border radius */
        margin-top: 50px;
    }


    .details-overlay-image,
    .details5-overlay-image,
    .details2-overlay-image {
        width: auto;
        /* Adjust overlay image size */
        height: auto;
        /* Adjust overlay image size */
    }

    .details5-overlay-image {
        width: auto;
        /* Adjust overlay image size */
        height: auto;
        /* Adjust overlay image size */
    }

    .details-software-service,
    .details5-software-service,
    .details2-software-service {
        font-size: 0.9rem;
        /* Adjust font size for services */
    }

    .details2-image-container {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 15px;
        overflow: hidden;
        /* margin-top: -80%; */
    }
}

/* Styles for screen width between 900px and 1900px */
@media (max-width: 1900px) and (min-width: 900px) {

    /* General Adjustments for all details sections */
    .details-title,
    .details5-title,
    .details2-title {
        font-size: 2.2rem;
        /* Adjust font size */
    }

    .details-subtitle,
    .details5-subtitle,
    .details2-subtitle {
        font-size: 0.9rem;
        /* Adjust subtitle font size */
    }

    .details-description,
    .details5-description,
    .details2-description {
        font-size: 0.9rem;
        /* Adjust description font size */
    }

    .details-export-button,
    .details5-export-button,
    .details2-export-button {
        padding: 0.5rem 1.5rem;
        /* Adjust button padding */
        font-size: 0.9rem;
        /* Adjust button font size */
    }

    .details-container,
    .details5-container,
    .details2-container {
        padding: 1.5rem;
        /* Add padding for medium screens */
    }

    .details-right-side,
    .details5-right-side,
    .details2-right-side,
    .details2-left-side {
        max-width: 600px;
        /* Adjust max width for medium screens */
    }

    .details-main-image,
    .details2-main-image {
        width: 80%;
        /* Adjust image width */
        height: auto;
        /* Maintain aspect ratio */
    }

    .details5-main-image {
        width: 90%;
        /* Adjust image width */
        height: 90%;
        /* Maintain aspect ratio */
        left: 7px;
        /* top: -50px;
        margin-top: -20px; */
    }

    .details-overlay,
    .details5-overlay,
    .details2-overlay {
        border-radius: 110px;
        /* Adjust overlay border radius */
    }

    .details-small,
    .details5-small,
    .details2-small,
    .details-medium,
    .details5-medium,
    .details2-medium,
    .details-large,
    .details5-large,
    .details2-large {
        background-color: rgba(128, 207, 241, 0.3);
        /* Consistent background color */
    }

    .details-overlay-image,
    .details5-overlay-image,
    .details2-overlay-image {
        width: 40%;
        /* Adjust overlay image size */
        height: 30%;
        /* Adjust overlay image size */
    }

    .details-software-service,
    .details5-software-service,
    .details2-software-service {
        font-size: 0.8rem;
        /* Adjust font size for services */
    }
}

/* laptop */

.custom-container {
    width: 100%;
    max-width: 1440px;
    margin-top: 5%;
    margin: auto;
    padding: 20px;
    text-align: center;
}

.custom-text-section {
    margin-bottom: 20px;
}

.custom-subtitle {
    color: #FF6347;
    font-size: 18px;
    margin-bottom: 10px;
}

.custom-title {
    color: #000;
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 15px;
    font-family: Arial, Helvetica, sans-serif;
}

.custom-description {
    color: #555;
    font-size: 14px;
    margin-bottom: 80px;
}

.custom-image-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.custom-laptop-image {
    position: relative;
    width: 90%;
    max-width: 1440px;
}

.custom-screen-image {
    position: absolute;
    top: -5%;
    /* Adjust to fit the screen image perfectly inside the laptop */
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    /* Adjust this value to ensure the screen fits properly */
    height: 110%;
}

.custom-main-image {
    position: relative;
    width: 65%;
    top: 40%;
}

.custom-laptop-base {
    position: absolute;
    bottom: -8%;
    /* Position the base correctly relative to the screen */
    left: 50%;
    transform: translateX(-50%);
    width: 85%;
    /* Adjust width to fit the design */
}

.custom-right-top-overlay {
    position: absolute;
    position: absolute;
    right: 10%;
    width: 150px;


}

.custom-left-top-overlay {
    position: absolute;
    top: -5%;
    left: 9%;
    width: 220px;
}

.custom-left-bottom-overlay {
    position: absolute;
    bottom: -5%;
    left: 7%;
    width: 270px;
}



/* Default styles for larger screens remain unchanged */

/* Responsive Adjustments for Smaller Screens */
@media (max-width: 768px) {
    .custom-container {
        display: flex;
        flex-direction: column;
        /* Stack elements vertically */
        align-items: center;
        /* Center elements in the container */
    }

    .custom-image-section {
        order: -1;
        /* Move the image section to the top */
        width: 100%;
        /* Full width for the image section */
        padding-bottom: 20px;
        /* Add some spacing below the image */
        /* padding-top: 15%; */
    }

    .custom-text-section {
        width: 100%;
        /* Full width for the text section */
        padding: 0 10px;
        /* Add padding for spacing */
    }

    .custom-title {
        font-size: 28px;
        /* Reduce font size for smaller screens */
        margin-bottom: 10px;
        /* Reduce margin */
    }

    .custom-subtitle {
        font-size: 16px;
        /* Reduce font size for smaller screens */
        margin-bottom: 8px;
        /* Adjust margin for better spacing */
    }

    .custom-description {
        font-size: 13px;
        /* Slightly reduce font size for better readability */
        margin-bottom: 40px;
        /* Reduce bottom margin */
    }

    .custom-laptop-image,
    .custom-screen-image,
    .custom-main-image,
    .custom-laptop-base,
    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 80%;
        /* Scale down images for mobile */
    }

    /* Adjust the size and position of overlays */
    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 150px;
        /* Reduce size for mobile screens */
    }

    .custom-right-top-overlay {
        top: 0;
        /* Adjust top position */
        right: 5%;
        /* Adjust right position */
    }

    .custom-left-top-overlay {
        top: 0;
        /* Adjust top position */
        left: 5%;
        /* Adjust left position */
    }

    .custom-left-bottom-overlay {
        bottom: 0;
        /* Adjust bottom position */
        left: 5%;
        /* Adjust left position */
    }
}

@media (max-width: 576px) {
    .custom-title {
        font-size: 24px;
        /* Further reduce font size for smaller screens */
    }

    .custom-subtitle {
        font-size: 14px;
        /* Further reduce font size for smaller screens */
    }

    .custom-description {
        font-size: 12px;
        /* Further reduce font size for smaller screens */
    }

    .custom-laptop-image,
    .custom-main-image {
        margin-bottom: 5%;
        width: 85%;
        /* Scale down images even more for very small screens */
    }

    .custom-laptop-base {
        margin-top: 100%;

    }

    .custom-screen-image {
        width: 90%;
    }

    .custom-laptop-base {

        width: 95%;
        /* Scale down images even more for very small screens */
    }

    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 100px;
        /* Further reduce size for very small screens */
    }
}

/* Adjustments for Screens Larger than 1440px */
@media (min-width: 1441px) {
    .custom-container {
        padding: 40px;
        /* Increase padding for larger screens */
        max-width: 1800px;
        /* Allow a larger maximum width */
    }

    .custom-title {
        font-size: 48px;
        /* Increase font size for larger screens */
        margin-bottom: 20px;
        /* Increase margin for better spacing */
    }

    .custom-subtitle {
        font-size: 22px;
        /* Increase font size for subtitles */
        margin-bottom: 15px;
        /* Adjust margin for better spacing */
    }

    .custom-description {
        font-size: 18px;
        /* Increase font size for descriptions */
        margin-bottom: 100px;
        /* Increase bottom margin */
    }

    .custom-laptop-image {
        width: 95%;
        /* Increase the size of the laptop image */
        max-width: 1600px;
        /* Allow a larger max width for the laptop image */
    }

    .custom-screen-image {
        width: 80%;
        /* Adjust the screen width */
        height: 120%;
        /* Increase the height for better fit */
        top: -8%;
        /* Adjust top position */
    }

    .custom-main-image {
        width: 75%;
        /* Increase the main image size */
        top: 35%;
        /* Adjust top position */
    }

    .custom-laptop-base {
        width: 90%;
        /* Increase the base width */
        bottom: -15%;
        /* Adjust bottom position */
    }

    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 350px;
        /* Increase overlay sizes for larger screens */
    }

    .custom-right-top-overlay {
        top: -8%;
        /* Adjust top position */
        right: -2%;
        /* Adjust right position */
    }

    .custom-left-top-overlay {
        top: -7%;
        /* Adjust top position */
        left: 7%;
        /* Adjust left position */
    }

    .custom-left-bottom-overlay {
        bottom: -7%;
        /* Adjust bottom position */
        left: 5%;
        /* Adjust left position */
    }
}

/* Further Adjustments for Extra Large Screens */
@media (min-width: 1920px) {
    .custom-title {
        font-size: 56px;
        /* Further increase font size for very large screens */
        margin-bottom: 25px;
        /* Increase margin for better spacing */
    }

    .custom-subtitle {
        font-size: 26px;
        /* Further increase font size for subtitles */
        margin-bottom: 20px;
        /* Adjust margin for better spacing */
    }

    .custom-description {
        font-size: 20px;
        /* Further increase font size for descriptions */
        margin-bottom: 120px;
        /* Increase bottom margin */
    }

    .custom-laptop-image {
        width: 100%;
        /* Maximize the size of the laptop image */
        max-width: 1800px;
        /* Allow a larger max width for the laptop image */
    }

    .custom-screen-image {
        width: 85%;
        /* Further adjust the screen width */
        height: 130%;
        /* Increase the height for better fit */
        top: -10%;
        /* Adjust top position */
    }

    .custom-main-image {
        width: 80%;
        /* Further increase the main image size */
        top: 30%;
        /* Adjust top position */
    }

    .custom-laptop-base {
        width: 95%;
        /* Further increase the base width */
        bottom: -12%;
        /* Adjust bottom position */
    }

    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 400px;
        /* Further increase overlay sizes for very large screens */
    }

    .custom-right-top-overlay {
        top: -10%;
        /* Adjust top position */
        right: -4%;
        /* Adjust right position */
    }

    .custom-left-top-overlay {
        top: -9%;
        /* Adjust top position */
        left: 5%;
        /* Adjust left position */
    }

    .custom-left-bottom-overlay {
        bottom: -9%;
        /* Adjust bottom position */
        left: 3%;
        /* Adjust left position */
    }
}

/* Adjustments for Screens Larger than 1600px */
@media (min-width: 1600px) and (max-width: 1920px) {
    .custom-container {
        padding: 50px;
        /* Increase padding for very large screens */
        max-width: 2000px;
        /* Allow an even larger maximum width */
    }

    .custom-title {
        font-size: 60px;
        /* Further increase font size */
        margin-bottom: 30px;
        /* Increase margin for better spacing */
    }

    .custom-subtitle {
        font-size: 28px;
        /* Increase font size */
        margin-bottom: 25px;
        /* Adjust margin for better spacing */
    }

    .custom-description {
        font-size: 22px;
        /* Increase font size */
        margin-bottom: 140px;
        /* Increase bottom margin */
    }

    .custom-laptop-image {
        width: 100%;
        /* Maximize the size of the laptop image */
        max-width: 2000px;
        /* Allow a larger max width */
    }

    .custom-screen-image {
        width: 90%;
        /* Increase width */
        height: 120%;
        /* Increase height for better fit */
        top: -12%;
        /* Adjust top position */
    }

    .custom-main-image {
        width: 85%;
        /* Increase the size */
        height: 70%;
        top: 75%;
        /* Adjust top position */
    }

    .custom-laptop-base {
        width: 98%;
        /* Further increase width */
    }

    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 450px;
        /* Further increase overlay sizes */
    }

    .custom-right-top-overlay {
        top: 12%;
        /* Adjust top position */
        right: -6%;
        /* Adjust right position */
    }

    .custom-left-top-overlay {
        left: 3%;
        /* Adjust left position */
    }

    .custom-left-bottom-overlay {
        bottom: -10%;
        /* Adjust bottom position */
        left: 2%;
        /* Adjust left position */
    }
}

/* Adjustments for Screens Larger than 1920px */
@media (min-width: 1920px) and (max-width: 2400px) {
    .custom-container {
        padding: 60px;
        /* Increase padding for very large screens */
        max-width: 2500px;
        /* Allow a larger maximum width */
    }

    .custom-title {
        font-size: 70px;
        /* Further increase font size */
        margin-bottom: 55px;
        /* Increase margin for better spacing */
    }

    .custom-subtitle {
        font-size: 32px;
        /* Increase font size */
    }

    .custom-description {
        font-size: 26px;
        /* Increase font size */
        margin-bottom: 250px;
        /* Increase bottom margin */
    }

    .custom-laptop-image {
        width: 100%;
        /* Maximize the size of the laptop image */
        max-width: 2500px;
        /* Allow a larger max width */
    }

    .custom-screen-image {
        width: 95%;
        /* Increase width */
        height: 120%;
        /* Increase height for better fit */
    }

    .custom-main-image {
        width: 90%;
        /* Increase the size */
        top: 20%;
        /* Adjust top position */
    }

    .custom-laptop-base {
        width: 103%;
        /* Further increase width */
        bottom: -170px;
    }

    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 500px;
        /* Further increase overlay sizes */
    }

    .custom-right-top-overlay {
        top: 5%;
        /* Adjust top position */
        right: -5%;
        /* Adjust right position */
    }

    .custom-left-top-overlay {
        top: -2%;
        /* Adjust top position */
        left: -5%;
        /* Adjust left position */
    }

    .custom-left-bottom-overlay {
        bottom: -12%;
        /* Adjust bottom position */
        left: 0%;
        /* Adjust left position */
    }
}

/* Adjustments for Screens Larger than 2400px */
@media (min-width: 2400px) {
    .custom-container {
        padding: 80px;
        /* Increase padding for extremely large screens */
        max-width: 3000px;
        /* Allow an even larger maximum width */
    }

    .custom-title {
        font-size: 80px;
        /* Further increase font size */
        margin-bottom: 40px;
        /* Increase margin for better spacing */
    }

    .custom-subtitle {
        font-size: 36px;
        /* Increase font size */
        margin-bottom: 40px;
        /* Adjust margin for better spacing */
    }

    .custom-description {
        font-size: 30px;
        /* Increase font size */
        margin-bottom: 200px;
        /* Increase bottom margin */
    }

    .custom-laptop-image {
        width: 100%;
        /* Maximize the size of the laptop image */
        max-width: 3000px;
        /* Allow a larger max width */
    }

    .custom-screen-image {
        width: 70%;
        /* Increase width */
        height: 108%;
        /* Increase height for better fit */
    }

    .custom-main-image {
        width: 67%;
        bottom: 50px;
        border-radius: 20px;
    }

    .custom-laptop-base {
        width: 90%;
        /* Maximize the width */
        bottom: -1%;
        /* Adjust bottom position */
    }

    .custom-right-top-overlay,
    .custom-left-top-overlay,
    .custom-left-bottom-overlay {
        width: 600px;
        /* Increase overlay sizes */
    }

    .custom-right-top-overlay {
        top: -10%;
        /* Adjust top position */
        right: 8%;
        /* Adjust right position */
    }

    .custom-left-top-overlay {
        top: -11%;
        /* Adjust top position */
        left: 5%;
        /* Adjust left position */
    }

    .custom-left-bottom-overlay {
        bottom: 7%;
        /* Adjust bottom position */
        left: 12%;
        /* Adjust left position */
    }
}



/* Testimonial Section */
.testimonial-section {
    display: flex;
    justify-content: start;
    align-items: start;
    /* min-height: 100vh; */
    background-color: #111;
    /* Background color */
    position: relative;
    margin-top: 10%;
    flex-direction: column;
    /* Change to column on smaller screens */
}

/* Testimonial Container */
.testimonial-container {
    position: relative;
    display: flex;
    width: 100%;
    flex-direction: column;
    align-items: start;
    left: 10%;
    margin-top: 3%;
}

/* Circle Background */
.testimonial-circle {
    margin-top: 5%;
    position: absolute;
    width: 500px;
    /* Adjust the circle size */
    height: 480px;
    /* Adjust the circle size */
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1;
    /* Lower z-index than images */
}

/* Background Image inside Circle */
.testimonial-circle img {
    width: 80%;
    height: auto;
    object-fit: cover;
    margin-right: 20px;
}

/* Adjusted image positioning for circular pattern with two rows */
.img1 {
    transform: rotate(0deg) translate(150px) rotate(0deg);
}

.img2 {
    transform: rotate(72deg) translate(150px) rotate(-72deg);
}

.img3 {
    transform: rotate(144deg) translate(150px) rotate(-144deg);
}

.img4 {
    transform: rotate(216deg) translate(150px) rotate(-216deg);
}

.img5 {
    transform: rotate(288deg) translate(150px) rotate(-288deg);
}


/* Ensure images are positioned in the correct pattern */
.testimonial-images {
    position: absolute;
    margin-top: 150px;
    /* Adjust to center images vertically */
    z-index: 2;
    width: 300px;
    /* Adjust width to fit images */
    height: 280px;
    /* Adjust height to fit images */
    top: 40%;
    /* Center images vertically */
    left: 23%;
    /* Center images horizontally */
    transform: translate(-50%, -50%);
    /* Center images */
}

/* Additional adjustments for circular layout */
.testimonial-image {
    width: 150px;
    /* Adjusted size for the images */
    height: 200px;
    /* Correct size for circular images */
    border-radius: 10%;
    /* Ensure images are circular */
    position: absolute;
    object-fit: cover;
    left: 40px;
    bottom: 200px;
}

/* Testimonial Content */
.testimonial-content {
    position: relative;
    z-index: 3;
    /* Above the circle and images */
    padding: 40px;
    border-radius: 8px;
    max-width: 550px;
    left: 40%;
    text-align: left;
    /* margin-top: 70px; */
    font-family: Arial, Helvetica, sans-serif;
}

.testimonial-tag {
    padding: 3px;
    font-size: 14px;
    color: #04A9D9;
    /* Background color for the icon */
    margin-bottom: 10px;
    display: inline-block;
}

.testimonial-title {
    color: white;
    font-size: 45px;
    margin-bottom: 20px;
}

.testimonial-stars {
    color: orange;
    /* Background color for the icon */
    margin-bottom: 15px;
    margin-left: auto;
}

.testimonial-description {
    color: white;
    font-size: 18px;
    margin-bottom: 15px;
}

.testimonial-text {
    color: white;
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 30px;
    font-family: 'Roboto', sans-serif;
    /* Apply Roboto font */
}

.testimonial-author {
    display: flex;
    align-items: center;
    color: white;
    font-size: 12px;
    margin-bottom: 20px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    color: white;
    font-size: 16px;
    font-weight: bold;
}

.author-position {
    font-size: 14px;
    color: #A0A0A0;
}

/* Base Styles for .brand-logo */
.brand-logo1 {
    width: 55px;
    /* Base width for smaller screens */
    height: 45px;
    /* Base height for smaller screens */
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s;
    /* Smooth transition for hover effects */
}

/* Media Queries for Larger Screens */

/* Small Devices (up to 575px) */
@media (max-width: 575px) {
    .brand-logo1 {
        width: 45px;
        /* Slightly smaller width for small devices */
        height: 35px;
        /* Slightly smaller height */
    }
}

/* Medium Devices (576px to 991px) */
@media (min-width: 576px) and (max-width: 991px) {
    .brand-logo1 {
        width: 60px;
        /* Increase size for medium devices */
        height: 50px;
        /* Adjust height proportionally */
    }
}

/* Large Devices (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
    .brand-logo1 {
        width: 70px;
        /* Larger size for large devices */
        height: 60px;
        /* Adjust height proportionally */
    }
}

/* Extra Large Devices (1200px to 1999px) */
@media (min-width: 1200px) and (max-width: 1999px) {
    .brand-logo1 {
        width: 65px;
        /* Increase size for extra large screens */
        height: 45px;
        /* Adjust height proportionally */
        margin-left: 150px;
    }
}

/* Very Large Devices (2000px and above) */
@media (min-width: 2000px) {
    .brand-logo1 {
        width: 90px;
        /* Increase width for very large screens */
        height: 100px;
        /* Adjust height proportionally */
        margin-left: 320px;

    }
}

/* 4K Screens (2560px and above) */
@media (min-width: 2560px) {
    .brand-logo1 {
        width: 80px;
        /* Further increase width for 4K screens */
        height: 130px;
        /* Adjust height proportionally */
        margin-left: 450px;
    }
}

/* Ultrawide Screens (3840px and above) */
@media (min-width: 3840px) {
    .brand-logo1 {
        width: 150px;
        /* Increase width for ultrawide screens */
        height: 160px;
        /* Adjust height proportionally */
    }
}

/* Days Ago */
.testimonial-days {
    font-size: 14px;
    padding: 120px;
    color: white;
}

/* Navigation Buttons */
.testimonial-navigation {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.nav-button-prev {
    background: none;
    border: 1px solid #04A9D9;
    color: #04A9D0;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-button-next {
    background: #04A9D9;
    border: 1px solid #edf0f1;
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.nav-button:hover {
    background-color: #04A9D0;
    color: #b4b0b0;
}

.nav-icon {
    font-size: 18px;
}

@media (min-width: 1900px) and (min-height: 900px) {

    .testimonial-section {
        min-height: 100vh;
        padding: 3rem;
    }

    .testimonial-container {
        left: 12%;
        margin-top: 2%;
    }

    .testimonial-circle {
        width: 1000px;
        height: 1000px;
    }

    .testimonial-circle img {
        width: 100%;
        height: 100%;
    }

    .testimonial-images {
        width: 400px;
        height: 380px;
        margin-top: 150px;
        top: 40%;
        left: 25%;
    }

    .testimonial-image {
        width: 180px;
        height: 230px;
    }

    .testimonial-content {
        max-width: 1000px;
        left: 45%;
        padding: 50px;
        margin-top: 90px;
    }

    .testimonial-tag {
        font-size: 16px;
    }

    .testimonial-title {
        font-size: 65px;
    }

    .testimonial-stars {
        font-size: 22px;
    }

    .testimonial-description {
        font-size: 32px;
        font-weight: bold;
    }

    .testimonial-text {
        font-size: 29px;
        line-height: 1.6;

    }

    .author-image {
        width: 60px;
        height: 60px;
      
    }

    .author-name {
        font-size: 24px;
    }

    .author-position {
        font-size: 22px;
   
    }

    .author-position1 {
        font-size: 19px;
        color: #ffffff;
     
    }

    .testimonial-days {
        font-size: 16px;
        padding: 130px;
    }

    .nav-button-prev,
    .nav-button-next {
        padding: 8px 16px;
        font-size: 16px;
        border-radius: 25px;
    }

    .nav-icon {
        font-size: 20px;
        /* Increase icon size */
    }
}

@media (min-width: 2000px) and (min-height: 1600px) {

    /* Testimonial Section */
    .testimonial-section {
        margin-top: 5%;
        min-height: 70vh;
        /* Increase height */
        padding: 4rem;
        /* Add padding for better spacing */
    }

    /* Testimonial Container */
    .testimonial-container {
        left: 5%;
        /* Adjust alignment */
        margin-top: -5%;
        /* Reduce top margin */
    }

    /* Circle Background */
    .testimonial-circle {
        width: 1050px;
        /* Increase circle size */
        height: 1200px;
        /* Increase circle size */
    }

    /* Background Image inside Circle */
    .testimonial-circle img {
        width: 80%;
        /* Increase image size */
        height: auto;
        /* Increase image size */
    }

    /* Adjusted image positioning for circular pattern */
    .testimonial-images {
        width: 500px;
        /* Increase width */
        height: 480px;
        /* Increase height */
        margin-top: 200px;
        /* Adjust vertical position */
        top: 40%;
        /* Center images vertically */
        left: 30%;
        /* Center images horizontally */
    }

    /* Individual Testimonial Images */
    .testimonial-image {
        width: 200px;
        /* Increase image width */
        height: 250px;
        /* Increase image height */
    }

    /* Testimonial Content */
    .testimonial-content {
        max-width: 800px;
        /* Increase max width */
        left: 50%;
        /* Adjust left position */
        padding: 60px;
        /* Increase padding */
        margin-top: 100px;
        /* Adjust top margin */
    }

    .testimonial-tag {
        font-size: 18px;
        /* Increase font size */
    }

    .testimonial-title {
        font-size: 60px;
        /* Increase title size */
    }

    .testimonial-stars {
        font-size: 24px;
        /* Increase stars size */
    }

    .testimonial-description {
        font-size: 26px;
        /* Increase description font size */
        font-weight: bold;
    }

    .testimonial-text {
        font-size: 22px;
        /* Increase text font size */
        line-height: 1.8;
        /* Adjust line height */
    }

    /* Author Information */
    .author-image {
        width: 70px;
        /* Increase author image size */
        height: 70px;
        /* Increase author image size */
    }

    .author-name {
        font-size: 20px;
        /* Increase name font size */
    }

    .author-position {
        font-size: 18px;
        /* Increase position font size */
    }

    /* Capterra Logo */
    .capterra-logo {
        width: 100px;
        /* Increase logo size */
    }

    /* Days Ago */
    .testimonial-days {
        font-size: 18px;
        /* Increase font size */
        padding: 150px;
        /* Increase padding */
    }

    /* Navigation Buttons */
    .nav-button-prev,
    .nav-button-next {
        padding: 10px 20px;
        /* Increase button padding */
        font-size: 18px;
        /* Increase button font size */
        border-radius: 30px;
        /* Adjust border radius */
    }

    .nav-icon {
        font-size: 24px;
        /* Increase icon size */
    }
}

.footer-logo {
    width: 300px;
    /* Adjust width as needed */
    height: auto;
    /* Maintain aspect ratio */
    vertical-align: middle;
    /* Align with text */
}

/* New class for text colors */
.text-color-custom {
    color: #3498db;
    /* Example color (blue) */
    font-size: 55px;
}

/* Additional color options */
.text-color-primary {
    color: #767474;
    /* Example color (red) */
    font-size: 13px;
    font-family: sans-serif;
}

.text-large {
    font-size: 70px;
    /* Adjust the size as needed */
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
        /* Reduce margin for smaller screens */
    }

    .testimonial-container {
        left: 0;
        align-items: center;
    }

    .testimonial-circle {
        width: 300px;
        /* Adjust size for smaller screens */
        height: 300px;
        position: relative;
        margin-top: 20px;
        /* Add margin to separate from content */
    }

    .testimonial-images {
        width: 200px;
        /* Adjust width for smaller screens */
        height: 200px;
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        /* Remove centering transform */
        margin-top: 20px;
        /* Adjust margin for spacing */
    }

    .testimonial-content {
        max-width: 90%;
        margin-top: 20px;
        /* Reduce margin for smaller screens */
        text-align: center;
        /* Center text for smaller screens */
        left: 0;
    }

    .testimonial-image {
        width: 100px;
        /* Adjusted size for smaller screens */
        height: 100px;
    }

    .testimonial-title {
        font-size: 30px;
        /* Adjusted font size for smaller screens */
    }

    .testimonial-description {
        font-size: 16px;
        /* Adjusted font size for smaller screens */
    }

    .text-large {
        font-size: 40px;
        /* Adjust the size as needed for smaller screens */
    }
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .testimonial-section {
        flex-direction: column;
        justify-content: center;
        align-items: center;
        margin-top: 5%;
        /* Reduce margin for smaller screens */
    }

    .testimonial-container {
        left: 0;
        align-items: center;
    }

    .testimonial-circle {
        width: 300px;
        /* Adjust size for smaller screens */
        height: 300px;
        position: relative;
        margin-top: 20px;
        /* Add margin to separate from content */
    }

    .testimonial-images {
        width: 200px;
        /* Adjust width for smaller screens */
        height: 200px;
        position: absolute;
        z-index: 3;
        /* Ensure images are above the circle */
        top: -50px;
        /* Adjust to position images on top of the circle */
        left: 50%;
        transform: translateX(-50%);
        /* Center images horizontally */
    }

    .testimonial-image {
        width: 50%;
        /* Adjusted size for smaller screens */
        height: 70%;
        border-radius: 40%;
        bottom: -90px;
        right: 55px;
    }

    .testimonial-content {
        max-width: 90%;
        text-align: center;
        /* Center text for smaller screens */
        left: 0;
    }

    .testimonial-title {
        font-size: 30px;
        /* Adjusted font size for smaller screens */
    }

    .testimonial-description {
        font-size: 16px;
        /* Adjusted font size for smaller screens */
    }

    .text-large {
        font-size: 40px;
        /* Adjust the size as needed for smaller screens */
    }
}

.testimonial-set,
.testimonial-text-set {
    display: none;
    /* Hide all sets initially */
}

.testimonial-set.active,
.testimonial-text-set.active {
    display: block;
    /* Display the active set */
}



.custom-container1 {
    display: flex;
    /* justify-content: space-between; */
    padding: 70px;
    margin-bottom: -50px;
    max-width: 1400px;
    margin: -20px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.custom-contact-section {
    width: 65%;
}

.custom-section-header {
    margin-bottom: 20px;
}

.custom-section-title {
    display: inline-block;
    background-color: rgb(255, 252, 252);
    padding: 5px 10px;
    /* Adjusted padding */
    border-radius: 15px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: #15B9D9;
    font-family: Arial, sans-serif;
    text-align: left;
}

.custom-section-subtitle {
    font-size: 30px;
    color: #ffffff;
    font-family: Arial, Helvetica, sans-serif;
    margin-top: 10px;
    margin-bottom: 10px;
}

.custom-section-description {
    font-size: 14px;
    color: white;
    margin-bottom: 30px;
}

.custom-contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;

}

.custom-info-item {
    display: flex;
    align-items: center;
    width: 100%;
    /* Each item will take full width */
    text-align: left;
    margin-bottom: -10%;
}

.custom-info-icon {
    width: 150px;
    /* Set a smaller width for the icons */
    height: 150px;
    /* Set a smaller height for the icons */
    margin-right: -25px;
}

.custom-info-details h4 {
    font-size: 18px;
    font-family: Arial, Helvetica, sans-serif;
    color: white;
    margin: 0;
}

.custom-info-details p {
    font-size: 16px;
    font-family: Arial, Helvetica, sans-serif;
    color: #777777;
    margin: 5px 0 0 0;
}

.custom-demo-form {
    width: 73%;
    padding: 30px;
    border-radius: 30px;
    background-color: #48474769;
    align-self: start;

}

.custom-form-title {
    font-size: 24px;
    color: #15B9D9;
    text-transform: uppercase;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 10px;
}

.custom-form-subtitle {
    font-size: 14px;
    color: #8d8a8a;
    font-family: Arial, Helvetica, sans-serif;
    margin-bottom: 30px;
}

.custom-form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.custom-form-control {
    flex: 1;
    padding: 12px;
    border: 1px solid #15B9D9;
    border-radius: 25px;
    /* Changed to a more rounded border */
    background-color: transparent;
    color: white;
}

.custom-submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #15B9D9;
    border: none;
    border-radius: 25px;
    /* Changed to a more rounded border */
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.custom-submit-btn:hover {
    background-color: #91c4ce;
}

.custom-head {
    display: inline-block;
    background-color: rgba(240, 240, 240, 0.281);
    padding: 5px 10px;
    /* Adjusted padding */
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 0.8rem;
    color: orange;
    font-family: Arial, sans-serif;
    text-align: left;
}

/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .custom-container1 {
        flex-direction: column;
        padding: 20px;
        margin-bottom: 0;
        box-shadow: none;
        /* Remove box-shadow for mobile */
        max-width: 100%;
        /* Full width on mobile */
    }

    .custom-contact-section,
    .custom-demo-form {
        width: 100%;
        /* Full width for both sections */
        padding: 20px;
        margin-left: 25px;
        margin-bottom: 20px;
        /* Add some space between sections */
    }

    .custom-section-title {
        font-size: 0.9rem;
        /* Slightly larger text for readability */
        padding: 8px 12px;
        /* Adjusted padding */
    }

    .custom-section-subtitle {
        font-size: 24px;
        /* Smaller font size for mobile */
        margin-top: 15px;
        margin-bottom: 15px;
    }

    .custom-section-description {
        font-size: 16px;
        /* Slightly larger for readability */
        margin-bottom: 20px;
    }

    .custom-contact-info {
        gap: 15px;
        /* Reduce gap for mobile */
    }

    .custom-info-item {
        flex-direction: column;
        /* Stack items vertically */
        text-align: center;
        margin-bottom: 10px;
        /* Reduce margin */
    }

    .custom-info-icon {
        width: 100px;
        /* Smaller icon size */
        height: 100px;
        margin-right: 0;
        /* Remove margin to center icon */
        margin-bottom: 10px;
        /* Add margin below icon */
    }

    .custom-info-details h4 {
        font-size: 16px;
        /* Smaller font size */
    }

    .custom-info-details p {
        font-size: 12px;
        /* Smaller font size */
    }

    .custom-demo-form {
        padding: 20px;
        /* Reduced padding for mobile */
        border-radius: 25px;
        /* Slightly less rounded for smaller screens */
    }

    .custom-form-title {
        font-size: 20px;
        /* Smaller font size */
    }

    .custom-form-subtitle {
        font-size: 12px;
        /* Smaller font size */
        margin-bottom: 20px;
        /* Reduce bottom margin */
    }

    .custom-form-row {
        flex-direction: column;
        /* Stack form controls vertically */
        gap: 10px;
        /* Reduce gap between controls */
    }

    .custom-form-control {
        padding: 10px;
        /* Reduce padding for smaller inputs */
        border-radius: 15px;
        /* Less rounded corners */
    }

    .custom-submit-btn {
        padding: 12px;
        /* Reduce padding */
        font-size: 14px;
        /* Smaller font size */
        border-radius: 15px;
        /* Less rounded corners */
    }

    .custom-head {
        font-size: 0.9rem;
        /* Slightly larger for readability */
        padding: 8px 12px;
        /* Adjusted padding */
    }
}
/* Media Queries for Medium Screens (750px to 850px) */
@media (min-width: 750px) and (max-width: 850px) {
    .custom-container1 {
        padding: 30px;
        margin-bottom: -20px;
        max-width: 95%;
        /* Adjust container width */
    }

    .custom-contact-section {
        width: 100%;
        /* Full width for better alignment */
    }

    .custom-demo-form {
        width: 100%;
        padding: 20px;
        margin-top: 15px;
        border-radius: 25px;
        /* Adjust padding and border-radius */
    }

    .custom-section-title {
        font-size: 0.85rem;
        padding: 7px 10px;
        /* Adjust font size and padding */
    }

    .custom-section-subtitle {
        font-size: 24px;
        margin-top: 10px;
        margin-bottom: 10px;
        /* Adjust font size and margins */
    }

    .custom-section-description {
        font-size: 14px;
        margin-bottom: 20px;
        /* Adjust font size and margin */
    }

    .custom-info-icon {
        width: 110px;
        height: 110px;
        margin-right: -10px;
        /* Adjust icon size and margin */
    }

    .custom-info-details h4 {
        font-size: 16px;
        /* Adjust font size */
    }

    .custom-info-details p {
        font-size: 13px;
        /* Adjust font size */
    }

    .custom-form-title {
        font-size: 20px;
        /* Adjust font size */
    }

    .custom-form-subtitle {
        font-size: 12px;
        margin-bottom: 20px;
        /* Adjust font size and margin */
    }

    .custom-form-row {
        gap: 10px;
        /* Adjust gap between form controls */
    }

    .custom-form-control {
        padding: 10px;
        border-radius: 20px;
        /* Adjust padding and border-radius */
    }

    .custom-submit-btn {
        padding: 12px;
        font-size: 14px;
        border-radius: 20px;
        /* Adjust padding, font size, and border-radius */
    }

    .custom-head {
        font-size: 0.85rem;
        padding: 7px 10px;
        /* Adjust font size and padding */
    }
}

/* Media Queries for Medium Screens (851px to 1000px) */
@media (min-width: 851px) and (max-width: 1000px) {
    .custom-container1 {
        padding: 35px;
        margin-bottom: -25px;
        max-width: 1000px;
        /* Adjust container width and padding */
    }

    .custom-contact-section {
        width: 65%;
        /* Set width for contact section */
    }

    .custom-demo-form {
        width: 75%;
        padding: 25px;
        margin-top: 15px;
        border-radius: 30px;
        /* Adjust width, padding, and border-radius */
    }

    .custom-section-title {
        font-size: 0.9rem;
        padding: 8px 12px;
        /* Adjust font size and padding */
    }

    .custom-section-subtitle {
        font-size: 26px;
        margin-top: 12px;
        margin-bottom: 12px;
        /* Adjust font size and margins */
    }

    .custom-section-description {
        font-size: 15px;
        margin-bottom: 25px;
        /* Adjust font size and margin */
    }

    .custom-info-icon {
        width: 130px;
        height: 130px;
        margin-right: -15px;
        /* Adjust icon size and margin */
    }

    .custom-info-details h4 {
        font-size: 17px;
        /* Adjust font size */
    }

    .custom-info-details p {
        font-size: 14px;
        /* Adjust font size */
    }

    .custom-form-title {
        font-size: 22px;
        /* Adjust font size */
    }

    .custom-form-subtitle {
        font-size: 13px;
        margin-bottom: 25px;
        /* Adjust font size and margin */
    }

    .custom-form-row {
        gap: 15px;
        /* Adjust gap between form controls */
    }

    .custom-form-control {
        padding: 11px;
        border-radius: 22px;
        /* Adjust padding and border-radius */
    }

    .custom-submit-btn {
        padding: 14px;
        font-size: 15px;
        border-radius: 25px;
        /* Adjust padding, font size, and border-radius */
    }

    .custom-head {
        font-size: 0.9rem;
        padding: 8px 12px;
        /* Adjust font size and padding */
    }
}

/* Media Queries for Larger Screens */
@media (min-width: 1200px) {
    .custom-contact-section {
        width: 65%;
        /* Increase width for larger screens */
    }

    .custom-demo-form {
        margin-right: -100px;
        width: 50%;
        /* Increase width for larger screens */
        padding: 40px;
        /* Increase padding for form */
        margin-top: 20px;
        /* Ensure margin moves form down */
        border-radius: 35px;
        /* More rounded corners */
    }

    .custom-form-control {
        padding: 12px;
        /* Increase input padding */
        font-size: 16px;
        /* Increase input font size */
        border-radius: 20px;
        /* More rounded corners */
    }

    .custom-submit-btn {
        padding: 10px;
        /* Further increase button padding */
        font-size: 18px;
        /* Increase font size */
        border-radius: 35px;
        /* More rounded corners */
    }

    .custom-form-title {
        font-size: 28px;
        /* Larger font size for title */
    }

    .custom-form-subtitle {
        font-size: 18px;
        /* Larger font size for subtitle */
    }
}

@media (min-width: 1400px) {
    .custom-container1 {
        padding: 100px;
        max-width: 1300px;
    }

    .custom-contact-section {
        width: 60%;
        /* Adjust width */
    }

    .custom-demo-form {
        width: 54%;
        /* Increase width further */
        padding: 50px;
        border-radius: 40px;
        /* More rounded corners */
    }

    .custom-form-control {
        padding: 20px;
        /* Increase input padding */
        font-size: 18px;
        /* Larger input font size */
        border-radius: 25px;
        /* More rounded corners */
    }

    .custom-submit-btn {
        padding: 22px;
        /* Further increase button padding */
        font-size: 22px;
        /* Increase font size */
        border-radius: 40px;
        /* More rounded corners */
    }
}

@media (min-width: 1600px) {
    .custom-container1 {
        padding: 120px;
        max-width: 1400px;
    }

    .custom-contact-section {
        width: 58%;
        /* Further adjust width */
    }

    .custom-demo-form {
        width: 61%;
        /* Adjust form width */
        padding: 60px;
        /* Further increase padding */
        margin-top: -10px;
        /* Push form down more */
        border-radius: 45px;
        /* More rounded corners */
    }

    .custom-form-control {
        padding: 22px;
        /* Increase input padding */
        font-size: 20px;
        /* Larger input font size */
        border-radius: 30px;
        /* More rounded corners */
    }

    .custom-submit-btn {
        padding: 24px;
        /* Further increase button padding */
        font-size: 24px;
        /* Increase font size */
        border-radius: 45px;
        /* More rounded corners */
    }
}

@media (min-width: 1800px) {
    .custom-container1 {
        padding: 140px;
        max-width: 1500px;
    }

    .custom-contact-section {
        width: 56%;
        /* Maximize width */
        margin-top: 120px;
    }

    .custom-demo-form {
        width: 76%;
        /* Maximize width */
        padding: 70px;
        /* Maximize padding */
        margin-top: 100px;
        /* Push form down more */
        border-radius: 50px;
        /* More rounded corners */
    }

    .custom-form-control {
        padding: 25px;
        /* Maximize input padding */
        font-size: 22px;
        /* Maximize input font size */
        border-radius: 35px;
        /* More rounded corners */
    }

    .custom-submit-btn {
        padding: 26px;
        /* Maximize button padding */
        font-size: 26px;
        /* Maximize font size */
        border-radius: 50px;
        /* More rounded corners */
    }
}

/* 4K and Ultra Large Screens (2560px and up) */
@media (min-width: 2560px) {
    .custom-container1 {
        padding: 60px;
        max-width: 2000px;
        /* Increase max width for ultra-large screens */
    }

    .custom-contact-section {
        width: 100%;
        /* Adjust width for balance */
        margin-top: 20px;
        margin-left: -50px;
    }

    .custom-section-description {
        font-size: 20px;
        color: white;
        margin-bottom: 30px;
    }

    .custom-contact-info {
        display: flex;
        flex-direction: column;
        gap: -5px;

    }

    .custom-info-item {
        display: flex;
        align-items: center;
        width: 100%;
        /* Each item will take full width */
        text-align: left;
        margin-bottom: -15%;
    }

    .custom-section-subtitle {
        font-size: 52px;
        color: #ffffff;
        font-family: Arial, Helvetica, sans-serif;
        margin-top: 60px;
        margin-bottom: 10px;
    }


    .custom-info-icon {
        width: 250px;
        /* Set a smaller width for the icons */
        height: 250px;
        /* Set a smaller height for the icons */
        margin-right: -30px;
    }

    .custom-demo-form {
        width: 100%;
        /* Equal width for both sections */
        padding: 90px;
        /* Further increase padding */
        margin-left: 200px;
        margin-top: 100px;
        /* Push form down more */
        border-radius: 55px;
        /* More rounded corners */
    }

    .custom-form-control {
        padding: 30px;
        /* Increase input padding */
        font-size: 24px;
        /* Larger input font size */
        border-radius: 40px;
        /* More rounded corners */
    }

    .custom-info-details h4 {
        font-size: 30px;
        font-family: Arial, Helvetica, sans-serif;
        color: white;
        margin: 0;
    }

    .custom-info-details p {
        font-size: 24px;

        font-family: Arial, Helvetica, sans-serif;
        color: #777777;
        margin: 5px 0 0 0;
    }

    .custom-submit-btn {
        padding: 30px;
        /* Further increase button padding */
        font-size: 28px;
        /* Larger font size */
        border-radius: 55px;
        /* More rounded corners */
    }

    .custom-form-title {
        font-size: 36px;
        /* Larger font size for title */
    }

    .custom-form-subtitle {
        font-size: 24px;
        /* Larger font size for subtitle */
    }
}

/* Base Styles */
.demo-section {
    margin-top: 3%;
    margin-bottom: 5%;
    background-color: #04a9d0;
    padding: 60px 0;
    height: auto;
    width: 90%;
    margin-left: 5%;
    border-radius: 60px;
}

.demo-content {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.demo-text {
    color: #ffffff;
    width: 60%;
    box-sizing: border-box;
}

.demo-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.demo-description {
    font-size: 16px;
    margin-bottom: 30px;
}

.demo-button {
    padding: 15px 30px;
    background-color: #ff6b6b;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
}

.demo-button:hover {
    background-color: #ff8b8b;
}

.demo-image {
    width: 50%;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    box-sizing: border-box;
}

.demo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: 10%;
}



/* Responsive Styles for Screens Less than 1000px */
@media (max-width: 1000px) {
    .demo-section {
        height: auto;
        /* Adjust height for smaller screens */
        padding: 40px 0;
        /* Reduce padding */
        width: 95%;
        /* Increase width slightly */
        margin-left: 2.5%;
        /* Center align */
    }

    .demo-content {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
        /* Center align text */
    }

    .demo-text {
        width: 100%;
        /* Full width for text */
        margin-bottom: 20px;
        /* Add spacing below text */
    }

    .demo-title {
        font-size: 28px;
        /* Reduce font size for smaller screens */
    }

    .demo-description {
        font-size: 14px;
        /* Reduce font size */
        margin-bottom: 20px;
        /* Adjust bottom margin */
    }

    .demo-button {
        font-size: 14px;
        /* Reduce font size */
        padding: 12px 25px;
        /* Adjust padding */
    }

    .demo-image {
        width: 80%;
        /* Reduce image container width */
        justify-content: center;
        /* Center the image */
        margin-top: 20px;
        /* Add spacing above image */
    }
}

/* Responsive Styles for Screens from 100px to 600px */
@media (max-width: 600px) {
    .demo-section {
        padding: 30px 0;
        /* Further reduce padding for smaller screens */
        width: 95%;
        /* Keep width to 95% for better fit */
        margin-left: 2.5%;
        /* Center align */
        height: auto;
        /* Set height to auto */
    }

    .demo-title {
        font-size: 24px;
        /* Further reduce font size */
    }

    .demo-description {
        font-size: 12px;
        /* Reduce font size for smaller screens */
    }

    .demo-button {
        font-size: 12px;
        /* Further reduce font size */
        padding: 10px 20px;
        /* Further adjust padding */
        border-radius: 40px;
        /* Slightly adjust border radius */
    }

    .demo-content {
        flex-direction: column;
        /* Stack elements vertically */
        align-items: center;
        /* Center content */
        text-align: center;
        /* Center text */
    }

    .demo-text {
        width: 100%;
        /* Full width for text */
        margin-bottom: 15px;
        /* Reduce margin */
        padding: 0 15px;
        /* Add padding for better spacing */
    }

    .demo-image {
        width: 90%;
        /* Further reduce image container width */
        margin-top: 15px;
        /* Adjust spacing */
    }

    .demo-image img {
        max-width: 100%;
        /* Keep max width for images */
        height: auto;
        /* Keep height auto */
        border-radius: 8px;
        /* Reduce border radius */
    }
}

/* Responsive Styles */
@media (max-width: 1000px) {
    .demo-section {
        height: auto;
        /* Adjust height for smaller screens */
        padding: 40px 0;
        /* Reduce padding */
        width: 95%;
        /* Increase width slightly */
        margin-left: 2.5%;
        /* Center align */
    }

    .demo-content {
        flex-direction: column;
        /* Stack elements vertically */
        text-align: center;
        /* Center align text */
    }

    .demo-text {
        width: 100%;
        /* Full width for text */
        margin-bottom: 20px;
        /* Add spacing below text */
    }

    .demo-title {
        font-size: 28px;
        /* Reduce font size for smaller screens */
    }

    .demo-description {
        font-size: 14px;
        /* Reduce font size */
        margin-bottom: 20px;
        /* Adjust bottom margin */
    }

    .demo-button {
        font-size: 14px;
        /* Reduce font size */
        padding: 12px 25px;
        /* Adjust padding */
    }

    .demo-image {
        width: 80%;
        /* Reduce image container width */
        justify-content: center;
        /* Center the image */
        margin-top: 20px;
        /* Add spacing above image */
    }

    .demo-image img {
        border-radius: 15px;
        max-width: 100%;
        height: 17vh;
        border-radius: 10px;
        margin-bottom: 10%;

    }
}


/* Media Queries for Mobile Responsiveness */
@media (max-width: 768px) {
    .demo-section {
        height: auto;
        padding: 30px 0;
        border-radius: 30px;
    }

    .demo-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 0 15px;
    }

    .demo-text {
        width: 100%;
        margin-bottom: 20px;
    }

    .demo-title {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .demo-description {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .demo-button {
        font-size: 14px;
        padding: 12px 25px;
        border-radius: 25px;
    }

    .demo-image {
        width: 70%;
        margin-bottom: 20px;
    }

    .demo-image img {
        border-radius: 15px;
        max-width: 100%;
        height: 17vh;
        border-radius: 10px;
        margin-bottom: 10%;

    }
}

@media (min-width: 200px) and (max-width: 550px) {

    .demo-title {
        margin-top: -50px;

        font-size: 15px;
    }

    .demo-description {
        font-size: 8px;
    }

    .demo-button {
        font-size: 10px;
        padding: 10px 20px;
        border-radius: 20px;
    }

    .demo-image {
        width: 80%;
        margin-bottom: 20px;
    }

    .demo-image img {
        margin-top: -30px;

        border-radius: 15px;
        max-width: 100%;
        height: 10vh;
        border-radius: 10px;
        margin-bottom: 10%;

    }
}

@media (max-width: 500px) {
    .demo-section {
        padding: 80px 0;
        height: 45vh;
        border-radius: 70px;
    }
}

/* Media Queries for Larger Screens */
@media (min-width: 1366px) {
    .demo-section {
        padding: 80px 0;
        /* Increase padding */
        height: 75vh;
        /* Slightly taller section */
        border-radius: 70px;
        /* More rounded corners */
    }

    .demo-content {
        max-width: 1200px;
        /* Increase max width */
        padding: 0 30px;
        /* Increase side padding */
    }

    .demo-text {
        width: 65%;
        /* Slightly wider text area */
    }

    .demo-title {
        font-size: 42px;
        /* Increase font size */
        margin-bottom: 25px;
        /* Increase margin below title */
    }

    .demo-description {
        font-size: 18px;
        /* Increase font size */
        margin-bottom: 35px;
        /* Increase margin */
    }

    .demo-button {
        font-size: 18px;
        /* Increase font size */
        padding: 18px 35px;
        /* Increase padding */
        border-radius: 55px;
        /* More rounded corners */
    }
}

@media (min-width: 1920px) {
    .demo-section {
        padding: 100px 0;
        /* Further increase padding */
        height: 50vh;
        border-radius: 80px;
        /* More rounded corners */
    }

    .demo-content {
        max-width: 1400px;
        /* Increase max width */
        padding: 0 40px;
        /* Increase side padding */
    }

    .demo-text {
        width: 70%;
        /* Wider text area */
    }

    .demo-title {
        font-size: 48px;
        /* Larger font size */
        margin-bottom: 30px;
        /* Increase margin */
    }

    .demo-description {
        font-size: 20px;
        /* Larger font size */
        margin-bottom: 40px;
        /* Increase margin */
    }

    .demo-button {
        font-size: 20px;
        /* Increase font size */
        padding: 20px 40px;
        /* Increase padding */
        border-radius: 60px;
        /* More rounded corners */
    }

    .demo-image {
        width: 55%;
        /* Slightly wider image area */
    }

    .demo-image img {
        border-radius: 20px;
        /* Slightly more rounded corners */
    }
}

@media (min-width: 2560px) {
    .demo-section {
        padding: 120px 0;
        /* Further increase padding */
        height: 55vh;
        /* Taller section */
        border-radius: 90px;
        /* More rounded corners */
    }

    .demo-content {
        max-width: 1800px;
        /* Increase max width for very large screens */
        padding: 0 50px;
        /* Increase side padding */
    }

    .demo-text {
        width: 75%;
        /* Even wider text area */
    }

    .demo-title {
        font-size: 64px;
        /* Larger font size */
        margin-top: -15px;
        /* Increase margin */
    }

    .demo-description {
        font-size: 30px;
        /* Larger font size */
        margin-bottom: 45px;
        /* Increase margin */
    }

    .demo-button {
        font-size: 24px;
        /* Larger font size */
        padding: 25px 50px;
        /* Increase padding */
        border-radius: 70px;
        /* More rounded corners */
    }

    .demo-image {
        width: 60%;
        /* Wider image area */
    }

    .demo-image img {
        border-radius: 25px;
        /* More rounded corners */
    }
}

@media (min-width: 3840px) {
    .demo-section {
        padding: 150px 0;
        /* Maximum padding for 4K screens */
        height: 90vh;
        /* Full section height for ultra large screens */
        border-radius: 100px;
        /* Maximum rounded corners */
    }

    .demo-content {
        max-width: 2200px;
        /* Increase max width for 4K screens */
        padding: 0 60px;
        /* Increase side padding */
    }

    .demo-text {
        width: 80%;
        /* Maximize text area width */
    }

    .demo-title {
        font-size: 60px;
        /* Maximum font size */
        margin-bottom: 40px;
        /* Maximum margin */
    }

    .demo-description {
        font-size: 28px;
        /* Maximum font size */
        margin-bottom: 50px;
        /* Maximum margin */
    }

    .demo-button {
        font-size: 28px;
        /* Maximum font size */
        padding: 30px 60px;
        /* Maximum padding */
        border-radius: 80px;
        /* Maximum rounded corners */
    }

    .demo-image {
        width: 65%;
        /* Maximize image area width */
    }

    .demo-image img {
        border-radius: 30px;
        /* Maximum rounded corners */
    }
}


/* New classes for footer design */
.footer-container {
    background-color: white;
    /* Optional: background color for footer */
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    /* Space between elements */
}

.footer-monarch {
    color: #04A9D9;
    /* Blue color for "Monarch" */
    font-weight: bold;
    /* Optional: Make text bold */
}

.footer-rights {
    color: #000000;
    /* Black color for "All Rights Reserved" */
    font-size: 0.9rem;
    /* Optional: Adjust font size */
}

.footer-copyright {
    color: #000000;
    /* Black color for copyright symbol */
}


/* Reduce space between columns */
.row.g-5 {
    --bs-gutter-x: 0;
    /* Set horizontal gutter (spacing) to zero */
}

.footer-item {
    padding: 0;
}

.footer-item h4 {
    margin-bottom: 1rem;
}

.footer-item a {
    margin-bottom: 0.5rem;
    /* Reduce margin below links */
}


/* Responsive styles */
@media (min-width: 768px) {
    /* .footer-container {
        padding: 10px 0;
    } */

    .footer-content {
        gap: 10px;
    }

    .footer-monarch {
        font-size: 1rem;
        /* Increase font size */
    }

    .footer-rights,
    .footer-copyright {
        font-size: 0.9rem;
    }

    .footer-item h4 {
        margin-bottom: 1.5rem;
    }

    .footer-item a {
        margin-bottom: 1rem;
        /* Increase margin below links */
    }
}

@media (min-width: 992px) {


    .footer-content {
        gap: 10px;
        /* Further increase gap */
    }

    .footer-monarch {
        font-size: 1rem;
        /* Further increase font size */
    }

    .footer-rights,
    .footer-copyright {
        font-size: 1rem;
        /* Further increase font size */
    }

    .footer-item h4 {
        margin-bottom: 2rem;
        /* Further increase margin below headings */
    }

    .footer-item a {
        margin-bottom: 1.2rem;
        /* Further increase margin below links */
    }
}

@media (min-width: 1200px) {
    .footer-container {
        padding: 6px 0;
        /* Further increase padding */
    }


    .footer-monarch {
        font-size: 1rem;
    }

    .footer-rights,
    .footer-copyright {
        font-size: 1rem;
        /* Further increase font size */
    }

    .footer-item h4 {
        margin-bottom: 1rem;
        /* Further increase margin below headings */
    }

    .footer-item a {
        margin-bottom: 1.5rem;
        /* Further increase margin below links */
    }
}

@media (min-width: 1600px) {
    .footer-container {
        padding: 25px 0;
        /* Increase padding for very large screens */
    }


    .footer-monarch {
        font-size: 1.8rem;
        /* Increase font size for very large screens */
    }

    .footer-rights,
    .footer-copyright {
        font-size: 1.3rem;
        /* Increase font size for very large screens */
    }

    .footer-item h4 {
        margin-bottom: 3rem;
        /* Increase margin below headings for very large screens */
    }

    .footer-item a {
        margin-bottom: 1.8rem;
        /* Increase margin below links for very large screens */
    }
}



@media (min-width: 2000px) {
    .footer-container {
        padding: 10px 0;
        /* Increase padding for ultra-wide screens */
    }

    .footer-content {
        gap: 20px;
        /* Increase gap for ultra-wide screens */
    }

    .footer-monarch {
        font-size: 2rem;
        /* Increase font size for ultra-wide screens */
    }

    .footer-rights,
    .footer-copyright {
        font-size: 1.8rem;
        /* Increase font size for ultra-wide screens */
    }

    .footer-item h4 {
        margin-bottom: 3.5rem;
        /* Increase margin below headings for ultra-wide screens */
    }

    .footer-item a {
        margin-bottom: 2rem;
        /* Increase margin below links for ultra-wide screens */
    }
}

.custom-micro {
    width: 100px;
    height: 60px;
    margin-left: 1000px;
}

/* Large Screens (e.g., 1600px and up) */
@media (max-width: 1800px) {
    .custom-micro {
        width: 20%;
        /* Increase width */
        height: 50%;
        /* Increase height */
        margin-left: 1550px;
    }
}

@media (min-width: 1600px) {
    .custom-micro {
        width: 20%;
        /* Increase width */
        height: 50%;
        /* Increase height */
        margin-left: 1150px;
    }
}

@media (min-width: 2300px) {
    .custom-micro {
        width: 20%;
        /* Increase width */
        height: 50%;
        /* Increase height */
        margin-left: 1550px;
    }
}

/* Medium-Large Screens (e.g., 1200px - 1599px) */
@media (min-width: 2500px) and (max-width: 3599px) {
    .custom-micro {
        width: 20%;
        /* Slightly increase width */
        height: 20%;
        /* Slightly increase height */
        margin-left: 1550px;
        /* Adjust margin for medium-large screens */
    }
}

/* Medium-Large Screens (e.g., 1200px - 1599px) */
@media (min-width: 1400px) and (max-width: 1599px) {
    .custom-micro {
        width: 170px;
        /* Slightly increase width */
        height: 65px;
        /* Slightly increase height */
        margin-left: 1100px;
    }
}

@media (min-width: 1200px) and (max-width: 1399px) {
    .custom-micro {
        width: 150px;
        height: 65px;
        margin-left: 1000px;
    }
}



@media (min-width: 992px) and (max-width: 1199px) {
    .custom-micro {
        width: 150px;
        height: 75px;
        margin-left: 800px;
    }
}

@media (max-width: 991px) {
    .custom-micro {
        width: 80px;
        height: 50px;
        margin-left: 600px;
    }
}

/* video */
.video-section {
    position: relative;
    margin-top: 10%;

    overflow: hidden;
    padding: 2rem 0;
    background: linear-gradient(135deg, #000, #333);
    height: 85vh;
    width: 80vw;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    margin: 2rem auto;
    margin-top: -60px;
}

.video-element {
    width: 25%;
    max-width: 1000px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.video-controls {
    position: absolute;
    bottom: 15px;
    right: 45px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    z-index: 1;
}

.video-controls button {
    background-color: rgba(0, 0, 0, 0.7);
    border: 2px solid #fff;
    color: white;
    padding: 7px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 11px;
    transition: background-color 0.3s, transform 0.3s;
}

.video-controls button:hover {
    background-color: #333;
    transform: scale(1.1);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 575px) {

    /* Small devices */
    .video-section {
        margin-top: 10%;

        height: 33vh;
        width: 95vw;
        border-radius: 5px;
        padding: 1rem 0;
    }

    .video-element {
        width: 95%;
        max-width: none;
        border-radius: 5px;
    }

    .video-controls {
        right: 15px;
    }
}

@media (min-width: 576px) and (max-width: 991px) {

    /* Medium devices */
    .video-section {
        margin-top: 7%;

        height: 65vh;
        width: 85vw;
    }

    .video-element {
        width: 80%;
    }

    .video-controls {
        right: 8px;
    }
}

@media (min-width: 992px) and (max-width: 1199px) {

    /* Large devices */
    .video-section {
        margin-top: 10%;

        height: 75vh;
        width: 80vw;
    }

    .video-element {
        width: 78%;
    }

    .video-controls {
        right: 30px;
    }
}

@media (min-width: 1200px) {

    /* Extra large devices */
    .video-section {
        margin-top: 10%;

        height: 80vh;
        width: 70vw;
    }

    .video-element {
        width: 85%;
        max-width: 1200px;
    }

    .video-controls {
        right: 5px;
    }
}

/* Media Queries for Larger Screens */

/* 4K Screens */
@media (min-width: 2560px) {

    /* 4K screens */
    .video-section {
        margin-top: 10%;
        height: 80vh;
        /* Increase height for larger screens */
        width: 80%;
        /* Slightly increase width for 4K screens */
        border-radius: 15px;
        /* Increase border-radius */
        padding: 3rem 0;
        /* Increase padding */
    }

    .video-element {
        width: 110%;
        /* Increase video width for larger screens */
        max-width: 2400px;
        /* Increase max width */
        border-radius: 15px;
        /* Increase border-radius */
    }

    .video-controls {
        bottom: 25px;
        /* Increase control button position */
        right: 55px;
        /* Adjust control position */
    }

    .video-controls button {
        padding: 15px;
        /* Increase button padding */
        font-size: 20px;
        /* Increase font size */
    }
}

/* Ultrawide Screens */
@media (min-width: 3840px) {

    /* Ultrawide screens */
    .video-section {
        margin-top: 10%;

        height: 100vh;
        /* Full height for ultrawide screens */
        width: 85vw;
        /* Increase width for ultrawide screens */
        border-radius: 20px;
        /* More rounded corners */
        padding: 4rem 0;
        /* Increase padding for larger screens */
    }

    .video-element {
        width: 95%;
        /* Almost full width for ultrawide screens */
        max-width: 1800px;
        /* Set max width for ultrawide screens */
        border-radius: 20px;
        /* Increase border-radius */
    }

    .video-controls {
        bottom: 30px;
        /* Increase control button position */
        right: 65px;
        /* Adjust control position */
    }

    .video-controls button {
        padding: 12px;
        /* Increase button padding */
        font-size: 16px;
        /* Increase font size */
    }
}

/* Very Large Screens */
@media (min-width: 5120px) {

    /* 5K and above screens */
    .video-section {
        margin-top: 10%;

        height: 100vh;
        /* Full height for very large screens */
        width: 90vw;
        /* Further increase width for very large screens */
        border-radius: 25px;
        /* Further increased border-radius */
        padding: 5rem 0;
        /* Maximum padding for very large screens */
    }

    .video-element {
        width: 100%;
        /* Full width for video on very large screens */
        max-width: 2200px;
        /* Set a maximum width for very large screens */
        border-radius: 25px;
        /* Further increased border-radius */
    }

    .video-controls {
        bottom: 35px;
        /* Further increase control button position */
        right: 75px;
        /* Adjust control position */
    }

    .video-controls button {
        padding: 15px;
        /* Maximum button padding */
        font-size: 18px;
        /* Maximum font size */
    }
}

/* Base styles for the section */
.section-with-backgrounds {
    position: relative;
    /* Enables positioning of pseudo-elements */
    padding: 20px;
    /* Optional: Adjust padding for content */
    overflow: hidden;
    /* Ensures pseudo-elements do not overflow the section */
    z-index: 1;
    /* Ensure content stays above the background circles */
}

/* Pseudo-element for the left circle */
.section-with-backgrounds::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Center vertically */
    left: -10%;
    /* Position slightly outside of the container */
    width: 350px;
    /* Adjust size of the circle */
    height: 510px;
    /* Adjust size of the circle */
    background-color: #d1f2f932;
    /* Sea blue color */

    border-radius: 40%;
    /* Make it a circle */
    transform: translateY(-50%);
    /* Center the circle vertically */
    z-index: 0;
    /* Ensure it stays behind the content */
}

/* Pseudo-element for the right circle */
.section-with-backgrounds::after {
    content: '';
    position: absolute;
    top: 50%;
    /* Center vertically */
    right: -10%;
    /* Position slightly outside of the container */
    width: 200px;
    /* Adjust size of the circle */
    height: 500px;
    /* Adjust size of the circle */
    background-color: #ffeadb27;
    /* Lightest orange color */
    border-radius: 50%;
    /* Make it a circle */
    transform: translateY(-50%);
    /* Center the circle vertically */
    z-index: 0;
    /* Ensure it stays behind the content */
}


/* Base styles for the section */
.section-with-backgrounds1 {
    position: relative;
    /* Enables positioning of pseudo-elements */
    overflow: hidden;
    /* Ensures pseudo-elements do not overflow the section */
    z-index: 1;
    /* Ensure content stays above the background circles */
}

/* Pseudo-element for the left circle */
.section-with-backgrounds1::before {
    content: '';
    position: absolute;
    top: 50%;
    /* Center vertically */
    left: -10%;
    /* Position slightly outside of the container */
    width: 350px;
    /* Adjust size of the circle */
    height: 810px;
    /* Adjust size of the circle */
    background-color: #d1f2f932;
    /* Sea blue color */

    border-radius: 20%;
    /* Make it a circle */
    transform: translateY(-50%);
    /* Center the circle vertically */
    z-index: 0;
    /* Ensure it stays behind the content */
}

/* Pseudo-element for the right circle */
.section-with-backgrounds1::after {
    content: '';
    position: absolute;
    top: 50%;
    /* Center vertically */
    right: -10%;
    /* Position slightly outside of the container */
    width: 200px;
    /* Adjust size of the circle */
    height: 500px;
    /* Adjust size of the circle */
    background-color: #ffeadb27;
    /* Lightest orange color */
    border-radius: 50%;
    /* Make it a circle */
    transform: translateY(-50%);
    /* Center the circle vertically */
    z-index: 0;
    /* Ensure it stays behind the content */
}


/* Navbar */
.navbar {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



/* Ensure Navbar is below the Top Bar */
.navbar-nav {
    margin-top: 0;
    color: #15B9D9;
}

@media (max-width: 767px) {
    .navbar {
        top: 50px;
        /* Adjust based on the height of the top bar */
    }
}

/* General styles for the top bar */
.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #000;
    /* Black background */
    color: #fff;
    /* White text color */
    padding: 8px 20px;
    /* Initial padding */
    font-size: 14px;
    /* Font size for text */
    width: 100%;
    /* Full width */
    z-index: 1000;
    /* Keeps it on top of other elements */
    position: relative;
    /* Positioned on top of the navbar */
    top: 0;
    left: 0;
}

/* Adjust the positioning of the left icons */
.topbar-left-icons {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    /* Align items to the start */
    padding-left: 20px;
    /* Initial padding */
}

/* Adjustments for larger screens */
@media (min-width: 1200px) {
    .topbar-left-icons {
        padding-left: 50px;
        /* Increase padding for larger screens */
    }




}

@media (min-width: 1800px) {
    .topbar-left-icons {
        padding-left: 100px;
        /* Further increase padding for very large screens */
    }
}

/* Adjustments for ultra-wide screens (2000px - 4000px) */
@media (min-width: 2000px) {
    .topbar-left-icons {
        padding-left: 150px;
        /* Further increase padding for ultra-wide screens */
    }

    .top-bar {
        padding: 10px 150px;
        /* Increase padding for ultra-wide screens */
    }
}

@media (min-width: 3000px) {
    .topbar-left-icons {
        padding-left: 200px;
        /* Even further increase padding for the largest screens */
    }

    .top-bar {
        padding: 10px 200px;
        /* Increase padding even more for the largest screens */
    }
}

/* Contact info styles */
.contact-info a {
    color: #fff;
    /* White text color */
    text-decoration: none;
    /* Remove underline */
    font-family: Arial, sans-serif;
    /* Font matching the design */
}

.contact-info a i {
    margin-left: 30px;
    /* Spacing between icon and text */
}

/* Social media icon styles */
.social-icons {
    display: flex;
    align-items: center;
}

.social-icons .icon {
    width: 36px;
    /* Circle size */
    height: 36px;
    /* Circle size */
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    /* Makes the icon a circle */
    background-color: #fff;
    /* White background for the circle */
    color: #000;
    /* Black color for icons */
    font-size: 14px;
    /* Icon size */
    transition: background-color 0.3s, color 0.3s;
    /* Smooth transition for hover effect */
}

.social-icons .icon:hover {
    background-color: #15B9D9;
    /* Light blue background on hover */
    color: #fff;
    /* White color for icons on hover */
}

/* Responsive styles for smaller devices */
@media (max-width: 600px) {
    .top-bar {
        flex-direction: column;
        /* Stack items on smaller screens */
        text-align: center;
        /* Center text */
    }

    /* Contact info styles */
    .contact-info a {
        color: #fff;
        /* White text color */
        text-decoration: none;
        /* Remove underline */
        font-family: Arial, sans-serif;
        /* Font matching the design */
    }

    .contact-info a {

        color: #ffffff;
        /* White text color */
        text-decoration: none;
        /* Remove underline */
        font-size: 10px;
        font-family: Arial, sans-serif;
        /* Font matching the design */
    }

    .social-icons .icon {
        width: 23px;
        height: 23px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-right: 10px; */
        border-radius: 50%;
        background-color: #fff;
        color: #000;
        font-size: 17px;
        transition: background-color 0.3s, color 0.3s;
    }
}


@media (min-width: 1200px) {

    .contact-info a {

        color: #ffffff;
        /* White text color */
        text-decoration: none;
        /* Remove underline */
        font-size: 17px;
        font-family: Arial, sans-serif;
        /* Font matching the design */
    }

    .social-icons .icon {
        width: 29px;
        height: 29px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-right: 10px; */
        border-radius: 50%;
        background-color: #fff;
        color: #000;
        font-size: 20px;
        transition: background-color 0.3s, color 0.3s;
    }


}

/* Responsive styles for larger screens */
@media (min-width: 1800px) {
    .top-bar {
        padding: 15px 100px;
        /* Increase padding for larger screens */
    }

    .contact-info a {
        color: #fff;
        /* White text color */
        text-decoration: none;
        /* Remove underline */
        font-size: 38px;
        font-family: Arial, sans-serif;
        /* Font matching the design */
    }

    .social-icons .icon {
        width: 66px;
        height: 66px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-right: 10px; */
        border-radius: 50%;
        background-color: #fff;
        color: #000;
        font-size: 35px;
        transition: background-color 0.3s, color 0.3s;
    }


}

/* Responsive styles for ultra-wide screens (2000px - 4000px) */
@media (min-width: 2000px) {
    .top-bar {
        padding: 15px 100px;
        /* Increase padding for larger screens */
    }

    .contact-info {
        margin-bottom: 10px;
        /* Space below contact info */
        font-size: 20px;
    }

    .contact-info a {
        color: #fff;
        /* White text color */
        text-decoration: none;
        /* Remove underline */
        font-size: 38px;
        font-family: Arial, sans-serif;
        /* Font matching the design */
    }

    .social-icons .icon {
        width: 66px;
        height: 66px;
        display: flex;
        justify-content: center;
        align-items: center;
        /* margin-right: 10px; */
        border-radius: 50%;
        background-color: #fff;
        color: #000;
        font-size: 35px;
        transition: background-color 0.3s, color 0.3s;
    }

}

@media (min-width: 3000px) {
    .social-icons .icon {
        margin-left: 40px;
        /* Further increase space between icons for the largest screens */
    }
}

.video-overlay {
    width: 70%;
    height: auto;
    background-size: cover;
    /* Ensures the background image scales properly */
    border-radius: 20px;
    border: 5px solid rgba(0, 0, 0, 0.457);
    /* Border with transparency */
    margin-bottom: 40px;
    margin-top: -40px;
    display: block;
    /* Ensures the div is treated as a block-level element */
    margin: 0 auto;
    /* Centers the div horizontally */
}

/* Media Queries for Responsiveness */

/* Small screens (phones) */
@media (max-width: 767px) {
    .video-overlay {
        width: 90%;
        height: 50%;
        margin-bottom: 20px;
        margin-top: -20px;
    }
}

/* Medium screens (tablets) */
@media (min-width: 768px) and (max-width: 991px) {
    .video-overlay {
        width: 80%;
        height: 55%;
        margin-bottom: 30px;
        margin-top: -30px;
    }
}

/* Large screens (desktops) */
@media (min-width: 992px) and (max-width: 1199px) {
    .video-overlay {
        width: 75%;
        height: 60%;
        margin-bottom: 35px;
        margin-top: -35px;
    }
}

/* Extra large screens (larger desktops) */
@media (min-width: 1200px) and (max-width: 1599px) {
    .video-overlay {
        width: 70%;
        height: 60%;
        margin-bottom: 40px;
        
    }
}

/* Ultra large screens (wide monitors) */
@media (min-width: 1600px) and (max-width: 2000px) {
    .video-overlay {
        width: 80%;
        height: 60%;
        margin-bottom: 40px;
        margin-top: -40px;

    }
}

@media (min-width: 2000px) and (max-width: 3000px) {
    .video-overlay {
        width: 130%;
        height: 60%;
        margin-bottom: 40px;
        margin-top: -40px;
        margin-left: -150px;
    }
}

/* Extremely large screens (more than 4000px wide) */
@media (min-width: 4001px) {
    .video-overlay {
        width: 70%;
        height: 60%;
        margin-left: -170px;

        margin-bottom: 40px;
        margin-top: -40px;
    }
}



/* Base styles for all screen sizes */
.custom-feature {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.custom-section-title1 {
    margin-bottom: 5rem;
    text-align: center;
}

.custom-sub-style .custom-sub-title {
    display: inline-block;
    background-color: #fff;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    margin-bottom: 0;
    font-size: 1.5rem;
    color: #5bc0de;
    font-weight: bold;
    position: relative;
}

.custom-sub-style .custom-sub-title::before,
.custom-sub-style .custom-sub-title::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 70px;
    height: 2px;
    background-color: #5bc0de;
}

.custom-sub-style .custom-sub-title::before {
    left: -100px;
}

.custom-sub-style .custom-sub-title::after {
    right: -100px;
}

.custom-sub-style .custom-sub-title::before::before,
.custom-sub-style .custom-sub-title::after::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background-color: #5bc0de;
}

.custom-sub-style .custom-sub-title::before::before {
    left: -60px;
}

.custom-sub-style .custom-sub-title::after::before {
    right: -60px;
}

.custom-display-3 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: bold;
    color: #002147;
}

.custom-paragraph {
    color: black;
    text-align: center;
    font-size: 1rem;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .custom-sub-style .custom-sub-title {
        font-size: 1.25rem;
    }

    .custom-sub-style .custom-sub-title::before,
    .custom-sub-style .custom-sub-title::after {
        width: 50px;
    }

    .custom-sub-style .custom-sub-title::before::before,
    .custom-sub-style .custom-sub-title::after::before {
        width: 30px;
    }

    .custom-display-3 {
        font-size: 2.5rem;
    }

    .custom-paragraph {
        font-size: 0.9rem;
    }
}

@media (max-width: 1024px) {
    .custom-sub-style .custom-sub-title {
        font-size: 1.35rem;
    }

    .custom-sub-style .custom-sub-title::before,
    .custom-sub-style .custom-sub-title::after {
        width: 60px;
    }

    .custom-sub-style .custom-sub-title::before::before,
    .custom-sub-style .custom-sub-title::after::before {
        width: 40px;
    }

    .custom-display-3 {
        font-size: 3rem;
    }

    .custom-paragraph {
        font-size: 1rem;
    }
}

@media (min-width: 1025px) and (max-width: 1424px) {
    .custom-sub-style .custom-sub-title {
        font-size: 1.5rem;
    }

    .custom-sub-style .custom-sub-title::before,
    .custom-sub-style .custom-sub-title::after {
        width: 70px;
    }

    .custom-sub-style .custom-sub-title::before::before,
    .custom-sub-style .custom-sub-title::after::before {
        width: 50px;
    }

    .custom-display-3 {
        font-size: 2.5rem;
    }

    .custom-paragraph {
        font-size: 1.1rem;
    }
}

@media (min-width: 1425px) and (max-width: 1920px) {
    .custom-paragraph {
        font-size: 1.5rem;
    }
}

@media (min-width: 1921px) {
    .custom-sub-style .custom-sub-title {
        font-size: 2.5rem;
    }

    .custom-sub-style .custom-sub-title::before,
    .custom-sub-style .custom-sub-title::after {
        width: 80px;
    }

    .custom-sub-style .custom-sub-title::before::before,
    .custom-sub-style .custom-sub-title::after::before {
        width: 60px;
    }

    .custom-display-3 {
        font-size: 4.5rem;
    }

    .custom-paragraph {
        font-size: 1.7rem;
    }
}

@media (min-width: 2200px) {
    .custom-micro {
        width: 20%;
        height: 50%;
        margin-left: 1450px;
    }
}

@media (min-width: 2500px) {
    .custom-micro {
        width: 20%;
        height: 50%;
        margin-left: 1650px;
    }
}

.custom-sub-style {
    position: relative;
    z-index: 1;
}

.gif-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.custom-sub-title {
    position: relative;
    z-index: 2;
}

@media (max-width: 767px) {
    .gif-overlay {
        height: 50%;
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .gif-overlay {
        height: 60%;
    }
}

@media (min-width: 1200px) {
    .gif-overlay {
        height: 70%;
    }
}

/* roi  */

/* General Styling */
.roi-body {
    font-family: 'Open Sans', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    text-align: center;
    color: #333;
}

/* Main Layout */
.roi-main {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background-color: #f9f9f9;
    padding: 20px;
}

/* Card Styling */
.roi-card {
    width: 80%;
    max-width: 1200px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.1);
    text-align: left;
}

/* Titles */
.roi-title {
    font-size: 1.8rem;
    font-weight: bold;
    color: #222;
    margin-bottom: 1.5rem;
}

/* Form Layout - Two Columns */
.roi-grid {
    display: grid;
    grid-template-columns: 1fr 250px; /* Label on left, input on right */
    gap: 1rem;
    align-items: center;
}

/* Labels */
.roi-label {
    font-weight: bold;
    color: #333;
}

/* Input Fields */
.roi-input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
    width: 100%;
    background: #fff;
    box-sizing: border-box;
}

/* Dollar Sign Inside Input */
.roi-input-container {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.currency-symbol {
    position: absolute;
    left: 12px;
    font-size: 1rem;
    color: #555;
    font-weight: bold;
}

/* Adjusting input padding to avoid overlap */
.roi-input.money-input {
    padding-left: 25px;
}
/* Add margin above the "Want to see" section */
.roi-savings-section {
    margin-top: 40px; /* Adjust space from the previous question */
}

/* Reduce extra space inside the section */
.roi-savings-title {
    margin-bottom: 10px; /* Reduce space below the title */
    color: #5bc0de;
}

/* Make the radio group inline and aligned */
.roi-radio-group {
    display: flex;
    justify-content: flex-start; /* Align to left */
    align-items: center;
    gap: 20px; /* Space between options */
    margin-top: 10px;
}

/* Align label and radio button in a row */
.roi-radio-group label {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1rem;
    color: #333;
    gap: 8px; /* Space between text and radio button */
}

/* Adjust radio button size */
.roi-radio-group input[type="radio"] {
    margin: 0;
    transform: scale(1.2); /* Slightly larger */
    cursor: pointer;
}



/* Buttons */
.roi-button {
    background-color: #5bc0de;
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.2rem;
    cursor: pointer;
    width: 60%; /* Adjust width as needed */
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s;
    margin: 20px auto; /* Centers the button */
    display: block; /* Ensures it remains centered */
    text-align: center;
}

.roi-button:hover {
    background-color:rgba(201, 201, 201, 0.836);
    color: #5bc0de;
    border-color: #04A9D0;
}


/* Responsive Adjustments */
@media (max-width: 768px) {
    .roi-grid {
        grid-template-columns: 1fr;
    }
}

/* Results Styling */
.roi-results-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Space them between left and right */
    margin-top: 20px;
}

.roi-left, .roi-right {
    width: 48%; /* Each column takes almost half of the space */
    display: flex;
    flex-direction: column;
    gap: 20px; /* Space between boxes */
}

.roi-result-box {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #f9f9f9;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
}

.roi-value {
    font-size: 2em;
    color: #5bc0de;
    font-family: 'Open Sans', sans-serif;
}

@media (max-width: 768px) {
    .roi-results-container {
        flex-direction: column; /* Stack items on smaller screens */
    }
    .roi-left, .roi-right {
        width: 100%;
    }
}



.simple-contact-section {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers vertically */
    align-items: center; /* Centers horizontally */
    text-align: center;
    background-color: #f9f9f9; /* Light background */
    max-width: 90%; 
    padding: 60px 30px; 
     margin: 50px auto;
    border-radius: 10px;
}

.simple-contact-title {
    font-size: 2rem;
    color:#5bc0de;
    margin-bottom: 10px;
}

.simple-contact-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 15px;
    max-width: 600px;
}

.simple-contact-info p {
    font-size: 1rem;
    color: #222;
    font-weight: bold;
}

.simple-contact-info a {
    color:#5bc0de;
    text-decoration: none;
    font-weight: bold;
}

.simple-contact-info a:hover {
    text-decoration: underline;
}

.roi-promo-section {
    background-color: #f0f8ff; /* Light blue background */
    padding: 50px 20px;
    text-align: center;
    margin-top: 50px;
    border-radius: 10px;
}

.roi-promo-title {
    font-size: 2rem;
    color:  #5bc0de;
    margin-bottom: 10px;
}

.roi-promo-description {
    font-size: 1.1rem;
    color: #444;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.roi-promo-button {
    display: inline-block;
    background-color:  #5bc0de;
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-size: 1.2rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.roi-promo-button:hover {
    background-color: #5bc0de;
}


.testimonial-text-set {
  display: none; /* Hide all slides */
  justify-content: center;
  padding: 40px 0;
}

.testimonial-text-set.active {
  display: flex; /* Show only active slide */
}

.review-card {
  background: #fff;
  color: #000;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 30px;
  width: 320px;
  min-height: 300px;
  position: relative;
  box-sizing: border-box;
}

.review-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.initial-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #d93025;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-transform: uppercase;
}

.stars {
  color: #fbbc04;
  margin-bottom: 10px;
}

.google-logo {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 24px;
  height: 24px;
}

.testimonial-title {
  text-align: center;
  font-size: 2rem;
  font-family: "Playfair Display", serif;
  margin-bottom: 30px;
  color: #f0f0f0; /* Or adjust to fit your background */
}

.testimonial-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}


.testimonial-header {
  position: relative;  /* parent for absolute child */
  padding-top: 20px;   /* optional, to make room for the button */
  margin-bottom: 10px;
}

.testimonial-title {
  font-size: 2rem;
  color: #fff;
  text-align: center;
}

.add-review-button {
  position: absolute;
  top: -40px;         /* stick to top */
  right: -95px;      /* stick to right */
  padding: 10px 20px;
  border: 2px solid #5bc0de;
  color: #5bc0de;
  background: transparent;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.add-review-button:hover {
  background: white;
  color: #5bc0de;
}
