/* ================== General ================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
}

h2 {
  text-align: center;
  margin: 40px 0 20px;
  color: #AF0001;
}

/* ================== Navbar ================== */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #c20303;
  color: #fff;
  padding: 10px 40px 0px 30px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.navbar img {
  height: 110px;
  padding : 0px;
}

.nav-links ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

.nav-links a.active {
  border-bottom: 2px solid #fff;
}

.hamburger {
  display: none;
  font-size: 24px;
  cursor: pointer;
  color: #fff;
}

/* ================== Responsive ================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    right: 0;
    background: #AF0001;
    width: 200px;
    padding: 20px;
  }
  .nav-links ul {
    flex-direction: column;
    gap: 15px;
  }
  .hamburger {
    display: block;
  }
}

/* ===== Hero Section ===== */
.hero {
  height: calc(100vh - 70px);
  background: url("../img/Hero-Services.webp") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(124, 104, 104, 0.4);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
}

/* ===== Services Section ===== */
.services {
  padding: 2rem 10%;
}

.service {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.service img {
  width: 100%;
  max-width: 500px;
  border-radius: 10px;
  box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.service-text {
  flex: 1;
}

.service-text h2 {
  color: #AF0001;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.service-text p {
  font-size: 1.05rem;
  color: #444;
}

/* Alternate Layout (image right) */
.service.alt {
  flex-direction: row-reverse;
}

/* ===== Scroll Animations ===== */
.service {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease;
}

.service.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Why Choose Us ===== */
.why-choose-us {
  background: rgba(176, 167, 167, 0.1);
  color: #AF0001;
  padding: 2px 10% 4rem;
  text-align: center;
}

.why-choose-us h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-choose-us ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-choose-us li {
  background: #AF0001;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  font-size: 1.3rem;
  text-align: left;
}

/* ===== Animation for Why Choose Us items ===== */
.why-choose-us li {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.why-choose-us li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
  .service {
    flex-direction: column;
    text-align: center;
  }
  .service.alt {
    flex-direction: column;
  }
  .service img {
    max-width: 100%;
  }
}

/* ================== Footer ================== */
.footer {
  position: relative;
  background: url("/assets/img/about-hero\(2\).webp") no-repeat center center/cover;
  color: #fff;
  padding: 40px 35px 20px;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  background: rgba(41, 7, 72, 0.7);
  backdrop-filter: blur(1px);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 30px;
  z-index: 1;
  position: relative;
}

.footer-column {
  flex: 1;
  min-width: 250px;
}

.footer-about p {
  font-size: 20px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4,
.footer-about h4 {
  margin-bottom: 10px;
  font-size: 20px;
  border-bottom: 1px solid #555;
  padding-bottom: 6px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 20px;
}

.footer-links a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 18px;
  margin-bottom: 8px;
}

.footer-contact iframe {
  width: 100%;
  height: 200px;
  margin-top: 10px;
  border-radius: 10px;
  border: 0;
}

.footer-bottom {
  text-align: center;
  background: #1a1919;
  color: #ddd;
  padding: 10px 10px;
  font-size: 18px;
}

/* ================== Floating Buttons ================== */
.floating-buttons {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.floating-buttons a,
.floating-buttons button {
  background: #000000;
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 25px;
  text-decoration: none;
}