   :root {
            --primary-color: #6A1B9A;
            --secondary-color: #8E24AA;
            --sidebar-bg: #264653;
            --sidebar-hover: #2A9D8F;
            --bg-color: #F3F4F6;
            --card-bg: #FFFFFF;
        }

        body {
            background-color: var(--bg-color);
        }
/* General Styling */
.header-top {
  background: linear-gradient(90deg, #2C3E50, #1ABC9C);
  padding: 10px 0;
  font-family: 'Roboto', sans-serif;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.left {
  color: #ffffff;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.left span {
  display: flex;
  align-items: center;
}

.left span i {
  margin-right: 8px;
  color: #1ABC9C;
}

.right {
  display: flex;
  gap: 20px;
  align-items: center;
}

.right a {
  color: #ffffff;
  font-size: 18px;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.right a i {
  transition: color 0.3s ease;
}

.right a:hover {
  background: #ffffff;
  transform: scale(1.1);
}

.right a.whatsapp:hover i {
  color: #25D366; /* WhatsApp green */
}

.right a.facebook:hover i {
  color: #1877F2; /* Facebook blue */
}

.right a.instagram:hover i {
  color: #E1306C; /* Instagram pink */
}

.right a.sitemap:hover i {
  color: #f39c12; /* Sitemap orange */
}

.right span {
  color: #ffffff;
  font-size: 14px;
  display: flex;
  align-items: center;
}

.right span i {
  margin-right: 8px;
  color: #1ABC9C;
}

/* Responsive Design */
@media (max-width: 992px) {
  .topbar {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }

  .left, .right {
    justify-content: center;
  }

  .left span {
    font-size: 14px;
  }

  .right a {
    font-size: 16px;
  }
}

@media (max-width: 576px) {
  .topbar {
    padding: 10px 5px;
    gap: 10px;
  }

  .left span {
    font-size: 13px;
  }

  .right a {
    font-size: 14px;
  }

  .right span {
    font-size: 13px;
  }
}

/* Style for Contact Us Icon */
.navbar .nav-link i {
    font-size: 1.2rem; /* Increase the icon size */
    color: #d89c54; /* Apply the golden color */
    margin-left: 5px; /* Add slight spacing between the text and icon */
    transition: transform 0.3s ease, color 0.3s ease; /* Smooth transition for hover effect */
}

.navbar .nav-link:hover i {
    color: #b3743a; /* Slightly darker shade on hover */
    transform: scale(1.3); /* Slightly enlarge the icon on hover */
}

      aside {
    background: linear-gradient(90deg, #2C3E50, #1ABC9C); /* Rich Midnight Blue to Vibrant Teal */
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
	margin-bottom:30px;
    border-radius: 20px 50px; /* Asymmetrical border radius for a modern look */
    color: #ffffff;
    font-family: 'Arial', sans-serif;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
}

aside:hover {
    transform: translateY(-5px); /* Slight hover lift */
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3); /* Enhanced shadow on hover */
}

aside h5 {
    font-size: 1.6rem;
    font-weight: bold;
    text-transform: uppercase;
    margin-bottom: 20px;
    text-align: center;
    border-bottom: 3px solid rgba(255, 255, 255, 0.4); /* Underline with transparency */
    padding-bottom: 10px;
}

.category-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-list li {
    background: rgba(255, 255, 255, 0.1); /* Slightly transparent background for items */
    margin-bottom: 15px;
    border-radius: 15px; /* Soft round edges for list items */
    display: flex;
    align-items: center;
    padding: 10px 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for items */
    transition: transform 0.3s ease, background 0.3s ease;
}

.category-list li:hover {
    background: rgba(255, 255, 255, 0.2); /* Lighter background on hover */
    transform: translateX(10px); /* Slight move effect on hover */
	color:#fff;
}

.category-list li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    width: 100%;
}

.category-list li a i {
    margin-right: 10px;
    font-size: 1.2rem;
    color: #d89c54; /* Icon color */
}

      /* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
}
/* General Styling */


/* Main Header Styles */
.main-header {
  background-color: white;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 15px 0;
}
.navbar-brand {
  display: flex;
  align-items: center;
  color: #d89c54;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
}
.navbar-brand .logo {
  height: 80px;
  margin-right: 10px;
}

/* Navbar Styles */
.navbar-nav {
  display: flex;
  align-items: center;
}
.navbar-nav .nav-item {
  margin-left: 20px;
}
.navbar-nav .nav-link {
  color: #333;
  font-size: 16px;
  text-decoration: none;
  position: relative;
  transition: color 0.3s ease;
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #d89c54;
}
.navbar-nav .nav-link.active::after,
.navbar-nav .nav-link:hover::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #d89c54;
  bottom: -5px;
  left: 0;
  transition: width 0.3s ease;
}
.navbar-nav .nav-link::after {
  content: "";
  width: 0;
}

/* Navbar Toggler for Mobile */
.navbar-toggler {
  border: none;
}


        .table {
            background-color: var(--card-bg);
            border-radius: 8px;
            overflow: hidden;
        }

        .table thead {
            background-color: var(--primary-color);
            color: white;
        }

        .table tbody tr:hover {
            background-color: #f8f9fa;
        }
		
		.btn-primary {
background: linear-gradient(to right, #d89c54, #d89c54);
    border: none;
    color: #fff; /* Text color */
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
    background: linear-gradient(to right, #ff6600, #ffdd00);
    transform: scale(1.05);
}
.container-btn {
    display: flex;
    justify-content: center;
    align-items: center;
}footer {background:#2C3E50;
    padding: 40px 0;
    font-family: Arial, sans-serif;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 1;
    margin: 20px;
    min-width: 220px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #d4a537;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
}
.header-section {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 40px 0; /* Adds spacing around the header */
    position: relative;
}
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300&display=swap');

.header-title {
    font-size: 2rem; /* Moderate font size */
    text-align: center; /* Center align */
    position: relative; /* For underline */
    margin: 20px 0; /* Add spacing around the heading */
    letter-spacing: 1px; /* Subtle letter spacing */
}

/* Styling for "Our" */
.header-title .narrow-text {
    font-family: 'Roboto Condensed', sans-serif; /* Narrow font */
    font-weight: 300; /* Light weight for narrow text */
    font-size: 2.2rem; /* Slightly smaller font size */
    color: #d89c54; /* Golden color */
    text-transform: uppercase; /* Uppercase for emphasis */
}

/* Styling for "Products" */
.header-title .bold-text {
    font-family: 'Montserrat', sans-serif; /* Bold font */
    font-weight: 700; /* Bold weight for emphasis */
    font-size: 2.2rem; /* Slightly larger font size */
    color: #2C3E50; /* Dark blue-gray color */
    text-transform: uppercase; /* Uppercase for emphasis */
}

/* Underline effect */
.header-title::after {
    content: '';
    position: absolute;
    bottom: -5px; /* Distance from the text */
    left: 50%; /* Center align the underline */
    transform: translateX(-50%); /* Center the underline */
    width: 80px; /* Initial underline width */
    height: 3px; /* Underline thickness */
    background-color: #d89c54; /* Golden color for underline */
    border-radius: 2px; /* Rounded corners for underline */
    transition: all 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for underline */
.header-title:hover::after {
    width: 120px; /* Expand underline on hover */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .header-title {
        font-size: 1.8rem; /* Adjust overall font size */
    }

    .header-title .narrow-text {
        font-size: 1.6rem; /* Adjust narrow font size */
    }

    .header-title .bold-text {
        font-size: 2rem; /* Adjust bold font size */
    }

    .header-title::after {
        width: 60px; /* Shorter underline for smaller screens */
    }

    .header-title:hover::after {
        width: 90px; /* Adjust hover effect for smaller screens */
    }
}

        .carousel-container {
            width: 100%;
            max-width: 1200px;
            margin: auto;
            overflow: hidden;
            position: relative;
            padding: 40px 0;
        }

        .carousel {
            display: flex;
            transition: transform 0.8s ease-in-out;
            gap: 20px;
        }

        .testimonial {
            background: linear-gradient(to bottom, #ffe6f0, #ffffff);
            border-radius: 20px;
            padding: 25px;
            width: 300px;
			margin:5px;
            text-align: center;
            flex-shrink: 0;
            opacity: 1;
            transition: transform 0.3s, opacity 0.3s;
        }

        .testimonial:hover {
            transform: translateY(-10px);
            background: #ffd6e0;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
        }

        .testimonial h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }

        .testimonial p.location {
            font-size: 1rem;
            color: #777;
            margin-bottom: 15px;
        }

        .testimonial p.message {
            font-size: 1rem;
            color: #555;
            line-height: 1.5;
        }

        .testimonial .stars {
            margin: 15px 0;
        }

        .stars span {
            color: #ffae00;
            font-size: 1.4rem;
        }

        .controls {
            position: absolute;
            top: 50%;
            width: 100%;
            display: flex;
            justify-content: space-between;
            transform: translateY(-50%);
        }

        .control {
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            border: none;
            padding: 10px;
            cursor: pointer;
            border-radius: 10%;
        }

        @media (max-width: 768px) {
            .testimonial {
                width: 90%;
            }
        }
		
.footer-section h4 {
    font-size: 22px; /* Larger text for emphasis */
    margin-bottom: 20px;
    display: inline-block; /* To ensure the underline wraps around the text */
    color: #d89c54;
    position: relative; /* To position the underline */
    font-weight: 600; /* Bold for impact */
    font-family: 'Roboto', sans-serif; /* Professional font */
    text-transform: uppercase; /* All caps for a modern look */
    letter-spacing: 2px; /* Slight spacing between letters */
    padding-bottom: 8px; /* Space for the underline */
}

.footer-section h4::after {
    content: ''; /* Create the line */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%; /* Initially no width for the underline */
    height: 3px; /* Thickness of the underline */
    background-color: #d89c54; /* Same color as the text */
    transition: width 0.4s ease-in-out; /* Smooth transition for the underline */
}

.footer-section h4:hover::after {
    width: 100%; /* Underline expands to full width on hover */
}

.footer-section h4:hover {
    color: #fff; /* Change text color on hover */
}

.footer-section ul li a:hover {
    color: #d89c54;
}

.footer-section p {
    margin-bottom: 15px;
}

.footer-section form {
    display: flex;
    gap: 10px;
}

.footer-section input[type="email"] {
    padding: 15px;
    width: calc(100% - 110px);
    border: none;
    border-radius: 4px;
}

.footer-section button {
    padding: 8px 16px;
    border: none;
    background-color: #d89c54;
    color: #ffffff;
    border-radius: 4px;
    cursor: pointer;
]}

.footer-section button:hover {
    background-color: #d89c69;
}

.footer-bottom {    background-color: #2C3E50; /* Rich Midnight Blue */
    text-align: center;
	padding-bottom:20px;
	padding-top:30px;
    border-top: 1px solid #ffffff;
	color:#fff;
}

.footer-bottom a {
    color: ;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}    
        .about-section {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 50px;
            background-color: #fff;
        }

        .about-text {
            max-width: 60%;
        }

        .about-text h2 {
            font-size: 2.5rem;
            color: #d89c54;
        }

        .about-text h2 span {
            color: #333;
            font-weight: bold;
        }

        .about-text p {
            font-size: 1.1rem;
            color: #555;
            line-height: 1.8;
            margin: 15px 0;
        }

        .about-text button {
            display: inline-block;
            padding: 10px 20px;
            background-color: #d89c54;
            color: white;
            border: none;
            border-radius: 5px;
            font-size: 1rem;
            cursor: pointer;
            text-transform: uppercase;
        }

        .about-text button:hover {
            background-color: #c58240;
        }

        .about-image {
            max-width: 35%;
        }

        .about-image img {
            width: 100%;
            border-radius: 10px;
            box-shadow: 0px 4px 15px rgba(0, 0, 0, 0.2);
        }

.contact-info {
    font-family: 'Roboto', sans-serif; /* Professional font */
    font-size: 16px; /* Standard text size */
    color: #333; /* Dark color for text */
    line-height: 1.6; /* Better line spacing */
    margin: 20px 0;
}

.contact-info p {
    display: flex; /* Flexbox to align icons and text */
    align-items: center; /* Vertically center the items */
    margin-bottom: 15px; /* Spacing between each contact info line */
    font-weight: 500; /* Slightly bold text */
	    color: #ffffff; /* Change icon color on hover */

}

.contact-info p i {
    font-size: 20px; /* Icon size */
    color: #d89c54; /* Gold color for icons */
    margin-right: 10px; /* Space between the icon and text */
    transition: color 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
}

/* Hover effect for icons */
.contact-info p:hover i {
    color: #ffffff; /* Change icon color on hover */
    transform: scale(1.1); /* Slightly enlarge the icon */
}

.contact-info p a {
    color: #ffffff; /* Default text color */
    text-decoration: none; /* Remove underline from links */
    transition: color 0.3s ease; /* Smooth color change */
}

/* Hover effect for links */
.contact-info p a:hover {
    color: #d89c54; /* Change link color on hover */
}
/* Style for the Award Creation link */
.award-link {
    color: #d89c54; /* Active color */
    text-decoration: none; /* Remove underline */
    transition: color 0.3s ease; /* Smooth transition on hover */
}

/* Hover effect for the link */
.award-link:hover {
    color: #ffffff; /* Change color to white on hover */
}

/* Optional: Focus styling to maintain accessibility */
.award-link:focus {
    outline: none; /* Remove default outline */
    color: #d89c54; /* Maintain white color on focus */
}
.social-icons {
    display: flex; /* Arrange icons in a row */
    justify-content: center; /* Center the icons */
    gap: 15px; /* Space between icons */
    margin-top: 20px; /* Add spacing from other elements */
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px; /* Uniform size for all icons */
    height: 40px;
    border-radius: 50%; /* Circular icons */
    font-size: 20px; /* Icon size */
    text-decoration: none; /* Remove underline */
    transition: all 0.3s ease; /* Smooth hover effect */
    background-color: transparent; /* No background by default */
}

/* Original colors for each icon */
.social-icon.fb {
    color: #4267B2; /* Facebook blue */
    border: 2px solid #4267B2;
}

.social-icon.ig {
    color: #E1306C; /* Instagram pink */
    border: 2px solid #E1306C;
}

.social-icon.yt {
    color: #FF0000; /* YouTube red */
    border: 2px solid #FF0000;
}

.social-icon.wa {
    color: #25D366; /* WhatsApp green */
    border: 2px solid #25D366;
}

.social-icon.x {
    color: #1DA1F2; /* Twitter blue */
    border: 2px solid #1DA1F2;
}

/* Subtle hover effect */
.social-icon:hover {
    background-color: #f1f1f1; /* Light gray background */
    color: inherit; /* Keep the original icon color */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .social-icons {
        gap: 10px; /* Reduce spacing between icons */
    }

    .social-icon {
        width: 40px; /* Smaller icon size */
        height: 40px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .social-icons {
        flex-wrap: wrap; /* Allow icons to wrap on smaller screens */
        gap: 10px; /* Maintain spacing between rows */
    }

    .social-icon {
        margin: 5px; /* Add margin for better spacing */
    }
}


/* Main Container */
main {
  padding: 20px;
}

/* Card Layout */
.card {
  border: none;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin-bottom: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.card-img-top {
  border-radius: 10px 10px 0 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* Card Body */
.card-body {
  padding: 15px;
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-title {
  font-size: 18px;
  font-weight: bold;
  color: #333;
  margin-bottom: 15px;
  text-align: center;
}

/* Buttons Container */
.container-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Enquire Now Button */
.btn {
  font-size: 14px;
  font-weight: bold;
  background-color: #d89c54;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  text-transform: uppercase;
}

.btn:hover {
  background-color: #b78a42;
}

/


/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 30px;  /* Adjusted for better visibility */
    right: 30px;   /* Placed at the bottom-right */
    background-color: #d89c54; /* Button color */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    font-size: 30px; /* Increased for better visibility */
    text-align: center;
    line-height: 50px; /* Centering the icon vertically */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Subtle shadow */
    cursor: pointer;
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    visibility: hidden; /* Hidden by default */
    z-index: 9999;
}

/* Button Hover Effect */
#backToTop:hover {
    background-color: #b78a42; /* Darker shade on hover */
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Increased shadow on hover */
    transform: translateY(-4px); /* Slightly lift the button */
}

/* Show the button when user scrolls down */
#backToTop.show {
    opacity: 1;
    visibility: visible;
}

/* Scroll Animation */
html {
    scroll-behavior: smooth; /* Smooth scroll behavior */
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
    #backToTop {
        width: 50px;  /* Slightly smaller button on mobile */
        height: 50px;
        font-size: 25px; /* Adjusted font size */
    }
}/* Apply to all scrollable elements */
::-webkit-scrollbar {
    width: 12px; /* Width of the scrollbar */
    height: 12px; /* Height of the scrollbar for horizontal scrolling */
}

/* Scrollbar track (the area the scrollbar slides within) */
::-webkit-scrollbar-track {
    background-color: #f1f1f1; /* Lighter background for track */
    border-radius: 10px; /* Rounded corners for track */
}

/* Scrollbar thumb (the draggable part of the scrollbar) */
::-webkit-scrollbar-thumb {
    background-color: #d89c54; /* Thumb color */
    border-radius: 10px; /* Rounded corners for thumb */
    border: 2px solid #f1f1f1; /* Subtle border to separate the thumb from the track */
}

/* Scrollbar thumb on hover */
::-webkit-scrollbar-thumb:hover {
    background-color: #b78a42; /* Darker shade on hover */
}

/* For custom horizontal scrollbar (for overflow-x) */
::-webkit-scrollbar-thumb:horizontal {
    background-color: #d89c54;
    border-radius: 10px;
}

/* Scrollbar for Firefox (Using `scrollbar-color` property) */
html {
    scrollbar-color: #d89c54 #f1f1f1; /* thumb and track colors for Firefox */
}

/* Scrollbar width in Firefox */
html {
    scrollbar-width: thin; /* Thin scrollbar */
}
/* About Us Section */
.about-us {
    background-color: white;
    padding: 50px 0;
    text-align: center;
}

.about-us h1 {
    font-size: 36px;
    color: #d89c54;
}

.about-us p {
    font-size: 18px;
    color: #333;
    margin-top: 15px;
}

/* Founder’s Message Section */
.founders-message {
    background-color: #ffffff;
    padding: 50px 0;
}

.founders-message h2 {
    font-size: 32px;
    text-align: center;
    color: #d89c54;
}

.message-container {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.founder-image img {
    border-radius: 50%;
    border: 5px solid #d89c54;
    width: 300px;
    height: 300px;
}

.message-text {
    width: 60%;
    padding-left: 30px;
    font-size: 18px;
    line-height: 1.8;
}

/* Why Choose Us Section */
.why-choose-us {
    background-color: #f7f7f7;
    padding: 50px 0;
}

.why-choose-us h2 {
    text-align: center;
    font-size: 32px;
    color: #d89c54;
    margin-bottom: 20px; /* Add spacing below the heading */
}

.why-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap; /* Allow wrapping for smaller screens */
    gap: 20px; /* Space between items */
    margin-top: 30px;
}

.reason {
    text-align: center;
    flex: 1 1 calc(23% - 20px); /* Adjust width for 4 items with gaps */
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin: 10px; /* Add margin for spacing */
    box-sizing: border-box; /* Include padding and border in size */
}

.reason .icon {
    font-size: 46px;
    color: #d89c54;
    margin-bottom: 20px;
}

.reason h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
}

.reason p {
    font-size: 16px;
    color: #666;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .why-container {
        gap: 15px; /* Reduce gap for medium screens */
    }

    .reason {
        flex: 1 1 calc(45% - 15px); /* Adjust to 2 items per row */
    }

    .reason h3 {
        font-size: 20px; /* Adjust heading size */
    }

    .reason p {
        font-size: 15px; /* Adjust paragraph size */
    }
}

@media (max-width: 768px) {
    .why-container {
        gap: 10px; /* Reduce gap for smaller screens */
    }

    .reason {
        flex: 1 1 100%; /* Stack items vertically */
    }

    .reason h3 {
        font-size: 18px; /* Adjust heading size further */
    }

    .reason p {
        font-size: 14px; /* Adjust paragraph size */
    }

    .why-choose-us h2 {
        font-size: 28px; /* Adjust section heading size */
    }
}

@media (max-width: 480px) {
    .reason {
        padding: 20px; /* Reduce padding for smaller devices */
    }

    .reason .icon {
        font-size: 36px; /* Adjust icon size */
    }

    .reason h3 {
        font-size: 16px; /* Smaller heading size */
    }

    .reason p {
        font-size: 13px; /* Smaller paragraph size */
    }
}
        /* Full-width map with transparency */
        .map-container {
            width: 100%;
            height: 450px;
            opacity: 0.7; /* Reduced opacity for a transparent effect */
            margin-bottom: 40px;
        }

        /* Flex layout for left and right sections */
        .contact-section {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin-bottom: 50px;
        }

        .contact-section .contact-details,
        .contact-section .contact-form {
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            padding: 30px;
        }

        /* Contact Details Styling */
        .contact-details h3 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        .contact-details p {
            font-size: 16px;
            margin-bottom: 15px;
            color: #555;
        }

        .contact-details i {
            color: #d89c54;
            margin-right: 10px;
        }

        /* Contact Form Styling */
        .contact-form h4 {
            margin-bottom: 20px;
            font-size: 24px;
            color: #333;
        }

        .form-control {
            border-radius: 0.3rem;
            padding: 15px;
            margin-bottom: 15px;
            background-color: #f9f9f9;
            border: 1px solid #ddd;
        }

        .form-control:focus {
            border-color: #d89c54;
            box-shadow: 0 0 5px rgba(216, 156, 84, 0.5);
        }

        .btn-custom {
            background-color: #d89c54;
            color: white;
            border: none;
            padding: 12px 25px;
            border-radius: 5px;
            width: 100%;
        }

        .btn-custom:hover {
            background-color: #b38044;
        }

        /* Media query for mobile responsiveness */
        @media (max-width: 768px) {
            .contact-section {
                flex-direction: column;
            }
            .map-container {
                height: 300px;
            }
        }
		 .logos-container {
      width: 80%;
      max-width: 1200px;
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
      gap: 20px;
      margin-top: 30px;
    }

    .logo-item {
      display: flex;
      justify-content: center;
      align-items: center;
      padding: 0px;
      background-color: white;
      border-radius: 10px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

    .logo-item img {
      width: 100%;
      height: 120px;
      object-fit: contain;
      transition: transform 0.3s ease;
    }

    .logo-item:hover {
      transform: scale(1.05);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    }

    .logo-item img:hover {
      transform: scale(1.1);
    }

    .slick-prev,
    .slick-next {
      font-size: 20px;
      color: #ffffff !important;
    }

    .slick-prev:hover,
    .slick-next:hover {
      color: #00f2fe !important;
    }
        .btn-primary {
            background-color: var(--button-color);
            border-color: var(--button-color);
        }

        .btn-primary:hover {
            background-color: var(--button-hover-color);
            border-color: var(--button-hover-color);
        }

        .card {
            background-color: var(--card-bg-color);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
            border-radius: 8px;
            margin-bottom: 1.5rem;
        }

        .card-body {
            padding: 1.5rem;
        }

        .category-list a {
            text-decoration: none;
            color: var(--primary-color);
        }

        .category-list a:hover {
            color: var(--accent-color);
        }

        .modal-content {
            background-color: var(--bg-color);
            border-radius: 10px;
        }
        .whatsapp-btn {
    background-color: #25D366;
    color: white;
    font-size: 1.5rem;
    padding: 0.5rem; /* Adjusted padding for better circular size */
    border-radius: 50%; /* Ensures the button is perfectly round */
    display: flex;
    align-items: center; /* Vertically centers the icon */
    justify-content: center; /* Horizontally centers the icon */
    transition: background-color 0.3s ease;
    width: 50px; /* Set width for a consistent round size */
    height: 50px; /* Set height for a consistent round size */
    text-decoration: none; /* Remove underline from anchor tag */
    margin-right: 10px; /* Adds space between the button and the next element */
}

.whatsapp-btn:hover {
    background-color: #128C7E;
    cursor: pointer;
}

.whatsapp-btn i {
    color: white; /* Ensures the icon color stays white */
    font-size: 24px; /* Adjusts the size of the WhatsApp icon */
}

        .card-img-top {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }

        .modal-body {
            padding: 2rem;
        }        .banner-slider {
            width: 100%;
            height: 450px;
            overflow: hidden;
        }
      .banner-slider img {
    width: 100%;
    height: auto; /* Allows the height to adjust proportionally */
    object-fit: cover; /* Maintains aspect ratio and fills the container */
    max-height: 650px; /* Optional: Limit the maximum height */
}

/* Optional: Media Query for smaller screens */
@media (max-width: 768px) {
    .banner-slider img {
        height: auto; /* Adjust for smaller screens to prevent cropping */
        object-fit: contain; /* Avoid excessive cropping for smaller viewports */
    }
}

        .banner-caption {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            background: rgba(0, 0, 0, 0.5);
            color: #fff;
            padding: 10px 20px;
            border-radius: 5px;
            text-align: center;
            max-width: 80%;
        }
        .slick-dots {
            bottom: 15px;
        }
        .slick-dots li button:before {
            color: #fff;
        }
        .slick-dots li.slick-active button:before {
            color: #f4a261;
        }    
		.topbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      color: white;
    }

    .topbar .left {
      display: flex;
      align-items: center;
    }

    .topbar .left span {
      margin-right: 15px;
    }

    .topbar .right a {
      color: white;
      text-decoration: none;
      font-size: 18px;
      margin-left: 15px;
    }

    .topbar .right a:hover {
      color: #ddd;
    }

    @media (max-width: 768px) {
      .topbar {
        flex-direction: column;
        align-items: center;
        text-align: center;
      }

      .topbar .left, .topbar .right {
        margin-bottom: 10px;
      }

      .topbar .right a {
        font-size: 20px;
      }                /* Remove underline and style the WhatsApp floating button */
              /* Logos grid */
       .logos-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); /* Flexible grid for all screen sizes */
    gap: 30px; /* Spacing between logo items */
    padding: 30px 20px; /* Padding around the grid */
    background-color: #f8f9fa; /* Light gray background for better contrast */
    border-radius: 10px; /* Smooth rounded corners */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Subtle shadow for the container */
}

.logo-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    background: linear-gradient(145deg, #ffffff, #f0f0f0); /* Soft gradient background */
    border-radius: 12px; /* Rounded corners */
    box-shadow: 4px 4px 8px rgba(0, 0, 0, 0.1), -4px -4px 8px rgba(255, 255, 255, 0.7); /* Neomorphic shadow */
    transition: all 0.3s ease-in-out;
}

.logo-item img {
    max-width: 80%; /* Limit the image width to maintain proportions */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Ensure logos fit perfectly */
    transition: transform 0.3s ease; /* Smooth hover scaling */
}

.logo-item:hover {
    transform: translateY(-10px); /* Slight upward lift effect */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15); /* Stronger shadow on hover */
}

.logo-item:hover img {
    transform: scale(1.1); /* Slight zoom-in effect */
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logos-container {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); /* Smaller columns for tablets */
        gap: 20px; /* Reduce gap for smaller screens */
    }

    .logo-item {
        padding: 15px; /* Smaller padding for compact design */
    }

    .logo-item img {
        max-width: 90%; /* Adjust image size for smaller screens */
    }
}

@media (max-width: 480px) {
    .logos-container {
        grid-template-columns: 1fr; /* Single column for mobile devices */
        gap: 15px; /* Compact gap for small screens */
    }

    .logo-item {
        padding: 10px; /* Even smaller padding */
    }

    .logo-item img {
        max-width: 100%; /* Make logos fill the item on small screens */
    }
}
 .marquee-container {
        background-color: #f8f9fa; /* Light background for contrast */
        padding: 20px 0;
        overflow: hidden;
        position: relative;
        display: flex;
        align-items: center;
    }

    .marquee-track {
        display: flex;
        animation: scroll 15s linear infinite;
        gap: 30px; /* Space between logos */
    }

    .marquee-item img {
        max-width: 150px; /* Limit logo size */
        height: auto;
        object-fit: contain;
        transition: transform 0.3s ease;
    }

    .marquee-item:hover img {
        transform: scale(1.1); /* Slight zoom on hover */
    }

    @keyframes scroll {
        0% {
            transform: translateX(100%);
        }
        100% {
            transform: translateX(-100%);
        }
    }.carousel-container {
    background-color: #f8f9fa; /* Light background for contrast */
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.carousel-item img {
    max-width: 150px; /* Set a max width for the logos */
    height: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.carousel-item:hover img {
    transform: scale(1.1); /* Slight zoom on hover */
}

/* Center align the pagination container */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    padding-left: 0;
    list-style: none;
}

/* Style the pagination buttons */
.page-link {
    background-color: #d89c54;
    color: white;
    border: 1px solid #d89c54;
    padding: 10px 20px;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.3s, color 0.3s, transform 0.3s ease-in-out;
    border-radius: 5px; /* Optional: rounded corners for a modern look */
}

/* Hover effect on pagination buttons */
.page-link:hover {
    background-color: #c0853b;
    color: white;
    transform: scale(1.05); /* Slight zoom effect */
}

/* Active page button with dark background and contrast */
.page-item.active .page-link {
    background-color: #212529; /* Dark background for active page */
    color: #d89c54; /* Golden text for contrast */
    border-color: #212529;
}

/* Disabled page button style */
.page-item.disabled .page-link {
    background-color: #f1f1f1;
    color: #ccc;
    border-color: #ccc;
    cursor: not-allowed;
}

/* Spacing between pagination items */
.page-item {
    margin: 0 5px;
}

/* Focus effect on page links (optional) */
.page-link:focus {
    outline: none;
    box-shadow: 0 0 5px rgba(216, 156, 84, 0.5);
}
 .whatsapp-float-left {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 40px; /* Distance from the bottom */
            left: 40px;   /* Distance from the left */
            background-color: #25D366;#d89c54;
            color: white;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            z-index: 100;
            transition: background-color 0.3s, transform 0.3s;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none; /* Remove underline */
        }

        .whatsapp-float-left:hover {
            background-color: #128C7E;
            transform: scale(1.1);
        }

        .whatsapp-float-left:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.5);
        }/* Back to Top Button */
.back-to-top-btn {
    position: fixed; /* Fixed position so it stays visible while scrolling */
    bottom: 40px; /* Distance from the bottom */
    right: 20px; /* Distance from the right */
    width: 60px;
    height: 60px;
    background-color: #d89c54; /* Green background (WhatsApp color for reference) */
    color: white; /* Text color */
    border: none; /* Remove border */
    border-radius: 50%; /* Make it circular */
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Add subtle shadow */
    display: flex; /* Flexbox for centering content */
    align-items: center; /* Center vertically */
    justify-content: center; /* Center horizontally */
    font-size: 24px; /* Increase font size for the arrow */
    cursor: pointer; /* Pointer cursor on hover */
    z-index: 1000; /* Ensure it stays above other elements */
    opacity: 0; /* Hidden by default */
    visibility: hidden; /* Prevent interaction when hidden */
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease; /* Smooth transitions */
}

/* Show the button when it becomes active */
.back-to-top-btn.show {
    opacity: 1; /* Fully visible */
    visibility: visible; /* Make it interactable */
    transform: scale(1); /* Reset scaling */
}

/* Hover effect */
.back-to-top-btn:hover {
    box-shadow: 0px 6px 8px rgba(0, 0, 0, 0.2); /* Enhance shadow on hover */
    transform: scale(1.1); /* Slightly enlarge on hover */
}

/* When scaling out before becoming hidden */
.back-to-top-btn:not(.show) {
    transform: scale(0.8); /* Shrink slightly before hiding */
}