html {
    margin: 0;
    padding: 0;
}

body {
    font-family: sans-serif;
    margin: 0; /* Reset default body margin */
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

/* Header */
header {
    background-color: #222;
    color: #fff;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    display: flex; /* Ensure header is a flex container */
    justify-content: center; /* Center the content horizontally */
    align-items: center; /* Vertically align items (optional, but good for overall centering) */
}

#contact {
    padding: 40px 0;
}

table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

table th, table td {
    padding: 10px;
    text-align: left;
    border: 1px solid #ddd;
}

table th {
    background-color: #f4f4f4;
}

table tr:nth-child(even) {
    background-color: #f9f9f9;
}

table tr:hover {
    background-color: #f1f1f1;
}






header .container {
    /* Remove the flex display from the container to allow header to control centering */
    /* display: flex;
    justify-content: space-between;
    align-items: center; */
    width: 100%; /* Keep the container width */
    max-width: 1200px; /* Keep the max-width if needed */
    padding: 0 20px; /* Keep padding for side spacing */
    display: flex; /* Make container a flex container again for logo and nav alignment */
    justify-content: space-between; /* Space logo and nav */
    align-items: center;
}
.logo {
    height: auto;
    max-height: 100px; /* You can increase this if needed */
    display: flex;
    align-items: center;
}

.logo img {
    height: auto;
    max-height: 100px;  /* Make sure this is not too small */
    max-width: 100%;
    object-fit: contain;
    display: block;
}


nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex; /* Make the list items flex items */
    /* No need for justify-content: center here, the header will center the entire nav ul */
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #33ee05;
}

/* ... rest of your CSS ... */
/* ... other header styles ... */

/* Hero Section */


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hero {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    margin-top: 60px; /* for fixed header */
    overflow: hidden;
  }
  
  .hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay for text visibility */
    z-index: 0;
  }
  
  .hero-content {
    position: relative;
    z-index: 1;
  }
  
  .hero-content h1 {
    font-size: 2.5rem;
    color: #FFD700;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7);
  }
  
  .hero-content p {
    font-size: 1.2rem;
    color: #fff;
  }
  





nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #20f305;
}
/* Dropdown Styles */
/* Dropdown Setup */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #333;
    padding: 10px 0;
    margin: 0;
    border-radius: 5px;
    list-style: none;
    display: none;
    min-width: 220px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 999;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 10px 20px;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.dropdown-menu li a:hover {
    background-color: #555;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero Section */
/* .hero {
    background-color: #333;
    color: #fff;
    padding: 100px 0;
    text-align: center;
    margin-top: 60px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
} */

.button {
    display: inline-block;
    background-color: #007bff;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: #0056b3;
}

/* Services Section */
.services {
    padding: 60px 0;
    background-color: #fff;
}

.services h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.service-item img {
    max-width: 80px;
    margin-bottom: 15px;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
}

.service-item p {
    color: #666;
    margin-bottom: 15px;
}

.service-item a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.service-item a:hover {
    color: #0056b3;
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.about h2 {
    text-align: center;
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.about-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.about-image {
    flex: 1;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.about-text {
    flex: 1;
    color: #666;
}

.about-text p {
    margin-bottom: 15px;
}

.about-text a {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-text a:hover {
    color: #0056b3;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 30px;
    font-size: 2rem;
    color: #333;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: left;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.contact-form .button {
    display: block;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

.contact-info {
    margin-top: 30px;
    color: #666;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
}

.contact-info p {
    margin-bottom: 8px;
}

/* Footer */
/* Footer */
footer {
    background-color: #222;
    color: #fff;
    padding: 40px 0;
    font-size: 0.9rem;
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: auto;
    padding: 20px;
}

.footer-top h3 {
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: #f4b400; /* Gold accent */
}

.footer-top p {
    color: #ccc;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #f4b400;
}

.footer-social a {
    margin-right: 10px;
}

.footer-social img {
    width: 30px;
    transition: transform 0.3s ease;
    color: #20f305;
}

.footer-social img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 15px;
    border-top: 1px solid #444;
    margin-top: 20px;
}


/* Placeholder Images (Replace with your actual images) */
.service-item img, .about-image img {
    /* Add some basic styling for placeholders */
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 10px;
    background-color: #ddd;
    padding: 20px;
    border-radius: 5px;
}

/* Blog Hero Section */
.blog-hero {
    background: url('images/blog-hero.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 80px 20px;
}

.blog-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.blog-hero p {
    font-size: 1.2rem;
}

/* Blog Content */
.blog-content {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.blog-main {
    flex: 2;
}

.blog-post {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.blog-post img {
    width: 100%;
    border-radius: 5px;
}

.blog-post h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.blog-post p {
    color: #666;
}

.read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

.read-more:hover {
    text-decoration: underline;
}

/* Sidebar */
.blog-sidebar {
    flex: 1;
    background: #f4f4f4;
    padding: 20px;
    border-radius: 8px;
}

.blog-sidebar h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.blog-sidebar ul {
    list-style: none;
    padding: 0;
}

.blog-sidebar ul li {
    margin-bottom: 8px;
}

.blog-sidebar ul li a {
    color: #007bff;
    text-decoration: none;
}

.blog-sidebar ul li a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .blog-content {
        flex-direction: column;
    }
}
.whatsapp-button {
    display: flex;
    align-items: center;
    background-color: #25D366;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    width: fit-content;
}

.whatsapp-button img {
    width: 25px;
    height: 25px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #1EBE5D;
}
.rates-section {
    padding: 60px 20px;
    background-color: #f4f4f4;
    text-align: center;
  }
  
  .rates-section h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
  }
  
  .rates-section p {
    color: #555;
    margin-bottom: 40px;
  }
  
  .rate-category {
    margin-bottom: 40px;
    text-align: left;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .rate-category h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-left: 5px solid #007bff;
    padding-left: 15px;
    color: #007bff;
  }
  
  .rates-list {
    list-style: none;
    padding: 0;
  }
  
  .rates-list li {
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    background: #fff;
    margin-bottom: 10px;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    font-size: 1rem;
  }
  
  .rates-list span {
    font-weight: bold;
    color: #222;
  }
  