/* ================== 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/about-hero\(2\).webp") center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  text-align: center;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(142, 110, 110, 0.3);
  z-index: 1;
}

.hero .hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.hero p {
  font-size: 1.2rem;
}

/* ===== Why Join Us ===== */
.why-join-us {
  padding: 4rem 10%;
  text-align: center;
  background: rgba(176,167,167,0.1);
  color: #AF0001;
}

.why-join-us h2 {
  font-size: 2rem;
  margin-bottom: 2rem;
}

.why-join-us ul {
  list-style: none;
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.why-join-us li {
  background: #AF0001;
  padding: 1rem;
  border-radius: 8px;
  color: #fff;
  font-size: 1.2rem;
  text-align: left;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}

/* ===== Application Form ===== */
.application-form {
  padding: 4rem 10%;
  background: #fff;
  max-width: 1000px;
  margin: 0 auto;
}

.application-form h2 {
  text-align: center;
  color: #AF0001;
  font-size: 2rem;
  margin-bottom: 2rem;
}

.application-form form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.application-form label {
  font-weight: bold;
  margin-bottom: 0.3rem;
}

.application-form input,
.application-form textarea {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
}

.application-form button {
  padding: 1rem;
  background: #AF0001;
  color: #fff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  transition: background 0.3s ease;
}

.application-form button:hover {
  background: #d10000;
}

/* Floating Box Around Form */
.form-box {
  background: #fff;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* ===== Responsive ===== */
@media (max-width: 768px){
  .hero h1 {
    font-size: 2.2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .why-join-us ul {
    grid-template-columns: 1fr;
  }
}

/* ================== 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;
}