/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: Arial, sans-serif; }

/* Colors */
:root {
    --primary-red: #222121;
    --primary-gold: #f5c518;
    --black: #222222;
    --white: #e2d6ca;
}

html, body {
    max-width: 100%;
    overflow-x: hidden; /* locks page to screen width */

}
/* Header container */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Logo */
header .logo img {
  width: 48px;
  height: auto;
}

/* Nav menu (desktop) */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 0;
  align-items: center;
}

.nav-menu li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 600;
  padding: 6px 8px;
  transition: 0.2s;
}

.nav-menu li a:hover {
  color: var(--primary-red);
  background-color: rgba(183,28,28,0.1);
  border-radius: 5px;
}

/* Hamburger toggle */
.mobile-menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
}

/* ===== MOBILE MENU ===== */
@media (max-width: 768px) {
  .mobile-menu-toggle {
    display: block;
    margin-left: auto; /* far right */
  }

  .nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: white; /* optional if you want transparent, set none */
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 999;
  }

  .nav-menu.show {
    display: flex;
    max-height: 500px; /* adjust if more menu items */
  }

  .nav-menu li {
    text-align: center;
    border-bottom: 1px solid #ddd;
  }

  .nav-menu li a {
    padding: 12px 0;
    display: block;
  }
}
.hero {
                       
    height: 500px;                            
 background: url('../assets/images/project17.jpg') no-repeat center center;
    background-size: cover;                   
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

/* Hero content */
.hero-content {
    position: relative;
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-content h1 {
    font-size: 2.8em;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2em;
    margin-bottom: 20px;
}

.hero-content .btn {
    background: #B71C1C;  /* primary red */
    color: #fff;
    padding: 12px 25px;
    text-decoration: none;
    border-radius: 5px;
}

.hero-content .btn:hover {
    background: #FFD700;  /* primary gold */
}

/* Responsive */
@media (max-width: 768px){
    .hero {
        height: 400px;
    }
    .hero-content h1 {
        font-size: 1.8em;
    }
    .hero-content p {
        font-size: 1em;
    }
}

/* Sections */
.section { background-color: #705d5d;
    padding: 60px 20px; }
section h2 { text-align: center; font-size: 2em; margin-bottom: 40px; color: var(--primary-red); }

/* Services Grid */
.services {
    padding: 60px 20px;
    background-color: #eff5f2;
    text-align: center;
}

.services .section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #272424; /* Dangote Red */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service {
    background-color: #b9abab;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: left;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.service h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #333;
}

.service p {
    font-size: 1em;
    margin-bottom: 15px;
    color: #555;
}

.service ul {
    list-style-type: disc;
    padding-left: 20px;
}

.service ul li {
    margin-bottom: 8px;
    color: #444;
}

.team {
    padding: 60px 20px;
    background-color: #f5f5f5;
    text-align: center;
}

.team .section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #B71C1C;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
}

.team-member {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 20px;
    width: clamp(200px, 45%, 260px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}


.team-member img {
    width: 100%;
    height: 280px;            /* same height for all staff images */
    object-fit: cover;        /* crop instead of stretch */
    object-position: center top; /* crop bottom slightly */
    border-radius: 8px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.3em;
    color: #333;
    margin-bottom: 5px;
}

.team-member p {
    font-size: 1em;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .team-member {
        width: 45%;
    }
}

@media (max-width: 480px) {
    .team-member {
        width: 90%;
    }
}

.machinery {
    padding: 60px 20px;
    background-color: #ebe2e2; /* light grey section */
    text-align: center;
}

.machinery .section-title {
    font-size: 2.5em;
    margin-bottom: 40px;
    color: #1f1d1d; /* Dangote Red */
}

.machine-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch; /* equal height cards */
}

.machine-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    width: clamp(180px, 40%, 200px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.machine-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.machine-card img {
    width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 5px; /* slightly rounded */
}

.machine-card p {
    font-size: 1em;
    color: #333;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .machine-card {
        width: 45%; /* 2 per row */
    }
}

@media (max-width: 480px) {
    .machine-card {
        width: 90%; /* 1 per row */
    }
}

/* Contact Form */
.contact-info p { margin-bottom: 10px; }
.quote-form { display: flex; flex-direction: column; gap: 15px; max-width: 500px; margin: 0 auto 30px; }
.quote-form input, .quote-form textarea {
    padding: 10px;
    border-radius: 5px;
    border: 1px solid #ccc;
}
.quote-form button {
    background: var(--primary-red);
    color: var(--white);
    padding: 12px;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}
.quote-form button:hover { background: var(--primary-gold); }

/* Footer */

.footer {
    background: #111;
    color: #fff;
    padding: 50px 20px 20px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
}

.footer-column {
    flex: 1;
    min-width: 250px;
}

.footer-logo {
    width: 120px;
    margin-bottom: 15px;
}

.footer h3, 
.footer h4 {
    color: #E6B800; /* gold */
    margin-bottom: 10px;
}

/* Quick Links shifted right */
.footer-links {
    margin-left: 0px;
}

.footer-links a {
    display: block;
    color: #ddd;
    margin-bottom: 8px;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #E6B800;
}
/* ABOUT HERO STYLING */
/* ===== ABOUT HERO STYLING ===== */
.about-hero {
    background: url('../assets/images/project18.jpg') center/cover no-repeat;
    height: 60vh;
    position: relative;
}

.about-hero-overlay {
    background: rgba(0, 0, 0, 0.55);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: rgb(224, 214, 214);
    text-align: center;
    padding: 20px;
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.about-hero p {
    font-size: 1.2rem;
    max-width: 700px;
}

/* ===== ABOUT CONTENT & HOVERABLE CARDS ===== */
.about-content {
    padding: 60px 0; /* only vertical padding */
    background: #e0d6d6;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px; /* small side padding */
}

.about-card {
    background: #fff;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.about-card h3 {
    font-size: 1.5em;
    margin-bottom: 15px;
    color: #B71C1C; /* Dangote Red */
}

.about-card p,
.about-card ul {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
}

.about-card ul {
    padding-left: 20px;
}

.about-card li {
    margin-bottom: 8px;
}

/* ===== CTA BANNER (unchanged) ===== */
.cta-banner {
    background: #e57373; /* lighter red */
    color: #fff;
    padding: 60px 20px;
    text-align: center;  /* centers text and button */
}

.cta-banner .btn {
    display: inline-block;
    margin-top: 20px;
    background: #FFD700;   /* gold button */
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-banner .btn:hover {
    background: #fff;
    color: #746969;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero h1 {
        font-size: 2.2rem;
    }
    .about-hero p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
        gap: 15px;
    }

    .about-card {
        padding: 15px;
    }

    .about-card h3 {
        font-size: 1.3em;
    }

    .about-card p,
    .about-card ul {
        font-size: 1rem;
    }
}

.cta-banner {
    background: #d67979; /* Dangote red */
    color: #fff;
    padding: 60px 20px;
    text-align: center;  /* centers text and inline elements */
}
.cta-banner .btn {
    display: inline-block;
    margin-top: 20px;
    background: #FFD700;   /* gold button */
    color: #000;
    padding: 15px 35px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
}

.cta-banner .btn:hover {
    background: #fff;
    color: #746969;
}


/* Social Icons */
.footer-socials a {
    color: #E6B800;
    font-size: 22px;
    margin-right: 12px;
    transition: 0.3s;
}

.footer-socials a:hover {
    color: #fff;
}

/* Bottom */
.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
/*projects*/
.projects {
    padding: 60px 5%;
    background: #f5f5f5;
}

.projects .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #b71c1c;
}

.project-item {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
}

.project-item img,
.project-item video {
    width: 100%;
    height: 200px;        /* equal height for all */
    object-fit: cover;
    display: block;
}

.project-item p {
    padding: 10px 15px;
    font-weight: 600;
    color: #333;
    font-size: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .project-item img,
    .project-item video {
        height: 180px;
    }
}
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}


@media (max-width: 480px) {
    .project-item img,
    .project-item video {
        height: 150px;
    }
}
.projects-hero {
    background: url('../assets/images/project18.jpg') center/cover no-repeat;
    height: 50vh;
    position: relative;
}

.projects-hero-overlay {
    background: rgba(0, 0, 0, 0.5); /* dark overlay for contrast */
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.projects-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.projects-hero p {
    font-size: 1.2rem;
    max-width: 700px;
}
/* General container */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 0;
}

/* Section Headings */
h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #222;
    margin-bottom: 40px;
    font-family: 'Arial', sans-serif;
}

/* Testimonials */
#testimonials {
    background: #f9f9f9;
    padding: 60px 0;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    max-width: 400px;
    text-align: center;
    transition: transform 0.3s;
}

.testimonial:hover {
    transform: translateY(-5px);
}

.testimonial p {
    font-style: italic;
    color: #555;
    margin-bottom: 15px;
}

.testimonial span {
    font-weight: bold;
    color: #222;
}

/* Green Construction, Industrial, Smart, Machinery, Safety grids */
.green-grid, .industrial-grid, .smart-grid, .training-grid, .safety-grid, .blog-grid, .milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: stretch;
}

/* Cards */
.green-card, .industrial-card, .smart-card, .training-card, .audit-card, .blog-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.green-card:hover, .industrial-card:hover, .smart-card:hover,
.training-card:hover, .audit-card:hover, .blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.green-card img, .industrial-card img, .smart-card img, .training-card img,
.audit-card img, .blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.green-card h3, .industrial-card h3, .smart-card h3,
.training-card h3, .audit-card h3, .blog-card h3 {
    font-size: 1.5rem;
    margin: 15px;
    color: #222;
}

.green-card p, .industrial-card p, .smart-card p,
.training-card p, .audit-card p, .blog-card p {
    margin: 0 15px 20px;
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
}
/* FAQ Section */
.faq {
  padding: 50px 20px;
  background: #f4f4f4;
}

.faq h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 30px;
  color: #222;
}

.faq-item {
  background: #fff;
  padding: 15px 20px;
  margin: 10px 0;
  border-radius: 8px;
  cursor: pointer;
  overflow: hidden;
  border-left: 4px solid #f5c518;
  transition: background 0.3s;
}

.faq-item:hover {
  background: #e9e9e9;
}

.faq-item h3 {
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
}

.faq-item p {
  margin-top: 10px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease;
  opacity: 0;
  line-height: 1.5;
  color: #333;
}

.faq-item.active p {
  max-height: 200px; /* enough to show the answer */
  opacity: 1;
}

/* Toggle icon */
.toggle-icon {
  font-weight: bold;
  font-size: 1.3rem;
  transition: transform 0.3s;
}

.faq-item.active .toggle-icon {
  transform: rotate(45deg); /* plus turns into "x" visually */
}

/* Milestones */
.milestone-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.milestone-item h3 {
    font-size: 3rem;
    color: #f5c518; /* gold accent */
    margin-bottom: 10px;
}

.milestone-item p {
    font-size: 1.2rem;
    color: #222;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Achievements */
.achievements {
    padding: 70px 20px;
    background: #f8f8f8;
}

.ach-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
}

.ach-card {
    background: #fff;
    width: 200px;
    padding: 25px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.ach-icon {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* Process */
.process {
    padding: 70px 20px;
}

.process-steps {
    max-width: 700px;
    margin: auto;
}

.step {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    background: #f1f1f1;
    padding: 15px;
    border-radius: 10px;
}

.step-number {
    background: black;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    font-weight: bold;
}

/* Technology */
.technology {
    padding: 70px 20px;
    background: #fafafa;
}

.tech-grid {
    display: grid;
    gap: 15px;
    max-width: 700px;
    margin: auto;
}

.tech-item {
    background: #fff;
    padding: 15px;
    border-left: 4px solid black;
    border-radius: 6px;
}

/* Coverage */
.coverage {
    padding: 70px 20px;
}

.coverage-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
}

.coverage-grid span {
    background: #eee;
    padding: 10px 18px;
    border-radius: 20px;
}

/* Testimonials */
.testimonials {
    padding: 70px 20px;
    background: #f8f8f8;
}

.testi-grid {
    max-width: 800px;
    margin: auto;
    display: grid;
    gap: 20px;
}

.testi-card {
    background: #fff;
    padding: 20px;
    border-left: 4px solid black;
    border-radius: 8px;
}
.project-filters {
    text-align: center;
    margin-bottom: 30px;
}

.project-filters .filter-btn {
    background: #f5f5f5;
    border: none;
    padding: 10px 20px;
    margin: 5px;
    cursor: pointer;
    font-weight: bold;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.project-filters .filter-btn.active,
.project-filters .filter-btn:hover {
    background: #222121;
    color: #fff;
}

/* Project Grid */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

/* Project Item Styling */
.project-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.project-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s;
}

.project-item:hover img {
    transform: scale(1.1);
}

.project-info {
    padding: 15px;
    background: #fff;
}

.project-info h3 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #222121;
}

.project-info p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}
/* Projects Stats Section */
.projects-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    background: #f5f5f5; /* light gray background */
    padding: 50px 20px;
    border-radius: 10px;
    gap: 30px;
    text-align: center;
}

.projects-stats .stat {
    flex: 1 1 200px;
    background: #fff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.projects-stats .stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.projects-stats .stat h3 {
    font-size: 2.5rem;
    color: #222121; /* dark color for numbers */
    margin-bottom: 10px;
}

.projects-stats .stat p {
    font-size: 1.1rem;
    color: #555;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .projects-stats {
        flex-direction: column;
    }

    .projects-stats .stat {
        width: 80%;
        margin: 10px auto;
    }
}
/* Full-width Projects Call-to-Action */
.projects-cta {
    width: 100%;
    background-color: #222121; /* Dark background for emphasis */
    color: #fff; /* White text for contrast */
    padding: 60px 20px;
    text-align: center;
    margin-top: 50px;
}

.projects-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.projects-cta p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.projects-cta .btn-primary {
    display: inline-block;
    background-color: #f5c518; /* Highlight color */
    color: #222121;
    padding: 14px 40px;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.projects-cta .btn-primary:hover {
    background-color: #fff;
    color: #222121;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .testimonial {
        max-width: 100%;
    }

    .green-card img, .industrial-card img, .smart-card img,
    .training-card img, .audit-card img, .blog-card img {
        height: 180px;
    }
}

/* Reset & Base */
body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    color: #333;
    padding: 0px;
}
img {
    max-width: 100%;
    display: block;
}

/* Page Title */
.page-title {
    text-align: center;
    padding: 40px 20px;
}
.page-title h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #b70c0c;
}
.page-title p {
    color: #555;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Grid */
.services-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    padding: 20px;
    max-width: 1200px;
    margin: auto;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}
.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 20px;
}
.service-card-content h3 {
    color: #0a0202;
    margin-bottom: 10px;
    font-size: 1.3rem;
}
.service-card-content p {
    color: #555;
    font-size: 0.95rem;
}

/* Responsive */
@media (max-width: 600px) {
    .services-container {
        grid-template-columns: 1fr;
    }
}
/* Floating WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    width: 55px;
    height: 55px;
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-links {
        margin-left: 0;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 15px;
    }
}
