<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* General Colors */
body {
    background-color: #f5f5f5; /* Light background to contrast with logo */
    color: #333; /* Dark text color for readability */
}
h2{
    color: #a28f47;
}


/* top header */
/* Top Header Section Styles */
/* Top Header Section Styling */
.topsection{
    padding: 6px;
}
.top-header {
    background-color: #007bff; /* Header background color */
    color: white;
    padding: 20px 0;
}

.contact-info, .whatsapp-info {
    display: flex;
    align-items: center;
    font-size: 16px;
}

.whatsapp-info {
    cursor: pointer;
    margin-left: 20px;
}

.social-links {
    display: inline-block;
}

.social-icon {
    color: white;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s;
}

.social-icon:hover {
    color: #ffc107; /* Change color on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .top-header {
        text-align: center;
    }

    .contact-info, .social-links {
        justify-content: center;
    }
}


/* Navbar */
/* Navbar */
.navbar {
    background-color: rgba(0, 0, 0, 0.922);
    z-index: 1000; /* Ensure the navbar appears above other elements */
    transition: background-color 0.3s ease; /* Smooth transition for background color */
}

.navbar-brand img {
    height: 50px;
    width: 50px;
}

.nav-link {
    color: #a28f47; /* Gold color for links */
    font-weight: 600;
    font-size: 1.2rem;
    transform: scale(0.9); /* Zoom out effect */
    transition: transform 0.3s ease-in-out;
}

.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 4.5rem;
    padding-left: .5rem;
}

.nav-link:hover {
    color: #ffc107; /* Highlight color on hover */
    transform: scale(1);
    font-size: 1.3rem;
}

/* Sticky navbar styling */
.sticky-top {
    position: sticky;
    top: 0;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Subtle shadow for depth */
}

.whats-float {
    position: fixed; /* Keeps the WhatsApp button in a fixed position */
    bottom: 20px;
    right: 20px;
    z-index: 1000; /* Ensure it appears above other elements */
}

/* Hero Section */
.hero-section {
    background-size: cover;
    background-position: center;
    padding: 50px 0;
    color: white;
    background-color: #000; /* Black overlay */
    background-blend-mode: multiply;
}

.hero-section h1 {
    font-size: 3.5rem;
    font-weight: bold;
    color: #a28f47; /* Gold for the title */
}

.hero-section p {
    font-size: 1.2rem;
    color: #fff;
}

/* Slider Caption */
.carousel-caption {
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    padding: 15px;
    border-radius: 8px;
    color: #a28f47; /* Gold text color */
}

.carousel-caption h3 {
    font-size: 2rem;
    font-weight: bold;
}

.carousel-caption p {
    font-size: 1.2rem;
}

/* Welcome Section */
.welcome-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #a28f47;
}

.welcome-section p {
    font-size: 1.1rem;
    color: #333;
}

/* Services Section */
.service-box {
    border: 2px solid #a28f47;
    padding: 20px;
    border-radius: 10px;
    transition: transform 0.3s ease;
    background-color: #fff;
    box-shadow: 0px 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.service-box img {
    height: 300px;
    width: 300px;
    object-fit: cover;
}

.service-box:hover {
    transform: scale(1.05);
    background-color: #a28f47; /* Gold background on hover */
    color: #fff;
    transition: background-color 0.3s ease;
}

.service-box h4 {
    margin-top: 10px;
    color: #a28f47;
}

.service-box:hover h4 {
    color: #fff;
}

/* Clients Section */
.clients-section img {
    max-width: 100px;
    transition: transform 0.3s ease;
}

.clients-section img:hover {
    transform: scale(1.1);
}

/* Footer Styling */
footer {
    background-color: #1b1b1b; /* Dark background */
    margin-bottom: 40px;
}

footer h5 {
    font-weight: 600;
    letter-spacing: 1px;
    transition: color 0.3s ease;

}




footer p, footer a {
    font-size: 14px;
    transition: color 0.3s ease;

}
footer p:hover{
    color: #a28f47; /* Hover color (yellow) */

}

footer a {
    color: #ffffff;
    transition: color 0.3s ease;
}

footer a:hover {
    color: #a28f47; /* Hover color (yellow) */
}

/* Social Media Icons with Zoom Hover Effect */
.social-icon {
    display: inline-block;
    color: #ffffff;
    font-size: 20px;
    width: 40px;
    height: 40px;
    background-color: #343a40; /* Darker gray background for icons */
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: transform 0.3s ease-in-out, background-color 0.3s ease-in-out;
    margin-right: 15px;
}

.social-icon:hover {
    transform: scale(1.2); /* Zoom in on hover */
    background-color: #a28f47; /* Change background on hover */
    color: #1b1b1b; /* Dark color for the icon */
}

/* Footer Bottom Section */


.lastff{
    background-color: #000; /* Pure black background for the bottom */
    color: #fff; /* White text */
    /* padding: 10px; */
    margin-top: 100px;
    font-size: 13px;
}

/* Optional: Ensure Footer Stays at Bottom */
body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

footer {
    margin-top: auto;
}
/* Bottom Footer Styling */
.bottom-footer {
    background-color: #000000e2; /* Black background */
    color: #fff; /* White text */
    padding: 10px 0; /* Padding for top and bottom */
    position: fixed; /* Fixed at the bottom */
    left: 0;
    bottom: 0;
    width: 100%; /* Full width */
    font-size: 14px;
    z-index: 100; /* Ensure it stays on top */
}

.bottom-footer p {
    margin: 0; /* Remove default margin */
    letter-spacing: 1px; /* Add slight spacing between letters */
}
.bottom-footer p:hover{
    color: #a28f47;
}


/* Team Section */
.our-team img {
    max-width: 150px;
    border: 4px solid #a28f47;
    border-radius: 50%;
}

.our-team h5 {
    font-size: 1.2rem;
    font-weight: bold;
    color: #a28f47;
}
.carousel-item img{
    /* height: 30%; */
    height: 500px;
}



/* Our Mission Section */
.our-mission {
    background-color: rgba(0, 0, 0, 0.918); /* Light background */
    /* padding: 60px 0; Padding for top and bottom */
}

.our-mission h2 {
    font-size: 32px;
    font-weight: 700;
    color: #a28f47; /* Dark color for heading */
    /* margin-bottom: 20px; */
}

.our-mission p.lead {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.942); /* Medium gray color for lead text */
    line-height: 1.8;
    /* margin-bottom: 20px; */
}

.our-mission ul {
    padding-left: 0; /* Remove default padding */
}

.our-mission ul li {
    font-size: 18px;
    color: white; /* Dark color for list items */
    /* margin-bottom: 15px; */
    line-height: 1.6;
}

.our-mission ul li i {
    color: #a28f47; /* Icon color */
    font-size: 22px;
    vertical-align: middle;
}

.our-mission .img-fluid {
    border: 5px solid #a28f47; /* Border around the image */
    border-radius: 10px; /* Rounded corners for the image */
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for image */
    transition: transform 0.3s ease-in-out;
}

.our-mission .img-fluid:hover {
    transform: scale(1.05); /* Zoom effect on hover */
}

@media (max-width: 768px) {
    .our-mission .col-lg-6 {
        text-align: center; /* Center content on smaller screens */
    }

    .our-mission ul li {
        font-size: 16px; /* Adjust font size for mobile */
    }

    .our-mission h2 {
        font-size: 28px; /* Adjust heading size for mobile */
    }
}

.honor img{
    height: 400px;
    width: 400px;
}


/* client tesitmonal */

/* Testimonial Section Styling */
.testimonial-section {
    background-color: #f8f9fa; /* Light background */
    padding: 60px 0;
}

.testimonial-section h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.testimonial-section .carousel-item {
    transition: transform 0.6s ease-in-out; /* Smooth slide transition */
}

.testimonial-section .client-img {
    width: 150px;
    height: 150px;
    border: 5px solid #a28f47; /* Yellow border for images */
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2); /* Subtle shadow for images */
}

.testimonial-section .blockquote {
    font-size: 18px;
    font-style: italic;
    color: #555;
    padding-left: 20px;
    position: relative;
}

.testimonial-section .blockquote-footer {
    font-size: 14px;
    color: #888;
}

.testimonial-section .carousel-control-prev-icon,
.testimonial-section .carousel-control-next-icon {
    background-color: #a28f47; /* Yellow control buttons */
    border-radius: 50%;
    padding: 10px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .testimonial-section h2 {
        font-size: 28px;
    }

    .testimonial-section .client-img {
        width: 120px;
        height: 120px;
    }

    .testimonial-section .blockquote {
        font-size: 16px;
    }
}



/* contact us */

/* Contact Us Section Styling */
.contact-us-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.contact-us-section h2 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 40px;
    color: #333;
}

.contact-info-box {
    padding: 20px;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.1);
}

.contact-info-box h4 {
    font-size: 20px;
    color: #a28f47;
    /* Yellow accent */
    margin-top: 10px;
}

.contact-info-box i {
    color: #a28f47;
}

.contact-info-box p {
    font-size: 16px;
    color: #555;
    margin-top: 5px;
}

.contact-us-section form .form-control {
    border-radius: 5px;
    border: 2px solid #ddd;
    padding: 10px;
}

.contact-us-section form .btn {
    background-color: #a28f47;
    border: none;
    padding: 10px 30px;
    font-size: 16px;
    font-weight: bold;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-us-section form .btn:hover {
    background-color: #a28f47;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .contact-info-box {
        margin-bottom: 30px;
    }
}



/* gallery ccss */
/* Gallery Section Styling */
.gallery-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.gallery-section h2 {
    font-size: 36px;
    font-weight: bold;
    
    margin-bottom: 40px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0px 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out;
}

.gallery-item img {
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 10px;
}

.gallery-item:hover .overlay {
    opacity: 1; /* Show overlay on hover */
}

.overlay-content {
    color: #fff;
    padding: 20px;
}

.overlay-content h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.overlay-content p {
    font-size: 16px;
    margin-bottom: 20px;
}

.overlay-content .btn {
    background-color: #a28f47; /* Yellow button */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.overlay-content .btn:hover {
    background-color: #a28f47;
}
/* .fas{
    background-color: #a28f47;
    color: #a28f47;
} */

/* Responsive Adjustments */
@media (max-width: 768px) {
    .gallery-section h2 {
        font-size: 28px;
    }

    .overlay-content h4 {
        font-size: 20px;
    }

    .overlay-content p {
        font-size: 14px;
    }
}


/* fetures gallery */
/* Feature Highlight Section Styling */
.feature-highlight {
    background-color: #f1f1f1;
    padding: 60px 0;
}

.feature-highlight h2 {
    font-size: 36px;
    font-weight: bold;
    /* color: #333; */
    margin-bottom: 40px;
}

.feature-item {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.feature-item:hover {
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
}

.feature-title {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-description {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.btn-custom {
    background-color: #a28f47; /* Custom button color */
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    border-radius: 5px;
    text-decoration: none;
}

.btn-custom:hover {
    background-color: #a28f47;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .feature-highlight h2 {
        font-size: 28px;
    }

    .feature-title {
        font-size: 20px;
    }

    .feature-description {
        font-size: 14px;
    }
}


.custom-icon {
    color: #a28f47;
  }
  


  /* whatsapp matter */
  
  .whats-float {
    position: fixed;
    transform:translate(108px,0px);
    top:60%;
    right:0;
    width:150px;
    height: 50px;
    overflow: hidden;
    background-color: #25d366;
    color: #FFF;
    border-radius: 4px 0 0 4px;
    z-index: 10;
    transition: all 0.5s ease-in-out;
    vertical-align: middle
}
.whats-float a span {
    color: white;
    font-size: 15px;
    padding-top: 8px;
    padding-bottom: 10px;
    position: absolute;
    line-height: 16px;
    font-weight: bolder;
}

.whats-float i {
    font-size: 30px;
    color: white;
    line-height: 30px;
    padding: 10px;
    transform:rotate(0deg);
    transition: all 0.5s ease-in-out;
    text-align:center;

}

.whats-float:hover {
    color: #FFFFFF;
    transform:translate(0px,0px);
}

.whats-float:hover i  {
    transform:rotate(360deg);
}


</pre></body></html>