/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  background: linear-gradient(to bottom, #e6f0ff 0%, #ffffff 40%);
  color: #1a1a1a;
  line-height: 1.6;
}

/* Header */
header {
  position: sticky;
  top: 0;
  background-color: #377ee2;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 8px 15px;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo img {
  height: 30px;
}
/* Hide hamburger by default */
.menu-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: white;
}

nav {
  display: flex;
  gap: 20px;
}
.menu-toggle {
  display: none;
  font-size: 28px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (max-width: 768px) {
  nav {
    display: none;
    flex-direction: column;
    position: absolute;
    /* Adjust top to match header height */
    top: 60px; 
    right: 10px;
    background: white;
    border-radius: 8px;
    padding: 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 9999;
  }
  nav.show {
    display: flex;
  }
  .menu-toggle {
    display: block;
  }
}


/* Hero */
.hero {
  text-align: center;
  padding: 100px 20px 60px;
  background: linear-gradient(to right, #e0e7ff, #f4f7ff);
}
.hero h1 {
  font-size: 2.8rem;
  color: #002e6e;
  margin-bottom: 20px;
}
.hero p {
  font-size: 1.2rem;
  color: #333;
}

/* Section */
section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
}
h2 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: #002e6e;
  text-align: center;
}

/* Services */
 .services {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .service {
    background: #f4f4f4;
    padding: 1rem;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s;
  }

  .service:hover {
    background: #e0e0e0;
  }

  .service-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .service.active .service-content {
    max-height: 200px; /* adjust depending on content */
  }
/* Steps Grid */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}
.step-box {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 5px solid #0047ab;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Projects */
.projects {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.project {
  background: #ffffff;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
}
.project:hover {
  transform: translateY(-4px);
  border-left: 4px solid #0047ab;
}

/* Floating Button */
.floating-call-button {
  position: fixed;
  bottom: 150px;
  right: 20px;
  background-color: #0073e6;
  color: white;
  padding: 12px 18px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  z-index: 999;
}
.floating-call-button:hover {
  background-color: #005bb5;
}

/* Footer */
footer {
  background-color: #0077cc;
  color: white;
  padding: 20px 10px;
  text-align: center;
}
footer a {
  color: white;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
}
footer a:hover {
  text-decoration: underline;
}
.contact-section {
  max-width: 700px;
  margin: 60px auto;
  padding: 40px 20px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.contact-section h2 {
  font-size: 2rem;
  color: #002e6e;
  margin-bottom: 15px;
}

.contact-section p {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 25px;
}

.email-link {
  font-size: 1.1rem;
  color: #0047ab;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
.email-link:hover {
  text-decoration: underline;
}

.call-button {
  display: inline-block;
  padding: 12px 20px;
  background-color: #0047ab;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
.call-button:hover {
  background-color: #002e6e;
}
.whatsapp-popup {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e6f7ec;
  border: 1px solid #25d366;
  padding: 1rem 1.2rem;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  max-width: 300px;
  z-index: 1000;
  font-family: sans-serif;
}

.popup-close {
  background: none;
  border: none;
  font-size: 18px;
  position: absolute;
  top: 6px;
  right: 10px;
  cursor: pointer;
}

.whatsapp-button {
  display: inline-block;
  margin-top: 10px;
  padding: 8px 12px;
  background: #25d366;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
}

.whatsapp-button:hover {
  background: #1ebe5b;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
nav {
  display: flex;
  gap: 20px;
}

.container {
      max-width: 960px;
      margin: 60px auto;
      padding: 40px;
      background-color: #ffffff;
      border-radius: 16px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
    }

    h1 {
      text-align: center;
      font-size: 32px;
      color: #0066cc;
      margin-bottom: 30px;
    }

    iframe {
      width: 100%;
      height: 800px;
      border: none;
      margin-top: 40px;
      border-radius: 8px;
    }
    .privacy-policy {
      font-family: 'Inter', sans-serif;
      max-width: 900px;
      margin: 40px auto;
      background-color: #fff;
      padding: 40px;
      border-radius: 16px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
      color: #333;
    }

    .privacy-policy h1 {
      font-size: 2.5rem;
      margin-bottom: 1rem;
      color: #1a1a1a;
      border-bottom: 2px solid #e0e0e0;
      padding-bottom: 0.5rem;
    }

    .privacy-policy h2 {
      margin-top: 2rem;
      font-size: 1.4rem;
      color: #222;
    }

    .privacy-policy p {
      font-size: 1.05rem;
      line-height: 1.8;
      margin-top: 1rem;
    }

    .privacy-policy ul {
      margin-left: 1.2rem;
      margin-top: 0.5rem;
    }

    .privacy-policy ul li {
      margin-bottom: 0.5rem;
    }

    .privacy-policy .updated-date {
      margin-top: 2.5rem;
      font-size: 0.95rem;
      color: #666;
      text-align: right;
    }

    .highlight {
      font-weight: 600;
      color: #0077b6;
    }
#terms {
  background: #f9f9f9;
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
}

#terms h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

#terms ul {
  list-style: none;
  padding-left: 0;
}

#terms li {
  margin-bottom: 1rem;
  line-height: 1.6;
}

#terms strong {
  color: #1a1a1a;
}
