*{
	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;
    /* padding-left: 100px; */
    font-family: "Charm", serif;
}

.breadcrumb {
    margin-top: 10px;
    z-index: 2;
    position: relative;
    font-size: 1rem;
    /* padding-left: 100px; */
}

.breadcrumb a {
    color: #fff;
    text-decoration: none;
    margin: 0 5px;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: rgb(0, 0, 0);
}













.contact-section {
    display: flex;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
}

.contact-info {
    background: #f7dff6;
    padding: 40px;
    width: 40%;
    border-radius: 8px;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 10px;
    font-family: "Charm", serif;
}

.contact-info p {
    font-size: 16px;
    margin-bottom: 20px;
}

.info-box {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.info-box i {
    background: #5e2e57;
    color: white;
    padding: 12px;
    border-radius: 50%;
    margin-right: 15px;
}

.info-box div {
    font-size: 14px;
}

.contact-form {
    width: 60%;
    padding: 40px;
}

.contact-form h2 {
    font-size: 60px;
    margin-bottom: 20px;
    font-family: "Charm", serif;

}

.form-group {
    display: flex;
    justify-content: space-between;
}

.form-group input,
.contact-form textarea {
    width: 48%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #d57dc9;
    border-radius: 5px;
    background: white;
    font-size: 14px;
}

.contact-form textarea {
    width: 100%;
    height: 100px;
    resize: none;
}

.send-button {
    background: #c776c4;
    color: white;
    padding: 12px 20px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background 0.3s;
}

.send-button:hover {
    background: #a85d9f;
}

/* map */
.map{
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
}
.map-container {
    width: 90%;
    max-width: 1200px;
    position: relative;
    background: #fff;
    padding: 15px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}
iframe {
    width: 100%;
    height: 400px;
    border: none;
    border-radius: 5px;
}





/* 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 {
    padding: 50px 20px;   
    background-color: #000000;
}

.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;
}

.social-icons {
    margin-top: 20px;
}

.social-icons a {
    background: #000000;
    color: rgb(228, 217, 217);
    display: inline-block;
    font-size: 16px;
    padding: 10px;
    font-size: 20px;
    margin-right: 5px;
    border-radius: 5px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.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: #a85d93;
} 

