:root {
    --bg-dark: #282828;
    --accent-color: #dbdbdb;
    --text-white: #ffffff;
    --nav-height: 80px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

body {
    font-family: 'Titillium Web', sans-serif;
	font-size: 18px;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.8;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header & Nav */
#nav-bar {
    background: #1a1a1a;
    height: var(--nav-height);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #4C4C4C;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--text-white);
}

.logo-img { height: 50px; margin-right: 15px; }

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li a {
    color: var(--accent-color);
    text-decoration: none;
    padding: 0 15px;
    font-weight: bold;
    font-size: 14px;
}

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../images/s1.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    margin-top: var(--nav-height);
}

/* Remove the default button styling and the dot */
.menu-toggle {
    display: none; /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    outline: none;
}

/* Create the middle bar of the hamburger */
.hamburger {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    position: relative;
    transition: all 0.3s ease-in-out;
}

/* Create the top and bottom bars using pseudo-elements */
.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 3px;
    background: var(--accent-color);
    left: 0;
    transition: all 0.3s ease-in-out;
}

.hamburger::before { top: -8px; }  /* Top bar */
.hamburger::after { top: 8px; }    /* Bottom bar */

/* Mobile Media Query */
@media (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show button on mobile */
    }

    .nav-links {
        display: none; 
        list-style: none; /* This ensures the dot (.) disappears */
        /* ... existing mobile nav-links styles ... */
    }

    .nav-links.active {
        display: flex;
    }
}
h1 { font-family: 'Julius Sans One', sans-serif; font-size: 3rem; margin-bottom: 1rem; }

/* Grid Sections */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 50px 0;
}


/* Footer */
footer { background: #1a1a1a; padding: 40px 0 20px; border-top: 1px solid #4C4C4C; }
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.footer-bottom { text-align: center; margin-top: 30px; font-size: 12px; }

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide by default on mobile */
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        background: #1a1a1a;
    }
    .nav-links.active { display: flex; }
    .nav-links li { padding: 15px; border-bottom: 1px solid #333; }
    h1 { font-size: 2rem; }
}
.contact-form-section { padding: 60px 0; max-width: 600px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 15px; background: #333; padding: 30px; border-radius: 8px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { margin-bottom: 5px; color: var(--accent-color); }
.form-group input, .form-group textarea { 
    padding: 10px; 
    background: #444; 
    border: 1px solid #555; 
    color: white; 
    border-radius: 4px; 
}
.captcha-group input { width: 100px; }
.submit-btn { 
    padding: 12px; 
    background: #dbdbdb; 
    color: #282828; 
    border: none; 
    font-weight: bold; 
    cursor: pointer; 
    transition: 0.3s;
}
.submit-btn:hover { background: #ffffff; }
.success-msg { color: #4CAF50; margin-bottom: 20px; text-align: center; }
.error-msg { color: #f44336; margin-bottom: 20px; text-align: center; }
/* Dropdown Container */
.dropdown {
    position: relative;
    display: inline-block;
}

/* Dropdown Content (Hidden by Default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #1a1a1a;
    min-width: 220px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1;
    border-top: 2px solid var(--accent-color);
    list-style: none;
    padding: 0;
}

/* Links inside the dropdown */
.dropdown-content li a {
    color: white;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 13px;
    border-bottom: 1px solid #333;
    transition: background 0.3s;
}

/* Hover effects */
.dropdown-content li a:hover {
    background-color: #333;
    color: var(--accent-color);
}

/* Show the dropdown on hover (Desktop) */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        display: block;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .dropdown-content {
        position: static;
        display: block; /* Show as an accordion on mobile */
        background-color: #222;
        box-shadow: none;
        padding-left: 20px;
    }
    
    .arrow { display: none; } /* Hide arrow on mobile to save space */
}

.arrow {
    font-size: 10px;
    margin-left: 5px;
    vertical-align: middle;
}
* Hero Container Adjustment */
.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    overflow: hidden; /* Prevents scrollbars during animation */
}

/* Logo Animation Styles */
.drop-in-logo {
    position: relative;
    max-width: 629px; /* Adjust size as needed */
    height: auto;
    /* Animation: name | duration | timing-function | delay | fill-mode */
    animation: dropFromTop 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.5s both;
}

@keyframes dropFromTop {
    0% {
        opacity: 0;
        transform: translateY(-100%); /* Starts completely off-screen at the top */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Ends at its natural position in the center */
    }
}
.hero-subtitle {
    font-family: 'Julius Sans One', sans-serif; /* Matches the heading style */
    font-size: 2.2rem; /* Significantly larger size */
    font-weight: 400;
    color: #ffffff;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 20px;
    line-height: 1.2;
    
    /* Animation to fade in smoothly after the logo */
    opacity: 0;
    animation: fadeInText 1s ease-out 1.2s forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ensure it scales down for mobile screens */
@media (max-width: 768px) {
    .hero-subtitle {
        font-size: 1.4rem;
        letter-spacing: 1px;
    }
}
/* Container for the heading and lines */
.lined-heading {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

/* The horizontal lines */
.lined-heading::before,
.lined-heading::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--accent-color); /* Uses your silver/grey accent color */
}

/* Spacing between the lines and the text */
.lined-heading::before {
    margin-right: 20px;
}

.lined-heading::after {
    margin-left: 20px;
}

/* Container for the heading and lines */
.lined-heading {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

/* The horizontal lines */
.lined-heading::before,
.lined-heading::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--accent-color); /* Uses your silver/grey accent color */
}

/* Spacing between the lines and the text */
.lined-heading::before {
    margin-right: 20px;
}

.lined-heading::after {
    margin-left: 20px;
}

/* Container for the heading and lines */
.lined-heading {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 20px 0;
}

/* The horizontal lines */
.lined-heading::before,
.lined-heading::after {
    content: '';
    flex: 1;
    border-bottom: 2px solid var(--accent-color); /* Uses your silver/grey accent color */
}

/* Spacing between the lines and the text */
.lined-heading::before {
    margin-right: 20px;
}

.lined-heading::after {
    margin-left: 20px;
}

/* Ensure the H1 itself doesn't have extra margins */
.lined-heading h1 {
    font-family: 'Julius Sans One', sans-serif;
    font-size: 3rem;
    margin: 0;
    white-space: nowrap; /* Keeps heading on one line */
    color: var(--accent-color);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lined-heading h1 {
        font-size: 1.5rem;
    }
    .lined-heading::before,
    .lined-heading::after {
        border-bottom-width: 1px; /* Thinner lines on mobile */
    }
}
.footer-bottom {
    background: #1a1a1a; /* Slightly darker than the main footer */
    padding: 20px 0;
    border-top: 1px solid #4C4C4C; /* Matching the original bar colour */
    text-align: center;
    width: 100%;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    color: #ffffff;
    font-family: "Titillium Web", sans-serif;
    font-size: 14px;
    gap: 10px; /* Space between text, pipe, and logo */
}

.footer-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-link:hover {
    opacity: 0.8;
}

.footer-icon {
    height: 15px; /* Adjust height to match your text size */
    width: auto;
    vertical-align: middle;
}
/* Hover State: Changes the image to a bright silver/white or gold */
.footer-link:hover .footer-icon {
    opacity: 1;
    /* brightness(0) invert(1) makes a dark logo pure white */
    /* sepia(1) saturate(5) hue-rotate(10deg) can create a gold/bronze effect */
    filter: brightness(1.2) contrast(1.1); 
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .footer-bottom p {
        flex-direction: column;
        gap: 5px;
    }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .lined-heading h1 {
        font-size: 1.5rem;
    }
    .lined-heading::before,
    .lined-heading::after {
        border-bottom-width: 1px; /* Thinner lines on mobile */
    }
}
/* Mobile Adjustments */
@media (max-width: 768px) {
    .lined-heading h1 {
        font-size: 1.5rem;
    }
    .lined-heading::before,
    .lined-heading::after {
        border-bottom-width: 1px; /* Thinner lines on mobile */
    }
}
/* Main Footer Grid Layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    padding: 60px 0;
    color: #ffffff;
    font-family: "Titillium Web", sans-serif;
}

/* Individual Footer Sections */
.footer-section {
    display: flex;
    flex-direction: column;
}

/* Heading Styling */
.footer-section h3 {
    font-family: 'Julius Sans One', sans-serif;
    color: var(--accent-color); /* Silver/Grey Accent from original branding */
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    position: relative;
}

/* Subtle underline for footer headings */
.footer-section h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: var(--accent-color);
    margin-top: 8px;
}

/* Paragraph and Link Styling */
.footer-section p {
    margin: 8px 0;
    line-height: 1.6;
    font-size: 15px;
    color: #dbdbdb;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}
.footer-section a:hover {
    color: #03B3FD;
    text-decoration: none;
    transition: color 0.3s ease;
}
/* Mobile Adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .footer-section h3::after {
        margin: 8px auto 0; /* Center the underline on mobile */
    }
}
/* Sub-Page Header */
.page-header {
    height: 300px;
    background-color: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: var(--nav-height);
    position: relative;
    color: #fff;
}

/* New Header Image for About Page */
.about-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/s3.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--accent-color);
}
.hydraulic-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/s2.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--accent-color);
}
.page-header h1 {
    font-size: 2.5rem;
    font-family: 'Julius Sans One', sans-serif;
    margin-bottom: 10px;
    letter-spacing: 3px;
}

.breadcrumb {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a { color: var(--accent-color); text-decoration: none; }

/* About Content Layout */
.about-content {
    padding: 80px 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: center;
}
/* hydraulic Content Layout */
.hydraulic-content {
    padding: 80px 0;
}

.hydraulic-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 50px;
    align-items: flex-start;
}
.section-title {
    font-family: 'Julius Sans One', sans-serif;
    color: var(--accent-color);
    margin-bottom: 25px;
    font-size: 1.8rem;
}

.features-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.features-list li {
    padding: 10px 0;
    border-bottom: 1px solid #333;
    font-size: 1.1rem;
}

.styled-img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid #444;
}

/* Values Banner */
.values-banner {
    background: #222;
    padding: 60px 0;
    text-align: center;
    border-top: 1px solid #333;
}

.values-banner h2 {
    color: var(--accent-color);
    margin-bottom: 15px;
}

/* Mobile Adjustments */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
    .page-header h1 { font-size: 1.8rem; }
}
/* Gallery Page Header */
.gallery-bg {
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('../images/s4.jpg');
    background-size: cover;
    background-position: center;
    border-bottom: 3px solid var(--accent-color);
}

.gallery-content {
    padding: 80px 0;
}

.gallery-intro {
    text-align: center;
    margin-bottom: 50px;
}

/* Responsive Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    height: 300px;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #333;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Hover Overlay */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    text-align: center;
    padding: 20px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.view-btn {
    border: 2px solid var(--accent-color);
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.gallery-overlay p {
    color: var(--accent-color);
    font-weight: bold;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}
/* 1. The Grid Container */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

/* 2. The Perspective Container - Must have a fixed height */
.service-card {
    background-color: transparent;
    height: 300px; 
    perspective: 1000px; 
}

/* 3. The Flipper - Handles the 3D rotation */
.service-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

/* Trigger the flip on hover */
.service-card:hover .service-card-inner {
    transform: rotateY(180deg);
}

/* 4. Common Face Styles - position: absolute stacks them! */
.service-card-front, .service-card-back {
    position: absolute; 
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    backface-visibility: hidden; 
    -webkit-backface-visibility: hidden; 
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #444;
    box-sizing: border-box; /* Crucial for padding */
}

/* Front Face Styling */
.service-card-front {
    background-color: #2a2a2a;
    color: white;
}

/* Back Face Styling */
.service-card-back {
    background-color: #dbdbdb; 
    color: #1a1a1a;
    transform: rotateY(180deg); /* Faces the "back" initially */
}

.service-card-back h3 {
    color: #1a1a1a !important;
    margin-bottom: 10px;
}
.map-container {
    width: 100%;
    height: 450px; /* Adjust height as needed */
    margin-top: var(--nav-height); /* Ensure it starts below the fixed header */
    overflow: hidden;
    line-height: 0; /* Removes tiny gap at bottom of iframe */
}

.map-container iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(100%) invert(90%) contrast(90%); /* Optional: Matches your dark industrial theme */
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .map-container {
        height: 300px;
    }
}
/* Contact Section Layout */
.contact-section {
    padding: 100px 0;
    display: flex;
    justify-content: center;
}

/* Glassmorphism Card */
.glass-card {
    background: rgba(255, 255, 255, 0.03); /* Subtle white tint */
    backdrop-filter: blur(12px); /* The frosted glass effect */
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1); /* Thin glass edge */
    border-radius: 15px;
    padding: 50px;
    width: 100%;
    max-width: 800px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.contact-header {
    text-align: center;
    margin-bottom: 40px;
}

.contact-header h1 {
    font-family: 'Julius Sans One', sans-serif;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

/* Form Styling */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    font-family: 'Julius Sans One', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: var(--accent-color);
}

/* Glass Input Styling */
.contact-form input, 
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.05); /* Semi-transparent input */
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #fff;
    font-family: 'Titillium Web', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-form input:focus, 
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    box-shadow: 0 0 10px rgba(219, 219, 219, 0.2);
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 15px;
    background: transparent;
    border: 1px solid var(--accent-color);
    color: var(--accent-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.4s ease;
    border-radius: 8px;
    margin-top: 10px;
}

.submit-btn:hover {
    background: var(--accent-color);
    color: #1a1a1a;
    box-shadow: 0 0 20px rgba(219, 219, 219, 0.4);
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .form-row { grid-template-columns: 1fr; }
    .glass-card { padding: 30px 20px; }
}
/* Machine Grid */
.machine-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 50px 0;
}

.machine-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.machine-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.machine-img-container {
    height: 200px;
    overflow: hidden;
}

.machine-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.machine-info {
    padding: 25px;
    text-align: center;
}

.read-more-btn {
    margin-top: 15px;
    background: transparent;
    color: var(--accent-color);
    border: 1px solid var(--accent-color);
    padding: 8px 20px;
    cursor: pointer;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    transition: 0.3s;
}

.read-more-btn:hover {
    background: var(--accent-color);
    color: #1a1a1a;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.4s;
    z-index: 2000;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    width: 90%;
    max-width: 800px;
    position: relative;
    padding: 40px;
    animation: slideUp 0.4s ease;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: var(--accent-color);
}

.modal-img {
    height: 100%;
    border-radius: 10px;
    margin: 20px 0;
}

@keyframes slideUp {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
.values-banner {
    padding: 80px 0;
    background: #1f1f1f; /* Slightly lighter than the main bg for depth */
    text-align: center;
}

.banner-image-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 40px 0;
}

.banner-img-item {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.banner-img-item img {
    width: 100%;
    height: 200px; /* Fixed height for uniformity */
    object-fit: cover;
    display: block;
    filter: grayscale(100%); /* Optional: Matches the industrial aesthetic */
    transition: filter 0.5s ease;
}

/* Hover Effects */
.banner-img-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.banner-img-item:hover img {
    filter: grayscale(0%);
}

.repair-list-text {
    font-family: 'Julius Sans One', sans-serif;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--accent-color);
    margin-top: 30px;
}

/* Responsive: Stack them on mobile */
@media (max-width: 768px) {
    .banner-image-row {
        flex-direction: column;
        align-items: center;
    }
    
    .banner-img-item {
        width: 100%;
        max-width: 400px;
    }
}
/* Footer WhatsApp Styling */
.whatsapp-contacts {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.wa-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.9rem;
    font-family: 'Julius Sans One', sans-serif;
    letter-spacing: 1px;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.wa-icon {
    width: 20px;
    height: 20px;
    fill: var(--accent-color); /* Matches your silver/white theme */
    transition: fill 0.3s ease;
}

.wa-link:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-color);
    transform: translateX(5px); /* Subtle slide effect */
    box-shadow: 0 0 15px rgba(219, 219, 219, 0.2);
}

.wa-link:hover .wa-icon {
    fill: #25D366; /* WhatsApp Green only on hover for a pop of color */
}

/* Footer Bottom Polish */
.footer-bottom {
    text-align: center;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    font-size: 0.8rem;
    opacity: 0.6;
}
/* Floating Call Button Styles */
.mobile-call-btn {
    display: none; /* Hidden by default on desktop */
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
    padding: 14px 24px;
    border-radius: 50px;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 2000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
    font-family: 'Julius Sans One', sans-serif;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.mobile-call-btn:active {
    transform: scale(0.95);
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .mobile-call-btn {
        display: flex; /* Visible only on mobile */
    }
}
/* Ensure these rules are inside your @media (max-width: 768px) block */
@media (max-width: 768px) {
    
    /* Fix for the Logo Size */
    .drop-in-logo {
        width: 80% !important; /* Forces it to fit the screen width */
        max-width: 300px;      /* Prevents it from being tiny on small phones */
        height: auto;
        margin: 0 auto;
        display: block;
    }

    /* Fix for the Call Now Button visibility */
    .mobile-call-btn {
        display: flex !important; /* Force visibility */
        position: fixed;
        bottom: 20px;
        right: 20px;
        z-index: 9999; /* Ensure it stays above everything else */
        padding: 12px 20px;
        background: rgba(40, 40, 40, 0.8); /* Slightly darker for better contrast on mobile */
        border: 1px solid var(--accent-color);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    }
}