.rounded-link {
    margin-right: 5px;
    display: inline-block;
    padding: 5px 30px !important;
    border: 1px solid #acacac;
    border-radius: 30px; /* Rounded corners */
    text-decoration: none;
    color: black; /* Default text color */
    font-size: 16px;
    text-align: center;
    transition: color 0.3s ease-in-out, background-color 0.3s ease-in-out;
}

.rounded-link:hover {    
    background-color: #F8D08B; /* Optional: background change */
}

.rounded-link.active {
    background-color: #F8D08B; /* Optional: background change */
}

.text-container {
    position: relative;
    display: inline-block;    
}

.text-container::before {
    content: "";
    position: absolute;
    top: 0;    
    right: -50px;
    width: 100%;
    height: 100%;
    background: url('../images/text-back.png') no-repeat center center;
    background-size: 180px;    
    z-index: -1; /* Moves the image behind the text */
    border-radius: 10px; /* Optional rounded corners */
}


@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); } /* Moves up */
    100% { transform: translateY(0px); }
}


.floating-img {
    display: block;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

@keyframes rotateTwice {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(720deg); }
}

.rotating-arrow {
    display: inline-block;    
    transition: transform 0.5s ease-in-out;
}

.rotating-arrow:hover {
    animation: rotateTwice 0.5s ease-in-out forwards;
}

.shift-arrow {
    display: inline-block;    
    transition: transform 0.3s ease-in-out;
}

.shift-arrow:hover {
    transform: translateX(10px); /* Moves forward */
}


.zoom-image {
    transition: transform 0.3s ease-in-out;
}

.zoom-image:hover {
    transform: scale(1.1); /* Slightly increases size */
}



ul{list-style: none; margin: 0; padding: 0;}
.navbar img{height: 40px;}
.cta-button {
    border-radius: 30px;
    border: 2px solid black;
    background: transparent;
    padding: 10px 25px;
    position: relative;
    display: flex;
    align-items: center;
    font-weight: bold;
}
.cta-circle {
    width: 30px;
    height: 30px;
    background: black;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 10px;
}
.cta-circle i {
    color: white;    
}
.cta-button-dark {
    background: black;
    color: white;
}
.cta-circle-light {
    background: white;
}

.cta-circle-light i{
    color: black;  
}

.faq-footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 20px;
}
.faq-button {
    border-radius: 30px;
    border: 2px solid black;
    background: none;
    padding: 10px 20px;
    font-weight: bold;
}

.testimonial-slider {    
    padding: 40px 0;
}
.testimonial-text {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 20px;
}
.testimonial-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.testimonial-user {
    display: flex;
    align-items: center;
    gap: 10px;
}
.testimonial-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}
.testimonial-controls {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    display: flex;
    gap: 10px;
}
.carousel-control-prev-icon{margin-right: 50px; }
.carousel-control-next-icon{}

.carousel-control-prev-icon, .carousel-control-next-icon {
    background-color: black;
    border-radius: 50%;
    padding: 10px;
}
.contact-form-section {
    border-radius: 30px;
    background: #FFD068;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 50px;    
}
.contact-form{position: relative; height: 450px}
.contact-form img {
    width: auto;
    position: absolute;    
    height: 500px;
    left: 0;
    bottom: 0;
}
.contact-form-container {
    max-width: 400px;
    width: 100%;
}
.contact-form-container h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}
.contact-form input {
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    border: 1px solid #ccc;
    margin-bottom: 15px;
}
.contact-form button {
    width: 100%;
    padding: 10px;
    border-radius: 30px;
    background: black;
    color: white;
    border: none;
    font-weight: bold;
}

.offer1 img{height: 160px;}
.offer2 img{height: 130px;}
.offer3 img{height: 140px;}
.offer4 img{height: 150px;}

.featureWrap{border-radius: 30px;}
.f1{background-color: #DEFCD1; }
.f2{background-color: #CCCBFF; }
.f3{background-color: #FFD578; }
.f4{background-color: #BFE1FF; }
.f5{background-color: #FFB4A3; }
.featall{ overflow: hidden; position: relative;}
.featall img{position: absolute; height: 120px; right: 0; top: 0;}


.feature-text{margin-top: 120px;}


.footer {    
    padding: 40px 0;
}
.footer .logo img {
    height: 50px;
}
.footer .social-icons a {
    margin-right: 10px;
    font-size: 20px;
    color: black;
}