@import url('https://fonts.googleapis.com/css2?family=Goldman:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}
body {
  background: #000000;
}
.header {
  width: 100%;
  background: #000000;
}

.container {
  max-width: 1600px;
  margin: auto;
  padding: 16px 20px;
  display: flex;
  border: none;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-weight: 700;
  font-size: 25px;
  letter-spacing: 1px;
}
.logo a {
  text-decoration: none;
  color: #ffffff;
   font-family: "Goldman", sans-serif;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 35px;
}

.nav-links a {
  text-decoration: none;
  color: #ffffff;
  font-size: 14px;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #555;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 22px;
  height: 2px;
  background: #ffffff;
}

/* Tablet */
@media (max-width: 991px) {
  .nav-links {
    gap: 20px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    height: auto;
    right: 0;
    background: #000000;
    flex-direction: column;
    width: 100%;
    text-align: center;
    padding: 50px 0;
    gap: 40px;
    display: none;
    z-index: 1000;
  }

  .nav-links.active {
    display: flex;
  }
}

@keyframes appear {
  from {
    opacity: 0;
    scale: 0.5;
  }
  to {
    opacity: 1;
    scale: 1;
  }
}

.about-us {
  width: 100%;
  font-family: Arial, sans-serif;
}

/* Top Banner */
.about-banner {
  background: #0c0c0c;
  color: #fff;
  padding: 60px 8%;
}

.about-banner h1 {
  margin: 0;
  font-size: 36px;
  letter-spacing: 1px;
}

/* Content Area */
.about-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 8%;
  gap: 40px;
  background: #000000;
}

/* Text Section */
.about-text {
  max-width: 500px;
}

.about-text h2 {
  font-size: 35px;
  margin-bottom: 20px;
  color: #ffffff;
}

.about-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 12px;
}

.about-text .about-trust {
  list-style: disc;
  margin: 12px 0 0 20px;
  padding: 0;
}

.about-text .about-trust li {
  font-size: 16px;
  line-height: 1.7;
  color: #ffffff;
  margin-bottom: 10px;
}

.about-text .about-trust li strong {
  color: #ffffff;
}

/* Image Section */
.about-image img {
  max-width: 580px;
  width: 100%;
  height: auto;
  display: block;
}

/* ========================= */
/* Tablet Responsive */
/* ========================= */
@media (max-width: 992px) {
  .about-content {
    flex-direction: column;
    text-align: center;
  }

  .about-text {
    max-width: 100%;
  }

  .about-banner h1 {
    font-size: 30px;
  }
}

/* ========================= */
/* Mobile Responsive */
/* ========================= */
@media (max-width: 576px) {
  .about-banner {
    padding: 40px 6%;
  }

  .about-banner h1 {
    font-size: 24px;
  }

  .about-content {
    padding: 50px 6%;
    gap: 30px;
  }

  .about-text h2 {
    font-size: 22px;
  }

  .about-text p {
    font-size: 14px;
  }

  .about-text .about-trust li {
    font-size: 14px;
  }
}

.mission-vision {
  padding: 80px 8%;
  background: #000000;
  font-family: Arial, sans-serif;
  text-align: center;
}

.section-title {
  font-size: 35px;
  margin-bottom: 50px;
  color: #ffffff;
  letter-spacing: 1px;
}

/* Cards Layout */
.mv-container {
  display: flex;
  justify-content: center;
  gap: 40px;
}

/* Individual Card */
.mv-card {
  background: #000000;
  color: #000000;
  padding: 50px 40px;
  border-radius: 12px;
  width: 100%;
  border: 1px solid #ffffff;
  max-width: 1080px;
}
.mv-card {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;

}

.mv-card h3 {
  font-size: 22px;
  margin-bottom: 20px;
  color: #ffffff;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
}

/* ========================= */
/* Tablet Responsive */
/* ========================= */
@media (max-width: 992px) {
  .mv-container {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .section-title {
    font-size: 28px;
  }
}

/* ========================= */
/* Mobile Responsive */
/* ========================= */
@media (max-width: 576px) {
  .mission-vision {
    padding: 60px 6%;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 35px;
  }

  .mv-card {
    padding: 40px 25px;
  }

  .mv-card h3 {
    font-size: 20px;
  }

  .mv-card p {
    font-size: 14px;
  }
}


.footer {
  background: #000;
  color: #ccc;
  padding: 60px 20px 20px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.footer-left {
  max-width: 350px;
}

.footer-left p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 16px;
}

.social-icons a {
  color: #fff;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #444;
  padding: 6px 10px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-icons a:hover {
  background: #fff;
  color: #000;
}

.footer-links {
  display: flex;
  gap: 60px;
}

.footer-links h4 {
  color: #fff;
  font-size: 14px;
  margin-bottom: 14px;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #aaa;
  font-size: 14px;
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #222;
  text-align: center;
  margin-top: 40px;
  padding-top: 20px;
  font-size: 13px;
}


@media (max-width: 991px) {
  .footer-container {
    flex-direction: column;
  }

  .footer-links {
    gap: 40px;
  }

  .cta-content h2 {
    font-size: 26px;
  }
}


@media (max-width: 768px) {
  .cta-section {
    height: 220px;
    margin: 60px 16px;
  }

  .cta-content h2 {
    font-size: 22px;
    text-align: center;
  }

  .footer-links {
    flex-direction: column;
    gap: 30px;
  }

  .footer-left {
    max-width: 100%;
  }
}

.why-choose {
  padding: 80px 20px;
  background: #000000;
}

.why-choose .container {
  max-width: 1600px;
  width: 100%;
  background: #000000;
  display: block;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 35px;
  width: 100%;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 60px;
  letter-spacing: 1px;
  color: #ffffff;
}

.choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.choose-card {
  position: relative;
  min-height: 280px;
  border-radius: 8px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-color: #1a1a1a;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.choose-card {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}

.choose-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  transition: background 0.4s ease, justify-content 0.4s ease;
}

.choose-card:hover .choose-card-overlay {
  background: rgba(0, 0, 0, 0.88);
  justify-content: center;
}

.choose-card h4 {
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 8px;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

.choose-card p {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.4s ease, margin 0.4s ease;
}

.choose-card:hover p {
  max-height: 200px;
  opacity: 1;
  margin-top: 8px;
}

.choose-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.35);
}
@media (max-width: 991px) {
  .choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 24px;
  }
}

@media (max-width: 768px) {
  .why-choose {
    padding: 60px 16px;
  }

  .choose-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .choose-card {
    min-height: 260px;
  }

  .choose-card-overlay {
    padding: 20px 22px;
  }

  .choose-card h4 {
    font-size: 18px;
  }

  .choose-card p {
    font-size: 13px;
  }

  .choose-card:hover p {
    max-height: 180px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 40px;
  }
}

/* CTA */
.cta-wrap {
  text-align: center;
  margin-top: 40px;
}

.btn-light {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8860b 100%);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-light:hover {
  background: linear-gradient(135deg, #e5c04a 0%, #c9a227 50%, #a67c00 100%);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .service-card {
    height: 350px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 22px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    height: 240px;
  }
}

/* Operations section */
.operations-section {
  position: relative;
  background-color: #0a0a0a;
  background-image: linear-gradient(rgba(0, 0, 0, 0.767), rgba(0, 0, 0, 0.767)),
    url(https://images.unsplash.com/photo-1451187580459-43490279c0fa?q=80&w=1172&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 20px;
  color: #fff;
}

.operations-section .container {
  max-width: 1500px;
  background: #000000;
  margin: 0 auto;
  text-align: center;
  display: block;
  justify-content: center;
  align-items: center;
}

.operations-title {
  font-size: 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #ffffff;
  margin-bottom: 10px;
  animation: operationsReveal linear both;
  animation-timeline: view();
  animation-range: entry 0% cover 35%;
}

.operations-sub {
  font-size: 17px;
  color: #ccc;
  margin-bottom: 40px;
  animation: operationsReveal linear both;
  animation-timeline: view();
  animation-range: entry 8% cover 40%;
}

.operations-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin: 0;
  padding: 0;
}


.operations-country {
  display: inline-block;
  padding: 14px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.operations-country:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

/* Operations - Tablet */
@media (max-width: 991px) {
  .operations-section {
    padding: 50px 20px;
  }

  .operations-title {
    font-size: 26px;
  }

  .operations-sub {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .operations-list {
    gap: 14px 28px;
  }

  .operations-country {
    padding: 12px 22px;
    font-size: 15px;
  }
}

/* Operations - Mobile */
@media (max-width: 576px) {
  .operations-section {
    padding: 40px 16px;
  }

  .operations-title {
    font-size: 22px;
  }

  .operations-sub {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .operations-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 10px;
    justify-items: stretch;
  }

  .operations-country {
    width: 100%;
    text-align: center;
    padding: 10px 12px;
    font-size: 13px;
  }
}


.cta-section {
  position: relative;
  max-width: 1200px;
  margin: 80px auto 0px;
  height: 350px;
  border-radius: 12px;
  background-image: url(https://images.unsplash.com/photo-1606964212858-c215029db704?w=1200&auto=format&fit=crop&q=60&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxzZWFyY2h8M3x8bG9naXN0aWNzfGVufDB8fDB8fHwy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.choose-section {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;

}

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.65),
    rgba(0, 0, 0, 0.35)
  );
}

.cta-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 1;
}

.cta-content h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cta-btn {
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8860b 100%);
  color: #000;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #e5c04a 0%, #c9a227 50%, #a67c00 100%);
}