@import url('https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,100..1000&display=swap');

body {
    font-family: "DM Sans", serif;
    color: #333;
}

/* navbar css  */
.navbar {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.navbar .nav-item {
    margin: 0 8px;
    padding-left: 5px;
    position: relative;
}

.navbar .nav-item::after {
    content: "";
    position: absolute;
    width: 1px;
    height: 0;
    display: block;
    transition: height 0.3s ease;
    bottom: 30%;
    left: 0;
    background-color: #666;
}

.navbar .nav-item:hover::after {
    height: 50%;
}

.navbar .nav-link {
    font-weight: 500;
    padding: 5px 0;
}

.navbar .nav-link.active {
    color: #666 !important;
}

.footer-link {
    text-decoration: none;
    transition: text-decoration 0.3s ease;
}

.footer-link:hover {
    text-decoration: underline;
}

/* carousel css  */
/* Set height to adjust on mobile for better responsiveness */
.carousel-item {
    height: 80vh;
}

.carousel-item img {
    height: 100%;
    object-position: center;
}

#carouselExampleCaptions .carousel-caption,
#carouselExampleCaptions1 .carousel-caption {
    position: absolute;
    margin-left: 20vw;
    bottom: 10vh;
    right: 10vw;
    /* background-color: rgba(0, 0, 0, 0.3);  */
    border-radius: 30px;
    text-align: right;
    padding: 10px 20px;
    color: white;
}

.carousel-caption h5,
.carousel-caption p {
    font-size: 1.5rem;
    margin: 0;
}

.carousel-indicators {
    position: absolute;
    right: 30vw;
    bottom: 10vh;
    transform: translateY(-50%);
    display: flex;
    flex-direction: row;
    justify-content: center;
    z-index: 15;
}

.carousel-indicators .active {
    background-color: white;
    width: 100px;
}

.carousel-indicators button {
    background-color: rgba(255, 255, 255, 0.5);
    width: 10px;
    height: 10px;
    margin: 0 5px;
    transition: background-color 0.3s ease;
}

.carousel-indicators button:hover,
.carousel-indicators button:focus {
    background-color: white;
}

/* Architect studio section css  */
#Architect img {
    object-fit: cover;
    object-position: center;
}

/* Define the fade-up animation */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateX(-250px);
        /* Start slightly below */
    }

    100% {
        opacity: 1;
        transform: translateX(0);
        /* End at the original position */
    }
}

/* Apply the animation to the element */
.fade-up {
    animation: fadeUp 1s ease-out;
    /* Adjust duration and easing as needed */
}

#Architect .sec-title {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 50px;
}

#Architect .sec-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 150px;
    height: 3px;
    background: #666;
}

/* Responsive adjustments */
@media (max-width : 768px) {
    #Architect .custom-heading {
        font-size: 1.5rem;
        line-height: 1.2;
    }
}

@media (max-width : 576px) {
    #Architect .row {
        text-align: center;
    }

    #Architect h6 {
        font-size: 1rem;
        text-align: left;
    }

    #Architect img {
        margin-bottom: 20px;
    }

    #Architect .custom-heading {
        font-size: 1.25rem;
    }
}

/* our work  */
#our_work .sec-title {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 50px;
}

#our_work .sec-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #fff;
}

#our_work h2 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

#our_work .carousel {
    position: relative;
}

#our_work .carousel-inner img {
    border-radius: 10px;
    filter: brightness(80%);
    transition: filter 0.5s ease, transform 0.5s ease;
}

#our_work .carousel-item {
    position: relative;
    height: 60vh;
}

#our_work .carousel-item img:hover {
    filter: brightness(100%);
    transform: scale(1.1);
}

#our_work .carousel-caption {
    bottom: 20px;
    left: 0;
    right: 60px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 10px;
    text-align: center;
}

#our_work .carousel-caption h5 {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

#our_work .carousel-caption p {
    font-size: 1rem;
    font-weight: 300;
}

#our_work .carousel-control-prev-icon,
#our_work .carousel-control-next-icon {
    background-color: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
}

#our_work .carousel-control-prev,
#our_work .carousel-control-next {
    filter: invert(100%);
}

@media (max-width : 768px) {
    #our_work .carousel-item {
        position: relative;
        height: 40vh;
        /* Adjusted height for mobile screens */
    }

    #our_work .carousel-caption h5 {
        font-size: 0.8rem;
        /* Smaller font size for mobile screens */
    }

    #our_work .carousel-caption p {
        font-size: 0.5rem;
        /* Smaller font size for mobile screens */
    }
}

/* 
#services {
    height: 80vh;
}

.accordion-header {
    border-top: black solid;
}

.rotated-accordion {
    transform: rotate(-90deg);
    transform-origin: left top;
    position: relative;
    width: 80vh;
    height: 80vw;
    top: 80vh;
    
}

.rotated-accordion .accordion-body {
    width: 70vh;
    height: 70vw;
    transform: rotate(90deg);
    
    scale: 1 2;
    translate: -66vh -72vw;
    transform-origin: left bottom;
}

.rotated-accordion .accordion-body .row,
.rotated-accordion .accordion-body .row .col-6 {
    height: 80vh;
}

.rotated-accordion .accordion-body .row .col-6 a {
    font-size: x-small;
    color: black;
    margin: 10% 0;
}

.accordion-button:focus {
    outline: none;
    
    box-shadow: none;
    
    background-color: white;
}

.accordion-button::after {
    outline: none;
    
    box-shadow: none;
    
    background-color: white;
}

.accordion-button {
    transition: box-shadow 0.3s ease;
    
} */
.slider {
    height: 80vh;
    margin-top: -50px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.slider .list .item {
    width: 100%;
    height: 100%;
    position: absolute;
    inset: 0 0 0 0;
}

.slider .list .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider .list .item .content {
    position: absolute;
    top: 20%;
    width: 1140px;
    max-width: 80%;
    left: 50%;
    transform: translateX(-50%);
    padding-right: 25%;
    box-sizing: border-box;
    color: #fff;
    text-shadow: 0 5px 10px #0004;
}

.slider .list .item .content .title {
    font-size: 5em;
    font-weight: bold;
    line-height: 1.3em;
}

.slider .list .item .button {
    display: grid;
    grid-template-columns: repeat(2, 130px);
    grid-template-rows: 40px;
    gap: 5px;
    margin-top: 20px;
}

.slider .list .item .button .link-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    background-color: #eee;
    /* Adjust color as needed */
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.slider .list .item .button .link-button:nth-child(2) {
    background-color: transparent;
    border: 1px solid #fff;
    color: #eee;
}

/* Thumbnail Section */
.thumbnail {
    position: absolute;
    bottom: 50px;
    left: 50%;
    width: max-content;
    z-index: 100;
    display: flex;
    gap: 20px;
}

.thumbnail .item {
    width: 150px;
    height: 220px;
    flex-shrink: 0;
    position: relative;
}

.thumbnail .item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 5px 0 15px rgba(0, 0, 0, 0.3);
}

/* nextPrevArrows Section */
.nextPrevArrows {
    position: absolute;
    top: 80%;
    right: 52%;
    z-index: 100;
    width: 300px;
    max-width: 30%;
    display: flex;
    gap: 10px;
    align-items: center;
}

.nextPrevArrows button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    border: none;
    color: #666;
    font-family: monospace;
    font-weight: bold;
    transition: .5s;
    cursor: pointer;
}

.nextPrevArrows button:hover {
    background-color: #666;
    color: #fff;
}

/* Animation Part */
.slider .list .item:nth-child(1) {
    z-index: 1;
}

/* animation text in first item */
.slider .list .item:nth-child(1) .content .title,
.slider .list .item:nth-child(1) .content .type,
.slider .list .item:nth-child(1) .content .description,
.slider .list .item:nth-child(1) .content .buttons {
    transform: translateY(50px);
    filter: blur(20px);
    opacity: 0;
    animation: showContent .5s 1s linear 1 forwards;
}

@keyframes showContent {
    to {
        transform: translateY(0px);
        filter: blur(0px);
        opacity: 1;
    }

}

.slider .list .item:nth-child(1) .content .title {
    animation-delay: 0.4s !important;
}

.slider .list .item:nth-child(1) .content .type {
    animation-delay: 0.6s !important;
}

.slider .list .item:nth-child(1) .content .description {
    animation-delay: 0.8s !important;
}

.slider .list .item:nth-child(1) .content .buttons {
    animation-delay: 1s !important;
}

/* Animation for next button click */
.slider.next .list .item:nth-child(1) img {
    width: 150px;
    height: 220px;
    position: absolute;
    bottom: 50px;
    left: 50%;
    border-radius: 30px;
    animation: showImage .5s linear 1 forwards;
}

@keyframes showImage {
    to {
        bottom: 0;
        left: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
    }

}

.slider.next .thumbnail .item:nth-last-child(1) {
    overflow: hidden;
    animation: showThumbnail .5s linear 1 forwards;
}

.slider.prev .list .item img {
    z-index: 100;
}

@keyframes showThumbnail {
    from {
        width: 0;
        opacity: 0;
    }

}

.slider.next .thumbnail {
    animation: effectNext .5s linear 1 forwards;
}

@keyframes effectNext {
    from {
        transform: translateX(150px);

    }

}

/* Animation for prev button click */
.slider.prev .list .item:nth-child(2) {
    z-index: 2;
}

.slider.prev .list .item:nth-child(2) img {
    animation: outFrame 0.5s linear 1 forwards;
    position: absolute;
    bottom: 0;
    left: 0;
}

@keyframes outFrame {
    to {
        width: 150px;
        height: 220px;
        bottom: 50px;
        left: 50%;
        border-radius: 20px;
    }

}

.slider.prev .thumbnail .item:nth-child(1) {
    overflow: hidden;
    opacity: 0;
    animation: showThumbnail .5s linear 1 forwards;
}

.slider.next .nextPrevArrows button,
.slider.prev .nextPrevArrows button {
    pointer-events: none;
}

.slider.prev .list .item:nth-child(2) .content .title,
.slider.prev .list .item:nth-child(2) .content .type,
.slider.prev .list .item:nth-child(2) .content .description,
.slider.prev .list .item:nth-child(2) .content .buttons {
    animation: contentOut 1.5s linear 1 forwards !important;
}

@keyframes contentOut {
    to {
        transform: translateY(-150px);
        filter: blur(20px);
        opacity: 0;
    }

}

@media screen and (max-width: 678px) {
    .slider .list .item .content {
        padding-right: 0;
    }

    .slider .list .item .content .title {
        font-size: 50px;
    }
}

/* Naming animations in hover */
.card__article:hover .card__data {
    animation: show-data 1s forwards;
    opacity: 1;
    transition: opacity .3s;
}

.card__article:hover {
    animation: remove-overflow 2s forwards;
}

.card__article:not(:hover) {
    animation: show-overflow 2s forwards;
}

.card__article:not(:hover) .card__data {
    animation: remove-data 1s forwards;
}

/* Card animation */
@keyframes show-data {
    50% {
        transform: translateY(-10rem);
    }

    100% {
        transform: translateY(-7rem);
    }
}

@keyframes remove-overflow {
    to {
        overflow: initial;
    }

}

@keyframes remove-data {
    0% {
        transform: translateY(-7rem);
    }

    50% {
        transform: translateY(-10rem);
    }

    100% {
        transform: translateY(.5rem);
    }
}

@keyframes show-overflow {
    0% {
        overflow: initial;
        pointer-events: none;
    }

    50% {
        overflow: hidden;
    }

}

.category-filter .nav-link {
    background-color: white;
    color: black;
    border: none;
    margin-right: 20px;
    cursor: pointer;
    padding: 0 22px !important;
    transition: background-color 0.3s;
}

.category-filter .nav-link.active {
    background-color: #666;
    color: white;
}

.card__article {
    position: relative;
    overflow: hidden;
}

.card__img {
    width: 100%;
    height: 50vh;
    border-radius: 1.5rem;
}

.card__data {
    width: 90%;
    background-color: hsl(0, 0%, 100%);
    padding: 1.5rem 2rem;
    box-shadow: 0 8px 24px hsla(0, 0%, 0%, .15);
    border-radius: 1rem;
    position: absolute;
    bottom: -9rem;
    left: 0;
    right: 0;
    margin-inline: auto;
    opacity: 0;
    transition: opacity 1s 1s;
}

.card__description {
    display: block;
    font-size: .813rem;
    margin-bottom: .25rem;
}

.card__title {
    font-size: 1.25rem;
    font-weight: 500;
    color: hsl(0, 0%, 35%);
    margin-bottom: .75rem;
}

.card__button {
    text-decoration: none;
    font-size: .813rem;
    font-weight: 500;
    color: hsl(0, 0%, 35%);
}

.card__button:hover {
    text-decoration: underline;
}

.hero-section {
    background: url('/Image/service_page.png') no-repeat center center;
    background-size: cover;
    color: #fff;
    text-align: center;
    padding: 120px 0;
    margin-bottom: 40px;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
}

.hero-section p {
    font-size: 1.25rem;
}

.service-title {
    margin-bottom: 40px;
    font-weight: 700;
    color: #666;
    text-align: center;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.service-item:nth-child(even) {
    flex-direction: row-reverse;
}

.service-item img {
    max-width: 100%;
    border-radius: 10px;
    margin-right: 20px;
}

.service-item:nth-child(even) img {
    margin-right: 0;
    margin-left: 20px;
}

.service-item .content {
    flex: 1;
}

.service-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-item p {
    margin-bottom: 20px;
}

#carouselExample .imgBox {
    width: 200px;
    height: 200px;
    margin: auto;
    border: 5px solid #262626;
    border-radius: 30%;
    overflow: hidden;
}

#carouselExample .imgBox img {
    width: 100%;
}

#carouselExample .carousel-inner {
    padding: 35px;
}

#carouselExample .carousel-caption {
    position: static;
    padding-bottom: 15px;
    padding-top: 0;
}

#carouselExample .carousel-indicators button {
    width: 50px;
}

#carouselExample .carousel-control-prev-icon,
#carouselExample .carousel-control-next-icon {
    background-color: #2b2626;
}

#carouselExample .carousel-indicators .active {
    width: 100px;
}

#carouselExample .carousel-indicators {
    bottom: 10px;
}

.row section.col {
    display: flex;
    flex-direction: column;
}

.row section.left {
    flex-basis: 35%;
    min-width: 320px;
    margin-right: 60px;
}

.row section.right {
    flex-basis: 50%;
}

section.left .contactTitle h2 {
    position: relative;
    font-size: 28px;
    color: #333;
    /* Dark text for title */
    display: inline-block;
    margin-bottom: 25px;
}

section.left .contactTitle h2::before {
    content: '';
    position: absolute;
    width: 50%;
    height: 1px;
    background-color: #ddd;
    top: 120%;
    left: 0;
}

section.left .contactTitle h2::after {
    content: '';
    position: absolute;
    width: 25%;
    height: 3px;
    background-color: #333;
    /* Light blue */
    top: calc(120% - 1px);
    left: 0;
}

section.left .contactTitle p {
    font-size: 17px;
    color: #555;
    /* Medium grey text */
    letter-spacing: 1px;
    line-height: 1.2;
    padding-bottom: 22px;
}

section.left .contactInfo {
    margin-bottom: 16px;
}

.contactInfo .iconGroup {
    display: flex;
    align-items: center;
    margin: 25px 0px;
}

.iconGroup .icon {
    width: 45px;
    height: 45px;
    border: 2px solid #666;
    /* Light blue border */
    border-radius: 50%;
    margin-right: 20px;
    position: relative;
}

.iconGroup .icon i {
    font-size: 20px;
    color: #666;
    /* Darker icon color */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.iconGroup .details span {
    display: block;
    color: #666;
    font-size: 18px;
}

.iconGroup .details span:nth-child(1) {
    text-transform: uppercase;
    color: #333;
}

section.left .socialMedia {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    margin: 22px 0px 20px;
}

.socialMedia a {
    width: 35px;
    height: 35px;
    text-decoration: none;
    text-align: center;
    margin-right: 15px;
    border-radius: 5px;
    background-color: #666;
    /* Light blue */
    color: #f4f4f4;
    transition: 0.4s;
}

.socialMedia a i {
    color: white;
    font-size: 18px;
    line-height: 35px;
    border: 1px solid transparent;
    transition-delay: 0.4s;
}

.socialMedia a:hover {
    transform: translateY(-5px);
    background-color: #f4f4f4;
    color: #666;
    border: 1px solid #666;
}

.socialMedia a:hover i {
    color: #666;
}

/* Code for the right section (column) */
.row section.right .messageForm {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-top: 30px;
}

.row section.right .inputGroup {
    margin: 18px 5px;
    position: relative;
}

.messageForm .halfWidth {
    flex-basis: 48%;
}

.messageForm .fullWidth {
    flex-basis: 100%;
}

input,
textarea {
    width: 100%;
    font-size: 18px;
    padding: 2px 0px;
    background-color: #fff;
    /* White input background */
    color: #333;
    /* Darker text color */
    border: none;
    border-bottom: 2px solid #ddd;
    /* Light grey border */
    outline: none;
}

textarea {
    resize: none;
    height: 220px;
    display: block;
}

.inputGroup label {
    position: absolute;
    left: 0;
    bottom: 4px;
    color: #777;
    /* Light grey label */
    font-size: 18px;
    transition: 0.4s;
    pointer-events: none;
}

.relative {
    position: relative;
}

.clientForm h3 {
    padding-bottom: 20px !important;
}

.vendorForm h3 {
    padding-bottom: 20px !important;
}

.upperlabel {
    position: relative !important;
    font-size: 16px !important;
}

#dateEstablishedlabel {
    position: absolute;
    left: 0;
    bottom: 24px;
    color: #777;
    /* Light grey label */
    font-size: 18px;
    transition: 0.4s;
    pointer-events: none;
}

#signaturelabel {
    position: absolute;
    left: 0;
    bottom: 34px;
    color: #777;
    /* Light grey label */
    font-size: 18px;
    transition: 0.4s;
    pointer-events: none;
}

.inputGroup input:focus~label,
.inputGroup input:valid~label {
    transform: translateY(-20px);
    font-size: 16px;
}

.inputGroup textarea:focus~label,
.inputGroup textarea:valid~label {
    transform: translateY(-210px);
    font-size: 16px;
}

.inputGroup button {
    padding: 8px 16px;
    font-size: 18px;
    background-color: #666;
    /* Light blue button */
    color: white;
    border: 1px solid transparent;
    border-radius: 25px;
    outline: none;
    cursor: pointer;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
    /* Lighter shadow */
    transition: 0.4s;
}

.inputGroup button:hover {
    background-color: #f4f4f4;
    color: #666;
    box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
    border: 1px solid #666;
}

#vendorForm p {
    margin-bottom: 20px;
}

.testimonial-area .container .sec-title {
    position: relative;
    padding-bottom: 2px;
    margin-bottom: 50px;
}

.testimonial-area .container .sec-title:after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100px;
    height: 3px;
    background: #333;
}

.testimonial-area .container .sec-title h2 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

.testimonial-area .container .sec-title p {
    font-size: 14px;
    text-transform: capitalize;
}

.testimonial-area {
    position: relative;
    z-index: 2;
    padding: 50px 0;
}

.testimonial-area .owl-carousel {
    overflow: hidden;
    padding: 0 20px;
    margin: 0 -30px;
    padding-right: 40px;
    padding-left: 40px;
}

.testimonial-content {
    width: 110%;
}

.owl-carousel .owl-stage-outer {
    padding: 30px 50px;
    margin-left: -35px;
    width: calc(100% + 150px);
}

.single-testimonial {
    border: 4px solid #333;
    text-align: center;
    border-radius: 45px;
    position: relative;
    z-index: 2;
}

.single-testimonial:before {
    content: '\f10d';
    position: absolute;
    font-family: FontAwesome;
    font-size: 60px;
    left: -35px;
    top: -35px;
    background: white;
    width: 126px;
    height: 100px;
}

.single-testimonial:after {
    content: '\f10e';
    position: absolute;
    font-family: FontAwesome;
    font-size: 60px;
    right: -35px;
    bottom: -35px;
    background: white;
    width: 126px;
    height: 100px;
}

.single-testimonial p {
    color: #333;
    font-size: 16px;
    line-height: 24px;
    padding: 50px;
    padding-bottom: 30px;
    position: relative;
    z-index: 3;
}

.client-info {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: left;
    padding-bottom: 50px;
}

.client-info .client-details h6 {
    font-size: 18px;
    font-weight: 700;
}

.client-info .client-details span {
    display: inline-block;
    font-size: 13px;
}

.client-info .client-pic {
    padding-right: 15px;
}

.client-info .client-pic img {
    width: 100%;
    height: 100px;
    border-radius: 50px;
}

.owl-dots {
    text-align: center;
    margin-top: 50px;
}

.owl-dots button {
    background: #666 !important;
    width: 15px;
    height: 15px;
    border-radius: 26px;
    margin: 0 5px;
    transition: 0.3s;
}

.owl-dots button.active {
    width: 30px;
}

#recent-blogs {
    background-color: #ECE8E5;
}

#recent-blogs .card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

#recent-blogs .card-img-top {
    height: 200px;
    object-fit: cover;
}

#recent-blogs .card-body {
    padding: 1.5rem;
}

#Architect h2 {
    font-size: 30px;
    font-weight: 600;
    text-transform: uppercase;
}

#Architect p {
    font-size: 14px;
    text-transform: capitalize;
}

.founder-section {
    padding: 80px 0;
    background-color: #f4f4f4;
    text-align: center;
}

.founder-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #666;
}

.founder-profile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.founder-profile img {
    border-radius: 50%;
    width: 180px;
    height: 180px;
    object-fit: cover;
    border: 5px solid #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.founder-profile h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-top: 10px;
}

.founder-profile p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    max-width: 700px;
    margin: 0 auto;
}

.whatsapp-float {
    position: fixed;
    bottom: 10px;
    right: 10px;
    text-align: center;
    animation: bounce 2s infinite;
    z-index: 1000;
}

.whatsapp-float img {
    height: 100px;
}

.whatsapp-float:hover {
    animation: none;
    /* Stops animation on hover for a smoother interaction */
}

.modal-dialog-right {
    margin-left: auto;
}

@media (min-width: 576px) {
    .modal.modal-dialog-right .modal-dialog {
        max-width: 50vw;
    }
}

@media (min-width: 720px) {
    #offcanvas1 {
        width: 50%;
        /* Narrower width for large screens */
    }
}