*{
	margin: 0px;
	padding: 0px;
	box-sizing: border-box;
}
img{
	max-width: 100%;
	display: block;
	height: auto;
} 
body {
    margin: 0;
    font-family: "Poppins", serif;
}

.top-bar {
    background: #5e3170;
    color: #d8b0e6;
    padding: 10px 20px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;    
    font-size: 14px;
}
.top-bar span{
    color: white;
    margin-left: 8px;
}
.sticky {
    margin-top: 0;
    position: fixed;
    top: 0;
    width: 100%;
  }
.navbar {
    display: flex;
    justify-content: space-around;
    align-items: center;
    background: #7d4196;
    padding: 10px 20px;
    position: fixed;
    z-index: 999;
    width: 100%;
}

.logo img{
    width: 220px;
 }

.nav-links {
    list-style: none;
    padding: 0;
    display: flex;
}

.nav-links li {
    margin: 0 25px;
}

.nav-links a {
    text-decoration: none;
    color: white;
    font-weight: bold;
    transition: 0.3s;
}

.nav-links a.active,
.nav-links a:hover {
    border: 2px solid white;
    padding: 5px 10px;
    border-radius: 20px;
}

/* Toggle Button */
.toggle-button {
    display: none;
    background: none;
    color: white;
    font-size: 24px;
    border: none;
    cursor: pointer;
}



.about {
    background: url('../images/img5.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    background-attachment: fixed;
}

.about::after {
    content: "";
    position: absolute;
    top: 0;  
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 2, 75, 0.486); /* Dark overlay */
    z-index: 1;
}

.about h1 {
    font-size: 60px;
    margin: 0;
    z-index: 2;
    position: relative;
    font-family: "Charm", serif;
}

.breadcrumb {
    margin-top: 10px;
    z-index: 2;
    position: relative;
    font-size: 1rem;
   
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgb(0, 0, 0);
}










.about {
    background: url('../images/img5.jpg') no-repeat center center/cover;
    height: 400px;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    
    position: relative;
    background-attachment: fixed;
}

.about::after {
    content: "";
    position: absolute;
    top: 0;  
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(88, 2, 75, 0.486); /* Dark overlay */
    z-index: 1;
}

.about h1 {
    font-size: 60px;
    margin: 0;
    z-index: 2;
    position: relative;
    font-family: "Charm", serif;
}

.breadcrumb {
    margin-top: 10px;
    z-index: 2;
    position: relative;
    font-size: 1rem;
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgb(0, 0, 0);
}




.services {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
    margin-top: 80px;
    font-family: Arial, sans-serif;
}

.service-box {
    width: 220px;
    padding: 20px;
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease-in-out;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.service-box:hover {
    transform: translateY(-10px);
}

.service-box i {
    font-size: 40px;
    color: #813D9C;
    margin-bottom: 10px;
}

.service-box h3 {
    font-size: 18px;
    color: black;
    margin-bottom: 10px;
}

.service-box p {
    font-size: 14px;
    color: #555;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Delay each box */
.service-box:nth-child(1) { animation-delay: 0.3s; }
.service-box:nth-child(2) { animation-delay: 0.6s; }
.service-box:nth-child(3) { animation-delay: 0.9s; }
.service-box:nth-child(4) { animation-delay: 1.2s; }




.main{
    /* background-color: #fbeee6; */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 600px;
    padding: 20px;
}
.container {
    display: flex;
    max-width: 1200px;
    background: #af75ca;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0px 10px 20px rgba(0, 0, 0, 0.1);
}

.image-section {
    width: 50%;
}

.image-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.text-section {
    width: 50%;
    padding: 40px;
    background-color: #fdf8f5;
    position: relative;
}

.text-section h1 {
    font-size: 36px;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;

}

.text-section p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;

}

.offer-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 120px;
    height: 120px;
    border: 1px solid #ce98d5;
    border-radius: 50%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #8b4b80;
}

.book-btn {
    display: inline-block;
    background: linear-gradient(135deg, #954897, #452240);
    color: #fff;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Playfair Display', serif;

}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 75, 132, 0.3);
}









.team-section {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.team-member {
    width: 30%;
    text-align: center;
    background: white;
    padding-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.team-member img {
    width: 100%;
    height: auto;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    transition: transform 0.3s ease-in-out;
}

.team-member:hover img {
    transform: scale(1.1);
}

.team-member h3 {
    font-size: 22px;
    margin: 25px 0;
}

.team-member p {
    font-size: 14px;
    padding: 0 15px;
    color: #7a5172;
}

.read-more {
    color: #c776b8;
    font-size: 14px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.team-member .social-icons {
    position: absolute;
    bottom: 170px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    background: rgba(199, 118, 194, 0.8);
    padding: 8px 15px;
    border-radius: 5px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.team-member:hover .social-icons {
    opacity: 1;
}

.team-member .social-icons a {
    color: white;
    font-size: 20px;
    text-decoration: none;
}







/* Google Font
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600&display=swap'); */

.main2{
    text-align: center;
    /* background: linear-gradient(135deg, #ff9a9e, #fad0c4, #fad0c4, #ffdde1); */
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

.testimonial-section {
    width: 90%;
    max-width: 1000px;
    padding: 40px 0;
}

.carousel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.testimonial {
    display: none;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    background: rgb(186 104 237 / 16%);
    border-radius: 25px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    width: 100%;
    transition: opacity 0.5s ease-in-out;
}

.testimonial.active {
    display: flex;
}

.testimonial-content {
    flex: 1;
    padding: 10px;
    text-align: left;
}

.testimonial-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
}

.testimonial-content span {
    color: #666;
}

.testimonial-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.testimonial-image img {
    width: 300px;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Carousel Dots */
.dots {
    margin-top: 15px;
}

.dot {
    height: 10px;
    width: 10px;
    background-color: #ccc;
    display: inline-block;
    margin: 0 5px;
    border-radius: 50%;
    cursor: pointer;
}

.dot.active {
    background-color: #ff6b81;
}

/* Responsive Design */
@media (max-width: 768px) {
    .testimonial {
        flex-direction: column;
        text-align: center;
    }

    .testimonial-content {
        text-align: center;
    }

    .testimonial-image img {
        width: 150px;
    }
}


/* WhatsApp */
.whatsapp-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d368;
    color: #fff;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 20px; 
    border-radius: 50px;
    display: flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: 0.3s;
    z-index: 9;
}

.whatsapp-button:hover {
    background-color: #1EBE5D;
    transform: scale(1.05);
}

.whatsapp-button img {
    width: 24px;
    height: 24px;
    margin-right: 10px;
}




 
/* footer */

.footer {
    /* background: linear-gradient(135deg, #242424, #5e2e51, #c776b4); */
    background-color: #000000;
    padding: 50px 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: auto;
}

.footer-column {
    flex: 1;
    margin: 20px;
    min-width: 250px;
}

.footer-logo {
    font-size: 30px;
    font-weight: bold;
    color: #c776bc;
}

.footer-column h3 {
    margin-bottom: 20px;
    font-size: 18px;
    color: #d57dc9;
}

.footer-column p,
.footer-column a {
    font-size: 14px;
    color: #ddd;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #e67ecc;
}

/* .footer .social-icons {
    margin-top: 20px;
} */

.footer .social-icons a {
    background: #000000;
    color: white;
    display: inline-block;
    padding: 10px;
    margin-right: 5px;
    border-radius: 5px;
    font-size: 20px;
    text-decoration: none;
    transition: background 0.3s ease;
}

/* .footer .social-icons a:hover {
    background: #a85d95;
} */

.footer-bottom {
    text-align: center;
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: 30px;
}

.footer-bottom a {
    color: #c776bf;
    text-decoration: none;
}
.footer-bottom p{
    color: white;
}
.footer-bottom a:hover {
    color: #a85d8b;
}

.newsletter input {
    width: 70%;
    padding: 10px;
    border: none;
    border-radius: 5px;
}

.newsletter button {
    background: #c776ad;
    color: white;
    padding: 10px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
    transition: background 0.3s;
}

.newsletter button:hover {
    background: #a87c5d;
} 