* {
  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); }

body,
input,
textarea {
  font-family: "Poppins", sans-serif;
}

.container {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding: 2rem;
  background-color: #fafafa;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.form {
  width: 100%;
  max-width: 1000px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 0 20px 1px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}

.contact-form {
  background-color: #1abc9c;
  position: relative;
}

.circle {
  border-radius: 50%;
  background: linear-gradient(135deg, transparent 20%, #149279);
  position: absolute;
}

.circle.one {
  width: 130px;
  height: 130px;
  top: 130px;
  right: -40px;
}

.circle.two {
  width: 80px;
  height: 80px;
  top: 10px;
  right: 30px;
}

.contact-form:before {
  content: "";
  position: absolute;
  width: 26px;
  height: 26px;
  background-color: #1abc9c;
  transform: rotate(45deg);
  top: 50px;
  left: -13px;
}

form {
  padding: 3rem 3rem;
  z-index: 10;
  overflow: hidden;
  position: relative;
}

.title {
  color: #fff;
  font-weight: 500;
  font-size: 1.9rem;
  line-height: 1;
  margin-bottom: 0.7rem;
}

.input-container {
  position: relative;
  margin: 1rem 0;
}

.input {
  width: 100%;
  outline: none;
  border: 2px solid #fafafa;
  background: none;
  padding: 0.6rem 1.2rem;
  color: #fff;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  border-radius: 25px;
  transition: 0.3s;
}

textarea.input {
  padding: 0.8rem 1.2rem;
  min-height: 150px;
  border-radius: 22px;
  resize: none;
  overflow-y: auto;
}

.input-container label {
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translateY(-50%);
  padding: 0 0.4rem;
  color: #fafafa;
  font-size: 1rem;
  font-weight: 400;
  pointer-events: none;
  z-index: 1000;
  transition: 0.5s;
}

.input-container.textarea label {
  top: 1rem;
  transform: translateY(0);
}

.btn {
 padding: 0.8rem 2rem;
  background-color: transparent;      /* ✅ key fix */
  border: 2px solid #ffffff;          /* ✅ visible white border */
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1;
  border-radius: 25px;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 600;
}

.btn:hover {
  background-color: transparent;
  color: #fff;
}

.input-container span {
  position: absolute;
  top: 0;
  left: 25px;
  transform: translateY(-50%);
  font-size: 0.8rem;
  padding: 0 0.4rem;
  color: transparent;
  pointer-events: none;
  z-index: 500;
}

.input-container span:before,
.input-container span:after {
  content: "";
  position: absolute;
  width: 10%;
  opacity: 0;
  transition: 0.3s;
  height: 5px;
  background-color: #1abc9c;
  top: 50%;
  transform: translateY(-50%);
}

.input-container span:before {
  left: 50%;
}

.input-container span:after {
  right: 50%;
}

.input-container.focus label {
  top: 0;
  transform: translateY(-50%);
  left: 25px;
   font-size: 0.85rem;
}

.input-container.focus span:before,
.input-container.focus span:after {
  width: 50%;
  opacity: 1;
}

.contact-info {
  padding: 3rem 3rem;
  position: relative;
}

.contact-info .title {
  color: #1abc9c;
}

.text {
  color: #333;
  margin: 1.5rem 0 2rem 0;
}

.information {
  display: flex;
  color: #555;
  margin: 0.7rem 0;
  align-items: center;
  font-size: 0.95rem;
}

.icon {
  width: 28px;
  margin-right: 0.7rem;
}

.social-media {
  padding: 2rem 0 0 0;
}

.social-media p {
  color: #333;
}

.social-icons {
  display: flex;
  margin-top: 0.5rem;
}

.social-icons a {
  width: 35px;
  height: 35px;
  border-radius: 5px;
  background: linear-gradient(45deg, #1abc9c, #149279);
  color: #fff;
  text-align: center;
  line-height: 35px;
  margin-right: 0.5rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.05);
}

.contact-info:before {
  content: "";
  position: absolute;
  width: 110px;
  height: 100px;
  border: 22px solid #1abc9c;
  border-radius: 50%;
  bottom: -77px;
  right: 50px;
  opacity: 0.3;
}

.big-circle {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: linear-gradient(to bottom, #1cd4af, #159b80);
  bottom: 50%;
  right: 50%;
  transform: translate(-40%, 38%);
}

.big-circle:after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background-color: #fafafa;
  border-radius: 50%;
  top: calc(50% - 180px);
  left: calc(50% - 180px);
}

.square {
  position: absolute;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(181%, 11%);
  opacity: 0.2;
}

@media (max-width: 850px) {
  .form {
    grid-template-columns: 1fr;
  }

  .contact-info:before {
    bottom: initial;
    top: -75px;
    right: 65px;
    transform: scale(0.95);
  }

  .contact-form:before {
    top: -13px;
    left: initial;
    right: 70px;
  }

  .square {
    transform: translate(140%, 43%);
    height: 350px;
  }

  .big-circle {
    bottom: 75%;
    transform: scale(0.9) translate(-40%, 30%);
    right: 50%;
  }

  .text {
    margin: 1rem 0 1.5rem 0;
  }

  .social-media {
    padding: 1.5rem 0 0 0;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 1.5rem;
  }

  .contact-info:before {
    display: none;
  }

  .square,
  .big-circle {
    display: none;
  }

  form,
  .contact-info {
    padding: 1.7rem 1.6rem;
  }

  .text,
  .information,
  .social-media p {
    font-size: 0.8rem;
  }

  .title {
    font-size: 1.15rem;
  }

  .social-icons a {
    width: 30px;
    height: 30px;
    line-height: 30px;
  }

  .icon {
    width: 23px;
  }

  .input {
    padding: 0.9rem 1.5rem;
  font-size: 1.05rem;
  }

  .btn {
    padding: 0.8rem 2rem;
  font-size: 1.05rem;
  font-weight: 600;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 4rem;
  }
}/* ================= FOOTER ================= */
.zula-footer {
  background: url("../assets/logo/logo.webp") center/cover no-repeat;
  color: #ddd;
}

/* Overlay */
.footer-overlay {
  background: rgba(0,0,0,0.85);
  padding: 50px 0 20px;
}

/* Custom container (Bootstrap-like but isolated) */
.footer-container {
  max-width: 1320px;
  margin: auto;
  padding: 0 15px;
}

/* TOP BAR */
.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;
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

/* DEVELOPER LINK */
.developer-link {
  color: #f5b041;
  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;
  }
}
/* ================= 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; }
}
