
*{ 
    margin:0;
    padding:0;
    box-sizing: border-box;
}
html, body {
  height: 100%;
}
.license-bar {
  background: linear-gradient(to right, #0a2c4a, #0a2c4a);
  color: #ffffff;
  text-align: center; 
  font-size: 20px;
  padding: 25px 10px;
  font-weight: 600;
}
.line-1 a {
  text-decoration: none;
  color: inherit;   
  font-weight: 500;
}
.line-1 a:hover {
  text-decoration: underline;
}
.license-bar .gov-text {
  font-weight: 400;
  opacity: 0.9;
}
.banner {
  position: relative;
  background-color: #2E8F5E99;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-left: 200px;   /* ADD THIS */
}

.banner h2 {
  color: white;
  font-family: Arial, sans-serif;
  font-weight: bold;
  margin: 0;
  z-index: 2;
}
.tilt {
   position: absolute; 
  left: 0;
  top: 0;
  height: 100%;
  width: 200px;
  background-color: white; 
  clip-path: polygon(0 0, 100% 0, 70% 100%, 0% 100%);
}
.tilt img {
  height: 70px;
  width: auto;
  margin-left: 0px;
  margin-top: 5px;
}
.contact-box {
    display: flex;
    justify-content: flex-end;   
    gap: 15px;
    padding: 10px 20px;
}
.contact-box a {
    text-decoration: none;
    color: white;                 
    background-color: #8d8b85;    
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    transition: 0.3s ease;
}
.contact-box a:hover {
    background-color: #FF6600;    /* Hover color */
}

.contact-box i {
    margin-right: 6px;
}

/* MOBILE RESPONSIVE */

@media (max-width:768px){

.license-bar{
    flex-direction:column;
    text-align:center;
}

.license-text{
    max-width:100%;
}

.banner{
    margin-top:15px;
}

.contact-box {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    flex-wrap: wrap;   /* allows wrapping on smaller screens */
}

.contact-box a {
    text-decoration: none;
    color: white;
    background-color: #8d8b85;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: 0.3s ease;
}

.contact-box a:hover {
    background-color: #1e7e34;
}

.contact-box i {
    font-size: 16px;
}

@media (max-width:768px){

.contact-box{
    justify-content: center;
    width: 100%;
}

.contact-box a{
    flex: 1 1 45%;   /* two buttons per row */
    justify-content: center;
}

}

@media (max-width:480px){

.contact-box{
    flex-direction: column;
}

.contact-box a{
    width: 100%;
}

}

}
.navbar{
    background-color:white;
    padding-top: 5px;
    padding-bottom: 0px;
}
.navbar-container{
    max-width: 1200px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items: center;
}
.logo img {
  max-height: 80px;
  width: auto;
}
.nav-links{
    display: flex;
    list-style:none;
    gap: 25px;
    margin-left: auto;
}
.nav-links li  {
    font-weight: 700px;
    font-size: 20px ;
    /* color:white; */
}
.hero-container h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px; 
}
.hero-container p {
  font-size: 20px;
  margin-bottom: 30px; 
  background-color: #8d8b85; 
  padding:10px 10px;
  border-radius: 10px;
  font-weight: 600;
  margin-left: auto;
}
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 20px;
    color: white;
    
} 
/* DARK OVERLAY */
.hero .overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6); /* dark overlay */
    top: 0;
    left: 0;
    z-index: 1;
}
/* WRAPPER TO HOLD CONTENT ABOVE OVERLAY */
.hero-wrapper {
    display: flex;
    justify-content: space-between; 
    align-items: flex-start;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    position: relative; /* on top of overlay */
    z-index: 2;
}
/* LEFT CONTENT */
/* .hero-left > * {
    width: 60%;
} */

.hero-left h1 {
    font-size: 48px;
     margin-bottom: 15px; 
}
.hero-left p {
    font-size: 18px;
      margin-bottom:25px; 
}

/* URGENCY LINE */
.hero-left .urgency {
    font-weight: bold;
    color: #ffcc00;
    font-size: 20px;
    margin-top: 0px;
}
.hero-features{
    margin-top:15px;
    font-size:18px;
    line-height:1.8;
}

.hero-features p{
    margin:5px 0;
    text-align: left;
}

.tick{
    color:#FF6600;   /* green tick */
    font-weight:bold;
    margin-right:8px;
    font-size:18px;
}

/* RIGHT FORM (GLASSMORPHISM) */
.hero-right {
    width: 40%;
}

.lead-form {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    color: white;
}

.lead-form h3 {
    margin-bottom: 20px;
    text-align: center;
    color: #fff;
}
.lead-form input {
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: none;
    border-radius: 10px;
    outline: none;
    background: rgba(255,255,255,0.2);
    color: white;
}

.lead-form input::placeholder {
    color: #f0f0f0;
}
.lead-form button {
    width: 100%;
    padding: 12px;
    background: #ff6600;
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: 0.3s ease;
}

.lead-form button:hover {
    background: #e65c00;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-right {
        margin-top: 30px;
    }
}

@media (max-width: 576px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left .urgency {
        font-size: 18px;
    }
}
.form-section {
  padding: 80px 20px;
   background:transparent; 
  display: flex;
  justify-content: center;
   margin-left: 50px; 
   
  
}

.light-bg {
  /* background: rgba(255,255,255,0.2); */
}

.form-container {
  width: 100%;
  max-width: 600px;
  background: rgba(255,255,255,0.2);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
   margin-top:-100px; 
}

.form-container h2 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 26px;
}
.form-group {
  margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 6px;
  border: 1px solid #ddd;
  
  font-size: 15px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #ff6b00;
}
.submit-btn {
  width: 100%;
  padding: 14px;
  background: #ff6b00;
  border: none;
  color: white;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: 0.3s ease;
}
.submit-btn:hover {
  background: #e65c00;
  transform: translateY(-2px);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .hero-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .hero-left, .hero-right {
        width: 100%;
    }

    .hero-right {
        margin-top: 30px;
    }
}
.services {
  padding: 80px 20px;
  background-color: #f9f9f9;
}
.lang-dropdown {
  position: relative;
}

.lang-btn {
  cursor: pointer;
  list-style: none;     
  font-weight: 600;
  background-color: #0F766E;
  color:white;
  padding:5px 15px;
  border-radius:5px;
  margin-left: 5px;
}

/* remove default marker */
.lang-btn::-webkit-details-marker {
  display: none;
}

.lang-menu {
  position: absolute;
  right: 0;
  top: 120%;
  background: #fff;
  padding: 8px 0;
  list-style: none;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  border-radius: 6px;
}

.lang-menu li {
  padding: 8px 16px;
  cursor: pointer;
}

.lang-menu li:hover {
  background: #f1f5f9;
}


.container {
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

.section-title {
  font-size: 36px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

.services-grid {
  display:grid ;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;

}
.service-card {
  background: #FEF2F2;
  padding: 30px 25px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  /* transition: transform 0.3s ease, box-shadow 0.3s ease; */
  transition-behavior: normal;
  transition-duration:0.3s;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-property:all;
  color:#000;
}
.service-card h3 {
  font-size: 20px;
  color:black;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 14px;
  color: black;
  line-height: 1.6;
}
.service-card:hover {
  background-color: #000;
  color:#fff;
}

.service-card:hover h3,
.service-card:hover p {
  color: #fff;
}
.service-card .icon {
  font-size: 40px;
  margin-bottom: 15px;
}
/* Common */
.container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
  text-align: center;
}

.section-title {
  font-size: 34px;
  font-weight: 600;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 16px;
  color: #666;
  margin-bottom: 50px;
}

/* Industries */
.industries {
  padding: 80px 0;
  background: #ffffff;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}

.industry-card {
  background: #f9f9f9;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.industry-card img {
  width: 50px;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 18px;
  color: #0b2c4d;
}

/* Countries */
.countries {
  padding: 80px 0;
  background: #f4f6f8;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
}

 .country-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 12px;
  transition: 0.3s ease;
}

.country-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
} 
/* animation effect  */
.countries-grid {
  overflow: hidden; /* prevents scroll bar */
}

.country-card {
  animation: slideLR 2s ease-in-out infinite alternate;
}

/* wave effect (cards move one after another) */
 .country-card:nth-child(1) { animation-delay: 0s; }
.country-card:nth-child(2) { animation-delay: 0.2s; }
.country-card:nth-child(3) { animation-delay: 0.4s; }
.country-card:nth-child(4) { animation-delay: 0.6s; }
.country-card:nth-child(5) { animation-delay: 0.8s; }
.country-card:nth-child(6) { animation-delay: 1s; }
.country-card:nth-child(7) { animation-delay: 1.2s; }
.country-card:nth-child(8) { animation-delay: 1.4s; }
.country-card:nth-child(9) { animation-delay: 1.6s; }
.country-card:nth-child(10) { animation-delay: 1.8s; } 

@keyframes slideLR {
  from {
    transform: translateX(-10px);
  }
  to {
    transform: translateX(10px);
  }
}
.country-card img {
  width: 88px;
  margin-bottom: 10px;
}

.country-card h3 {
  font-size: 16px;
  color: #0b2c4d;
}
.process {
  padding: 80px 0;
  background: #ffffff;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
}

.process-card {
  background: #f9f9f9;
  padding: 35px 25px;
  border-radius: 14px;
  position: relative;
  transition: 0.3s ease;
}

.process-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}

.step-number {
  position: absolute;
  top: -18px;
  left: 25px;
  background: #f97316;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 20px;
}

.process-card h3 {
  margin-top: 20px;
  font-size: 20px;
  color: #0b2c4d;
  margin-bottom: 10px;
}

.process-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}
.jobs-section {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: auto;
}

.section-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2933;
}

.section-subtitle {
  text-align: center;
  margin-top: 10px;
  color: #6b7280;
}

.jobs-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.job-card {
  background: #ffffff;
  padding: 25px;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.job-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.job-card h3 {
  font-size: 22px;
  color: #111827;
}

.country {
  margin-top: 8px;
  color: #374151;
}

.salary {
  margin-top: 12px;
  color: #16a34a;
  font-weight: 600;
}

.job-type {
  display: inline-block;
  margin-top: 12px;
  background: #e0f2fe;
  color: #0369a1;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.apply-btn {
  display: block;
  margin-top: 20px;
  text-align: center;
  background: #2563eb;
  color: #ffffff;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}

.apply-btn:hover {
  background: #1e40af;
}

.view-all {
  text-align: center;
  margin-top: 40px;
}

.view-all-btn {
  border: 2px solid #2563eb;
  padding: 12px 30px;
  border-radius: 30px;
  color: #2563eb;
  text-decoration: none;
  font-weight: 600;
}

.view-all-btn:hover {
  background: #2563eb;
  color: #ffffff;
}
.why-choose-us {
  padding: 80px 20px;
  background-color: #ffffff;
}

.why-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.why-card {
  background: #f9fafb;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.why-icon {
  font-size: 40px;
  margin-bottom: 15px;
}

.why-card h3 {
  font-size: 20px;
  color: #111827;
  margin-bottom: 10px;
}

.why-card p {
  color: #6b7280;
  font-size: 15px;
  line-height: 1.6;
}
.testimonials {
  padding: 80px 20px;
  background-color: #f8fafc;
}

.testimonial-grid {
  margin-top: 50px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.testimonial-card {
  background: #ffffff;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.testimonial-text {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 55px;
  height: 55px;
  background: #e0f2fe;
  color: #0369a1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 24px;
}

.testimonial-user h4 {
  font-size: 16px;
  color: #111827;
  margin-bottom: 4px;
}

.testimonial-user span {
  font-size: 14px;
  color: #6b7280;
}
.cta-section {
  padding: 90px 20px;
   background: linear-gradient(135deg, #2563eb, #1e40af); 
  color: #ffffff;
  text-align: center;
  
}

.cta-container {
  max-width: 900px;
  margin: auto;
}

.cta-section h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 15px;
}

.cta-section p {
  font-size: 17px;
  margin-bottom: 35px;
  color: #e5e7eb;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.cta-btn {
  padding: 14px 34px;
  border-radius: 40px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.primary-btn {
  background: #ffffff;
  color: #1e40af;
}

.primary-btn:hover {
  background: #f1f5f9;
}

.secondary-btn {
  border: 2px solid #ffffff;
  color: #ffffff;
}

.secondary-btn:hover {
  background: #ffffff;
  color: #1e40af;
}
.footer {
  background-color: #0f172a;
  color: #cbd5f5;
  padding: 70px 20px 30px;
  margin:0px;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
}

.footer-column h3 {
  font-size: 22px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column h4 {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 15px;
}

.footer-column p {
  font-size: 16px;
  line-height: 1.7;
  color: #cbd5f5;
}

.footer-column ul {
  list-style: none;
  padding: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
  font-size: 16px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #cbd5f5;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: #38bdf8;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 50px;
  padding-top: 20px;
  text-align: center;
  font-size: 16px;
  color: #94a3b8;
}
.social-icons {
  margin-bottom: 10px;
}

.social-icons a {
  color: #fff;
  margin: 0 10px;
  font-size: 24px;
  transition: transform 0.3s, color 0.3s;
  text-decoration: none;
}
.social-icons a:hover {
  color: #1da1f2; /* Change color on hover (example for Twitter blue) */
  transform: scale(1.2);
}
.map iframe{
  border-radius: 12px;
  margin-right: 10px;
}








