
.step label {
  display: inline-block;
  width: auto; /* Adjust width as needed, or use a fixed width */
  margin-right: 10px; /* Add some spacing between the label and select */
  vertical-align: middle; /* Align the label text vertically with the select */
}

.step select {
  display: inline-block;
  width: auto; /* The Tailwind class 'w-full' will likely override this on larger screens */
  vertical-align: middle;
}


.styled-input {
  width: calc(100% - 20px); /* Adjust width as needed */
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box; /* Include padding and border in width */
  font-size: 16px; /* Adjust font size */
  transition: border-color 0.3s ease; /* Smooth transition for focus */
}

.styled-input:focus {
  border-color: #007bff; /* Highlight on focus */
  outline: none; /* Remove default focus outline */
  box-shadow: 0 0 5px rgba(0, 123, 255, 0.5); /* Add subtle shadow */
}

/* Optional: Add placeholder styling */
.styled-input::placeholder {
  color: #aaa;
}

/* Services Section */
.services-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

.services-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #333;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.service-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card-about {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 600px;
    padding: 20px;
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: scale(1.05);
}

.service-card img {
    width: 100%;
    border-radius: 10px;
}

.service-card-about img {
    width: 100%;
    border-radius: 10px;
}

/* Hero Section */
.hero {
     /* Adjusted Path */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}

.hero h2 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 24px;
    margin-bottom: 20px;
}

.hero .enquire-button {
    background-color: #00ffcc;
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 18px;
}

.hero .enquire-button:hover {
    background-color: #00aaff;
    color: #fff;
}

.logo-wrapper {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 60px;
  margin-left: 0; /* Reset any default margins */
  transition: transform 0.3s ease;
}

/* Move logo right */
@media (min-width: 992px) {
  .logo-img {
    transform: translateX(120px); /* shift it right */
  }
}

/* You can adjust the value to fine-tune */


/* Media Query for Mobile Screens */
@media (max-width: 768px) {
    .hero {
        background-size: contain; /* Ensures the entire image is visible on small screens */
        background-position: top center;
        height: auto; /* Adjusts height automatically to fit content */
        padding: 50px 20px; /* Adds padding to maintain structure */
    }

    .about-us-heading {
        font-size: 2rem;
    }

    .about-us-description {
        font-size: 0.9rem;
		width: 70%;
    }

    .logo-img {
        margin-left: 40px; 
    }
    
    .styled-input {
        font-size: 14px; /* Adjust font size for mobile */
    }
    
  .step select.w-full {
    display: block; /* Revert to block on larger screens if you want full width */
    width: 100%;
    margin-top: 5px; /* Add a little space below the label */
  }
    
}

.service-card h3 {
    font-size: 20px;
    margin: 15px 0;
    color: #333;
}

.service-card p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.enquire-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: #008000;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.enquire-button:hover {
    background-color: #005700;
}

/* Section container */
.about-us-section {
    text-align: center;
    padding: 50px 20px;
    background-color: #f9f9f9;
}

/* About Us Heading */
.about-us-heading {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
    letter-spacing: 1.2px;
}

/* Image styling */
.about-us-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    margin: 20px 0;
}

/* About Us Description */
.about-us-description {
    width: 70%; /* Reduce the width to leave 20% margin on both sides */
    margin: 10px auto; /* Center horizontally with auto left and right margin */
    font-size: 1rem;
    color: #666;
    text-align: justify;
    line-height: 1.8;
}
