 /* Fonts - Google Fonts */
 @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700&family=Open+Sans:wght@400;600;700;800&display=swap');

 /* General Body Styles */
 body {
     font-family: 'Montserrat', sans-serif;
     margin: 0;
     padding: 0;
     line-height: 1.6;
     color: #333;
     overflow-x: hidden;
     /* Prevent horizontal scroll due to padding/margin issues */
     background-color: #f8fbfd;
     /* A very light, cool background for overall cleanliness */
 }

 a {
     text-decoration: none;
     color: #007bff;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     font-family: 'Open Sans', sans-serif;
     color: #1a1a1a;
     margin-top: 0;
     margin-bottom: 15px;
 }

 p {
     margin-bottom: 15px;
 }

 .container {
     max-width: 1200px;
     margin: 0 auto;
     padding: 0 20px;
 }

 .button {
     display: inline-block;
     background-color: #ffd700;
     /* Yellow */
     color: #1a1a1a;
     padding: 12px 25px;
     border-radius: 5px;
     font-weight: bold;
     transition: background-color 0.3s ease, transform 0.2s ease;
     border: none;
     cursor: pointer;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .button:hover {
     background-color: #e6c200;
     transform: translateY(-2px);
 }

 /* Header */
 .header {
     background-color: #fff;
     padding: 15px 0;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
     position: sticky;
     top: 0;
     z-index: 1000;
 }

 .header .container {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .logo img {
     height: 60px;
     /* Adjust as needed */
 }

 .nav-menu ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
 }

 .nav-menu ul li {
     margin-left: 30px;
 }

 .nav-menu ul li a {
     color: #333;
     font-weight: 600;
     transition: color 0.3s ease;
     padding: 5px 0;
     position: relative;
     text-transform: uppercase;
 }

 .nav-menu ul li a:hover,
 .nav-menu ul li a.active {
     color: #ffd700;
     /* Yellow */
 }

 .nav-menu ul li a.active::after {
     content: '';
     position: absolute;
     bottom: -5px;
     left: 0;
     width: 100%;
     height: 2px;
     background-color: #ffd700;
 }

 .hamburger-menu {
     display: none;
     /* Hidden by default, shown in responsive.css */
     cursor: pointer;
     font-size: 70px;
     color: #307e576e;
 }

 /* Mobile Nav */
 .mobile-nav {
     position: fixed;
     top: 0;
     right: -280px;
     /* Start off-screen */
     width: 250px;
     height: 100%;
     background-color: #222;
     padding-top: 60px;
     box-shadow: -3px 0 10px rgba(0, 0, 0, 0.3);
     z-index: 1001;
     visibility: hidden;
     opacity: 0;
     transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0s linear 0.3s;
 }

 .mobile-nav.active {
     right: 0;
     /* Slide in */
     opacity: 1;
     visibility: visible;
     transition: right 0.3s ease-in-out, opacity 0.3s ease-in-out, visibility 0s linear 0s;
 }

 .mobile-nav ul {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mobile-nav ul li {
     padding: 15px 20px;
     border-bottom: 1px solid #444;
 }

 .mobile-nav ul li:last-child {
     border-bottom: none;
 }

 .mobile-nav ul li a {
     color: #fff;
     font-weight: 500;
     display: block;
     transition: color 0.3s ease;
     text-transform: uppercase;
 }

 .mobile-nav ul li a:hover,
 .mobile-nav ul li a.active {
     color: #ffd700;
 }

 .close-btn {
     position: absolute;
     top: 15px;
     right: 20px;
     font-size: 30px;
     color: #fff;
     cursor: pointer;
 }

 /* Hero Section */
 .hero {
     background-image: url('../images/hero-bg.jpg');
     /* Ensure path is correct */
     background-size: cover;
     background-position: center;
     color: #fff;
     text-align: center;
     padding: 150px 20px;
     position: relative;
 }

 .hero::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background-color: rgba(0, 0, 0, 0.5);
     /* Overlay */
 }

 .hero .hero-content {
     position: relative;
     z-index: 1;
 }

 .hero h1 {
     font-size: 3.5em;
     margin-bottom: 20px;
     color: #fff;
 }

 .hero p {
     font-size: 1.2em;
     margin-bottom: 30px;
 }

 /* Home Page: About Us Section */
 .about-us-section {
     background-color: #f8f9fa;
     /* Light grey background */
     display: flex;
     align-items: center;
     /* Vertically align content */
     overflow: hidden;
     /* Hide any overflow from the image */
 }

 .about-text-container {
     flex-basis: 50%;
     /* Takes up 50% of the width */
     padding: 4rem 3rem;
     /* Spacing inside the text container */
 }

 .about-text-container h2 {
     font-size: 3rem;
     /* Large font size */
     font-weight: 700;
     /* Bold */
     color: #1d2d3d;
     /* Dark blue/grey color */
     margin: 0 0 10px 0;
     text-transform: uppercase;
 }

 .about-text-container .underline {
     width: 90px;
     height: 5px;
     background-color: #fbc211;
     /* Yellow/Gold color */
     margin-bottom: 2rem;
 }

 .about-text-container p {
     font-size: 1rem;
     color: #5a6a7a;
     /* Softer grey for the paragraph */
     line-height: 1.7;
     /* For better readability */
     margin: 0;
     text-align: justify;
     /* Justified text alignment */
 }

 .about-image-container {
     flex-basis: 50%;
     height: 550px;
     /* ADDED PADDING and supporting styles */
     padding: 2rem;
     /* Adds space around the image */
     box-sizing: border-box;
     /* Ensures padding is included in the 50% width */
     background-color: #f8f9fa;
     /* Match the section background for a seamless padded area */
 }

 .about-image-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     /* This makes the image fill the new, smaller content area */
     display: block;
     border-radius: 8px;
     /* Optional: adds a nice rounded corner to the image itself */
 }

 @media (max-width: 992px) {
     .about-us-section {
         flex-direction: column;
         /* Stack the columns on top of each other */
     }

     .about-text-container {
         padding: 3rem 2rem;
         /* Reduce padding on smaller screens */
     }

     .about-image-container {
         width: 100%;
         /* Image container takes full width */
         height: 400px;
         /* Adjust height for mobile view */
         padding: 1.5rem;
         /* Reduce padding for smaller screens */
     }
 }

 @media (max-width: 576px) {
     .about-text-container h2 {
         font-size: 2.5rem;
         /* Slightly smaller heading for mobile */
     }
 }


 /* Services Section (Home Page) */
 .services-home {
     padding: 80px 0;
     text-align: center;
     background-color: #f9f9f9;
 }

 .services-home h2 {
     font-size: 2.5em;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .services-home .section-description {
     max-width: 800px;
     margin: 0 auto 50px;
     color: #666;
     font-size: 1.1em;
 }

 .services-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
     gap: 30px;
 }

 .service-item {
     background-color: #fff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     text-align: left;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
     position: relative;
     overflow: hidden;
 }

 .service-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .service-item h3 {
     font-size: 1.5em;
     color: #1a1a1a;
     margin-bottom: 15px;
     font-weight: 600;
 }

 .service-item p {
     color: #555;
     font-size: 0.95em;
 }

 /* Counters Section */
 .counters {
     background-color: #1a1a1a;
     /* Dark grey */
     color: #fff;
     padding: 60px 0;
     text-align: center;
 }

 .counters-grid {
     display: flex;
     justify-content: space-around;
     flex-wrap: wrap;
 }

 .counter-item {
     margin: 20px;
 }

 .counter-item .number {
     font-size: 3em;
     font-weight: bold;
     color: #ffd700;
     /* Yellow */
     margin-bottom: 10px;
 }

 .counter-item .text {
     font-size: 1.2em;
     color: #ccc;
 }

 /* Our Projects Section */
 .projects-section {
     padding: 80px 0;
     text-align: center;
     background-color: #fff;
 }

 .projects-section h2 {
     font-size: 2.5em;
     margin-bottom: 10px;
     font-weight: 700;
 }

 .projects-section .section-description {
     max-width: 800px;
     margin: 0 auto 50px;
     color: #666;
     font-size: 1.1em;
 }

 .projects-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
 }

 .project-item {
     background-color: #fff;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .project-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .project-item img {
     width: 100%;
     height: 250px;
     /* Fixed height for consistency */
     object-fit: cover;
     display: block;
 }

 .project-info {
     padding: 20px;
     text-align: left;
 }

 .project-info h3 {
     font-size: 1.4em;
     margin-bottom: 10px;
     color: #1a1a1a;
     font-weight: 600;
 }

 .project-info p {
     color: #555;
     font-size: 0.9em;
 }

 /* Our Clients Section */
 .clients-section {
     padding: 60px 0;
     text-align: center;
     background-color: #f9f9f9;
 }

 .clients-section h2 {
     font-size: 2.5em;
     margin-bottom: 50px;
     font-weight: 700;
 }

 .clients-grid {
     display: flex;
     justify-content: center;
     align-items: center;
     flex-wrap: wrap;
     gap: 40px;
 }

 .client-logo img {
     max-width: 150px;
     height: auto;
     filter: grayscale(100%);
     opacity: 0.7;
     transition: filter 0.3s ease, opacity 0.3s ease;
 }

 .client-logo img:hover {
     filter: grayscale(0%);
     opacity: 1;
 }


 /* Contact Section (Home Page - "Get In Touch") */
 .get-in-touch {
     padding: 80px 0;
     background-color: #fff;
     text-align: center;
 }

 .get-in-touch h2 {
     font-size: 2.5em;
     margin-bottom: 50px;
     font-weight: 700;
 }

 .contact-layout {
     display: flex;
     gap: 30px;
     flex-wrap: wrap;
     justify-content: center;
     align-items: flex-start;
 }

 .contact-map {
     flex: 1 1 500px;
     /* Allows map to grow/shrink, minimum 500px */
     min-width: 300px;
     height: 400px;
     /* Fixed height for the map iframe */
     background-color: #e9e9e9;
     border-radius: 8px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .contact-map iframe {
     width: 100%;
     height: 100%;
     border: none;
 }

 .contact-form-section {
     flex: 1 1 400px;
     /* Allows form to grow/shrink, minimum 400px */
     min-width: 300px;
     text-align: left;
     background-color: #f9f9f9;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
 }

 .contact-form-section h3 {
     font-size: 1.8em;
     margin-bottom: 20px;
     color: #1a1a1a;
     font-weight: 600;
 }

 .contact-form-section .info-box {
     margin-bottom: 25px;
 }

 .contact-form-section .info-box h4 {
     font-size: 1.2em;
     margin-bottom: 10px;
     color: #333;
     font-weight: 600;
 }

 .contact-form-section .info-box p {
     color: #666;
     font-size: 0.95em;
     margin-bottom: 5px;
 }

 .contact-form-section form .form-group {
     margin-bottom: 20px;
 }

 .contact-form-section form label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #333;
 }

 .contact-form-section form input[type="text"],
 .contact-form-section form input[type="email"],
 .contact-form-section form input[type="tel"],
 .contact-form-section form textarea {
     width: calc(100% - 20px);
     /* Adjusted for 10px padding on each side */
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 1em;
     box-sizing: border-box;
     transition: border-color 0.3s ease;
 }

 .contact-form-section form input:focus,
 .contact-form-section form textarea:focus {
     border-color: #ffd700;
     outline: none;
 }

 .contact-form-section form textarea {
     resize: vertical;
     min-height: 100px;
 }

 /* About Page Specific Styles - TOP HERO SECTION */
 .about-hero {
     background-color: #eef7f9;
     /* Light, modern blue-grey as requested */
     color: #333;
     /* Darker text for readability on light background */
     text-align: center;
     padding: 100px 20px;
     position: relative;
     overflow: hidden;
 }

 .about-hero::before {
     /* Removed overlay as per the new image, ensure this is gone */
     content: none;
 }

 .about-hero .container {
     position: relative;
     z-index: 1;
     max-width: 800px;
     /* Set max-width for the content as per your request */
     margin: 0 auto;
 }

 .about-hero h1 {
     font-size: 3.5em;
     margin-bottom: 20px;
     color: #1a1a1a;
     /* Darker heading text */
     font-weight: 700;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
     /* Subtle text shadow on light background */
 }

 .about-hero p {
     font-size: 1.1em;
     max-width: 700px;
     margin: 0 auto;
     line-height: 1.6;
     color: #555;
     /* Normal text color for readability */
     text-align: center;
 }

 /* COMMITMENT TO EXCELLENCE SECTION */
 .commitment-section {
     display: flex;
     flex-wrap: wrap;
     gap: 50px;
     padding: 100px 0;
     align-items: stretch;
     max-width: 1200px;
     /* Added to constrain overall section width */
     margin: 0 auto;
     /* Center the entire section */
 }

 .commitment-left {
     flex: 1 1 45%;
     min-width: 350px;
     background-color: #2c3e50;
     /* Deep, muted charcoal/blue-grey as requested */
     color: #fff;
     padding: 50px;
     border-radius: 12px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     /* CENTER TEXT as requested */
     position: relative;
     overflow: hidden;
 }

 .commitment-left::before {
     /* REMOVED THE STAR ICON as per your request */
     content: none;
 }

 .commitment-left h2 {
     font-size: 3.5em;
     line-height: 1.1;
     color: #fff;
     margin-bottom: 20px;
     position: relative;
     z-index: 1;
     text-align: center;
     /* CENTER TEXT as requested */
 }

 .commitment-left h2 span {
     color: #ffd700;
     /* Yellow */
     display: block;
     font-size: 1.2em;
     font-weight: 800;
     letter-spacing: 2px;
 }

 .commitment-right {
     flex: 1 1 45%;
     min-width: 350px;
     padding: 30px 0;
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .commitment-right h3 {
     font-size: 2.2em;
     margin-bottom: 25px;
     color: #1a1a1a;
     font-weight: 600;
 }

 .commitment-right p {
     color: #555;
     margin-bottom: 20px;
     font-size: 1.05em;
     line-height: 1.7;
     text-align: justify;
 }

 .sustainability-practices {
     padding: 100px 0;
     background-color: #f0f4f7;
 }

 .sustainability-practices h2 {
     font-size: 3em;
     margin-bottom: 50px;
     text-align: center;
     color: #1a1a1a;
     font-weight: 700;
 }

 .sustainability-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
     gap: 80px;
     align-items: center;
     background-color: #fff;
     padding: 50px;
     border-radius: 12px;
     box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
 }

 .sustainability-content {
     padding-right: 30px;
 }

 .sustainability-content h3 {
     font-size: 2.2em;
     margin-bottom: 20px;
     color: #1a1a1a;
     font-weight: 600;
 }

 .sustainability-content p {
     margin-bottom: 18px;
     color: #555;
     font-size: 1.05em;
     line-height: 1.7;
     text-align: justify;
 }

 .sustainability-content .button {
     /* Now using the standard .button class */
     background-color: #ffd700;
     color: #1a1a1a;
     padding: 14px 30px;
     border-radius: 8px;
     font-weight: 700;
     text-transform: uppercase;
     transition: all 0.3s ease;
     border: none;
     box-shadow: 0 4px 10px rgba(255, 215, 0, 0.3);
 }

 .sustainability-content .button:hover {
     background-color: #e6c200;
     box-shadow: 0 6px 15px rgba(255, 215, 0, 0.4);
     transform: translateY(-2px);
 }

 .sustainability-image {
     text-align: center;
 }

 .sustainability-image img {
     max-width: 100%;
     height: auto;
     border-radius: 12px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
     transition: transform 0.3s ease;
 }

 .sustainability-image img:hover {
     transform: scale(1.02);
 }

 /* NEW: Vision & Mission Exact Match Section (from previous iteration - confirmed correct) */
 .vision-mission-exact-match {
     background-color: #e8e8e8;
     /* Light grey background as seen in image */
     padding: 0;
     width: 100%;
     max-width: 1200px;
     /* Match the .container width */
     margin: 0 auto;
     display: flex;
     flex-direction: column;
     align-items: center;
     overflow: hidden;
 }

 .vm-grid-exact-match {
     display: grid;
     grid-template-columns: 1fr 1fr;
     /* Exactly two equal columns */
     gap: 0;
     /* No gap between items */
     width: 100%;
 }

 .vm-grid-item {
     background-color: #f7f7f7;
     /* Slightly off-white for text blocks */
     display: flex;
     flex-direction: column;
     justify-content: center;
     /* Center content vertically */
     align-items: center;
     /* Center content horizontally */
     box-sizing: border-box;
     padding: 60px 80px;
     /* Generous padding as per image */
     min-height: 480px;
     /* Explicit height to match image's block height */
     text-align: center;
     /* Center text */
     border-right: 1px solid #e0e0e0;
     /* Lighter border for clean look */
     border-bottom: 1px solid #e0e0e0;
 }

 /* Specific border adjustments to match the image precisely */
 .vm-grid-item:nth-child(1) {
     /* Top-left image */
     border-top-left-radius: 12px;
 }

 .vm-grid-item:nth-child(2) {
     /* Top-right text */
     border-top-right-radius: 12px;
     border-right: none;
     /* Remove right border */
 }

 .vm-grid-item:nth-child(3) {
     /* Bottom-left text */
     border-bottom-left-radius: 12px;
     border-bottom: none;
     /* Remove bottom border */
 }

 .vm-grid-item:nth-child(4) {
     /* Bottom-right image */
     border-bottom-right-radius: 12px;
     border-right: none;
     /* Remove right border */
     border-bottom: none;
     /* Remove bottom border */
 }


 .vm-grid-item.vm-image-exact-match {
     padding: 0;
     /* Images take full space, no internal padding */
     background-color: #fff;
     /* White background for image cells if needed */
     border: none;
     /* Already specified, but good to ensure */
 }

 .vm-grid-item.vm-image-exact-match img {
     width: 100%;
     height: 100%;
     /* Fill the grid cell */
     object-fit: cover;
     /* Cover the area, crop as needed */
     display: block;
 }

 .vm-grid-item.vm-text-exact-match h3 {
     font-size: 2.8em;
     margin-bottom: 25px;
     color: #ffd700;
     /* Yellow */
     font-weight: 700;
     text-transform: none;
     letter-spacing: normal;
 }

 .vm-grid-item.vm-text-exact-match p {
     color: #888;
     font-size: 1.2em;
     line-height: 1.7;
     text-align: center;
     max-width: 450px;
     margin-left: auto;
     margin-right: auto;
     font-weight: 500;
 }

 /* Yellow Bottom Line */
 .yellow-bottom-line-exact-match {
     width: 100%;
     max-width: 1200px;
     /* Match container width */
     height: 12px;
     background-color: #ffd700;
     box-shadow: 0 5px 15px rgba(255, 215, 0, 0.2);
     border-radius: 5px;
     /* Or 0 if it should be sharp */
     margin: 50px auto 0;
     /* Center it if its parent is wider */
 }


 /* Sustainability Page New Layout Styles (from previous request) */
 .sustainability-intro,
 /* Hide old intro section if this page replaces it */
 .sustainability-content-main {
     /* Hide old content main section */
     display: none !important;
 }

 .sustainability-page-layout {
     display: flex;
     width: 100%;
     min-height: 80vh;
     /* Adjust as needed, ensures content fills height */
     margin: 0;
     padding: 0;
     box-sizing: border-box;
 }

 .sustainability-left-pane {
     width: 40%;
     background-color: #ffd700;
     /* Main yellow color from image */
     color: #1a1a1a;
     /* Dark text for contrast */
     padding: 80px 50px;
     display: flex;
     flex-direction: column;
     justify-content: center;
     box-sizing: border-box;
 }

 .sustainability-left-pane-content {
     max-width: 500px;
     /* Control text line length */
     margin: 0 auto;
 }

 .sustainability-left-pane h1 {
     font-family: 'Open Sans', sans-serif;
     font-size: 3.5em;
     /* Large heading */
     font-weight: 800;
     color: #122b40;
     /* Dark blueish color from header, or #1a1a1a */
     line-height: 1.15;
     margin-bottom: 30px;
     text-transform: uppercase;
 }

 .sustainability-left-pane p {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.95em;
     line-height: 1.7;
     margin-bottom: 20px;
     color: #333;
 }

 .vision-2030-logo-display {
     max-width: 280px;
     /* Adjust size as per visual requirement */
     height: auto;
     display: block;
     margin: 40px auto 10px;
     /* Center it */
     opacity: 0.75;
     /* Slight transparency as in image */
 }

 .sustainability-right-pane {
     width: 60%;
     background-color: #ffffff;
     /* White background */
     padding: 80px 60px;
     box-sizing: border-box;
     overflow-y: auto;
     /* In case content is too long */
 }

 .sustainability-topic {
     margin-bottom: 45px;
 }

 .sustainability-topic:last-child {
     margin-bottom: 0;
 }

 .sustainability-topic h3 {
     font-family: 'Open Sans', sans-serif;
     font-size: 1.3em;
     font-weight: 700;
     color: #122b40;
     /* Dark blueish color */
     margin-bottom: 25px;
     display: flex;
     align-items: baseline;
     /* Align number and text nicely */
 }

 .sustainability-topic h3 span {
     /* For the number */
     font-size: 1.9em;
     font-weight: 800;
     color: #333;
     /* Dark grey for number */
     margin-right: 12px;
     line-height: 1;
 }

 .sustainability-topic ul {
     list-style: none;
     padding-left: 0;
     /* Align with heading */
 }

 .sustainability-topic ul li {
     margin-bottom: 25px;
 }

 .sustainability-topic ul li strong {
     display: block;
     font-family: 'Open Sans', sans-serif;
     font-size: 1em;
     font-weight: 700;
     color: #e6c300;
     /* Darker yellow for keywords, or #ffd700 */
     margin-bottom: 8px;
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .sustainability-topic ul li p {
     font-family: 'Montserrat', sans-serif;
     font-size: 0.95em;
     color: #555;
     line-height: 1.65;
     margin-bottom: 0;
 }

 /* Services Page - Detailed Services */
 .services-page-intro {
     padding: 80px 0;
     text-align: center;
     background-color: #f9f9f9;
 }

 .services-page-intro h1 {
     font-size: 2.8em;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .services-page-intro p {
     font-size: 1.1em;
     max-width: 800px;
     margin: 0 auto 50px;
 }

 .service-card-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     padding-bottom: 80px;
 }

 .service-card {
     background-color: #fff;
     border-radius: 8px;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
     overflow: hidden;
     text-align: center;
     transition: transform 0.3s ease, box-shadow 0.3s ease;
 }

 .service-card:hover {
     transform: translateY(-5px);
     box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
 }

 .service-card img {
     width: 100%;
     height: 250px;
     object-fit: cover;
     display: block;
 }

 .service-card-content {
     padding: 25px;
 }

 .service-card-content h3 {
     font-size: 1.6em;
     color: #1a1a1a;
     margin-bottom: 15px;
     font-weight: 600;
 }

 .service-card-content p {
     color: #555;
     font-size: 0.95em;
 }

 /* Projects Page - General */
 .projects-page-intro {
     padding: 80px 0;
     text-align: center;
     background-color: #f9f9f9;
 }

 .projects-page-intro h1 {
     font-size: 2.8em;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .projects-page-intro p {
     font-size: 1.1em;
     max-width: 800px;
     margin: 0 auto 50px;
 }

 /* Re-using projects-grid from home for main projects page */
 .projects-page-grid {
     padding-bottom: 80px;
 }

 /* Contact Page - General */
 .contact-page-intro {
     padding: 80px 0;
     text-align: center;
     background-color: #f9f9f9;
 }

 .contact-page-intro h1 {
     font-size: 2.8em;
     margin-bottom: 20px;
     font-weight: 700;
 }

 .contact-page-intro p {
     font-size: 1.1em;
     max-width: 800px;
     margin: 0 auto 50px;
 }

 .contact-page-layout {
     padding-bottom: 80px;
 }

 /* Re-using contact-layout from home page */

 /* =========================================
   FULL SERVICES TABS (SERVICES PAGE)
   ========================================= */

 .full-services-section {
     padding: 80px 20px 100px 20px;
     /* Added more bottom padding */
     background-color: #ffffff;
     /* White background as requested */
     text-align: center;
 }

 .full-services-section .section-title {
     font-size: 2.8em;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 60px;
     /* More space after title */
     text-transform: uppercase;
 }

 .services-tabs-grid {
     display: grid;
     /* Using 4 columns for desktop, will adjust for smaller screens */
     grid-template-columns: repeat(4, 1fr);
     gap: 30px;
     max-width: 1200px;
     margin: 0 auto;
 }

 .service-tab-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 25px;
     /* Space between icon and text button */
     transition: transform 0.3s ease;
 }

 .service-tab-item:hover {
     transform: translateY(-10px);
 }

 .service-tab-icon {
     width: 90px;
     height: 90px;
     border: 3px solid #ffd700;
     /* Brand's yellow */
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
 }

 .service-tab-icon i {
     font-size: 2.5em;
     /* Larger icon */
     color: #1a1a1a;
     /* Dark icon color */
     transition: color 0.3s ease;
 }

 .service-tab-item:hover .service-tab-icon {
     background-color: #1a1a1a;
     border-color: #1a1a1a;
 }

 .service-tab-item:hover .service-tab-icon i {
     color: #ffd700;
 }

 .service-tab-link {
     display: block;
     /* Use block to take full width of grid cell */
     width: 100%;
     background-color: #ffd700;
     color: #1a1a1a;
     padding: 18px 20px;
     /* Generous padding */
     border-radius: 50px;
     /* Pill shape */
     font-weight: 700;
     text-transform: uppercase;
     text-decoration: none;
     font-size: 0.9em;
     letter-spacing: 0.5px;
     box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
     transition: background-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease;
     box-sizing: border-box;
     /* Important for width: 100% and padding */
     text-align: center;
 }

 .service-tab-item:hover .service-tab-link {
     background-color: #1a1a1a;
     color: #ffd700;
     box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
 }

 /* Footer */
 .footer {
     background-color: #1a1a1a;
     /* Dark grey */
     color: #fff;
     padding: 40px 0;
     text-align: center;
 }

 .footer .container {
     display: flex;
     flex-direction: column;
     align-items: center;
 }

 .footer .logo img {
     height: 70px;
     /* Larger logo for footer */
     margin-bottom: 20px;
 }

 .footer p {
     margin-bottom: 20px;
     color: #ccc;
     font-size: 0.9em;
 }

 .social-links {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     gap: 20px;
 }

 .social-links li a {
     color: #fff;
     font-size: 1.5em;
     transition: color 0.3s ease;
 }

 .social-links li a:hover {
     color: #ffd700;
     /* Yellow */
 }

 /* Admin Panel Basic Styles */
 .admin-body {
     font-family: 'Open Sans', sans-serif;
     background-color: #f4f7f6;
     color: #333;
     margin: 0;
     padding: 0;
 }

 .admin-header {
     background-color: #222;
     color: #fff;
     padding: 15px 20px;
     display: flex;
     justify-content: space-between;
     align-items: center;
     box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
 }

 .admin-header h1 {
     margin: 0;
     font-size: 1.8em;
     color: #fff;
 }

 .admin-nav ul {
     list-style: none;
     margin: 0;
     padding: 0;
     display: flex;
 }

 .admin-nav ul li {
     margin-left: 25px;
 }

 .admin-nav ul li a {
     color: #fff;
     text-decoration: none;
     font-weight: 500;
     transition: color 0.3s ease;
 }

 .admin-nav ul li a:hover {
     color: #ffd700;
 }

 .admin-container {
     max-width: 1000px;
     margin: 30px auto;
     background-color: #fff;
     padding: 30px;
     border-radius: 8px;
     box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
 }

 .admin-form .form-group {
     margin-bottom: 20px;
 }

 .admin-form label {
     display: block;
     margin-bottom: 8px;
     font-weight: 600;
     color: #333;
 }

 .admin-form input[type="text"],
 .admin-form input[type="password"],
 .admin-form input[type="email"],
 .admin-form input[type="file"],
 .admin-form textarea {
     width: calc(100% - 20px);
     /* Adjusted for 10px padding on each side */
     padding: 10px;
     border: 1px solid #ccc;
     border-radius: 4px;
     font-size: 1em;
     box-sizing: border-box;
     transition: border-color 0.3s ease;
 }

 .admin-form input:focus,
 .admin-form textarea:focus {
     border-color: #ffd700;
     outline: none;
 }

 .admin-form textarea {
     min-height: 120px;
     resize: vertical;
 }

 .admin-form .button {
     background-color: #ffd700;
     color: #1a1a1a;
     padding: 10px 20px;
     border-radius: 5px;
     font-weight: bold;
     cursor: pointer;
     border: none;
     transition: background-color 0.3s ease;
 }

 .admin-form .button:hover {
     background-color: #e6c200;
 }

 .admin-table {
     width: 100%;
     border-collapse: collapse;
     margin-top: 30px;
 }

 .admin-table th,
 .admin-table td {
     border: 1px solid #eee;
     padding: 12px 15px;
     text-align: left;
 }

 .admin-table th {
     background-color: #f2f2f2;
     font-weight: 600;
     color: #333;
 }

 .admin-table tr:nth-child(even) {
     background-color: #f9f9f9;
 }

 .admin-table tr:hover {
     background-color: #f1f1f1;
 }

 .admin-table .actions a {
     margin-right: 10px;
     color: #007bff;
     text-decoration: none;
 }

 .admin-table .actions a.delete {
     color: #dc3545;
 }

 .admin-table .actions a:hover {
     text-decoration: underline;
 }

 .message {
     padding: 15px;
     margin-bottom: 20px;
     border-radius: 5px;
     font-weight: bold;
 }

 .message.success {
     background-color: #d4edda;
     color: #155724;
     border: 1px solid #c3e6cb;
 }

 .message.error {
     background-color: #f8d7da;
     color: #721c24;
     border: 1px solid #f5c6cb;
 }

 /* [...all your existing CSS from the previous step...] */

 /* Admin Quotes Grid View */
 .quote-grid {
     display: grid;
     grid-template-columns: 1fr;
     /* Start with a single column layout */
     gap: 25px;
     margin-top: 20px;
 }

 /* Default style for odd-numbered cards (1st, 3rd, etc.) */
 .quote-card {
     background-color: #fff;
     border: 1px solid #e9e9e9;
     border-radius: 8px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
     display: flex;
     flex-direction: column;
 }

 .quote-card-header {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 12px 20px;
     background-color: #f7f9fa;
     border-bottom: 1px solid #e9e9e9;
 }

 .quote-card-footer {
     padding: 15px 20px;
     border-top: 1px solid #e9e9e9;
     margin-top: auto;
     background-color: #fdfdfd;
 }

 .description-text {
     background: #f7f7f7;
     border: 1px solid #eee;
     /* ... other styles */
     font-size: 1em;
     color: #555;
     padding: 12px;
     border-radius: 5px;
     white-space: pre-wrap;
     max-height: 150px;
     overflow-y: auto;
 }

 /* Override styles for even-numbered cards (2nd, 4th, etc.) to create a clear difference */
 .quote-card:nth-child(even) {
     background-color: #f0f2f5;
     /* A more distinct, cool light grey */
     border-color: #e0e5e9;
 }

 .quote-card:nth-child(even) .quote-card-header {
     background-color: #e9ecef;
     /* A shade darker for the header */
     border-bottom-color: #dde2e6;
 }

 .quote-card:nth-child(even) .quote-card-footer {
     background-color: #f8f9fa;
     /* Slightly lighter than the body but not pure white */
     border-top-color: #dde2e6;
 }

 .quote-card:nth-child(even) .description-text {
     background-color: #e9ecef;
     /* Match the header for visual consistency */
     border-color: #dde2e6;
 }

 .quote-card-header h3 {
     margin: 0;
     font-size: 1.2em;
     color: #1d2d3d;
 }

 .quote-card-header span {
     font-size: 0.9em;
     color: #555;
 }

 .quote-card-body {
     display: flex;
     flex-wrap: wrap;
     /* Allows columns to wrap on small screens */
     gap: 20px 40px;
     /* Row and column gap */
     padding: 15px 20px;
 }

 .quote-details-column {
     flex: 1;
     /* Each column will try to take up equal space */
     min-width: 250px;
     /* A column won't get smaller than this before wrapping */
 }

 .quote-details-column.full-width {
     flex-basis: 100%;
     /* Makes the location column take the full width */
 }

 .quote-details-column h4 {
     font-size: 1.1em;
     font-weight: 700;
     color: #1a1a1a;
     margin-top: 0;
     margin-bottom: 15px;
     padding-bottom: 5px;
     border-bottom: 2px solid #f0f0f0;
 }

 .quote-details-column p {
     margin: 0 0 10px 0;
     font-size: 1em;
     line-height: 1.6;
     color: #555;
 }

 .quote-details-column p strong {
     color: #1a1a1a;
     font-weight: 600;
     min-width: 80px;
     /* Aligns the text values */
     display: inline-block;
 }

 .quote-card-footer h4 {
     margin-top: 0;
     margin-bottom: 10px;
     font-size: 1.1em;
 }

 .quote-card-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-top: 15px;
 }

 .file-link {
     background-color: #007bff;
     color: #fff;
     padding: 8px 15px;
     border-radius: 5px;
     text-decoration: none;
     font-size: 0.9em;
     font-weight: bold;
     transition: background-color 0.2s ease;
 }

 .file-link:hover {
     background-color: #0056b3;
     color: #fff;
 }

 .delete-btn {
     background-color: transparent;
     color: #dc3545;
     padding: 5px 10px;
     text-decoration: none;
     font-size: 0.9em;
     font-weight: bold;
     border: 1px solid transparent;
     transition: all 0.2s ease;
 }

 .delete-btn:hover {
     color: #c82333;
     text-decoration: underline;
 }

 /* NEW: Admin Pagination Styles */
 .pagination {
     margin-top: 30px;
     text-align: center;
 }

 .pagination a,
 .pagination span {
     color: #007bff;
     padding: 8px 16px;
     text-decoration: none;
     transition: background-color .3s;
     border: 1px solid #ddd;
     margin: 0 4px;
     border-radius: 4px;
     display: inline-block;
 }

 .pagination a.active {
     background-color: #007bff;
     color: white;
     border: 1px solid #007bff;
 }

 .pagination a:hover:not(.active) {
     background-color: #f2f2f2;
 }

 .pagination span.disabled {
     color: #ccc;
     border-color: #ddd;
     cursor: not-allowed;
 }

 /* =========================================
   HOW IT WORKS SECTION STYLES (CORRECTED)
   ========================================= */

 .how-it-works-section {
     padding: 80px 0;
     background-color: #f8f9fa;
     text-align: center;
 }

 .how-it-works-section .section-title {
     font-size: 2.8em;
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 15px;
 }

 .how-it-works-section .section-underline {
     width: 70px;
     height: 4px;
     background-color: #ffd700;
     margin: 0 auto 50px auto;
     border-radius: 2px;
 }

 .how-it-works-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     /* This makes the outer card containers stretch */
     align-items: stretch;
 }

 /* The .step-card is now just a positioning wrapper */
 .step-card {
     display: flex;
     /* Helps vertically center the content wrapper */
     align-items: center;
     justify-content: center;
 }

 /* All visual styles are now on the inner wrapper */
 .step-card-content {
     width: 100%;
     height: 100%;
     /* Makes the inner content fill the outer card */
     background-color: #ffffff;
     padding: 40px 30px;
     border-radius: 16px;
     box-shadow: 0 5px 25px rgba(0, 0, 0, 0.07);
     border: 1px solid #e9ecef;
     transition: transform 0.3s ease, box-shadow 0.3s ease;

     /* Use flexbox to organize content inside */
     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .step-card-content:hover {
     transform: translateY(-8px);
     box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
 }

 .step-icon {
     width: 65px;
     height: 65px;
     border-radius: 50%;
     background-color: #ffd700;
     color: #1a1a1a;
     font-size: 2em;
     font-weight: 700;
     margin: 0 auto 25px auto;
     display: flex;
     justify-content: center;
     align-items: center;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
     flex-shrink: 0;
 }

 .step-card-content h3 {
     font-size: 1.5em;
     font-weight: 600;
     color: #1a1a1a;
     margin-bottom: 15px;
 }

 .step-card-content p {
     font-size: 1em;
     color: #555;
     line-height: 1.6;
     margin-bottom: 0;
 }


 /* --- STYLES FOR THE FEATURED MIDDLE CARD --- */

 /* We now target the inner content of the featured step */
 .featured-step .step-card-content {
     background-color: #ffd700;
     color: #1a1a1a;
     transform: scale(1.05);
     /* The scaling now happens on the inner div */
     box-shadow: 0 10px 40px rgba(255, 215, 0, 0.3);
 }

 .featured-step .step-card-content:hover {
     transform: scale(1.08) translateY(-8px);
     box-shadow: 0 15px 50px rgba(255, 215, 0, 0.4);
 }

 .featured-step .step-icon {
     background-color: #ffffff;
     color: #1a1a1a;
 }

 .featured-step h3,
 .featured-step p {
     color: #1a1a1a;
 }

 /* =========================================
   CUSTOM ERROR PAGE STYLES
   ========================================= */
 .error-page-container {
     display: flex;
     flex-direction: column;
     justify-content: center;
     align-items: center;
     min-height: 100vh;
     padding: 20px;
     text-align: center;
     background-color: #f8f9fa;
     font-family: 'Montserrat', sans-serif;
 }

 .error-icon {
     font-size: 5em;
     color: #ffd700;
     /* Your brand's yellow color */
     margin-bottom: 30px;
 }

 .error-page-container h1 {
     font-size: 3.5em;
     color: #1a1a1a;
     font-family: 'Open Sans', sans-serif;
     font-weight: 700;
     margin-bottom: 20px;
 }

 .error-page-container p {
     font-size: 1.1em;
     color: #555;
     max-width: 500px;
     margin-bottom: 40px;
     line-height: 1.6;
 }

 /* =========================================
   MEP DETAILED SERVICES PAGE
   ========================================= */

 .mep-detailed-services {
     background-color: #000000;
     /* Dark background */
     padding: 100px 20px;
 }

 .mep-services-grid {
     display: grid;
     grid-template-columns: 1fr auto 1fr;
     /* 3 columns: content, center-deco, content */
     gap: 40px;
     align-items: center;
 }

 .mep-column-left {
     text-align: right;
 }

 .mep-column-right {
     text-align: left;
 }

 .mep-column h2 {
     font-size: 2.2em;
     font-weight: 800;
     margin-bottom: 40px;
     color: #ffffff;
     /* White text for dark theme */
     text-transform: uppercase;
 }

 .mep-column h2 .yellow-text {
     color: #ffd700;
 }

 .service-category {
     margin-bottom: 35px;
 }

 .service-category h4 {
     color: #ffd700;
     font-size: 1.1em;
     font-weight: 700;
     text-transform: uppercase;
     margin-bottom: 15px;
 }

 .mep-column ul {
     list-style: none;
     padding-left: 0;
     margin: 0;
 }

 .mep-column ul li {
     color: #ffffff;
     /* White text for dark theme */
     font-family: 'Montserrat', sans-serif;
     margin-bottom: 10px;
     padding-left: 20px;
     position: relative;
 }

 .mep-column ul li::before {
     content: '•';
     color: #ffffff;
     /* White bullet point for dark theme */
     font-weight: bold;
     display: inline-block;
     width: 20px;
     margin-left: -20px;
     position: absolute;
     left: 10px;
 }

 /* Center Decorative Column */
 .mep-column-center {
     display: flex;
     flex-direction: column;
     align-items: center;
     justify-content: center;
     height: 100%;
     align-self: stretch;
 }

 .center-bar {
     width: 60px;
     /* Container for two 20px bars + 20px gap */
     background-color: transparent;
     flex-grow: 1;
     position: relative;
 }

 .center-bar::before,
 .center-bar::after {
     content: '';
     position: absolute;
     top: 0;
     height: 100%;
     width: 20px;
     /* Thickness of each bar */
     background-color: #ffd700;
     border-radius: 0;
     /* Square ends */
 }

 .center-bar::before {
     left: 0;
 }

 .center-bar::after {
     right: 0;
 }

 .center-icon-wrapper {
     background-color: #ffd700;
     color: #1a1a1a;
     border-radius: 50px;
     padding: 25px 35px;
     margin: 30px 0;
     box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
 }

 .center-icon-wrapper i {
     font-size: 3em;
 }