/* ================== 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: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url("/assets/img/about-hero\(2\).webp") no-repeat center center/cover;
  color: #fff;
  text-align: center;
  padding: 10rem 10%;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* ===== Contact Section ===== */
.contact-container {
  max-width: 900px;
  margin: 3rem auto;
  padding: 0 1.5rem;
  text-align: center;
  color: #AF0001;
}

.contact-container h2 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #AF0001;
}

.contact-intro {
  font-size: 1.1rem;
  padding: 0.5rem;
  color: #444;
}

/* Form Container */
.form-section {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Contact Form */
.contact-form {
  background: #fff;
  padding: 2.5rem 2rem; /* increased padding */
  border-radius: 18px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.05);
  max-width: 600px; /* increased width from 400px to 600px */
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* slightly larger spacing between fields */
}

.contact-form input,
.contact-form textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 1rem 1.25rem; /* increased padding */
  font-size: 1.05rem;
  color: #000000;
  background-color: #fff;
  transition: border 0.2s, box-shadow 0.2s;
  width: 100%;
  box-sizing: border-box;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid #000000;
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

.contact-form button[type="submit"] {
  background: #AF0001;
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  padding: 1rem 2rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease, color 0.3s ease;
}

.contact-form button[type="submit"]:hover {
  background-color: #920001;
  color: #fff;
}

/* Social / Contact Icons */
.contact-icons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.icon-circle {
  background-color: #fff;
  color: #AF0001;
  font-size: 1.5rem;
  padding: 0.8rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #AF0001;
  transition: transform 0.3s ease, background 0.3s ease;
  text-decoration: none;
}

.icon-circle:hover {
  transform: scale(1.1);
  background-color: #AF0001;
  color: #fff;
}

/* Accessibility: hide labels visually but keep for screen readers */
.visually-hidden {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ================== 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;
  white-space: nowrap; /* Ensures logos stay in a row */
}

.ticker-track img {
  display: inline-block; /* Required for nowrap to work properly */
  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;
}