/* Base Styles */
:root {
  --primary-color: #003b73;
  --accent-color: #ffd700;
  --white: #ffffff;
  --dark: #333333;
  --light-gray: #f4f4f4;
  --medium-gray: #dddddd;
  --transition: all 0.3s ease;
}
/* top hook styling */
.branding-strip {
  background-color: var(--light-gray);
  border-bottom: 1px solid var(--medium-gray);
  padding: 10px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
}

.branding-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  flex-wrap: wrap;
}

.branding-left {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.branding-logo {
  height: 36px;
  width: auto;
  border-radius: 4px;
}

.company-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.branding-right {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.branding-right a {
  text-decoration: none;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

.branding-right a:hover {
  color: var(--primary-color);
}

.whatsapp-link {
  background-color: #25D366;
  color: var(--white) !important;
  padding: 6px 12px;
  border-radius: 4px;
  font-weight: 500;
  transition: var(--transition);
}

.whatsapp-link:hover {
  background-color: #1da851;
}

/* Responsive Design */
@media (max-width: 768px) {
  .branding-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .branding-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* top hook end */

/* VIEW PRODUCTS HOOK */
.text-hook {
  background-color: var(--white);
  padding: 80px 20px;
  border-bottom: 1px solid var(--medium-gray);
  text-align: center;
}

.text-hook-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.text-hook-subtext {
  font-size: 1.1rem;
  color: var(--dark);
  max-width: 700px;
  margin: 0 auto 35px;
}

.hook-btn {
  display: inline-block;
  background-color: var(--primary-color);
  color: var(--white);
  padding: 14px 32px;
  font-size: 1rem;
  border-radius: 6px;
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
}

.hook-btn:hover {
  background-color: #00264d;
}

/* Responsive */
@media (max-width: 768px) {
  .text-hook-heading {
    font-size: 1.7rem;
  }

  .text-hook-subtext {
    font-size: 1rem;
  }

  .hook-btn {
    width: 100%;
    padding: 14px 0;
  }
}














/* back to top button styling */
/* ================================ */
/*         Back to Top Button       */
/* ================================ */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
  background-color: #0b6e4f; /* Steve & Robert’s brand green */
  color: white;
  border: none;
  outline: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: none; /* Hidden by default */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

#backToTop:hover {
  background-color: #064d36;
  transform: scale(1.1);
}


* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--dark);
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  margin-bottom: 1rem;
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  color: var(--primary-color);
  transition: var(--transition);
}

a:hover {
  color: var(--accent-color);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-title {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: var(--accent-color);
}

.section-desc {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn i {
  margin-right: 0.5rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--white);
}

.btn-primary:hover {
  background-color: #002a54;
  color: var(--white);
}

.btn-secondary {
  background-color: var(--accent-color);
  color: var(--dark);
}

.btn-secondary:hover {
  background-color: #e6c200;
  color: var(--dark);
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.btn-text {
  color: var(--primary-color);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}

.btn-text i {
  margin-left: 0.25rem;
  transition: var(--transition);
}

.btn-text:hover i {
  transform: translateX(3px);
}

.alt-bg {
  background-color: var(--light-gray);
}

/* Header Styles */
header {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

nav {
  display: flex;
  align-items: center;
}

.nav-menu {
  display: flex;
  gap: 1.5rem;

}

.nav-menu a {
  color: var(--dark);
  font-weight: 600;
  position: relative;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-menu a.active {
  color: var(--primary-color);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 20px;
  position: relative;
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--dark);
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.mobile-menu-btn span:nth-child(1) {
  top: 0;
}

.mobile-menu-btn span:nth-child(2) {
  top: 9px;
}

.mobile-menu-btn span:nth-child(3) {
  top: 18px;
}

.mobile-menu-btn.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 9px;
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 9px;
}

/* HERO STYLING START */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 600px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  animation: fadeSlides 24s infinite;
  background-size: cover;
  background-position: center;
  z-index: 0;
}

@keyframes fadeSlides {
  0%, 
  100%
  { background-image: url('/images/hero/generator1.jpg'); 
  }
  33%      { background-image: url('/images/hero/generator2.jpg'); }
  66%      { background-image: url('/images/hero/generator3.jpg');
   }
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffaa71;
  margin-bottom: 12px;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

.cta-button {
  background-color: #25D366;
  color: white;
  padding: 14px 28px;
  font-size: 1rem;
  border: none;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.3s ease;
}

.cta-button:hover {
  background-color: #1da851;
}

.hero-brands {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.hero-brands img {
  height: 40px;
  object-fit: contain;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-description {
    font-size: 1rem;
  }

  .cta-button {
    font-size: 0.95rem;
    padding: 12px 22px;
  }

  .hero-brands img {
    height: 30px;
  }
}

@media (max-width: 480px) {
  .hero-section {
    height: auto;
    padding: 80px 0;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-description {
    font-size: 0.95rem;
  }

  .cta-button {
    width: 100%;
    justify-content: center;
  }
}



/* HERO STYLING END */

/* Page Header */
.page-header {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: 0.5rem;
}

/* Services Overview */
.services-overview {
  padding: 5rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-card .icon {
  background-color: var(--light-gray);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.service-card .icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.service-card h3 {
  margin-bottom: 1rem;
}

.service-card p {
  margin-bottom: 1.5rem;
}

/* Product Highlights */
.product-highlights {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.product-card {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.product-card h3 {
  padding: 1rem 1rem 0.5rem;
  font-size: 1.25rem;
}

.product-card p {
  padding: 0 1rem 1rem;
  font-size: 0.9rem;
}

.product-card .btn-text {
  padding: 0 1rem 1rem;
  display: block;
}

/* Why Choose Us */
.why-choose-us {
  padding: 5rem 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
}

.feature {
  text-align: center;
}

.feature .icon {
  background-color: var(--light-gray);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature .icon i {
  font-size: 2rem;
  color: var(--primary-color);
}

.feature h3 {
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  min-height: 250px;
}

.testimonial {
  display: none;
  animation: fadeIn 0.5s ease forwards;
}

.testimonial.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.testimonial .quote {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  margin-bottom: 2rem;
}

.testimonial .quote::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid var(--white);
}

.testimonial .quote i.fa-quote-left {
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 1.5rem;
  margin-right: 0.5rem;
}

.testimonial .quote i.fa-quote-right {
  color: var(--primary-color);
  opacity: 0.2;
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

.testimonial .client {
  text-align: center;
}

.testimonial .client h4 {
  margin-bottom: 0.25rem;
}

.testimonial .client p {
  color: #777;
  font-size: 0.9rem;
}

.testimonial-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
}

.testimonial-controls button {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary-color);
  cursor: pointer;
  transition: var(--transition);
}

.testimonial-controls button:hover {
  color: var(--accent-color);
}

.dots {
  display: flex;
  gap: 0.5rem;
  margin: 0 1rem;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--medium-gray);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background-color: var(--primary-color);
}

/* Call to Action */
.cta {
  background-color: var(--accent-color);
  padding: 4rem 0;
  text-align: center;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-logo img {
  height: 60px;
  margin-bottom: 1rem;
}

.footer-links h3,
.footer-services h3,
.footer-contact h3 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-links h3::after,
.footer-services h3::after,
.footer-contact h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background-color: var(--accent-color);
}

.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a,
.footer-services a {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-links a:hover,
.footer-services a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-contact i {
  color: var(--accent-color);
}

.footer-contact a {
  color: var(--white);
  opacity: 0.8;
  transition: var(--transition);
}

.footer-contact a:hover {
  opacity: 1;
  color: var(--accent-color);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: var(--white);
  opacity: 0.8;
  font-size: 0.9rem;
}

.footer-legal a:hover {
  opacity: 1;
  color: var(--accent-color);
}

/* WhatsApp Float Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
}

.whatsapp-float a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
  transition: var(--transition);
}

.whatsapp-float a i {
  font-size: 2rem;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* About Page Styles */
.about-section {
  padding: 5rem 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.mission-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.mission-card {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.mission-card .icon {
  background-color: var(--light-gray);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.mission-card .icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.values-list ul {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.values-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.values-list i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.values-list h4 {
  margin-bottom: 0.25rem;
}

/* Team experience styling */
.team-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    text-align: center;
}

.section-title {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #222;
}

.team-intro {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.team-member {
    background: white;
    padding: 20px;
    border-radius: 8px;
    max-width: 350px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 15px;
}

.team-member h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 5px;
}

.team-member .position {
    font-size: 1rem;
    color: #777;
    margin-bottom: 10px;
    font-weight: 500;
}

.team-member p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.team-cta {
    margin-top: 30px;
    font-size: 1rem;
}

.team-cta a {
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
}

.team-cta a:hover {
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 768px) {
    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .team-intro {
        font-size: 1rem;
    }

    .team-member {
        max-width: 90%;
    }
}


.guarantee-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.guarantee-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.guarantee-list {
  margin: 2rem 0;
}

.guarantee-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.guarantee-list i {
  color: var(--primary-color);
  font-size: 1.25rem;
}

.guarantee-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Services Page Styles */
.services-nav {
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 80px;
  z-index: 90;
}

.service-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
}

.service-tabs a {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.service-tabs a.active,
.service-tabs a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.service-section {
  padding: 5rem 0;
}

.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.service-content.reverse {
  grid-template-columns: 1fr 1fr;
}

.service-image img {
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-list {
  margin: 1.5rem 0;
}

.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
}

.service-list i {
  color: var(--primary-color);
  font-size: 1.25rem;
  margin-top: 0.25rem;
}

.service-areas {
  padding: 5rem 0;
  background-color: var(--light-gray);
  text-align: center;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.area {
  background-color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.area i {
  color: var(--primary-color);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.area h3 {
  margin-bottom: 0;
}

/* Products Page Styles */
.product-filter {
  background-color: var(--white);
  padding: 2rem 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.search-bar {
  display: flex;
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.search-bar input {
  flex: 1;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-right: none;
  border-radius: 4px 0 0 4px;
  font-size: 1rem;
}

.search-bar button {
  background-color: var(--primary-color);
  color: var(--white);
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition);
}

.search-bar button:hover {
  background-color: #002a54;
}

.filter-options {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.filter-options select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-size: 1rem;
  min-width: 200px;
}

.category-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1rem 0;
  background-color: var(--white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 80px;
  z-index: 90;
}

.category-tabs a {
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-weight: 600;
  transition: var(--transition);
}

.category-tabs a.active,
.category-tabs a:hover {
  background-color: var(--primary-color);
  color: var(--white);
}

.product-section {
  padding: 5rem 0;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.product-item {
  background-color: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}

.product-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.product-image {
  height: 200px;
  overflow: hidden;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.product-item:hover .product-image img {
  transform: scale(1.05);
}

.product-info {
  padding: 1.5rem;
}

.product-info h3 {
  margin-bottom: 0.25rem;
}

.product-info .brand {
  color: var(--primary-color);
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-info .description {
  margin-bottom: 1.5rem;
}

.product-inquiry {
  padding: 4rem 0;
  background-color: var(--accent-color);
  text-align: center;
}

.product-inquiry p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

/* Contact Page Styles */
.contact-info {
  padding: 5rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.contact-details h2 {
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.contact-icon {
  background-color: var(--light-gray);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-icon i {
  font-size: 1.5rem;
  color: var(--primary-color);
}

.contact-text h3 {
  margin-bottom: 0.5rem;
}

.contact-form {
  background-color: var(--white);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.contact-form h2 {
  margin-bottom: 2rem;
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--medium-gray);
  border-radius: 4px;
  font-size: 1rem;
  font-family: "Open Sans", sans-serif;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-color);
}

.form-group input.error,
.form-group textarea.error,
.form-group select.error {
  border-color: #e74c3c;
}

.error-message {
  color: #e74c3c;
  font-size: 0.875rem;
  margin-top: 0.5rem;
}

.success-message {
  text-align: center;
  padding: 3rem 2rem;
}

.success-message i {
  font-size: 4rem;
  color: #2ecc71;
  margin-bottom: 1.5rem;
}

.success-message h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.map-section {
  padding: 5rem 0;
  background-color: var(--light-gray);
}

.map-container {
  height: 400px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.emergency-contact {
  padding: 4rem 0;
  background-color: var(--accent-color);
  text-align: center;
}

.emergency-contact h2 {
  margin-bottom: 1rem;
}

.emergency-contact p {
  max-width: 800px;
  margin: 0 auto 2rem;
}

.emergency-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .about-content,
  .mission-content,
  .guarantee-content,
  .service-content,
  .service-content.reverse,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .service-content.reverse .service-image {
    order: -1;
  }

  .service-image {
    height: 300px;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .nav-menu {
    position: fixed;
    top: 80px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 80px);
    background-color: var(--white);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 99;
  }

  .nav-menu.active {
    left: 0;
  }

  .mobile-menu-btn {
    display: block;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-legal {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .service-tabs,
  .category-tabs {
    flex-direction: column;
    align-items: center;
  }

  .service-tabs a,
  .category-tabs a {
    width: 100%;
    text-align: center;
  }

  .filter-options select {
    width: 100%;
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float a {
    width: 50px;
    height: 50px;
  }

  .whatsapp-float a i {
    font-size: 1.5rem;
  }
}


.section-cta {
  text-align: center;
  margin-top: 2rem;
}

.section-cta .btn-primary {
  display: inline-block;
  background-color: #007bff; /* Bootstrap primary blue */
  color: #fff;
  padding: 0.6rem 1.4rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.section-cta .btn-primary:hover {
  background-color: #0056b3;
  transform: translateY(-2px);
}



/* contact us section styling */
.availability-text {
  background-color: #f9f9f9;
  padding: 2rem;
  border-left: 4px solid #007BFF; /* Brand color or any professional blue */
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  max-width: 500px;
  margin: 2rem auto;
}

.availability-text h3 {
  font-size: 1.5rem;
  color: #333;
  margin-bottom: 1rem;
  border-bottom: 2px solid #007BFF;
  display: inline-block;
  padding-bottom: 0.3rem;
}

.availability-text p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.availability-text p strong {
  color: #d9534f; /* Emphasize with a warm color for urgency */
  font-weight: 600;
}



.cta-home {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to right, #f8f9fa, #e9ecef);
  border-top: 1px solid #dee2e6;
}

.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #333;
}

.cta-content p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 2rem;
}

.btn-home {
  display: inline-block;
  padding: 12px 24px;
  background-color: #007BFF;
  color: white;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.btn-home:hover {
  background-color: #0056b3;
}



