    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: #fbfdff;
      color: #3f64a1;
      line-height: 1.5;
    }

    h1, h2, h3 {
      font-family: 'Poppins', sans-serif;
      font-weight: 600;
      letter-spacing: -0.02em;
    }

    .container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 2rem;
    }

    /* header / nav */
    .navbar {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 0.6rem 2rem;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.05);
      position: sticky;
      top:0;
      z-index: 100;
      transition: all 0.2s;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .logo-icon {
      background: #3f64a1;
      color: #f5b041;
      width: 40px;
      height: 40px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      font-weight: 700;
      transform: rotate(-5deg);
    }

    .logo-text {
      font-weight: 700;
      font-size: 1.6rem;
      letter-spacing: -0.02em;
      color: #3f64a1;
    }
    .logo-text span {
      color: #e67e22;
      font-weight: 300;
    }

    .nav-links {
      display: flex;
      gap: 2.5rem;
      align-items: center;
    }
    .nav-links a {
      text-decoration: none;
      font-weight: 500;
      color: #2c3e50;
      transition: color 0.2s;
      font-size: 1rem;
      cursor: pointer;
    }
    .nav-links a:hover {
      color: #e67e22;
    }
    .btn-outline {
      border: 1.5px solid #3f64a1;
      padding: 0.5rem 1.5rem;
      border-radius: 40px;
      font-weight: 600;
      background: transparent;
      transition: 0.2s;
    }
    .btn-outline:hover {
      background: #3f64a1;
      color: white !important;
      border-color: #3f64a1;
    }

    /* HERO SECTION WITH BIG BANNER IMAGE + OVERLAY */
    .hero {
      position: relative;
      min-height: 85vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
      overflow: hidden;
    }
    .hero-bg {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(0.7) contrast(1.05);
      transition: transform 0.3s ease;
    }
    .hero::after {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.7) 100%);
      z-index: 1;
      pointer-events: none;
    }
    .hero-content {
      position: relative;
      z-index: 2;
      color: white;
      text-align: center;
      max-width: 900px;
      margin: 0 auto;
      padding: 2rem;
      animation: fadeInUp 0.9s ease-out;
    }
    .hero-badge {
      background: rgba(230,126,34,0.85);
      backdrop-filter: blur(4px);
      display: inline-block;
      padding: 0.5rem 1.5rem;
      border-radius: 60px;
      font-weight: 600;
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
      letter-spacing: 0.5px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    }
    .hero-content h1 {
      font-size: 3.6rem;
      line-height: 1.2;
      margin-bottom: 1.2rem;
      text-shadow: 0 2px 15px rgba(0,0,0,0.3);
    }
    .hero-highlight {
      color: #f5b041;
      border-bottom: 3px solid #e67e22;
      display: inline-block;
    }
    .hero-desc {
      font-size: 1.25rem;
      color: rgba(255,255,255,0.95);
      max-width: 700px;
      margin: 0 auto 2rem;
      text-shadow: 0 1px 4px rgba(0,0,0,0.2);
    }
    .hero-stats {
      display: flex;
      justify-content: center;
      gap: 3rem;
      margin-top: 2rem;
      flex-wrap: wrap;
    }
    .stat-item h3 {
      font-size: 2rem;
      color: #f5b041;
      margin-bottom: 0.2rem;
      font-weight: 700;
    }
    .stat-item p {
      color: #f0f0f0;
      font-weight: 500;
      font-size: 0.9rem;
    }
    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    @media (max-width: 768px) {
      .hero-content h1 {
        font-size: 2.4rem;
      }
      .hero-desc {
        font-size: 1rem;
      }
      .hero-stats {
        gap: 1.5rem;
      }
      .hero {
        min-height: 70vh;
      }
    }

    /* section general */
    section {
      padding: 5rem 2rem;
    }
    .section-title {
      text-align: center;
      max-width: 700px;
      margin: 0 auto 3rem;
    }
    .section-title h2 {
      font-size: 2.5rem;
      color: #0a1a2b;
      position: relative;
      display: inline-block;
      margin-bottom: 1rem;
    }
    .section-title h2:after {
      content: '';
      display: block;
      width: 70px;
      height: 4px;
      background: #e67e22;
      margin: 0.7rem auto 0;
      border-radius: 4px;
    }
    .section-sub {
      color: #496277;
      font-size: 1.15rem;
    }

    /* vision mission */
    .vm-grid {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-top: 2rem;
    }
    .vm-card {
      background: white;
      flex: 1 1 300px;
      padding: 2.5rem 2rem;
      border-radius: 30px;
      box-shadow: 0 15px 30px rgba(0,0,0,0.03);
      border: 1px solid rgba(0,0,0,0.03);
      transition: 0.2s;
    }
    .vm-card.vision {
      background: #3f64a1;
      color: white;
    }
    .vm-card.vision i {
      color: #f5b041;
    }
    .vm-card i {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
      color: #e67e22;
    }
    .vm-card h3 {
      font-size: 1.9rem;
      margin-bottom: 1rem;
    }
    .vm-card p {
      opacity: 0.9;
    }

    /* services grid */
    .services-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 2rem;
      margin-top: 2rem;
    }
    .service-item {
      background: white;
      border-radius: 28px;
      padding: 2.5rem 1.8rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.02);
      border: 1px solid #f0f4fa;
      transition: all 0.2s ease;
      text-align: center;
    }
    .service-item:hover {
      transform: translateY(-6px);
      border-color: #e67e22;
    }
    .service-num {
      background: #fef2e6;
      color: #e67e22;
      width: 50px;
      height: 50px;
      border-radius: 60px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.5rem;
      margin: 0 auto 1.5rem;
    }
    .service-item h3 {
      font-size: 1.35rem;
      margin-bottom: 0.5rem;
    }
    .service-item p {
      color: #546e7a;
      font-size: 0.95rem;
    }

    /* country cards */
    .country-showcase {
      background: #f4f8fe;
      border-radius: 60px 60px 30px 30px;
      padding: 3rem 2rem;
    }
    .country-flex {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center;
      margin-top: 2rem;
    }
    .country-card {
      background: white;
      border-radius: 30px;
      padding: 2rem;
      flex: 1 1 240px;
      max-width: 280px;
      box-shadow: 0 5px 15px rgba(0,0,0,0.02);
      border: 1px solid #eaeef4;
    }
    .country-card i {
      font-size: 2.8rem;
      color: #e67e22;
      margin-bottom: 1rem;
    }
    .country-card h4 {
      font-size: 1.7rem;
      font-weight: 600;
      margin-bottom: 0.5rem;
    }
    .country-card ul {
      list-style: none;
      margin-top: 1rem;
    }
    .country-card li {
      font-size: 0.95rem;
      padding: 0.3rem 0;
      border-bottom: 1px dashed #ddd;
    }
    .country-card li i {
      font-size: 0.8rem;
      color: #27ae60;
      margin-right: 0.5rem;
    }

    /* why work with us */
    .why-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 3rem;
      align-items: center;
    }
    .why-content {
      flex: 1 1 350px;
    }
    .why-item {
      display: flex;
      gap: 1.5rem;
      margin: 2rem 0;
    }
    .why-icon {
      background: #fef2e6;
      min-width: 60px;
      height: 60px;
      border-radius: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.8rem;
      color: #e67e22;
    }
    .why-text h4 {
      font-size: 1.3rem;
      margin-bottom: 0.3rem;
    }
    .why-text p {
      color: #3f5568;
    }
    .why-image {
      flex: 1 1 300px;
      background: #3f64a1;
      border-radius: 60px 20px 60px 20px;
      padding: 2rem;
      color: white;
      text-align: center;
    }
    .why-image i {
      font-size: 5rem;
      color: #f5b041;
    }

    /* ========== TESTIMONIALS - INFINITE LOOP CAROUSEL (RIGHT TO LEFT) ========== */
    .testimonials-section {
      background: white;
      overflow: hidden;
      position: relative;
    }
    .carousel-container {
      width: 100%;
      overflow: hidden;
      position: relative;
      margin: 2rem 0 1rem;
    }
    .carousel-track {
      display: flex;
      gap: 2rem;
      animation: scrollRightToLeft 30s linear infinite;
      width: max-content;
    }
    /* Pause animation on hover for better UX */
    .carousel-container:hover .carousel-track {
      animation-play-state: paused;
    }
    .testi-card {
      background: #fafcff;
      width: 340px;
      flex-shrink: 0;
      padding: 2rem;
      border-radius: 30px;
      border: 1px solid #e9f0f5;
      box-shadow: 0 10px 20px rgba(0,0,0,0.05);
      transition: transform 0.2s;
    }
    .testi-card:hover {
      transform: translateY(-5px);
    }
    .testi-card i {
      color: #f5b041;
      font-size: 2rem;
      margin-bottom: 1rem;
      opacity: 0.6;
    }
    .testi-card p {
      font-style: italic;
      margin-bottom: 1.5rem;
      color: #2c3e4e;
      line-height: 1.5;
    }
    .testi-author {
      font-weight: 700;
      color: #0a1a2b;
    }
    .testi-role {
      color: #e67e22;
      font-size: 0.9rem;
    }
    /* Animation keyframes: right to left infinite loop */
    @keyframes scrollRightToLeft {
      0% {
        transform: translateX(0);
      }
      100% {
        transform: translateX(-50%);
      }
    }
    /* social links below carousel */
    .social-links-testi {
      margin-top: 3rem;
      text-align: center;
    }
    .social-links-testi a {
      display: inline-block;
      background: #3f64a1;
      color: white;
      padding: 0.8rem 1.8rem;
      border-radius: 50px;
      margin: 0.5rem;
      text-decoration: none;
	  text-align:	center;
      font-weight: 500;
      transition: 0.2s;
    }
    .social-links-testi a:hover {
      background: #e67e22;
    }
    .social-links-testi a i {
      margin-right: 0.5rem;
    }
    @media (max-width: 768px) {
      .testi-card {
        width: 290px;
        padding: 1.5rem;
      }
      .carousel-track {
        gap: 1.2rem;
        animation-duration: 25s;
      }
    }

    /* footer / contact */
    .footer {
      background: #0f1a26;
      color: #ccddee;
      padding: 3rem 2rem 2rem;
      border-radius: 0 0;
    }
    .footer-grid {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 2rem;
    }
    .footer-info {
      flex: 2 1 300px;
    }
    .footer-info h3 {
      color: white;
      margin-bottom: 1.5rem;
    }
    .footer-contact p {
      margin: 0.8rem 0;
      display: flex;
      align-items: center;
      gap: 1rem;
    }
    .footer-contact i {
      width: 30px;
      color: #e67e22;
    }
    .footer-social a {
      color: white;
      background: #1f3140;
      display: inline-block;
      width: 45px;
      height: 45px;
      border-radius: 50%;
      text-align: center;
      line-height: 45px;
      margin-right: 0.7rem;
      transition: 0.2s;
    }
    .footer-social a:hover {
      background: #e67e22;
    }
    .copyright {
      text-align: center;
      margin-top: 3rem;
      padding-top: 2rem;
      border-top: 1px solid #253544;
      color: #8899aa;
    }

    /* BACK TO TOP BUTTON */
    .back-to-top {
      position: fixed;
      bottom: 2rem;
      right: 2rem;
      background-color: #e67e22;
      color: white;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.5rem;
      cursor: pointer;
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
      transition: all 0.3s ease;
      opacity: 0;
      visibility: hidden;
      z-index: 99;
      border: none;
      outline: none;
    }
    .back-to-top:hover {
      background-color: #3f64a1;
      transform: translateY(-5px);
    }
    .back-to-top.show {
      opacity: 1;
      visibility: visible;
    }

    @media (max-width: 700px) {
      .navbar {
        flex-direction: column;
        gap: 1rem;
      }
      .back-to-top {
        bottom: 1.2rem;
        right: 1.2rem;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
      }
    }




/* ========== GOOGLE MAPS SECTION ========== */
.map-section {
  background: linear-gradient(135deg, #fef9ef 0%, #f6f2e8 100%);
  padding: 5rem 2rem;
}

.map-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.map-info {
  flex: 1.2;
  background: white;
  padding: 2.5rem;
  border-radius: 30px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.map-address-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.map-address-card i {
  font-size: 2.5rem;
  color: #d97a0c;
  background: #fef0e0;
  padding: 1rem;
  border-radius: 20px;
}

.map-address-card h3 {
  font-size: 1.8rem;
  color: #2d5a2c;
  margin-bottom: 1rem;
}

.map-address-card p {
  color: #5a6e4d;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.map-address-card p i {
  font-size: 0.9rem;
  padding: 0;
  background: none;
  color: #d97a0c;
  margin-right: 0.5rem;
  width: auto;
}

.address-details {
  margin: 1.5rem 0;
  padding-top: 1rem;
  border-top: 2px dashed #f0e5d4;
}

.address-details p {
  margin: 0.6rem 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.map-directions-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #2d5a2c;
  color: white;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  margin-top: 1rem;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.map-directions-btn:hover {
  background: #d97a0c;
  transform: translateX(5px);
  color: white;
}

.map-container {
  flex: 2;
  min-height: 400px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
}

/* Responsive Styles */
@media (max-width: 968px) {
  .map-wrapper {
    flex-direction: column;
  }
  
  .map-info {
    order: 2;
  }
  
  .map-container {
    order: 1;
    min-height: 350px;
  }
  
  .map-address-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .map-address-card i {
    margin-bottom: 0.5rem;
  }
  
  .address-details p {
    justify-content: center;
  }
  
  .map-directions-btn {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .map-section {
    padding: 3rem 1rem;
  }
  
  .map-info {
    padding: 1.5rem;
  }
  
  .map-address-card h3 {
    font-size: 1.5rem;
  }
  
  .map-container {
    min-height: 300px;
  }
  
  .map-container iframe {
    min-height: 300px;
  }
}


/* ========== GALLERY SECTION ========== */
.gallery-section {
  background: #fefcf7;
  padding: 5rem 2rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}

.gallery-item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(45, 90, 44, 0.85) 0%, rgba(217, 122, 12, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  color: white;
  text-align: center;
  padding: 1rem;
}

.gallery-overlay i {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  transform: scale(0.8);
  transition: transform 0.3s ease;
}

.gallery-overlay p {
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}

.gallery-item:hover .gallery-overlay p {
  transform: translateY(0);
}

/* Lightbox Modal Styles (for image popup) */
.lightbox-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox-modal.active {
  display: flex;
  opacity: 1;
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 35px;
  color: white;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
  cursor: pointer;
  z-index: 1001;
}

.lightbox-close:hover {
  color: #d97a0c;
}

.lightbox-caption {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  text-align: center;
  color: white;
  font-size: 1rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 0.8rem;
  margin: 0 auto;
  width: fit-content;
  border-radius: 30px;
  backdrop-filter: blur(5px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.2rem;
  }
  
  .gallery-overlay i {
    font-size: 1.8rem;
  }
  
  .gallery-overlay p {
    font-size: 0.85rem;
  }
  
  .lightbox-close {
    top: 15px;
    right: 20px;
    font-size: 30px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .gallery-item {
    aspect-ratio: 4 / 3;
  }
}