
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body, html {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Segoe UI', sans-serif;
  background: transparent;
}
.particle-canvas {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
}
.tech-waves-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.tech-waves-bg svg {
  width: 100%;
  height: 100%;
  display: block;
}

.navbar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 1rem 2rem;
  background: transparent;       /* Remove white background */
  box-shadow: none;              /* Remove shadow */
  position: absolute;            /* Make it blend with hero */
  top: 0;
  z-index: 10;
}

/* Logo Section Wrapper */
.logo-container {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.logo {
  height: 90px;
}

.slogan {
  font-size: 1rem;
  color: #333; /* Make text clearly visible on white */
  font-weight: 500;
}


.nav-links {
  display: flex;
  list-style: none;
  gap: 1.5rem;
  align-items: center;
}
.nav-links a {
  text-decoration: none;
  color: #111;
  font-weight:  bold;
}
.cta {
  padding: 0.6rem 1.2rem;
  background: #00aaff;
  margin-right: 1rem; /* Adjust spacing here */
  color: white;
  border-radius: 1.5rem;
  font-size: 1rem;
  text-decoration: none; /* ⬅️ This removes the underline */
  display: inline-block;
  transition: background 0.3s ease;
}

.cta:hover {
  background: #008ecc;
}

.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  margin-top: 120px;
  background: transparent;
}
.hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero p {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
/* Dropdown Container */
.dropdown-container {
  display: none;
  position: absolute;
  top: 70px;
  left: 50rem; /* adjust according to "OFFERINGS" position */
transform: none;
  width: 320px;
  background: white;
  border-radius: 12px;
  padding: 1.5rem 1.2rem;
  box-shadow: 0 8px 30px #03a9f4;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.dropdown-container.active {
  display: block;
  opacity: 1;
  visibility: visible;
}

.dropdown-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dropdown-item {
  margin-bottom: 0.7rem;
  background: #f8f9fa;
  padding: 0.65rem 1rem;
  text-align: center;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba#03a9f4;
  transition: background-color 0.2s ease;
}

.dropdown-item:hover {
  background-color: #e6f4ff;
}

.dropdown-item a {
  color: #03a9f4;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  display: block;
}


/* === Portfolio Section === */
#portfolio {
  padding: 6rem 2rem;
  background-color: #f7f7f7;
  text-align: center;
}

#portfolio h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

#portfolio p {
  font-size: 1.2rem;
  max-width: 900px;
  margin: 0 auto 2rem;
  line-height: 1.6;
}

.filter-buttons {
  margin-bottom: 2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.filter-buttons button {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  background-color: #eee;
  transition: 0.3s;
}

.filter-buttons button.active,
.filter-buttons button:hover {
  background-color: #00aaff;
  color: white;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.portfolio-item {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s;
}

.portfolio-item:hover {
  transform: translateY(-5px);
}

.portfolio-item img {
  width: 100%;
  height: auto;
  display: block;
}

.portfolio-item h4 {
  padding: 1rem;
  font-size: 1rem;
  font-weight: 500;
  background-color: white;
}


/* Contact Section */
#contact {
  padding: 4rem 2rem;
  background: #ffffff;
  color: #222;
  font-family: 'Segoe UI', sans-serif;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-heading {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
}

.contact-heading span {
  color: #00aaff;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 0.75rem 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  width: 100%;
  font-family: inherit;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #00aaff;
  box-shadow: 0 0 0 2px rgba(0, 170, 255, 0.2);
}

.footer {
  background-color: #f9fbfd; /* light background to match your page */
  color: #222;
  padding: 60px 40px 20px;
  font-family: 'Segoe UI', sans-serif;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-column {
  flex: 1 1 250px;
  margin: 20px 0;
}

.footer-brand {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
  color: #000;
}

.footer-tagline {
  font-size: 1rem;
  color: #555;
}

.footer-title {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
  color: #000;
}

.footer-links,
.footer-social {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-social li {
  margin-bottom: 8px;
}

.footer-links a,
.footer-social a {
  color: #444;
  text-decoration: none;
  transition: color 0.3s;
  display: flex;
  align-items: center;
}

.footer-links a:hover,
.footer-social a:hover {
  color: #00bfff;
}

.footer-social img {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}

.footer-bottom {
  text-align: center;
  font-size: 0.9rem;
  color: #777;
  margin-top: 40px;
  border-top: 1px solid #e2e2e2;
  padding-top: 20px;
}



@media (max-width: 768px) {
  .contact-heading {
    font-size: 2rem;
  }

  .contact-form {
    grid-template-columns: 1fr;
  }
}
.submit-btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.95rem;
  background-color: #00aaff;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  display: block;
  margin: 1.5rem auto;
  width: auto;
  min-width: 125px;
  text-align: center;
}

.submit-btn:hover {
  background-color: #008ecc;
}
.capability-section {
  background: linear-gradient(to bottom, #c7f0ff, #ffffff);
  padding: 4rem 2rem;
  color: #222;
  text-align: center;
}

.capability-grid {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.capability-item {
  background-color: rgba(255, 255, 255, 0.9);
  padding: 1.2rem;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.capability-item.active {
  background-color: #00c4cc;
  color: white;
  
}

.capability-item img {
  width: 28px;
  height: 28px;
  margin-bottom: 0.3rem;
  object-fit: contain;
}

.capability-item p {
  font-size: 0.85rem;
  margin: 0;
}

.capability-content h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: #111;
}

.capability-content p {
  max-width: 800px;
  margin: auto;
  font-size: 1rem;
  color: #444;
  line-height: 1.6;
}



@media (max-width: 768px) {
  .submit-btn {
    grid-column: span 1;
    width: 100%;
  }
}


/* Dropdown Grid */
.dropdown-grid {
  display: flex;
  justify-content: center;
  gap: 3rem;
  text-align: left;
}

.dropdown-grid h4 {
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.dropdown-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.dropdown-grid li {
  margin: 0.5rem 0;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  background: white;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
  transition: background 0.3s, transform 0.3s;
}

.dropdown-grid li:hover {
  background: #f0faff;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .dropdown-grid {
    flex-direction: column;
    align-items: center;
  }
}

