/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --nav-height: 70px;
}

body {
  background: #000;
  color: #fff;
  font-family: Arial, sans-serif;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: #111;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  z-index: 1000;
}

/* Logo */
.logo img {
  width: 120px;
}

/* ================= DESKTOP NAV ================= */
.animated-nav {
  position: relative;
  display: flex;
  gap: 20px;
  list-style: none;
}

.animated-nav li {
  position: relative;
}

.animated-nav a {
  padding: 8px 18px;
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  position: relative;
  z-index: 2;
}

/* Animated Background */
.nav-indicator {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  background: linear-gradient(45deg, #194b4f, #00aaff);
  border-radius: 8px;
  transition: all 0.35s ease;
  z-index: 1;
  opacity: 0;
}

/* Hamburger */


/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #222;
  padding-top: 80px;
  transition: 0.4s ease;
}

.sidebar.active {
  left: 0;
}
/* ================= SIDEBAR MENU FIX ================= */
.sidebar ul {
  list-style: none;          /* ❌ remove bullets */
  padding: 0;
  margin: 0;
}

.sidebar ul li {
  padding: 15px 25px;
}

.sidebar ul li a {
  color: #ffffff;            /* ❌ remove blue color */
  text-decoration: none;     /* ❌ remove underline */
  font-size: 18px;
  display: block;
  transition: 0.3s ease;
}

.sidebar ul li a:hover {
  background: linear-gradient(45deg, #194b4f, #00aaff);
  border-radius: 8px;
  padding-left: 35px;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
  .animated-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}


/* Hamburger */
.menu-toggle {
  font-size: 32px;
  cursor: pointer;
  display: none;
  color: #fff;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .animated-nav {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}


/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -280px;
  width: 260px;
  height: 100%;
  background: #222;
  padding-top: 80px;
  transition: 0.4s ease;
  z-index: 2000;
}

.sidebar.active {
  left: 0;
}

.close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 24px;
  cursor: pointer;
}

/* Sidebar Animated Menu */
.animated-sidebar {
  list-style: none;
  position: relative;
}

.animated-sidebar li {
  padding: 15px 20px;
}

.animated-sidebar a {
  color: white;
  text-decoration: none;
  font-size: 18px;
  position: relative;
  z-index: 1;
}

/* Sidebar Indicator */
.sidebar-indicator {
  position: absolute;
  left: 10px;
  top: 0;
  width: 220px;
  height: 48px;
  background: linear-gradient(45deg, #194b4f, #00aaff);
  border-radius: 8px;
  transition: 0.4s ease;
  z-index: 0;
}

.animated-sidebar li:nth-child(1):hover ~ .sidebar-indicator { transform: translateY(0); }
.animated-sidebar li:nth-child(2):hover ~ .sidebar-indicator { transform: translateY(55px); }
.animated-sidebar li:nth-child(3):hover ~ .sidebar-indicator { transform: translateY(110px); }
.animated-sidebar li:nth-child(4):hover ~ .sidebar-indicator { transform: translateY(165px); }

/* ================= BANNER ================= */
/* ================= BANNER ================= */
.banner {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
  margin-top: 70px;
}

/* Banner Slides */
.banner-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeZoom 15s infinite ease-in-out;
}
@media (max-width: 768px) {
  .banner-slide {
    background-size: contain;      /* ✅ NO SIDE CUT */
    background-position: center;   /* ✅ FULL IMAGE */
    background-color: #000;        /* fills empty space */
  }
}



/* Individual Slides */
.slide1 {
  background-image: url('../assets/banner/banner1.webp');
  animation-delay: 0s;
}

.slide2 {
  background-image: url('../assets/banner/banner2.webp');
  animation-delay: 5s;
}

.slide3 {
  background-image: url('../assets/banner/banner3.webp');
  animation-delay: 10s;
}

/* 🎯 Fade + Zoom Animation */
@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  10% {
    opacity: 1;
    transform: scale(1);
  }
  30% {
    opacity: 1;
  }
  40% {
    opacity: 0;
    transform: scale(1.05);
  }
  100% {
    opacity: 0;
  }
}

/* ================= BANNER CONTENT ================= */
.banner-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  color: #fff;
  z-index: 5;
}

.banner-content h1 {
  font-size: 3rem;
  font-weight: 800;
}

.banner-content p {
  font-size: 1.3rem;
  margin-top: 10px;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 992px) {
  .banner-content h1 { font-size: 2.3rem; }
  .banner-content p { font-size: 1.2rem; }
}

@media (max-width: 600px) {
  .banner-content h1 { font-size: 1.8rem; }
  .banner-content p { font-size: 1rem; }
}
@media (max-width: 768px) {
  .banner-slide {
    background-position: center;
  }
}

@media (min-width: 1400px) {
  .banner-slide {
    background-position: center top;
  }
}



/* Welcome Section */
.welcome-section {
  padding: 80px 20px;
  background: #f7f7f7;
  margin-top: 0;
}
/* Image Styling */
.welcome-image {
  width: 100%;
  height: 80%;
  max-width: 655px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.welcome-section h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
  text-transform: uppercase;
}

.welcome-text {
  font-family: "Caveat";
  font-size: 1.8rem;
  
  font-optical-sizing: auto;
  font-weight: weight;
  font-style: normal;
  line-height: 1.8;
  color: #333;
  max-width: 900px;
  margin-top: 20px;
}

/* Responsive Text */
@media(max-width: 768px) {
    .welcome-section {
    text-align: center;
  }
  .welcome-image {
    margin-top: 25px;
  }
  .welcome-section h2 {
    font-size: 2rem;
  }
  .welcome-text {
    font-size: 1rem;
  }
}
/* Gradient Text + Reveal Animation */
.reveal-heading span {
  display: inline-block;
  transform: translateY(100%);
  animation: revealText 1s forwards ease-out;
 font-family: 'Inter', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;

  /* Gradient Text Effect */
  background: linear-gradient(90deg, #ff9900, #00eaff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 1px;
}

/* Animation Keyframes */
@keyframes revealText {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Responsive */
@media(max-width: 768px) {
  .reveal-heading span {
    font-size: 2rem;
  }
}
/* Why Choose Us Section */
.why-choose-us {
  padding: 80px 20px;
  background: white;
}

/* Cards */
.choose-card {
  background: #ffffff;
  padding: 35px 25px;
  margin-top: 40px;
  border-radius: 14px;
  transition: 0.4s ease-in-out;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  border: 1px solid rgb(240,240,240);
  cursor: pointer;
}

/* Icons */
.choose-card .icon {
  font-size: 45px;
  margin-bottom: 15px;
  transition: 0.4s;
}

/* Hover Design */
.choose-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.choose-card:hover .icon {
  color: #007bff;
  transform: scale(1.2) rotate(5deg);
}

/* Title */
.choose-card h4 {
  font-size: 1.7rem;
  margin-bottom: 10px;
  font-weight: 700;
}

/* Description */
.choose-card p {
  font-size: 1rem;
  color: #555;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Responsive */
@media(max-width: 768px) {
  .choose-card {
    margin-bottom: 25px;
  }
}
/* Job Sectors Section */
.job-sectors {
  padding: 80px 20px;
  background: #ECF3FF;
}

/* Sector Card */
.sector-card {
  background: #fff;
  padding: 25px 20px;
  border-radius: 14px;
  margin-top: 30px;
  transition: 0.45s ease-in-out;
  border: 1px solid #eee;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  cursor: pointer;
  text-align: center;
}

/* Images */
.sector-img {
  width: 100%;
  height: 160px;
  border-radius: 10px;
  object-fit: cover;
  margin-bottom: 12px;
}

/* Titles & Text */
.sector-card h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: #222;
}

.sector-card p {
  font-size: 0.95rem;
  font-weight: 400;
  color: #555;
}

/* Hover Animation */
.sector-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);
  background: #007bff;
}

.sector-card:hover h5,
.sector-card:hover p {
  color: #fff;
}

/* Responsive */
@media(max-width: 768px) {
  .sector-img {
    height: 140px;
  }
}
/* Countries Section */
.countries-section {
padding: 80px 20px;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* Grid Layout */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 25px;
  margin-top: 40px;
}

/* Country Box Style */
.country-box {
  font-size: 46px;
  background: #f4f8ff;
  border-radius: 12px;
  padding: 24px 10px;
  font-weight: bold;
  color: #222;
  transition: 0.4s ease;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* Country Name Style */
.country-box span {
  font-size: 16px;
  margin-top: 8px;
  letter-spacing: 1px;
  font-family: "Plus Jakarta Sans", sans-serif;
}

/* Hover Animation */
.country-box:hover {
  background: #007bff;
  color: #fff;
  transform: translateY(-10px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.15);
}
.country-box img {
  width: 48px;
  height: 32px;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 4px;
}

/* World Map Background */
.countries-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('../assets/images/worldmap.jpg') center/contain no-repeat;
   background-size: 160%; /* Increase width — 100% → 160% */
  opacity: 0.30; /* Adjust visibility: 0.05 – 0.2 recommended */
  z-index: 0;
}

/* Ensuring content displays above background */
.countries-section .container {
  position: relative;
  z-index: 1;
}



/* ================= FOOTER ================= */
.zula-footer {
  background: url("../assets/logo/logo.webp") center/cover no-repeat;
  color: #ddd;
}

.footer-overlay {
  background: rgba(0,0,0,0.85);
  padding: 50px 0 20px;
}

/* TOP */
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-logo img {
  max-width: 160px;
}

/* SEND */
.footer-send {
  display: flex;
  background: #2b2e31;
  border-radius: 40px;
  overflow: hidden;
}

.footer-send input {
  border: none;
  background: transparent;
  padding: 12px 20px;
  color: #fff;
  width: 220px;
}

.footer-send button {
  background: #b11f2f;
  border: none;
  padding: 12px 28px;
  color: #fff;
  font-weight: 600;
}

/* SOCIAL */
.footer-social a {
  color: #fff;
  margin-left: 12px;
  font-size: 16px;
}

/* DIVIDER */
.footer-divider {
  border-color: rgba(255,255,255,0.15);
  margin: 30px 0;
}

/* TITLES */
.zula-footer h5 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #ccc;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ff4d5a;
}

/* BUTTON */
/* FOOTER ORDER BUTTON */
.footer-btn {
  position: relative;
  display: inline-block;
  background: #860a0a;
  color: #fff;
  padding: 12px 26px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  overflow: hidden;
  z-index: 1;
  transition: color 0.3s ease;
}

/* RED SLIDE EFFECT */
.footer-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #131212;
  transition: left 0.4s ease;
  z-index: -1;
}

/* HOVER */
.footer-btn:hover::before {
  left: 0;
}

.footer-btn:hover {
  color: #fff;
  transform: translateY(-2px);

}


/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: center;   /* ✅ center horizontally */
  align-items: center;
  text-align: center;        /* ✅ center text */
  flex-wrap: wrap;
  gap: 15px;
}

.payment-icons img {
  height: 26px;
  margin-left: 10px;
}
.developer-link {
  color: #f5b041;           /* matches footer accent */
  font-weight: 600;
  text-decoration: none;
  transition: color 0.3s ease;
}

.developer-link:hover {
  color: #ffffff;
  text-decoration: underline;
}


/* RESPONSIVE */
@media (max-width: 768px) {
  .footer-top {
    justify-content: center;
    text-align: center;
  }

  .footer-bottom {
    justify-content: center;
    text-align: center;
  }
}
/* Feedback Section */
.feedback-section {
  padding: 80px 20px;
  background: #f7f7f7;
}

.feedback-slider {
 display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

/* Animation: Slide right to left */
@keyframes slideFeedback {
  0% { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* Single Card */
.feedback-card {
  background: #ffffff;
  margin: auto;
  max-width: 360px;
  width: 100%;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.10);
  text-align: center;
}

/* Client Image */
.feedback-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 12px;
  border: 3px solid #007bff;
}

/* Name */
.feedback-card h4 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Feedback text */
.feedback-card p {
  font-size: 0.95rem;
  color: #555;
}

/* Responsive */
@media(max-width: 768px) {
  .feedback-card {
    min-width: 250px;
  }
}
.whatsapp-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 55px;
  height: 55px;
  background-color: #25D366;
  border-radius: 50%;
  display: flex;
  text-decoration: none;
  justify-content: center;
  align-items: center;
  font-size: 32px;
  color: white;
  text-align: none;
  z-index: 9999;
  transition: transform 0.3s;
}

.whatsapp-btn:hover {
  transform: scale(1.1);
}
/* ================= PAGE LOADER ================= */
#page-loader {
  position: fixed;
  inset: 0;
  background: #000; /* match site theme */
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Loader Content */
.loader-content {
  text-align: center;
  animation: fadeIn 0.6s ease-in-out;
}

/* Logo */
.loader-content img {
  width: 140px;
  animation: pulse 1.4s infinite ease-in-out;
}

/* Loading Text */
.loader-text {
  display: block;
  margin-top: 14px;
  font-size: 14px;
  letter-spacing: 2px;
  color: #aaa;
  text-transform: uppercase;
}

/* Animations */
@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  50% { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 0.7; }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
