
body {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px; /* Standard size for body text */
    color: #333; /* Standard text color */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700; /* Bold weight for headings */
}

.carousel-caption h1 {
    font-size: 2.5rem; /* Larger size for main title */
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.carousel-caption h3 {
    font-size: 1.5rem; /* Smaller size for subtitle */
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.navbar-brand {
    font-size: 1.25rem; /* Slightly larger size for brand/logo text */
    font-weight: 700; /* Bold weight for brand/logo */
}


/* header */
header.navbar a.nav-link:hover {
    color: #b26dcc; /* Hover color for the text */
}

header.navbar {
    background-color: #FFF ; /* Soft lavender */
    position: -webkit-sticky;
    position: sticky;
    top: 0; /* Align the header at the top of the viewport */
    width: 100%; /* Ensure the header is full width */
    z-index: 1000; /* Higher index to keep the header above other content */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
}

header.navbar:hover {
    background-color: #b26dcc; /* Hover color for the header */
}
@media (max-width: 768px) {
    header.navbar {
        height: 60px; /* Reduce height for mobile devices */
    }
}


/* end header */

/* Position the enquiry button in the middle of the screen */
.sticky-btn {
    position: fixed;
    left: 100%;
    top: 50%;
    z-index: 999;
    /* Ensure it's above other content */
    right: 0;
    transform: translateX(-50%) translateY(-50%) rotate(90deg);
    width: 160px;
    margin: -20px;
    background-color: #b26dcc; /* Your logo's color */
    color: #ffffff; /* White text for contrast */
    border: none; /* Optional: removes the default border */
    outline: none; /* Removes focus outline */
    transition: background-color 0.3s ease; /* Smooth transition for hover effect */
    border-radius: 5%;
}
.sticky-btn:hover {
    background-color:#8969e6; /* A slightly darker shade for hover effect */
}

.sticky-btn:focus {
    box-shadow: 0 0 0 0px; /* Adds a glow effect that mimics an outline */
    color: #b26dcc;
}

.enquiry-form {
    position: fixed;
    right: -400px; /* Start offscreen to the right */
    top: 60px; /* Adjust this value based on the actual height of your header */
    width: 300px;
    background: linear-gradient(to right, #b26dcc, #dcb6e6); /* Horizontal gradient from original purple to lighter purple */
    border-left: 1px solid #ccc;
    padding: 15px;
    transition: right 0.5s ease; /* Smooth transition for sliding effect */
    z-index: 1000; /* Ensure it's above other content but below the button */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Optional: adds shadow for better visibility */
}
.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    color: #333;
    font-size: 20px;
    cursor: pointer;
}

.close-btn:hover {
    color: #000;
}

/* Additional styling for form elements */
.form-control,
.btn-primary {
    margin-top: 10px;
}


.navbar-brand img {
    height: 40px;  /* Adjust the height to fit the navbar */
    width: auto;   /* Maintain aspect ratio */
    vertical-align: middle;
}

.carousel-caption {
    background: rgb(178, 109, 204, 0.6); /* Semi-transparent black background */
    border-radius: 10px; /* Rounded corners for the caption box */
    padding: 20px; /* Padding around the text */
}

.carousel-caption h1, .carousel-caption h3 {
    color: white; /* White text color */
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5); /* Text shadow for better readability */
}

.carousel-caption h1 {
    font-size: 2.5rem; /* Larger size for main title */
}

.carousel-caption h3 {
    font-size: 1.5rem; /* Smaller size for subtitle */
}

.carousel-indicators li {
    background-color: #fff; /* White dots */
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.carousel-indicators .active {
    background-color: #555; /* Darker dot for active slide */
}
@media (max-width: 768px) {
    .navbar-brand img {
        height: 30px;  /* Smaller logo for smaller screens */
    }

    .carousel-caption {
        padding: 10px;
    }
    .carousel-caption h1 {
        font-size: 1.5rem;
    }
    .carousel-caption h3 {
        font-size: 1rem;
    }
    .carousel-indicators li {
        width: 12px; /* Adjust size for smaller screens */
        height: 12px; /* Adjust size for smaller screens */
    }
}

.carousel-item {
    transition: transform 0.6s ease-in-out; /* Smooth transition for sliding */
}

.carousel-inner {
    display: flex; /* Ensures items are lined up correctly for smooth wrapping */
}

.carousel-item img {
    width: 100%; /* Ensure images take full width of the container */
    height: auto; /* Maintain aspect ratio */
}

/* About us home screen */
#about-us {
    background: linear-gradient(to right, #b26dcc, #8969e6); /* Gradient background matching logo colors */
    color: white; /* White text for better readability */
    padding: 50px 0; /* Adequate padding for visual spacing */
}

#about-us h2 {
    font-size: 2.5rem; /* Larger font size for the heading */
    margin-bottom: 20px; /* Space below the heading */
}

#about-us p {
    font-size: 1.2rem; /* Comfortable reading size for paragraph text */
    line-height: 1.6; /* Adequate line height for readability */
}

@media (max-width: 768px) {
    #about-us h2 {
        font-size: 2rem; /* Slightly smaller font size for smaller screens */
    }

    #about-us p {
        font-size: 1rem; /* Smaller font size for paragraph text on mobile devices */
    }
}

/* services css */
#services {
    background-color: #f4f4f4; /* Light background for the section */
    padding: 20px 0;
}

.list-services {
    list-style: none;
    padding: 0;
}

.list-services li {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

/* services */
.card {
    margin-bottom: 20px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

.card-text {
    color: #666;
}

.btn-primary {
    background-color: #b26dcc;
    color: #fff;
    border: none;
}

.btn-primary:hover {
    background-color: #0056b3;
}


/* contact Us form */

#contact-us {
    background-color: #f8f9fa;
    padding: 50px 0;
}

#contact-us h2 {
    color: #b26dcc;
    text-align: center;
    margin-bottom: 20px;
}

#contact-us iframe {
    border: 0;
}

#contact-us p {
    color: #b26dcc;
    margin-top: 10px;
}

#contact-us form {
    margin-top: 20px;
}

#contact-us label {
    color: #b26dcc;
}

#contact-us .form-control {
    border-color: #b26dcc;
}

#contact-us .btn-primary {
    background-color: #b26dcc;
    color: #fff;
    border: none;
}

#contact-us .btn-primary:hover {
    background-color: #b26dcc;
}
/* footer */
.footer {
    background-color: #b26dcc;
    color: #fff;
    padding: 30px 0;
}

.footer h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.footer p {
    color: #ccc;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer a {
    color: #fff;
    text-decoration: none;
}

.footer a:hover {
    color: #8969e6;
}

.social-icons {
    list-style: none;
    padding: 0;
}

.social-icons li {
    display: inline-block;
    margin-right: 10px;
}

.social-icons a {
    color: #fff;
    font-size: 20px;
}

.newsletter-form {
    margin-top: 20px;
}

.newsletter-form input {
    padding: 8px;
    width: 70%;
    border: 1px solid #fff;
    border-radius: 5px;
}

.newsletter-form button {
    padding: 8px 15px;
    background-color: #8969e6;
    color: #fff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

.newsletter-form button:hover {
    background-color: #6b4aa8;
}