
/* nav */

.nav-container {
    padding: 1rem 4%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: relative;
    z-index: 100;
    width: 100vw; /* Use viewport width instead of 100% */
    margin-left: calc(-50vw + 50%); /* Center it if parent has width constraints */
    box-sizing: border-box; /* Ensure padding doesn't add to width */
}

.test{
    background-image: url('/public/images/background/bg3.png');
    background-size: cover;
    /* background-position: center; */
    background-repeat: no-repeat;
    
}
/* Logo Section */
.nav-logo {
    display: flex;
    align-items: center;
    font-weight: bold;
    font-size: 1.5rem;
    color: #4a2f1d;
}

.nav-logo img {
    width: 100px;
   
}

.nav-name {
    text-shadow: 2px 2px 4px rgb(239, 239, 4);
}

/* Navigation Links */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #4a2f1d;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #c17756;
}



/* Hamburger Menu (Hidden by Default) */
.nav-hamburger {
    display: none;
    font-size: 2rem;
    cursor: pointer;
    color: #4a2f1d;
}

/* Responsive Navigation */
@media (max-width: 992px) {
    .nav-hamburger {
        display: block;
        z-index: 100;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 50%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease-in-out;
        box-shadow: 2px 0px 10px rgba(0, 0, 0, 0.1);
        z-index: 99;
    }

    .nav-links.active {
        left: 0;
    }
}


.nav-hamburger.active ~ .RV-swiper-button-next {
    display: none;
}




    .nav-links {
        width: 100%;
        
    }

html, body {
            font-family: 'Playfair Display', serif;

    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  
  *, *:before, *:after {
    box-sizing: border-box;
  }

/* RV */

.RV-testimonial-section {
    padding: 60px 0;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    background-image: url('./images/Rectangle 37.png');
    background-size: 30%;
    background-repeat: no-repeat;
    background-position: center;
}

.RV-section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
}

.RV-testimonial-container {
    position: relative;
    padding: 20px 40px;
    overflow: hidden;
    background-color: transparent;
    border-radius: 10px;
}

.RV-testimonial-slider {
    display: flex;
    transition: transform 0.8s ease;
    z-index: 1;
    position: relative;
}

/* Testimonial Card */
.RV-testimonial-card {
    padding: 30px;
    border-radius: 8px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
@media (max-width: 767px) {
    .RV-testimonial-card {
               flex: 0 0 100%;
        min-width: 0;
        width: 101%;
        margin: 0 auto;
        /* margin: -1%; */
        scroll-snap-align: center;
        box-sizing: border-box;
    }
}
/* Default: 3 Cards */
@media (min-width: 769px) {
    .RV-testimonial-card {
        flex: 0 0 calc(33.333% - 20px);
        margin: 0 10px;
    }
}

/* Mobile: 1 Card */
@media (max-width: 768px) {
    .RV-testimonial-slider {
        flex-wrap: nowrap;
        /* overflow-x: hidden; */
        width: 100%;
    }

    .RV-testimonial-card {
               flex: 0 0 100%;
        min-width: 0;
        width: 100%;
        margin: 0 auto;
        /* margin: -1%; */
        scroll-snap-align: center;
        box-sizing: border-box;
    }
}

/* Stars and Quote */
.RV-stars {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.RV-quote-icon {
    font-size: 2rem;
    color: #e1e1e1;
    margin-bottom: 15px;
}

.RV-testimonial-text {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.RV-testimonial-author {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.RV-author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 10px;
}

.RV-author-name {
    font-weight: bold;
    color: #333;
}

/* Swiper Buttons */
.RV-swiper-button {
    position: absolute;
    top: 35%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: #ffcc00;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    font-size: 1.2rem;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s;
}

.RV-swiper-button:hover {
    background-color: #e64a19;
}

.RV-swiper-button-prev {
    left: 10px;
}

.RV-swiper-button-next {
    right: 10px;
}


/* footer */
.footer-social-icon {
    text-decoration: none !important; /* Remove underline */
    border-bottom: none; /* Ensure no bottom border */
}

.footer-body {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.footer-link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.footer-list {
    list-style: none;
}

.footer-img {
    max-width: 100%;
    height: auto;
}

/* Footer Styles */
.footer-main {
    background-color: #a44104;
    color: #fff;
    padding: 40px 0 20px;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 30px;
}

.footer-logo {
    max-width: 150px;
    margin-bottom: 15px;
}

.footer-heading {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    left: 22%;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0px;
    height: 2px;
    background-color: #fff;
}

.footer-list-item {
    margin-bottom: 10px;
}

.footer-link:hover {
    text-decoration: underline;
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    gap: 7px;
    margin-top: 20px;
    align-items: center;
}

.footer-social-icon {
    width: 50px; /* Increased size */
    height: 50px; /* Increased size */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white; /* White background */
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, background-color 0.3s ease;
}

/* Change color on hover */
.footer-social-icon:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    color: #ffcc00; /* Change icon color on hover */
}

/* Individual colors for each icon */
.footer-social-icon i.fa-instagram {
    color: #E1306C; /* Instagram - Pink */
}

.footer-social-icon i.fa-facebook-f {
    color: #1877F2; /* Facebook - Blue */
}

.footer-social-icon i.fa-youtube {
    color: #FF0000; /* YouTube - Red */
}

/* Copyright */
.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 30px;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
}

@media (max-width: 319px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
}

.nav-class {
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: white;
    position: relative;

}

.logo-class {
    display: flex;
    font-weight: bold;
    font-size: 1.5rem;
    color: #4a2f1d;
    z-index: 2;
    font-weight: bold;
   
            width: 100px;
            animation: float 3s ease infinite;
        }
    

.logo-class img {
    width: 100px;
}

.name-class {
    text-shadow: 2px 2px 4px rgb(239, 239, 4);
}

.nav-class-links {
    display: flex;
    gap: 2rem;
}

.nav-class-links a {
    text-decoration: none;
    color: #4a2f1d;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-class-links a:hover {
    color: #c17756;
}

.hamburger-class {
    display: none;
    cursor: pointer;
    z-index: 2;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hamburger-class {
        display: block;
        z-index: 100;
    }

    .nav-class-links {
        position: fixed;
        top: 0;
        left: -100%;
        height: 100vh;
        width: 50%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: left 0.3s ease;
        z-index: 10;
    }

    .nav-class-links.active {
        left: 0;
    }
   
}

@media(max-width:1024px){
    .nav-class-links {
        display: flex;
        gap: 1rem;
    }
}



@media (max-width: 768px) {
    .hamburger-class {
        display: block;
    }

    .nav-class-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 100%;
        background-color: white;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        z-index: 10;
    }

    .nav-class-links.active {
        right: 0;
    }
}

@media (max-width: 480px) {
    .hamburger-class {
        font-size: 2rem;
    }

    .nav-class-links {
        width: 100%;
    }
}