* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background: #1e1d1d;
  color: #333;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #eee;
  line-height: 1.6;
}

h1, h2, h3 {
  color: #13b1cd;
  font-weight: 600;
}

p {
  color: #ccc;
}


/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.2);  /* translucent black */
  backdrop-filter: blur(6px);          /* adds glass effect */
  padding: 5px 0;
  z-index: 10;
  transition: background 0.3s ease;
}


.navbar.scrolled {
  background: #1A1A1A;
  backdrop-filter: none;
}



.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  height: 110px;            /* slightly smaller */
  margin-top: -5px;       /* moves it up slightly */
  width: auto;
  transition: opacity 0.3s ease;
}


.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: #13b1cd;
}

/* Hero Section */
.hero {
  height: 100vh;
  background: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.6)),
    url('/assets/img/hero-bg.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-top: -80px; /* pulls hero up under navbar */
  padding-top: 80px; /* keeps content visible */

}


.hero h1 {
  font-size: 3rem;
  margin-bottom: 10px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.btn {
  padding: 10px 20px;
  border: 2px solid #13b1cd;
  color: #13b1cd;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
}

.btn:hover {
  background: #13b1cd;
  color: #fff;
}

/* Footer */
footer {
  background: #1A1A1A;
  color: #fff;
  text-align: center;
  padding: 15px 0;
  font-size: 0.9rem;
}



@media (max-width: 768px) {
  .logo {
    height: 70px;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .navbar {
    padding: 4px 0;
  }

  .navbar.scrolled {
    padding: 3px 0;
  }
}

@media (max-width: 768px) {
  .logo-wrap {
    width: 120px;
    height: 60px;
  }

  .logo {
    height: 60px;
  }
}



/* === Services Section === */
.services {
  padding: 100px 0;
  background: #111;
  color: #fff;
  text-align: center;
}

.section-title {
  font-size: 2.7rem;
  margin-bottom: 50px;
  color: #13b1cd;
  letter-spacing: 1.4px;
  display: block;
  width: 100%;
}





.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  padding: 40px 20px;
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}


.about-container {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s ease-out;
}

.about-container.visible {
  opacity: 1;
  transform: translateY(0);
}


.service-card:hover {
  transform: translateY(-10px);
  background: rgba(19, 177, 205, 0.1);
  border-color: #13b1cd;
}

.service-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  filter: invert(1);
  opacity: 0.8;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: #fff;
}

.service-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
}


.services-layout {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 60px;
  align-items: center;
}
.services-column {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.services-center {
  text-align: center;
}

.services-center .section-title {
  font-size: 2.8rem;
  line-height: 1.2;
  color: #13b1cd;
}
@media (max-width: 900px) {
  .services-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .services-center {
    order: -1;
    margin-bottom: 40px;
  }
}




/* === Fade-up animation === */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.6s ease-out;
}

.service-card.visible {
  animation: fadeUp 0.8s ease forwards;
}
.service-card.visible:nth-child(1) { animation-delay: 0s; }
.service-card.visible:nth-child(2) { animation-delay: 0.2s; }
.service-card.visible:nth-child(3) { animation-delay: 0.4s; }



/* === About Section === */
.about {
  background: #181818;
  color: #fff;
  padding: 100px 0;
}

.about-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.about-image {
  flex: 1;
  min-width: 320px;
}

.about-image img {
  width: 100%;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.5);
}

.about-text {
  flex: 1.2;
  min-width: 320px;
}

.about-text h2 {
  font-size: 2rem;
  color: #13b1cd;
  margin-bottom: 20px;
}

.about-text p {
  line-height: 1.8;
  color: #ddd;
  margin-bottom: 20px;
}



/* ----- Navbar layout (flex) ----- */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(50,50,50,0.6);
  backdrop-filter: blur(6px);
  padding: 8px 0;           /* tighter but still roomy */
  z-index: 1000;
  transition: background 0.3s ease, padding 0.2s ease;
}

/* container inside navbar - use flex to align items */
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between; /* logo left, nav right */
  gap: 20px;
}

/* logo wrap - keep it in flow (not absolute) */
.logo-wrap {
  position: relative;
  width: 160px; /* fixed width to prevent layout shift */
  height: 90px; /* same as logo height */
  display: flex;
  align-items: center;
  justify-content: center;
}

/* logos - both inline, stacked visually via opacity */
.logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: auto;
  transition: opacity 0.4s ease, transform 0.4s ease;
}




/* initially show main, hide alt */
.logo-main {
  opacity: 1;
  transform: translateY(0);
  transform: scale(1.1);
}
.logo-alt {
  opacity: 0;
  transform: translateY(-8px);
  pointer-events: none;

}


/* when navbar becomes solid */
.navbar.scrolled {
  background: #1A1A1A;
  backdrop-filter: none;
  padding: 6px 0;
}

/* swap logos on scroll */
.navbar.scrolled .logo-main {
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
}
.navbar.scrolled .logo-alt {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transform: scale(1.0);
}

/* nav links layout */
nav {
  display: flex;
  align-items: center;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  padding: 12px 0;
  display: inline-block;
  line-height: 1;
}
.nav-links a:hover { color: #13b1cd; }

/* Ensure tall enough clickable area for nav items */
.nav-links li { display: flex; align-items: center; }

/* Responsive: on small screens stack / collapse */
@media (max-width: 768px) {
  .navbar .container { flex-wrap: wrap; }
  .logo { height: 70px; }
    .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .nav-links a {
    font-size: 14px;
    padding: 8px 6px;
  }
}

@media (max-width: 768px) {
  .nav-links li:last-child a {
    background: #13b1cd;
    color: #fff;
    padding: 8px 12px;
    border-radius: 6px;
  }

  .nav-links li:last-child a:hover {
    background: #15c9e6;
  }
}


@media (max-width: 768px) {
  .navbar .container {
    flex-direction: column;
    align-items: center;
    gap: 6px;
  }

  nav {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .nav-links a {
    border-bottom: 2px solid transparent;
  }

  .nav-links a.active {
    border-bottom: 2px solid #13b1cd;
  }
}
@media (max-width: 768px) {
  .nav-links a {
    padding: 10px 8px;
  }
}


/* === Contact Section === */
.contact {
  background: #101010;
  color: #fff;
  padding: 100px 0;
  text-align: center;
}

.contact-subtitle {
  color: #ccc;
  max-width: 700px;
  margin: 10px auto 50px auto; /* adds a little breathing room below title */
  font-size: 1rem;
  line-height: 1.6;
}


.contact-content {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 60px;
}

.contact-form {
  flex: 1;
  min-width: 320px;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border: none;
  border-radius: 6px;
  background: rgba(255,255,255,0.1);
  color: #fff;
  font-size: 1rem;
  resize: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  background: rgba(255,255,255,0.15);
  box-shadow: 0 0 5px #13b1cd;
}

.contact-form .btn {
  align-self: flex-start;
  cursor: pointer;
  background: #13b1cd;
  color: #fff;
  border: none;
  padding: 12px 28px;
  font-size: 1rem;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0px transparent;
}

.contact-form .btn:hover {
  box-shadow: 0 0 12px #13b1cd;
  transform: translateY(-2px);
}

.contact-form .btn:hover {
  background: #15c9e6;
  box-shadow: 0 0 15px #13b1cd;
}


.contact-info {
  flex: 1;
  min-width: 280px;
  max-width: 400px;
  text-align: left;
}

.contact-info h3 {
  color: #13b1cd;
  margin-bottom: 20px;
}

.contact-info p {
  margin-bottom: 12px;
  color: #ddd;
  line-height: 1.6;
}

/* Responsive layout */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  .contact-info {
    text-align: center;
  }
}




/* ===== Footer ===== */
.footer {
  background: #0d0d0d;
  color: #bbb;
  text-align: center;
  padding: 40px 0 30px 0;
  font-size: 0.95rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .brand {
  color: #13b1cd;
  font-weight: 600;
}

.footer-credit {
  margin-top: 6px;
  color: #888;
  font-size: 0.9rem;
}

.footer .dev-name {
  color: #13b1cd;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer .dev-name:hover {
  color: #15c9e6;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer {
    font-size: 0.85rem;
  }
}



@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .nav-links {
    flex-direction: column;
    gap: 10px;
  }
  .contact-form input,
  .contact-form textarea {
    font-size: 0.9rem;
  }
}


.footer {
  border-top: 1px solid rgba(255,255,255,0.1);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}



/* ===============================
   Quote Page Heading Styling
   =============================== */
#quote .section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #00ffd5;
  text-shadow: 0 0 10px #00ffd5;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
  position: relative;
}

#quote .section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  margin: 12px auto 0;
  background: #00ffd5;
  border-radius: 10px;
  box-shadow: 0 0 10px #00ffd5;
}

#quote .section-subtext {
  text-align: center;
  color: #bdbdbd;
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 40px;
  padding: 0 15px;
}


/* ===============================
   Quote Page Heading Animation
   =============================== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


.previous-id {
  text-align: center;
  color: #00ffd5;
  margin: 10px auto 30px;
  font-size: 1rem;
  text-shadow: 0 0 8px #00ffd5;
  transition: opacity 0.8s ease;
}

/* --- Global Footer (Full Width, Clean Layout) --- */
.footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 40px 0 30px 0;
  border-top: 1px solid #222;
  width: 100vw;
  margin: 0;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer .brand {
  color: #13b1cd;
  font-weight: 600;
}

.footer a,
.footer-link,
.footer .dev-name {
  color: #00aaff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}
.footer .li {
  color: #0a7cc2;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.footer a:hover,
.footer-link:hover,
.footer .dev-name:hover {
  color: #33ccff;
  text-decoration: underline;
}


.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}

.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4);
}

.whatsapp-float {
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.5);
}

.whatsapp-float:hover {
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.8);
}


.footer-content-email {
  margin-top: 2px;
  font-size: 0.8rem;
  text-align: right;
}

.footer-content-email a {
  color: #888;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-content-email a:hover {
  color: #1e90ff;
}

.footer-contacts {
  margin-top: 6px;
  font-size: 0.85rem;
  color: #a0a0a0;
  text-align: center;
}

.footer-contacts a {
  color: #a0a0a0;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-contacts a:hover {
  color: #1e90ff;
}

.footer-sep {
  margin: 0 8px;
  color: #666;
}



