/* ================= RESET / BASE ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'times new roman', Times, serif;
  background-color: #ffffff;
  color: #1d1d1d;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= NAVBAR ================= */
header {
  background-color: #800000;
  padding: 1em 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}

/* Logo */
.logo img {
  max-width: 180px;
  height: auto;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  display: flex;
  gap: 12px;
  font-size: 25px;
  font-weight: 900;
}

.nav-links a {
  padding: 8px 14px;
  color: white;
  font-weight: 500;
  border-radius: 5px;
  transition: 0.3s;
}

.nav-links a:hover {
  background-color: white;
  color: #800000;
}

/* Hamburger Menu Icon */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
}

/* =========================================
   RESPONSIVE DESIGN
========================================= */
@media (max-width: 1024px) {
  nav {
    flex-wrap: wrap;
  }
}

/* Mobile */
@media(max-width:768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #800000;
    border-radius: 5px;
    margin-top: 10px;
    overflow: hidden;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links li {
    text-align: center;
  }

  .nav-links li:first-child { border-top: none; }
}


/* ================= HERO / MAIN SECTION ================= */
.services-section {
  text-align: center;
  padding: 50px 20px;
  background: linear-gradient(to right, #fff, #f5f5f5);


  /* Background image */
  background-image: url("https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcSsGZSKel1j3mmoU6c9hVNx8QsH_gkksPP7Gg&s"); /* <-- change path to your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.services-section h1 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  color: maroon;
}

.services-section p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 35px;
  line-height: 1.7;
  color: black;
}

.services-btn {
  display: inline-block;
  padding: 14px 35px;
  background-color: maroon;
  color: #fff;
  font-size: 1.1rem;
  font-weight: bold;
  border-radius: 8px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.services-btn:hover {
  background-color: #8b1a1a;
  transform: translateY(-3px);
}

/* ------------------------------
   FOOTER
-------------------------------- */
/* Define CSS Variables */
:root {
  --brand-white: #ffffff;
  --text-light: #f0f0f0;
  --footer-border: #dcdcdc;
  --text-muted: #bfbfbf;
}

/* FOOTER STYLES */
.footer {
  background-color: #800000;
  color: var(--brand-white);
  padding: 40px 0 20px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  align-items: flex-start;
}

.footer-logo-container {
  flex-shrink: 0;
  min-width: 180px;
  text-align: center;
}

.footer-logo {
  padding-top: 20px;
  max-height: 90px;
  width: auto;
  object-fit: contain;
}

.footer-sections {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.footer-section h3,
.footer-section h4 {
  color: var(--brand-white);
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.875rem;
  font-weight: 700;
}

.footer-section p {
  margin: 0 0 8px 0;
  color: var(--text-light);
  font-size: 0.875rem;
}

.contact-info a {
  color: var(--text-light);
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
  color: var(--brand-white);
}

.footer-follow .social-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-follow .social-icons a img {
  height: 30px;
  width: 30px;
  border-radius: 50%;
  object-fit: contain;
  background-color: rgb(240, 38, 38);
  padding: 5px;
  transition: background-color 0.3s;
  display: flex;
}

.footer-follow .social-icons a img:hover {
  background-color: black;
}

.footer-follow .payment-methods-icons {
  display: flex;
  gap: 10px;
  /* overflow-x: auto; */
  /* padding-bottom: 5px; */
}

.footer-follow .payment-methods-icons img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  background-color:  rgb(240, 38, 38);
  /* padding: 5px; */
  opacity: 0.85;
  transition: opacity 0.3s ease, background-color 0.3s ease;
}

.footer-follow .payment-methods-icons img:hover {
  opacity: 1;
  background-color: black ;
}

.footer-bottom {
  border-top: 2px solid var(--footer-border);
  margin-top: 30px;
  padding: 20px;
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-bottom a {
  color: var(--text-light);
  text-decoration: none;
  margin-left: 20px;
}

.footer-bottom a:hover {
  color: var(--brand-white);
}

/* Responsive */
@media (max-width: 900px) {
  .footer-sections {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .footer-sections {
    grid-template-columns: 1fr;
    width: 100%;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 600px) {
  .footer-follow .social-icons {
    justify-content: center; /* center horizontally */
    align-items: center;     /* center vertically */
    gap: 10px;               /* spacing between icons */
  }
}
