/* Global Styles */
body {
  font-family: 'Arial', sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: linear-gradient(120deg, #f8fafc, #e3e8ed);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  z-index: 1000;
  transition: background-color 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
}

.logo {
  height: 50px;
  transition: transform 0.3s ease;
}

.navbar.scrolled .logo {
  transform: scale(0.9);
}

.navbar-links {
  display: flex;
  gap: 1.5rem;
}

.navbar-links li {
  position: relative;
}

.nav-link {
  font-weight: bold;
  text-transform: uppercase;
  font-size: 0.875rem;
  color: #333;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #f6b100;
}

.nav-link.active {
  color: #f6b100;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.menu-toggle i {
  color: #333;
}

/* Responsive Navbar */
@media (max-width: 768px) {
  .navbar-links {
    position: fixed;
    top: 0;
    right: -100%;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.95);
    width: 250px;
    height: 100%;
    padding: 2rem 1rem;
    transition: right 0.3s ease;
  }

  .navbar-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
  }
}

/* Header Styles */
.header {
  position: relative;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}

.header-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: -1;
}

.header-content {
  max-width: 800px;
  padding: 2rem;
}

.subheading {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #f6b100;
}

.main-heading {
  font-size: 2.5rem;
  line-height: 1.4;
  margin-bottom: 1.5rem;
  animation: slideIn 1s ease-in-out;
}

.highlight {
  color: #f6b100;
}

.cta-btn {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  background: #f6b100;
  color: #fff;
  border: none;
  border-radius: 25px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #d49b00;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(50px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


.subheading {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: #f97316;
}

.main-heading {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto;
}

.main-heading .highlight {
  color: #f97316;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-heading {
    font-size: 1.8rem;
  }

  .subheading {
    font-size: 1.2rem;
  }
}

.main-content {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: vh;
  background: linear-gradient(to bottom, #f7f8fc, #e9eff6);
  padding: 2rem;
}

/* Mission Section Styles */
.mission-container {
  text-align: center;
  max-width: 800px;
  background: #fff;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 2rem 1.5rem;
  animation: fadeIn 1.5s ease-in-out;
  position: relative;
}

.mission-quote {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #444;
}

.mission-subtext {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1.5rem;
}

.highlight {
  color: #f6b100;
  font-weight: bold;
}

/* Call-to-Action Button */
.cta-button {
  background: linear-gradient(to right, #f6b100, #d89b00);
  border: none;
  border-radius: 25px;
  color: white;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

/* Glow Effect on Hover */
.cta-button:focus {
  outline: none;
  box-shadow: 0 0 15px rgba(246, 177, 0, 0.8);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Design */
@media (max-width: 768px) {
  .mission-quote {
    font-size: 1.3rem;
  }

  .cta-button {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
  }
}

/* General Styles for Team Section */
.container {
  max-width: 1200px;
}

.team-card-advanced {
  background-color: #ffffff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.team-card-advanced:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

/* Card Header */
.card-header {
  position: relative;
  height: 200px;
  overflow: hidden;
  /* Ensures no part of the image overflows */
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: fill;
  /* Maintain aspect ratio and cover the container */
  border-bottom: 5px solid #f6b100;
}


.badge {
  position: absolute;
  bottom: 10px;
  /* Move the badge to the bottom */
  right: 10px;
  /* Move the badge to the right */
  background: #f6b100;
  color: #ffffff;
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: bold;
  border-radius: 12px;
  text-transform: uppercase;
}


/* Card Body */
.card-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #333333;
}

.card-role {
  font-size: 1rem;
  font-weight: 400;
  color: #f6b100;
  margin: 0 0;
}

.container {
  display: flex;
  align-items: center;
  padding: 20px;
  max-width: 1200px;
  margin: auto;
}

.image-container {
  flex: 1;
}

.image-container img {
  width: 100%;
  border-radius: 8px;
}

.text-container {
  flex: 2;
  padding-left: 40px;
}

.text-container h2 {
  font-size: 14px;
  color: #f1c40f;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.text-container h1 {
  font-size: 48px;
  color: #333;
  margin: 10px 0;
}

.text-container p {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
}

.text-container ul {
  list-style: none;
  padding: 0;
}

.text-container ul li {
  font-size: 16px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 10px;
}

.text-container ul li::before {
  content: "•";
  color: #333;
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}

@media (max-width: 768px) {
  .container {
    flex-direction: column;
    text-align: center;
  }

  .text-container {
    padding-left: 0;
    margin-top: 20px;
  }
}

