/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.logo img {
  height: 50px;
  width: auto;
}

body {
  font-family: 'Mulish', sans-serif;
  line-height: 1.6;
  color: #333;
  background: #fff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: #fff;
  padding: 20px 0;
  border-bottom: 1px solid #eee;
}
body {
  padding-top: 50px; /* Adjust based on your header height */
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  min-width: 220px;
  z-index: 999;
}

.dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  background: white;
  border: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  top: 100%;
  left: 0;
  z-index: 999;
  min-width: 200px;
  padding: 10px 0;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: #333;
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: #f0f0f0;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: yellow;
}

.nav {
  display: flex;
  gap: 15px;
  align-items: center;
  flex-wrap: wrap;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-weight: 600;
}

.search-box {
  display: flex;
  border: 1px solid #ccc;
  border-radius: 20px;
  overflow: hidden;
}

.search-box input {
  padding: 5px 10px;
  border: none;
  outline: none;
}

.search-box button {
  background: #FFC300;
  border: none;
  padding: 0 10px;
  color: white;
  font-size: 16px;
}

.btn {
  padding: 10px 20px;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  display: inline-block;
  cursor: pointer;
}

.btn-primary {
  background-color:  #FFC300;
  color: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  border: none;
}



.hero-video-section {
  position: relative;
  height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.hero-video-section .hero-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-video-section .video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* dark overlay */
  z-index: 2;
}

.hero-video-section .hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 20px;
}

.hero-video-section .hero-content h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 20px;
}

.hero-video-section .hero-content p {
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 30px;
}

.hero-video-section .btn {
  font-size: 16px;
  padding: 12px 24px;
}



/* Features */
.features {
  padding: 60px 20px;
  background: #fff;
  text-align: center;
}

.section-heading {
  font-size: 28px;
  margin-bottom: 40px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.feature h3 {
  color: #FFC300;
  margin: 15px 0 10px;
}

.features {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
}

.section-heading {
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 40px;
}

.features-grid {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
}

.feature {
  flex: 1 1 280px;
  background-color: #f9f9f9;
  border-radius: 12px;
  padding: 30px 20px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.feature img {
  max-width: 70px;
  margin-bottom: 20px;
}

.feature h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333;
}

.feature p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .features-grid {
    flex-direction: column;
    align-items: center;
  }
}


/* Split Sections */
.split {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  padding: 60px 20px;
  align-items: center;
  justify-content: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .image {
  align-self: flex-start;
  padding-top: 20px;
  padding-bottom: 20px;
}

.split ul {
  font-size: 16px;
  color: #333;
}

.split .text {
  margin-top: -20px;
}
.us-compliance-banner {
  background: linear-gradient(135deg, #004d99, #0073e6);
  color: white;
  padding: 60px 20px;
}

.us-compliance-banner .banner-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.us-compliance-banner .text {
  flex: 1 1 50%;
}

.us-compliance-banner .text h4 {
  font-size: 14px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  color: #cce5ff;
}

.us-compliance-banner .text h2 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}

.us-compliance-banner .text p {
  font-size: 16px;
  margin-bottom: 25px;
}

.us-compliance-banner .btn.btn-outline {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
  padding: 10px 24px;
  text-decoration: none;
  font-weight: 600;
  transition: background 0.3s, color 0.3s;
}

.us-compliance-banner .btn.btn-outline:hover {
  background: #fff;
  color: #FFC300
 ;
}

.us-compliance-banner .image {
  flex: 1 1 40%;
  text-align: center;
}

.us-compliance-banner .image img {
  max-width: 100%;
  height: auto;
}
.europe-service-cards {
  background: #ffffff;
  color: #000000;
  padding: 60px 20px;
  text-align: center;
}

.europe-service-cards .section-subtitle {
  color: #000000;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 10px;
}

.europe-service-cards .section-title {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #000000;
}

.europe-service-cards .section-title span {
  background: #FFD700; /* Yellow highlight */
  padding: 0 6px;
  border-radius: 4px;
  color: #000000;
}

.europe-service-cards .section-description {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  color: #333333;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.card-grid .card {
  background-color: #ffd9004d;
  color: #000000;
  border-radius: 8px;
  padding: 30px 20px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  text-align: left;
  transition: transform 0.3s ease;
}

.card-grid .card:hover {
  transform: translateY(-5px);
}


.newsletter-section {
  background-size: cover;
  background-position: center;
  padding: 80px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.newsletter-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  max-width: 1200px;
}

.newsletter-text {
  flex: 1 1 40%;
}

.newsletter-text .label {
  color: #FFC300;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 14px;
}

.newsletter-text h2 {
  font-size: 40px;
  font-weight: 800;
}

.newsletter-text h2 span {
  background: #2d401d;
  padding: 5px 10px;
  border-radius: 4px;
  color: white;
}

.newsletter-text .subtext {
  font-size: 15px;
  color: #ccc;
  margin-top: 15px;
}

.newsletter-form {
  flex: 1 1 40%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.newsletter-form input {
  padding: 12px 16px;
  border-radius: 6px;
  border: none;
  background: rgba(255, 255, 255, 0.8);
  color: #333;
  font-size: 16px;
}

.newsletter-form button {
  background: #FFC300;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s;
}

.newsletter-form button:hover {
  background: #FFC300;
}

.newsletter-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 20px;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}


.service-card {
  background: #FFC300;
  color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  width: 300px;
  text-align: left;
  position: relative;
  transition: background 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card:hover {
  background: #e6b100; /* slightly darker yellow on hover */
}

.service-card .icon {
  font-size: 28px;
  margin-bottom: 15px;
  color: #ffffff;
}

.service-card h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #ffffff;
}

.service-card p {
  font-size: 15px;
  color: #ffffff;
}


/* Partners */
.partners {
  background: #FFC300;
  color: white;
  padding: 60px 20px;
  text-align: center;
}

.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 20px;
  margin-top: 40px;
}

.partner-logos img {
  background: #fff;
  padding: 10px;
  border-radius: 5px;
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.1);
}

/* Contact */



.contact {
  background: #005072;
  color: white;
  padding: 60px 20px;
  display: centre;
  flex-wrap: wrap;
  gap: 0px;
}

.contact .text {
  flex: 1 1 40%;
}

.contact .form {
  flex: 1 1 50%;
  background: white;
  color: #333;
  padding: 30px;
  border-radius: 8px;
}

.contact input[type="text"],
.contact input[type="email"],
.contact input[type="tel"] {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

.btn-submit {
  width: 100%;
  background: #FFC300;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 4px;
  font-weight: bold;
}


/* Footer */
.footer {
  background: #f9f9f9;
  padding: 40px 20px;
  font-size: 14px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-bottom: 30px;
}

.footer .column h4 {
  margin-bottom: 10px;
}

.footer .column a {
  display: block;
  color: #333;
  text-decoration: none;
  margin-bottom: 6px;
}

.footer .column a:hover {
  text-decoration: underline;
}

.legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 15px;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}

.legal a {
  color: #666;
  text-decoration: none;
  margin-right: 15px;
}

.locale {
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 5px 10px;
}

/* Responsive Fixes */
@media (max-width: 768px) {
  .hero-grid,
  .split,
  .contact {
    flex-direction: column;
    align-items: center;
  }

  .search-box {
    margin-top: 10px;
  }
}
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
  color: #333;
  transition: opacity 0.5s ease;
}
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}
/* Preloader container */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

/* Spinner animation */
.loader-spinner {
  width: 60px;
  height: 60px;
  border: 6px solid #ccc;
  border-top: 6px solid #FFC300;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin-bottom: 20px;
}

/* Loading text */
.loading-text {
  font-family: 'Mulish', sans-serif;
  font-size: 18px;
  color: #333;
}

/* Hide animation */
.preloader.hidden {
  opacity: 0;
  visibility: hidden;
}

/* Spinner animation keyframes */
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.custom-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: 'Mulish', sans-serif;
}

.logo-container {
  position: relative;
  width: 120px;
  height: 120px;
}

.logo-base {
  width: 100%;
  height: 100%;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
}

.logo-fill {
  background: #FFC300;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  mask-image: url('../images/color_remove.png');
  mask-size: cover;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url('../images/color_remove.png');
  -webkit-mask-size: cover;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition: top 0.1s linear;
}

.loader-percentage {
  font-size: 20px;
  margin-top: 20px;
  font-weight: bold;
  color: #333;
}


  .custom-loader {
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: #fff;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: 'Mulish', sans-serif;
  }
  .logo-container {
    position: relative;
    width: 120px;
    height: 120px;
    overflow: hidden;
  }
  .logo-fill {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: #FFC300;
    z-index: 1;
    transition: height 0.1s linear;
  }
  .logo-base {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 2;
    pointer-events: none;
  }
  .loader-percentage {
    margin-top: 20px;
    font-size: 18px;
    font-weight: bold;
    color: #333;
  }
  .custom-loader.hidden {
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease;
  }

.popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
}

.popup-content {
  background: #fff;
  padding: 20px;
  max-width: 500px;
  margin: 10% auto;
  position: relative;
  border-radius: 8px;
  animation: fadeIn 0.3s ease;
}

.close-btn {
  position: absolute;
  top: 10px; right: 15px;
  font-size: 20px;
  cursor: pointer;
}

@keyframes fadeIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
