@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;
}

.header {
  width: 100%;
  background: #000000;
}
body {
  background: #000000;
}

.hero {
  position: relative;
  height: calc(100vh - 80px);
  background: url("https://images.pexels.com/photos/13398520/pexels-photo-13398520.jpeg") center/cover no-repeat;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.201);
}

/* Content */
.hero-content {
  position: relative;
  max-width: 900px;
  color: #fff;

  z-index: 1;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes operationsReveal {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-content h1 {
  font-size: 50px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  animation: slideInUp 0.8s ease-out;
}

.hero-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #e5e5e5;
  max-width: 650px;
  margin: 0 auto 30px;
  animation: slideInUp 0.8s ease-out 0.2s both;
}

/* Button */
.hero-btn {
  display: inline-block;
  background: linear-gradient(135deg, #f4d03f 0%, #d4af37 50%, #b8860b 100%);
  color: #000;
  padding: 14px 32px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  background: linear-gradient(135deg, #e5c04a 0%, #c9a227 50%, #a67c00 100%);
  transform: translateY(-2px);
}

/* Tablet */
@media (max-width: 991px) {
  .hero {
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.25);
  }

  .hero-content h1 {
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .hero {
    height: 100vh;
    min-height: 500px;
    padding: 100px 20px;
    background-attachment: scroll;
    background-size: cover;
    background-position: center center;
  }

  .hero-overlay {
    background: rgba(0, 0, 0, 0.3);
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 14px;
  }

  .hero-btn {
    padding: 12px 26px;
  }
}

.text1 {
  text-align: center;
  margin: 60px 50px;
  padding: 1px 200px;
}

.text1 h3 {
  font-size: 40px;
  font-weight: 500;
  color: #ffffff;
}

@media (max-width: 1500px) {
  .text1 {
    margin: 60px 30px;
    padding: 1px 300px;
  }

  .text1 h3 {
    font-size: 32px;
  }
}
/* Tablet */
@media (max-width: 991px) {
  .text1 {
    margin: 40px 15px;
    padding: 1px 200px;
  }

  .text1 h3 {
    font-size: 24px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .text1 {
    margin: 50px 10px;
    padding: 1px 20px;
  }

  .text1 h3 {
    font-size: 20px;
  }
}


.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;
  }
}


.core-services {
  background: #000;
  padding: 80px 20px;
  color: #fff;
}

.core-services .container {
  width: 100%;
  display: block;
  background: #000000;
  justify-content: center;
  flex-wrap: wrap;
  margin: auto;
}
.section-header {
  width: 100%;
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 6px;
}

.section-header p {
  font-size: 18px;
  color: #ccc;
  margin-bottom: 40px;
}

/* Grid Layout - stretchable responsive */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  width: 100%;
  gap: 20px;
  align-items: stretch;
}

/* Card Base - stretches to fill grid cell */
.service-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 340px;
  aspect-ratio: 4/3;
  border-radius: 6px;
  cursor: pointer;
}

@supports not (aspect-ratio: 4/3) {
  .service-card {
    height: 0;
    padding-bottom: 75%; /* 3/4 */
  }
  .service-card img,
  .service-card .overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
}

.service-card {
  animation: appear linear;
  animation-timeline: view();
  animation-range: entry 0% cover 40%;

}
.service-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

/* Overlay - always visible so text is readable */
.service-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.75),
    rgba(0,0,0,0.2)
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 600;
}

/* Hover Effect - image zoom only, no overlay change */
.service-card:hover img {
  transform: scale(1.08);
}

/* 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(min(100%, 220px), 1fr));
    gap: 16px;
  }

  .service-card {
    min-height: 200px;
    aspect-ratio: 4/3;
  }

  .service-card h3 {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 22px;
  }

  .core-services {
    padding: 60px 16px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: 220px;
    aspect-ratio: 16/10;
  }

  .service-card h3 {
    font-size: 17px;
  }

  .service-card .overlay {
    padding: 16px;
  }
}

/* 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: 12px;
  }
}

.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;
}
.cta-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%);
}



