:root {
  /* Fluid font sizes */
  --fs-xs: clamp(0.75rem, 0.7rem + 0.3vw, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
  --fs-md: clamp(1rem, 0.95rem + 0.5vw, 1.125rem);
  --fs-lg: clamp(1.125rem, 1rem + 0.6vw, 1.25rem);

  /* Fluid spacing */
  --space-xs: clamp(0.25rem, 0.2rem + 0.3vw, 0.5rem);
  --space-sm: clamp(0.5rem, 0.4rem + 0.4vw, 0.75rem);
  --space-md: clamp(0.75rem, 0.6rem + 0.5vw, 1.25rem);
  --space-lg: clamp(1rem, 0.9rem + 0.6vw, 2rem);
  --space-xl: clamp(1.5rem, 1.2rem + 1vw, 3rem);

  /* Layout width */
  --container-max: clamp(75rem, 90vw, 90rem);
}

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

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

.navbar {
  /* padding: 0.9375rem 1.875rem; */
  padding: var(--space-md) var(--space-xl);
  position: relative;
}

.nav-container {
  max-width: var(--container-max);
  margin-inline: auto;

  /* display: flex; */
  /* justify-content: space-between; */
  /* align-items: center; */

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.logo {
  flex: 0 0 auto;
}

.logo img {
  height: 2.5rem;

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

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

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

.logo span {
  color: #126782;
  text-decoration: none;
  font-size: var(--fs-sm);
  position: relative;
  font-weight: 700;
}

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

/* .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;
} */

.logo a:hover {
  transform: translateY(-0.125rem);
}

.logo a:hover img {
  box-shadow: 0 0.375rem 1.125rem 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 {
  list-style: none;
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  align-items: center;
  flex: 1;

  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu li a {
  color: #126782;
  text-decoration: none;
  /* padding: var(--space-xs) var(--space-sm); */
  border-radius: 0.5rem;
  transition: color 0.3s ease;

  font-weight: 400;
  font-size: var(--fs-sm);

  position: relative;
}

.nav-menu li a.active {
  font-weight: 600;
}

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

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-btn-desktop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.nav-btn-mobile {
  display: none;
}

.menu-toggle {
  width: clamp(2rem, 2vw, 2.5rem);
  height: clamp(1.5rem, 1.5vw, 2rem);

  display: none;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;

  padding: 0.25rem;
}

.menu-toggle span {
  height: clamp(0.15rem, 0.15vw, 0.2rem);
  background: #000;
  border-radius: 0.25rem;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(0.3125rem, 0.3125rem);
}

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

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

.navbar .btn {
  list-style: none;

  border: 1px solid #219ebc;
  background: #ffb703;
  color: #000;

  padding: 0.5rem 1.125rem;

  border-radius: 0.5rem;
  cursor: pointer;

  font-weight: 400;

  font-size: var(--fs-sm);

  min-height: 2.75rem;

  text-decoration: none;

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

.btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

/* ---------- RESPONSIVE ---------- */
/* @media (max-width: 927) {
  .nav-menu {
    gap: var(--space-xs);
  }
} */

@media (max-width: 768px) {
  .navbar {
    padding: 1rem 1.25rem;
  }

  .nav-container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-btn-desktop {
    display: none;
  }

  .nav-btn-mobile {
    display: block;
  }

  .nav-menu {
    position: absolute;
    /* top: 4.375rem; */
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;

    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);

    padding: var(--space-lg) 0;

    display: none;
    z-index: 999;
  }

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

  .nav-menu li a {
    /* font-size: 1.125rem; */
    /* font-size: var(--fs-md); */
    /* padding: 0.375rem 0.75rem; */
    padding: var(--space-sm) var(--space-lg);
  }

  /* BUTTON */
  .btn {
    margin-top: 0.625rem;
    width: 100%;
    max-width: 16rem;
    text-align: center;
  }
}

/* -------------------------FOOTER----------------------------- */
.footer {
  background: #023047;

  color: #ffffff;

  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top,
    rgba(255, 255, 255, 0.06),
    transparent 60%
  );

  pointer-events: none;
}

.footer-container {
  max-width: clamp(75rem, 90vw, 90rem);
  margin-inline: auto;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;

  gap: clamp(2rem, 4vw, 4rem);
  padding: clamp(2.5rem, 5vw, 5rem) clamp(1.5rem, 4vw, 4rem);
}

.footer-brand {
  max-width: clamp(18rem, 25vw, 22rem);
}

.footer-brand img {
  height: clamp(2.25rem, 3vw, 2.75rem);
  /* margin-bottom: clamp(1rem, 2vw, 1.5rem); */
}

.footer-brand p {
  font-size: clamp(0.9rem, 0.9vw, 1rem);

  line-height: 1.7;
  margin-bottom: clamp(1.25rem, 2vw, 2rem);
}

.social-links {
  display: flex;
  gap: clamp(0.75rem, 1.5vw, 1.25rem);
}

.social-links a {
  width: clamp(2.5rem, 4vw, 3rem);
  height: clamp(2.5rem, 4vw, 3rem);

  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;

  background: rgba(255, 255, 255, 0.08);
  border: 0.0625rem solid rgba(255, 255, 255, 0.15);
  border-radius: clamp(0.5rem, 1vw, 0.75rem);

  transition:
    background 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.social-links img {
  display: block;
  width: clamp(1.1rem, 1.4vw, 1.4rem);
  height: clamp(1.1rem, 1.4vw, 1.4rem);
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.social-links a:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: transparent;
  transform: translateY(-0.2rem);
}

.social-links a:hover img {
  transform: scale(1.08);
}

.footer-col h4 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
  color: #ffffff;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: clamp(0.6rem, 1vw, 0.9rem);
}

.footer-col a {
  color: #cfd8e3;

  font-size: clamp(0.85rem, 0.9vw, 0.95rem);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-col p {
  font-size: clamp(0.85rem, 0.9vw, 0.95rem);

  line-height: 1.6;
  /* margin-bottom: clamp(0.5rem, 1vw, 0.75rem); */

  word-break: break-word;
  overflow-wrap: break-word;
}

.footer-col .contact-info {
  margin-bottom: clamp(1rem, 2vw, 1.5rem);
}

.footer-col .contact-info h4 {
  margin-bottom: 0.2rem;
}

.footer-btn {
  margin-top: 1.5rem;
}

.footer-btn a {
  color: #000;
}

.footer-enquire-btn {
  list-style: none;

  background: #ffb703;
  color: #000;

  padding: 0.5rem 1.125rem;

  border-radius: 0.5rem;
  cursor: pointer;

  font-weight: 400;

  font-size: var(--fs-sm);

  min-height: 2.75rem;

  text-decoration: none;

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

.footer-btn .footer-enquire-btn:hover {
  transform: translateY(-0.125rem);
  box-shadow: 0 0.75rem 1.5rem rgba(0, 0, 0, 0.15);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);

  /* display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem; */

  padding: clamp(1.25rem, 2.5vw, 2rem) clamp(1.5rem, 4vw, 4rem);

  font-size: clamp(0.8rem, 0.8vw, 0.9rem);

  text-align: center;
}

/* .footer-legal {
  display: flex;
  gap: clamp(1.25rem, 3vw, 2.5rem);
}

.footer-legal a {
  color: #cfd8e3;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #5eead4;
} */

@media (min-width: 90rem) {
  .footer {
    padding-inline: clamp(8rem, 12vw, 14rem);
  }
}

@media (max-width: 48rem) {
  .footer-container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-links a {
    width: clamp(2.75rem, 8vw, 3.25rem);
    height: clamp(2.75rem, 8vw, 3.25rem);
  }
}





.social-links {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.social-links a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
  color: #fff;
  transition: 0.3s ease;
  text-decoration: none;
}

/* Instagram Gradient */
.social-links .instagram {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
}

/* Facebook Blue */
.social-links .facebook {
  background: #1877f2;
}

/* Twitter / X Black */
.social-links .twitter {
  background: #000000;
}

/* Hover Effect */
.social-links a:hover {
  transform: translateY(-4px) scale(1.05);
}


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








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

/* Common Button Style */
.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.25);
    transition: all 0.3s ease;
}

/* Hover Effect */
.float-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}

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

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

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

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



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







.footer-bottom-bar {
  border-top:1px solid #ffffffc9 ;
  padding: 18px 0;
  background: #023047;
  color: #ffffff;
  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;
  }
}


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