* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


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 */
.menu-toggle {
  font-size: 40px;
  cursor: pointer;
  display: none;
}

/* ================= SIDEBAR ================= */
.sidebar {
  position: fixed;
  top: 0;
  left: -260px;
  width: 260px;
  height: 100%;
  background: #707070;
  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, #347f85, #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;
  }
}


@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  .animated-nav {
    display: none;
  }
}


/* ================= 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); }

/* ================= SERVICES SECTION ================= */
.services-section {
  background: #2e2e2e;
  padding-top: 70px; /* navbar space */
}

/* ================= HERO ================= */
.services-hero {
  height: 380px;
  position: relative;
}

.services-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* ================= SERVICE CARDS (NO ABSOLUTE) ================= */
.service-cards {
  width: 85%;
  margin: -120px auto 0;   /* desktop floating */
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* CARD */
.sector-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.25);
  transition: transform 0.3s ease;
}

.sector-card:hover {
  transform: translateY(-6px);
}

.sector-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
}

.sector-card h4 {
  margin: 14px 0 6px;
  color: #1abc9c;
}

.sector-card p {
  font-size: 14px;
  padding: 0 15px 18px;
  color: #444;
}

/* ================= SERVICES CONTENT ================= */
.services-content {
    background: #2e2e2e; 
  padding: 140px 8% 80px;
  text-align: center;
}

.services-content h2 {
  font-size: 36px;
  margin-bottom: 50px;
  color: #ffffff;   /* white */
}

/* GRID */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* SERVICE BOX */
.service-box {
  background: #fff;
  color: #202020;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
}

.service-box img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-box h3 {
  margin: 15px 0 5px;
}

.service-box span {
  display: block;
  color: #1abc9c;
  font-weight: 600;
}

.service-box p {
  padding: 0 20px 25px;
  font-size: 14px;
  color: #292828;
}
@media (max-width: 768px) {

  /* Reduce hero height */
  .services-hero {
    height: 240px;
  }

  /* REMOVE FLOATING EFFECT */
  .service-cards {
    margin: 30px auto 0;   /* ✅ normal flow */
    width: 100%;
    padding: 0 14px;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

/* ================= MOBILE FIX ================= */
@media (max-width: 576px) {

  .services-hero {
    height: 200px;
  }

  .service-cards {
    width: 100%;
    gap: 20px;
    margin: 20px auto 0;
    padding: 0 12px;
    
  }

  .services-content {
    padding: 60px 12px 60px;
  }

  .services-content h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .sector-card img {
    height: 160px;
  }
  .service-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}/* ================= DOCUMENT SECTION ================= */
.documents-section {
  background: #2e2e2e;
  padding: 80px 0;
}

/* Container */
.documents-container {
  width: 85%;
  max-width: 1200px;
  margin: auto;
  text-align: center;
}

/* Title */
.documents-title {
  font-size: 36px;
  color: #ffffff;
  margin-bottom: 40px;
  font-weight: 700;
}

/* Grid */
.documents-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* ✅ 5 cards in one row */
  gap: 30px;
}

/* ================= CARD BASE ================= */
.document-card {
  position: relative;
  padding: 30px;
  min-height: 220px;
  border-radius: 16px;
text-align: left;  
  /* 🔥 SAME IMAGE FOR ALL CARDS */
  background-image: url("../assets/images/resume.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* Layout */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  /* Text */
  color: #ffffff;

  /* Design */
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* Overlay for readability */
.document-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 0;
}

/* Text above overlay */

.document-card p {
  position: relative;
  z-index: 1;
  line-height: 1.6;
  margin: 0;
}

/* Heading */
.document-card h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
 position: relative;   /* ✅ REQUIRED */
  z-index: 1;           /* ✅ REQUIRED */
  color: #ffffff;       /* pure white */
}

/* Description */
.document-card p {
  font-size: 0.95rem;
  min-height: 48px;          /* ✅ KEY FIX */
  line-height: 1.3;
  margin-bottom: 8px;
  color: #ffffff !important;   /* ✅ force white */
  
}

/* Hover Effect */
.document-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.45);
}

.document-card:hover::before {
  background: rgba(0,0,0,0.45);
}

/* ================= MOBILE RESPONSIVE ================= */
@media (max-width: 576px) {
  .documents-section {
    padding: 60px 0;
  }

  .documents-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .document-card {
    min-height: 180px;
    padding: 22px;
     
  }

  .document-card h4 {
    font-size: 1.15rem;
         
  }

  .document-card p {
    font-size: 0.9rem;
     
  }
}


/* ================= 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;
}
@media (max-width: 576px) {

  /* 🔥 FIX OVERLAP ISSUE */
  .service-cards {
    position: relative !important;   /* ✅ remove absolute */
    top: 0 !important;
    left: 0 !important;
    transform: none !important;

    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;

    width: 100%;
    padding: 20px 12px;
    margin: 0 auto;
  }

  /* each card must respect width */
  .sector-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 576px) {
  .services-content {
    padding: 40px 12px 60px !important;  /* 🔥 reset desktop spacing */
  }
}
.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; }
}
/* ================= MOBILE HERO OVERLAY CARD ================= */
@media (max-width: 768px) {

  /* Hero height */
  .services-hero {
    height: 240px;
    position: relative;
  }

  /* Cards container */
  .service-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;

    width: 100%;
    padding: 0 16px;
    margin-top: -80px;     /* 🔥 pull cards upward */
    position: relative;
    z-index: 3;
  }

  /* FIRST CARD OVERLAY EFFECT */
  .service-card:first-child {
    margin-top: -60px;     /* 🔥 half over image */
  }

  .sector-card {
    width: 100%;
    border-radius: 18px;
  }

  .sector-card img {
    height: 160px;
  }
}
