/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f9f9f9;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
header {
  background-color: transparent;
  background-size: contain;
  padding: 20px 40px;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  box-shadow: none;
  transition: background-color 0.3s ease;
}

nav {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  height: 100%;
}

.logo {
  margin-right: auto;
}

.logo img {
  height: 45px;
  width: 60px;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links li {
  margin-left: 30px;
}

.nav-links a {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: color 0.3s ease;
  position: relative;
  text-decoration: none;
}

.nav-links a:hover,
.nav-links a.active {
  color: #e74c3c;
}

header.scrolled {
  background-color: rgba(0, 0, 0, 0.8);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.burger {
  display: none;
  cursor: pointer;
}

.burger div {
  width: 25px;
  height: 3px;
  background-color: #fff;
  margin: 5px;
  transition: all 0.3s ease;
}

/* Hero Section */
.hero-section {
  background-image: url("../images/hero_about.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 200px 40px 120px;
  position: relative;
  margin-top: 0;
  height: 70vh;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.hero-content h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* About Section */
.about-section {
  background-color: #f8f8f8;
  padding: 80px 0;
}

.about-container {
  display: flex;
  flex-direction: column;
  max-width: 1200px;
  margin: 0 auto;
}

.about-header {
  margin-bottom: 40px;
}

.about-header h2 {
  font-size: 2.5rem;
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-header p {
  font-size: 1.2rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 30px;
}

.about-buttons {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 12px 25px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border-radius: 3px;
}

.btn-primary:hover {
  background-color: #c0392b;
}

.btn-secondary {
  background-color: transparent;
  border: 1px solid #e74c3c;
  color: #e74c3c;
  padding: 12px 25px;
  font-size: 14px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: all 0.3s ease;
  border-radius: 3px;
}

.btn-secondary:hover {
  background-color: #e74c3c;
  color: #fff;
}

/* Vision Section Styling */
.vision-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.vision-container {
  display: flex;
  align-items: center;
  gap: 50px;
}

.vision-content {
  flex: 1;
}

.vision-content h2 {
  color: #e74c3c;
  font-size: 2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  font-weight: 900 !important;
}

.vision-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #333;
}

.vision-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.vision-image img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 992px) {
  .vision-container {
    flex-direction: column;
  }

  .vision-content {
    order: 2;
  }

  .vision-image {
    order: 1;
    margin-bottom: 30px;
  }
}

/* Vision, Mission, Values Sections */
.section {
  padding: 80px 0;
  background-color: #fff;
}

.section:nth-child(even) {
  background-color: #f8f8f8;
}

.section-container {
  max-width: 800px;
  margin: 0 auto;
  text-align: left;
}

.section h2 {
  font-size: 2rem;
  color: #e74c3c;
  margin-bottom: 30px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #555;
  margin-bottom: 0;
}

/* Updated Statistics Section */
.statistics-section {
  background-color: #f9f9f9;
  padding: 80px 0;
  text-align: center;
}

.statistics-section h2 {
  color: #e74c3c;
  font-size: 2.5rem;
  margin-bottom: 60px;
  text-transform: uppercase;
  font-weight: 700;
}

.stats-container {
  display: flex;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.stats-container::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 25%;
  width: 1px;
  background-color: #ddd;
}

.stats-container::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background-color: #ddd;
}

.stats-container .stat-item:nth-child(3)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 75%;
  width: 1px;
  background-color: #ddd;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #e74c3c;
  margin-bottom: 10px;
}

.stat-text {
  font-size: 1.2rem;
  color: #555;
  font-weight: 500;
  text-transform: capitalize;
}

@media (max-width: 992px) {
  .stats-container {
    flex-wrap: wrap;
  }

  .stat-item {
    flex: 0 0 50%;
  }

  .stats-container::after,
  .stats-container::before,
  .stats-container .stat-item:nth-child(3)::after {
    display: none;
  }
}

@media (max-width: 576px) {
  .stat-item {
    flex: 0 0 100%;
    margin-bottom: 30px;
  }
}

/* Why Choose Us Section */
.why-choose-us-section {
  background-color: #fff;
  padding: 80px 0;
}

.why-choose-container {
  display: flex;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
}

.why-choose-content {
  flex: 1;
  text-align: left;
}

.why-choose-image {
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
  width: 100%;
  height: auto;
  display: block;
}

.why-choose-us-section h2 {
  color: #e74c3c;
  font-size: 2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  text-align: left;
}

.features-list {
  margin-top: 30px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
}

.feature-icon {
  margin-right: 15px;
  color: #e74c3c;
  font-size: 24px;
}

.feature-text h4 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin-bottom: 5px;
}

.feature-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.5;
  margin: 0;
}

/* Values Section Styling */
.values-section {
  background-color: #f9f9f9;
  padding: 80px 0;
}

.values-header {
  text-align: center;
  margin-bottom: 60px;
}

.values-header h2 {
  color: #e74c3c;
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  font-weight: 700;
}

.values-header p {
  font-size: 1.2rem;
  color: #555;
  max-width: 700px;
  margin: 0 auto;
}

.values-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 30px;
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 992px) {
  .values-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .values-container {
    grid-template-columns: 1fr;
  }
}

.value-item {
  flex: 1;
  text-align: center;
  padding: 20px;
}

.value-icon {
  color: #e74c3c;
  font-size: 3rem;
  margin-bottom: 20px;
}

.value-item h3 {
  color: #333;
  font-size: 1.5rem;
  margin-bottom: 15px;
  font-weight: 600;
}

.value-item p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 992px) {
  .values-container {
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
  }

  .value-item {
    margin-bottom: 40px;
  }
}

/* CTA Section */
.cta-section {
  background-image: url("../images/index_cta.png");
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 100px 20px;
  position: relative;
}

.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
}

.cta-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button {
  background-color: #e74c3c;
  color: #fff;
  border: none;
  padding: 15px 30px;
  font-size: 16px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  transition: background-color 0.3s ease;
  border-radius: 3px;
  margin-top: 20px;
}

.cta-button:hover {
  background-color: #c0392b;
}

/* Footer */
footer {
  background-color: #fff;
  padding: 40px 20px 20px;
  border-top: 1px solid #eee;
}

.footer-main {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto 30px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  max-width: 120px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
}

.footer-nav a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #e74c3c;
}

.footer-contact {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.contact-item a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.contact-item a:hover {
  background-color: #e74c3c;
}

.contact-item a i {
  font-size: 18px;
  color: #333;
}

.contact-item a:hover i {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #eee;
  max-width: 1200px;
  margin: 0 auto;
  font-size: 14px;
  color: #777;
}

.footer-bottom p {
  margin: 0;
}

.footer-social {
  display: flex;
  gap: 15px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #f5f5f5;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.footer-social a:hover {
  background-color: #e74c3c;
}

.footer-social a i {
  font-size: 15px;
  color: #333;
}

.footer-social a:hover i {
  color: #fff;
}

.footer-credit a {
  color: #e74c3c;
  text-decoration: none;
}

/* Responsive Design */
@media (max-width: 992px) {
  .why-choose-container {
    flex-direction: column;
  }

  .why-choose-content {
    order: 2;
  }

  .why-choose-image {
    order: 1;
    margin-bottom: 40px;
  }

  .stats-container {
    flex-wrap: wrap;
    gap: 30px;
  }

  .stat-item {
    flex: 0 0 45%;
  }
}

@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 1.5rem;
  }

  .hero-content h2 {
    font-size: 1rem;
  }

  .about-buttons {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-nav {
    flex-wrap: wrap;
    gap: 15px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }

  .stat-item {
    flex: 0 0 100%;
  }

  .scrolled {
    height: 80px;
  }

  .logo {
    margin-top: 10px;
  }

  .burger {
    display: block;
    position: absolute;
    right: 20px;
    top: 10px;
    z-index: 1001;
    cursor: pointer;
  }

  .burger div {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 5px;
    transition: all 0.3s ease;
  }

  .nav-links {
    position: fixed;
    right: 0;
    top: 0;
    height: 100vh;
    width: 70%;
    max-width: 300px;
    background-color: rgba(0, 0, 0, 0.95);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0;
    z-index: 1000;
    margin: 0;
  }

  .nav-links li {
    width: 100%;
    padding-left: 40px;
    text-align: left;
    margin: 15px 0;
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
    width: 100%;
    color: #fff;
    font-size: 18px;
  }

  /* Active states */
  .nav-links.active {
    transform: translateX(0);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
  }

  .burger.active .line1 {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .burger.active .line2 {
    opacity: 0;
  }

  .burger.active .line3 {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  /* Menu overlay */
  .menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active + .menu-overlay {
    opacity: 1;
    visibility: visible;
  }

  .cta-content h2 {
    font-size: 1.5rem;
  }

  .about-header h2 {
    font-size: 1.5rem;
  }

  .about-header p {
    font-size: 1rem;
  }

  .vision-content h2 {
    font-weight: 900;
  }
}
