body, html {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", sans-serif;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Header styles */
.main-header {
  width: 100%;
  background-color: #2f3c4c87;
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.nav-buttons {
  display: flex;
  gap: 1rem;
}

.nav-btn {
  padding: 0.5rem 1rem;
  color: #fff;
  background: transparent;
  border: 1px solid #28a7bd;
  text-decoration: none;
  transition: 0.3s;
  font-size: 0.9rem;
  border-radius: 4px;
  text-transform: uppercase;
  font-weight: bold;
}

.nav-btn:hover {
  background: linear-gradient(to bottom right, #2f3c4c, #6e8bb7);
}

.nav-btn.active {
  background: linear-gradient(to bottom right, #2f3c4c, #6e8bb7);
}




.hero-section {
  background: url('https://newxel.com/wp-content/uploads/2022/08/mobile-app-developer-skills.jpeg') no-repeat center center/cover;
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-overlay {
  background: linear-gradient(to bottom right, #2f3c4c, #6e8bb7);
  padding: 3rem;
  border: 4px solid #aaa;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
  color: white;
}

.hero-content h2 {
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 0.5rem;
  color: #cbd5e0;
}

.hero-content h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-content p {
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.learn-btn {
  border: 1px solid #ff5c5c;
  padding: 0.6rem 1.2rem;
  color: #ff5c5c;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.learn-btn:hover {
  background: #ff5c5c;
  color: white;
}





/* Meeting Expectations Section */
.expectations-section {
  background-color: #62768c;
  padding: 4rem 2rem;
  color: #ffffff;
  border-top: 4px solid;
  border-bottom: 4px solid;
}

.expectations-header h2 {
  text-align: center;
  color: #66ccff;
  font-size: 2rem;
  margin-bottom: 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
}

.expectations-header h2::after {
  content: "";
  display: block;
  width: 160px;
  height: 3px;
  background: linear-gradient(to bottom right, #6e3306, #f88a36);
  margin: 0.5rem auto 0;
  border-radius: 5px;
}

.expectations-content {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
  justify-content: space-between;
  align-items: flex-start;
}

.expectations-image {
  flex: 1 1 350px;
  max-width: 500px;
}

.expectations-image img {
  width: 100%;
  border-radius: 8px;
  margin-bottom: 1.2rem;
}

.image-text h3 {
  font-size: 1rem;
  color: #a3e0ff;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.image-text p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

.expectations-details {
  flex: 1 1 400px;
}

.accordion-item {
  margin-bottom: 2rem;
  background-color: #245e682f;
  padding: 5px;
  border-bottom-right-radius: 80px;
  border-top-right-radius: 80px;
  border-left: 3px solid #ffffff;
  padding-left: 10px;
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}

.accordion-item h4 {
  font-size: 1rem;
  color: #e6aa1d;
  margin-bottom: 0.2rem;
}

.accordion-item p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #ffffff;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .expectations-content {
    flex-direction: column;
  }

  .expectations-header h2 {
    font-size: 1.5rem;
  }

  .accordion-item h4 {
    font-size: 1rem;
  }

  .image-text h3 {
    font-size: 0.9rem;
  }
}





.spotlight-section {
  padding: 4rem 2rem;
  background: url('/images/large-triangles.png') no-repeat center center/cover;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.spotlight-card {
  position: relative;
  height: 300px;
  background: var(--bg) center/cover no-repeat;
  border-radius: 16px;
  overflow: hidden;
  color: #fff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  isolation: isolate;
  border: 2px solid white;
}

.spotlight-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.068);
  backdrop-filter: blur(0px);
  transition: all 0.3s ease;
  z-index: 0;
}

.spotlight-card h3,
.spotlight-card p {
  position: relative;
  z-index: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.spotlight-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  text-decoration: underline;
  text-decoration-color: #28a7bd;
  text-underline-offset: 5px;
}

.spotlight-card p {
  opacity: 0;
  transform: translateY(10px);
  font-size: 0.95rem;
  line-height: 1.4;
  background-color: #28a7bd;
  padding: 5px;
  border-bottom-right-radius: 20px;
  border-top-right-radius: 20px;
}

.spotlight-card:hover::before {
  backdrop-filter: blur(4px);
  background: rgba(0, 0, 0, 0.4);
}

.spotlight-card:hover p {
  opacity: 1;
  transform: translateY(0);
}

/* Blur effect on non-hovered cards */
.spotlight-grid:hover .spotlight-card {
  filter: grayscale(0.8) blur(2px);
  opacity: 0.7;
  transform: scale(0.98);
}

.spotlight-grid:hover .spotlight-card:hover {
  filter: none;
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

  /* Force show on mobile click */
.spotlight-card.clicked p {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive tweaks */
@media (max-width: 600px) {
  .spotlight-card {
    height: 250px;
    padding: 1rem;
  }

  .spotlight-card h3 {
    font-size: 1.1rem;
  }

  .spotlight-card p {
    font-size: 0.9rem;
  }


}





.image-content-split {
  padding: 4rem 2rem;
  background-color: #081624;
  color: white;
  border-top: 4px solid white;
  border-bottom: 4px solid white;
}

.split-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: center;
}

.split-image img {
  width: 80%;
  max-width: 500px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid white;
}

.split-content {
  flex: 1 1 500px;
}

.subheading {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 0.5rem;
}

.main-heading {
  font-size: 2rem;
  font-weight: 700;
  color: #00aaff;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.divider {
  height: 3px;
  width: 160px;
  background-color: #ff4500; 
  margin-bottom: 1rem;
}

.main-paragraph {
  font-size: 1rem;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 2rem;
  max-width: 600px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.info-card {
  background-color: #090d1dbe;
  padding: 1.25rem;
  border-radius: 12px;
  transition: background 0.3s ease;
  box-shadow: 5px 9px 10px rgba(76, 82, 87, 0.3);
}

.info-card:hover {
  background-color: #0a0c12ec;
}

.info-card h4 {
  font-size: 1.1rem;
  color: #00aaff;
  margin-bottom: 0.5rem;
}

.info-card p {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.5;
}




.dual-card-section {
  padding: 4rem 2rem;
  background-color: hsl(207, 20%, 30%);
  color: white;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.impact-card {
  background-color: #1a1a1a28;
  border-radius: 16px;
  padding: 2rem;
  max-width: 500px;
  flex: 1 1 400px;
  box-shadow: 4px 5px 10px rgba(0,0,0,0.3);
  text-align: left;
}

.impact-card .subheading {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: white;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.impact-card .main-heading {
  font-size: 1.6rem;
  color: #00aaff;
  margin-bottom: 1rem;
}

.impact-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1rem;
}

.primary-text {
  font-size: 1rem;
  color: #fff;
  margin-bottom: 0.75rem;
}

.secondary-text {
  font-size: 0.95rem;
  color: #fff;
}





.inquiries {
  background-color: #121428;
  padding: 5rem 1rem;
  color: #fff;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.inquiries-header {
  text-align: center;
  margin-bottom: 3rem;
}

.inquiries-subheading {
  color: white;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

.inquiries-heading {
  color: #0f76d0;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.divider-line {
  width: 160px;
  height: 4px;
  background-color: #ff4500;
  margin: 0.5rem auto 1rem;
  border-radius: 6px;
}

.inquiries-intro {
  font-size: 1rem;
  max-width: 600px;
  margin: 0 auto;
  color: #fff;
}

.inquiries-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.double {
  flex-direction: row;
  gap: 1rem;
}

.form-group.double input {
  flex: 1;
}

.inquiries-form input,
.inquiries-form textarea {
  padding: 0.9rem 1rem;
  font-size: 1rem;
  border-bottom: 2px solid #00aaff;
  font-family: inherit;
  background-color: #26405a85;
  border-top: none;
  border-left: none;
  border-right: none;
  color: white;
  border-radius: 10px;
}

.inquiries-form input:focus,
.inquiries-form textarea:focus {
  outline: none;
  border-color: #007bff;
}

.inquiries-form textarea {
  resize: vertical;
  min-height: 150px;
}

.btn-submit {
  align-self: center;
  background-color: #ff4500;
  color: white;
  border: none;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

.btn-submit:hover {
  background-color: #d93b00;
}

@media (max-width: 768px) {
  .form-group.double {
    flex-direction: column;
  }

  .inquiries-heading {
    font-size: 2rem;
  }

  .btn-submit {
    width: 100%;
  }
}

