/* ================== 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 Slider ================== */
.hero-slider {
  position: relative;
  height: calc(100vh - 70px);
  overflow: hidden;
}

.slides {
  height: 100%;
  display: flex;
  transition: transform 1s ease-in-out;
}

.slide {
  min-width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-btn {
  padding: 12px 25px;
  background: #AF0001;
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
}

/* ================== About Us ================== */
.about-box {
  max-width: 900px;
  margin: auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
}

/* ================== Stats ================== */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 40px 0;
}

.stat-card {
  background: #AF0001;
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  min-width: 120px;
}

/* ================== Why Choose Us ================== */
.why-container {
  max-width: 1000px;
  margin: auto;
  position: relative;
}

.why-slide {
  position: relative;
  width: 100%;
  height: 500px;
  display: none;
  border-radius: 10px;
  overflow: hidden;
}

.why-slide.active {
  display: block;
}

.why-image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  filter: brightness(0.85);
}

.why-text-overlay {
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  margin-top: 300px;
  padding: 20px;
  border-radius: 10px;
  color: #000;
  z-index: 1;
  text-align: left;
}

.why-text-overlay h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.why-text-overlay p {
  margin: 0;
  font-size: 16px;
}

.why-dots {
  text-align: center;
  margin-top: 15px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 5px;
  background: #ddd;
  border-radius: 50%;
  cursor: pointer;
}

.dot.active {
  background: #AF0001;
}

/* ================== Services ================== */
.service-grid {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 20px auto;
  max-width: 1000px;
}

.service-card {
  width: 450px;
  border: 1px solid #ddd;
  border-radius: 15px;
  text-align: center;
  padding: 15px;
  transition: transform 0.3s;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
  height: auto;
}

.service-card:hover {
  transform: scale(1.05);
}

/* ================== Testimonials ================== */
.testimonials {
  overflow: hidden;
  max-width: 1000px;
  margin: auto;
}

.testimonial-track {
  display: flex;
  gap: 20px;
  animation: scrollTestimonial 20s linear infinite;
}

.testimonial-card {
  min-width: 300px;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
}

.testimonial-card img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-bottom: 10px;
}

@keyframes scrollTestimonial {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

/* ================== Clients Ticker ================== */
.clients-ticker-section {
  padding: 2rem 0;
  background: #f9f9f9;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  text-align: center;
}

.clients-ticker-section h2 {
  margin-bottom: 1rem;
  color: #222;
  font-size: 2rem;
}

.ticker-wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 40px;
}

.ticker-track img {
  max-width: 150px;
  min-width: 120px;
  min-height: 80px;
  transition: all 0.3s ease;
  border-radius: 10px;
  padding: 8px;
  border: 2px solid transparent;
  background: #fff;
}

.ticker-track img:hover {
  border: 2px solid #6c63ff;
  box-shadow: 0 0 10px rgba(108, 99, 255, 0.4);
  transform: scale(1.05);
}

/* ================== 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;
}