* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  /* font-family: "Neuton", serif; */
}

body {
  background: #05052d;
  color: #fff;
}

/* NAVBAR */
.navbar {
  padding: 15px 30px;
  position: relative;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* LOGO */
.logo {
  font-family: "Neuton", serif;
  font-size: 22px;
  font-weight: 700;
}

.logo a {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;

  position: relative;
  gap: 10px;
  transition: transform 0.3s ease;
}

.logo img {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  margin-right: 10px;
  vertical-align: middle;

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.logo span {
  font-size: 18px;
  font-weight: 500;
  transition: color 0.3s ease;
}

/* UNDERLINE GRAPHIC */
.logo span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #5eead4, #38bdf8);
  transition: width 0.3s ease;
  border-radius: 2px;
}

/* HOVER EFFECTS */
.logo a:hover {
  transform: translateY(-2px);
}

.logo a:hover img {
  box-shadow: 0 6px 18px rgba(94, 234, 212, 0.45);
  transform: rotate(-2deg) scale(1.05);
}

.logo a:hover span {
  color: #5eead4;
}

.logo a:hover span::after {
  width: 100%;
}

/* NAV MENU */
.nav-menu {
  list-style: none;
  display: flex;
  gap: 20px;
  font-size: 14px;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  font-family: "Neuton", serif;
  color: #ffffff;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color 0.3s ease;

  font-weight: 400;
  font-size: 20px;
}

.nav-menu li a.active {
  color: #25d366;
  font-weight: 600;
}

/* HOVER GRAPHICS */
.nav-menu li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, #5eead4, #38bdf8);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-menu li a:hover::after {
  width: 100%;
}

.nav-menu li a:hover {
  color: #5eead4;
}

/* HAMBURGER ICON */
.menu-toggle {
  width: 28px;
  height: 22px;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.menu-toggle span {
  height: 3px;
  width: 100%;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Animate to X */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* BUTTON */
.btn {
  background: #fff;
  color: #000;
  padding: 8px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;

  font-weight: 700;
  font-size: 20px;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.25);
  color: #38bdf8;
}

.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 768px) {
  .navbar {
    padding: 16px 20px;
  }

  .nav-container {
    /* flex-direction: column;
    align-items: center;
    gap: 18px; */

    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  /* MENU */
  .nav-menu {
    /* flex-direction: column;
    align-items: center; 
    gap: 14px; */

    position: absolute;
    top: 70px;
    left: 0;
    width: 100%;
    background: #05052d;

    flex-direction: column;
    align-items: center;
    gap: 16px;

    padding: 20px 0;

    display: none;
    z-index: 999;
  }

  .nav-menu.active {
    display: flex;
  }

  .nav-menu li a {
    font-size: 18px;
    padding: 6px 12px;
  }

  /* BUTTON */
  .btn {
    margin-top: 10px;
    /* width: 100%; */
    max-width: 220px;
    text-align: center;
  }
}

/*--------------------------- FOOTER ---------------------*/
.site-footer {
  padding: 20px 16px;
  color: #fff;
}

.footer-help {
  background: #f6eaea;
  color: #000;
  padding: 14px 18px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.footer-help p {
  margin: 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.whatsapp-btn {
  background: #5b5bf0;
  color: #fff;
  padding: 6px 14px;
  border-radius: 20px;
  text-decoration: none;
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;

  transition:
    background 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.whatsapp-btn:hover {
  background: #4a4ad8;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(91, 91, 240, 0.45);
}
/* ===============================
   FOOTER BASE
================================ */
.site-footer {
  background: #05052d;
  color: #ffffff;
  font-family: inherit;
}

/* ===============================
   HELP BAR
================================ */
.footer-help {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  background: #02021f;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-help p {
  margin: 0;
  font-size: 15px;
  color: #e5e5e5;
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* ===============================
   COMPANY CONTACT
================================ */
.company-contact {
  padding: 40px 20px;
}

.company-contact-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 50px;
  flex-wrap: wrap;
}

/* ===============================
   LOGO
================================ */
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  height: 38px;
}

.footer-logo h3 {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

/* ===============================
   COLUMNS
================================ */
.company-col {
  flex: 1;
  min-width: 220px;
}

.company-col h3 {
  font-size: 20px;
  margin-bottom: 14px;
}

.company-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.company-col li {
  margin-bottom: 10px;
}

.company-col a {
  color: #e5e5e5;
  text-decoration: none;
  font-size: 15px;
  position: relative;
  transition: color 0.3s ease;
}

.company-col a:hover {
  color: #5eead4;
}

.company-col a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0%;
  height: 2px;
  background: #5eead4;
  transition: width 0.3s ease;
}

.company-col a:hover::after {
  width: 100%;
}

.company-col p {
  font-size: 15px;
  line-height: 1.6;
  color: #e5e5e5;
  margin-bottom: 8px;
}

/* ===============================
   SOCIAL ICONS
================================ */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 14px;
}

.footer-socials a {
  width: 34px;
  height: 34px;
  background: #ffffff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.footer-socials img {
  width: 16px;
  height: 16px;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0,0,0,0.2);
}

/* ===============================
   FOOTER BOTTOM
================================ */



/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .company-contact-container {
    flex-direction: column;
    gap: 30px;
  }

  .footer-help {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .company-contact {
    padding: 28px 16px;
  }

  .footer-logo img {
    height: 32px;
  }

  .footer-logo h3 {
    font-size: 18px;
  }

  .company-col h3 {
    font-size: 17px;
  }

  .company-col a,
  .company-col p {
    font-size: 14px;
  }

  .footer-socials a {
    width: 30px;
    height: 30px;
  }

  .footer-socials img {
    width: 14px;
    height: 14px;
  }


  
}


/* ============================================= */



.float-contact {
  position: fixed;
  right: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.float-btn {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  color: #fff;
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.float-btn:hover {
  transform: scale(1.1);
}

/* Button Colors */
.whatsapp { background: #25D366; }
.call { background: #007bff; }
.email { background: #ff3b3b; }

/* Mobile adjustment */
@media (max-width: 768px) {
  .float-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }


  .embedded-section {
    padding: 10px ;
    margin: 10px ;
}


.ai-section {
    padding: 40px 20px;
    /* padding-left: 0px; */
    background: #ffffff;
}


  .embedded-section .deliver-item {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    padding: 2px 5px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
}

}


a{
  text-decoration: none !important;
}




/* ============================================= */





/* ========== */


.footer-bottom-bar {
  border-top: 1px solid #1e293b;
  padding: 18px 0;
  /* background: #0f172b; */
  color: #94a3b8;
  font-size: 14px;
}

/* FLEX ALIGNMENT */
.footer-bottom-flex {
  display: flex;
  justify-content: space-between; /* LEFT & RIGHT */
  align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* TEXT RESET */
.footer-bottom-flex p {
  margin: 0;
}

/* DESIGNER LINK */
.designer a {
  color: #ffea00ea;
  font-weight: bold;
  text-decoration: none;
}

.designer a:hover {
  text-decoration: underline;
}

/* 📱 MOBILE */
@media (max-width: 768px) {
  .footer-bottom-flex {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}



/* ======================== */


/* Floating Contact Buttons */
.floating-contact {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.float-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    color: #fff;
    font-size: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

/* Individual colors */
.float-btn.call {
    background: #0d6efd;
}

.float-btn.whatsapp {
    background: #25D366;
}

.float-btn.email {
    background: #dc3545;
}

/* Mobile Optimization */
@media (max-width: 576px) {
    .float-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}


/* ======================== */