/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #ffffff;
  color: #111;
  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;
  color: #fff;
}

/* ================= 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;
  }
}
@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); }/* ================= HISTORY BANNER ================= */
.history-banner {
  width: 100%;
  background: #ffffff;
  padding: 80px 0;
}

.history-banner-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 20px;
}

/* IMAGE */
.history-banner-image {
  flex: 1;
}

.history-banner-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* CONTENT */
.history-banner-content {
  flex: 1;
}

.history-banner-content h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.history-banner-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}

/* BUTTON */
.history-btn {
  padding: 14px 32px;
  border: 2px solid #111;
  background: transparent;
  color: #838181;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.history-btn:hover {
  background: #666565;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .history-banner-container {
    flex-direction: column;
    text-align: center;
  }

  .history-banner-content h1 {
    font-size: 34px;
  }
}
/* ================= HISTORY SECTIONS ================= */
.history-sections {
  width: 100%;
}

/* ROW */
.history-row {
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 80px 8%;
}

/* BACKGROUNDS */
.light-bg {
  background: #f4f4f4;
}

.yellow-bg {
  background: #3d88eb;
}

/* REVERSE ROW */
.history-row.reverse {
  flex-direction: row-reverse;
}
.history-sections {
  position: relative;
  z-index: 1;
}


/* IMAGE */
.history-image {
  flex: 1;
  position: relative;
}

.history-image img {
  width: 100%;
  border-radius: 6px;
  position: relative;
  z-index: 2;
}

/* YELLOW BRUSH EFFECT */
.yellow-brush {
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 70%;
  height: 40%;
  background: #3d88eb;
  z-index: 1;
  border-radius: 10px;
}

/* TEXT */
.history-text {
  flex: 1;
}

.history-text h2 {
  font-size: 32px;
  margin-bottom: 20px;
  font-weight: 700;
}

.history-text p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
  color: #302f2f;
}

.history-text ul {
  padding-left: 20px;
}

.history-text ul li {
  margin-bottom: 10px;
  color: #161616;
}

/* TEXT ON YELLOW */
.dark-text h2,
.dark-text p,
.dark-text li {
  color: #111;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .history-row,
  .history-row.reverse {
    flex-direction: column;
    text-align: center;
  }

  .yellow-brush {
    display: none;
  }
}
/* ================= ANIMATION BASE ================= */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateX(0);
  transition: all 0.9s ease;
}

/* FROM LEFT */
.animate-left {
  transform: translateX(-80px);
}

/* FROM RIGHT */
.animate-right {
  transform: translateX(80px);
}

/* ACTIVE STATE */
.animate-show {
  opacity: 1;
  transform: translateX(0);
}
/* ================= 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;
  }
}
.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; }
}
