 /* Reset and Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        :root {
            --primary: #0aa150;
            --secondary: #0aa150;
            --accent: #27ae60;
            --light: #f8f9fa;
            --dark: #2c3e50;
            --gray: #7f8c8d;
        }
        
        html {
            scroll-behavior: smooth;
        }
        
        body {
            line-height: 1.6;
            color: #333;
            background-color: #f5f5f5;
            overflow-x: hidden;
        }
        
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: var(--primary);
            color: white;
            padding: 1rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }
        
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo {
    width: 80px;   /* increase this value for bigger logo */
    height: 80px;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    border: 2px solid white;
    border-radius: 50%; /* keep round shape */
}

.logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 5px;
}

       .logo-text {
  display: flex;
  flex-direction: column;
  align-items: center;   /* Default: centered on large screens */
  text-align: center;
  gap: 4px;
}

.logo-text h1 {
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0;
  color: #F9F9F9;
  line-height: 1.2;
}

.logo-text span {
  font-size: 0.9rem;
  font-weight: 400;
  color: #F9F9F9;
  letter-spacing: 0.5px;
}

/* Responsive: align left on tablets & mobile */
@media (max-width: 768px) {
  .logo-text {
    align-items: flex-start;  /* Align left */
    text-align: left;
  }
}

    .contact-info {
    display: flex;
    flex-direction: column;
    font-size: 0.9rem;
    text-align: right;
    margin-left: auto;
    padding-right: 15px;
}

.contact-info a {
    color: white;
    text-decoration: none; /* remove underline */
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 5px;
}

.contact-info a:hover {
    text-decoration: none; /* keep it clean on hover too */
    color: #333; /* optional: add color change instead of underline */
}

        .contact-info i {
            width: 16px;
            text-align: center;
        }
        
        nav {
            background-color: var(--dark);
            margin-top: 1rem;
        }
        
        .nav-links {
            display: flex;
            list-style: none;
        }
        
        .nav-links li {
            padding: 0.8rem 1rem;
        }
        
        .nav-links a {
            color: white;
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .nav-links a:hover {
            color: var(--secondary);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 1.5rem;
            cursor: pointer;
        }
        
        /* Hero Section */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('/img/bg-hero.jpg');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 5rem 0;
            text-align: center;
        }
        
        .hero h2 {
            font-size: 2.5rem;
            margin-bottom: 1rem;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 2rem;
        }
        .about-heading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
    text-align: center;
}

.about-heading img {
    width: 80px;
    height: auto;
}

.company-info h2 {
    font-size: 1.6rem;
    font-weight: bold;
    color: #333;
    margin: 0;
}

.mobile-break {
  display: none; /* Hidden by default */
}

@media (max-width: 768px) {
  .mobile-break {
    display: inline; /* Forces line break on mobile */
  }
}


.company-info .slogan {
    display: block;
    font-size: 0.95rem;
    color: #666;
    margin-top: 5px;
    font-style: italic;
}
h2 {
    font-size: 1.8rem;
    font-weight: bold;
  
    margin: 0;
}

h2 .highlight {
    color: #0aa150;   /* red highlight */
}


        .btn {
            display: inline-block;
            background-color: var(--secondary);
            color: white;
            padding: 0.8rem 1.5rem;
            border-radius: 4px;
            text-decoration: none;
            font-weight: bold;
            transition: background-color 0.3s;
        }
        
        .btn:hover {
            background-color: #d35400;
        }
        
        /* Section Styles */
        section {
            padding: 4rem 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 3rem;
            color: var(--primary);
            position: relative;
        }
        
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background-color: var(--secondary);
            margin: 10px auto;
        }
        
        /* About Section */
        .about-content {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 2rem;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Services Section */
        .services {
            background-color: var(--light);
        }
        
       .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.service-card {
    background: #fff;
    padding: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card i {
    font-size: 40px;
    color: #27ae60; /* highlight color */
    margin-bottom: 15px;
}

        
        .service-card:hover {
            transform: translateY(-5px);
        }
        
        .service-card h3 {
            color: var(--primary);
            margin-bottom: 1rem;
        }
        
        /* Why Choose Us Section */
        .features {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
        }
        
        .feature {
            display: flex;
            align-items: flex-start;
            gap: 1rem;
        }
        
        .feature-icon {
            background-color: var(--primary);
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        
        /* Gallery Section */
        .gallery {
            background-color: var(--light);
        }
        
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 1.5rem;
        }
        
        .gallery-item {
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            position: relative;
        }
        
        .gallery-item img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s;
        }
        
        .gallery-item:hover img {
            transform: scale(1.05);
        }
        
        .gallery-caption {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: #0aa150;
            color: white;
            padding: 0.8rem;
            font-size: 0.9rem;
        }
        
        /* Clients Section */
        .clients {
            text-align: center;
        }
        
        .client-logos {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 2rem;
            margin-top: 2rem;
        }
        
        .client-logo {
            background-color: white;
            padding: 1.5rem;
            border-radius: 8px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.05);
            min-width: 150px;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        /* Contact Section */
.contact {
  background: linear-gradient(rgba(10, 161, 80, 0.8), rgba(10, 161, 80, 0.8)),
              url("/img/bg-hero.jpg") no-repeat center center/cover;
  padding: 60px 20px;
  color: white;
}

.contact .section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
  color: #333333;
}

.contact-content {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  justify-content: center;
}
/* ===============================
   CONTACT DETAILS STYLING
=================================*/
.contact-details {
  background: #fff;
  padding: 30px 25px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1 1 350px;       /* Flexible responsive box */
  max-width: 600px;      /* Default max width on desktop */
  width: 100%;
}

.contact-details:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

/* --------------------
   HEADINGS & TEXT
---------------------*/
.contact-details h3 {
  margin-bottom: 12px;
  font-size: 1.6rem;
  font-weight: 600;
  color: #0aa150;
  border-left: 5px solid #0aa150;
  padding-left: 12px;
}

.contact-details p {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 20px;
  line-height: 1.5;
}

/* --------------------
   LIST STYLING
---------------------*/
.contact-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-details li {
  margin-bottom: 16px;
  font-size: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #333;
}

.contact-details li i {
  background: #0aa150;
  color: #fff;
  padding: 10px;
  border-radius: 50%;
  font-size: 0.9rem;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}

.contact-details li:hover i {
  background: #07833f;
}

/* --------------------
   LINKS
---------------------*/
.contact-details a {
  color: #0aa150;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #07833f;
  text-decoration: underline;
}

/* ---------------------------
   RESPONSIVE BREAKPOINTS
----------------------------*/

/* Tablets (<= 992px) */
@media (max-width: 992px) {
  .contact .section-title {
    font-size: 1.8rem;
  }

  .contact-content {
    gap: 20px;
  }

  .contact-details {
    max-width: 900px;   /* Wider on tablets */
    padding: 25px 20px;
  }
}

/* Mobile (<= 768px) */
@media (max-width: 780px) {
  .contact {
    padding: 40px 15px;
  }

  .contact .section-title {
    font-size: 1.6rem;
  }

  .contact-content {
    flex-direction: column;
    align-items: center;
  }

  .contact-details {
    max-width: 100%;   /* Full width on mobile */
  }
}

/* Small Mobile (<= 480px) */
@media (max-width: 600px) {
  .contact .section-title {
    font-size: 1.4rem;
  }

  .contact-details h3 {
    font-size: 1.3rem;
  }

  .contact-details p,
  .contact-details li {
    font-size: 0.9rem;
  }

  .contact-details li i {
    width: 32px;
    height: 32px;
    font-size: 0.8rem;
  }
}

/* --------------------
   PHONE LIST
---------------------*/
.phone-list {
  list-style: decimal inside;
  padding: 0;
  margin: 0;
}

.phone-list li {
  margin-bottom: 10px;
  font-size: 1rem;
}

.phone-list a {
  color: #0aa150;
  text-decoration: none;
  font-weight: 500;
}

.phone-list a:hover {
  color: #07833f;
}


/* Contact Form */
.contact-form {
  flex: 1;
  min-width: 280px;
  background: #2C3E50;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
}

.contact-form h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: #f8f9fa;
}

.form-group {
  margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 6px;
  outline: none;
  font-size: 1rem;
}

.form-group textarea {
  height: 120px;
  resize: none;
}

/* Submit Button */
.btn-submit {
  background: #0aa150;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: 0.3s;
}

.btn-submit:hover {
  background: #0aa150;
}

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 2rem 0;
            text-align: center;
        }
        
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 2rem;
            margin-bottom: 2rem;
        }
        
        .footer-section {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-section h3 {
            margin-bottom: 1rem;
            color: var(--secondary);
        }
        
        .social-links {
            display: flex;
            gap: 1rem;
            justify-content: center;
            margin-top: 1rem;
        }
        
        .social-links a {
            color: white;
            background-color: rgba(255,255,255,0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: background-color 0.3s;
        }
        
        .social-links a:hover {
            background-color: var(--secondary);
        }
        
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 1rem;
            font-size: 0.9rem;
        }
        
        /* Responsive Styles */
        @media (max-width: 992px) {
            .hero h2 {
                font-size: 2rem;
            }
            
            .hero p {
                font-size: 1.1rem;
            }
        }
        
        @media (max-width: 768px) {
            .header-top {
                flex-direction: column;
                text-align: center;
            }
            
            .logo-container {
                justify-content: center;
                margin-bottom: 1rem;
            }
            
            .contact-info {
                text-align: center;
                margin-left: 0;
                padding-right: 0;
                margin-bottom: 1rem;
            }
            
            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 1rem;
                right: 1rem;
            }
            
            nav {
                display: none;
                margin-top: 0;
            }
            
            .nav-links {
                flex-direction: column;
            }
            
            .nav-links li {
                text-align: center;
                border-bottom: 1px solid rgba(255,255,255,0.1);
            }
            
            .nav-links li:last-child {
                border-bottom: none;
            }
            
            .nav-active {
                display: block;
            }
            
            .hero {
                padding: 3rem 0;
            }
            
            .hero h2 {
                font-size: 1.8rem;
            }
            
            .hero p {
                font-size: 1rem;
            }
            
            section {
                padding: 3rem 0;
            }
            
            .about-content {
                flex-direction: column;
            }
            
            .contact-content {
                flex-direction: column;
            }
        }
        
        @media (max-width: 576px) {
            .logo {
                width: 60px;
                height: 60px;
            }
            
            .logo-text h1 {
                font-size: 1.2rem;
            }
            
            .logo-text span {
                font-size: 0.7rem;
            }
            
            .contact-info {
                font-size: 0.8rem;
            }
            
            .hero h2 {
                font-size: 1.5rem;
            }
            
            .hero p {
                font-size: 0.9rem;
            }
            
            .section-title {
                font-size: 1.5rem;
            }
            
            .services-grid,
            .features,
            .gallery-grid {
                grid-template-columns: 1fr;
            }
            
            .footer-content {
                flex-direction: column;
                text-align: center;
            }
        }

        /* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  width: 55px;
  height: 55px;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 28px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none; 
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
  background-color: #20b954;
}

.contact-details li a {
  color: #0aa150;
  text-decoration: none;
  font-weight: 500;
}

.contact-details li a:hover {
  color: #07833f;
  text-decoration: none;
}
