
.page-title {
  font-size: 32px;
  color: white;
  margin: 0;
}
body {
  background: url('futuristic-blue-background-with-glows.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  background-repeat: no-repeat;
  background-position: center;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Header */
header {
  background-color: rgba(255, 255, 255, 0.1);
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  backdrop-filter: blur(5px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
header img {
  width: 50px;  /* or even 40px if needed */
  vertical-align: middle;
}
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  width: 40px;
  height: auto;
}

.brand-name {
  color: white;
  font-size: 20px;
  font-weight: bold;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
/* Optional: Section title below header */
.page-title {
  text-align: center;
  color: white;
  font-size: 28px;
  margin: 30px auto 10px;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.title {
  font-size: 24px;
  vertical-align: middle;
}
nav {
  display: flex;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 10px 0;
  gap: 15px;
}

nav a {
  color: white; /* ✅ This ensures all links are white */
  text-decoration: none;
  font-weight: bold;
  font-size: 16px;
}
.hero {
  text-align: center;
  padding: 60px 20px;
  background-color: rgba(255, 255, 255, 0.1); /* transparent white */
  backdrop-filter: blur(5px); /* optional */
  -webkit-backdrop-filter: blur(5px);
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
  color: white;
}
.hero p {
  color: #f1f1f1;
}
.hero h1 {
  color: #ffffff;
}
button {
  background-color: #004c99;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  transition: background-color 0.3s ease;
}
button:hover {
  background-color: #003366;
}
.form-section {
  padding: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  max-width: 700px;
  margin: 40px auto;
  color: white;
  border-radius: 10px;
}
form input,
form select,
form textarea {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}
form {
  display: grid;
  gap: 15px;
}
input, select, textarea {
  padding: 12px;
  font-size: 16px;
  border: 1px solid #ccc;
  border-radius: 5px;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 40px;
}
.card {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 8px rgba(0,0,0,0.1);
  padding: 20px;
  text-align: center;
}
.card img {
  width: 40px;
  margin-bottom: 10px;
}
.scroll-services {
  background-color: rgba(255, 255, 255, 0.1); /* semi-transparent white */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 40px 20px;
  border-radius: 12px;
  margin: 40px auto;
  max-width: 1000px;
}
.scroll-services h2 {
  color: white;           /* Makes the text white */
  text-align: center;
  font-size: 28px;
  margin-bottom: 20px;
}
.scroll-container {
  display: flex;
  overflow-x: auto;
  gap: 20px;
  padding: 20px 10px;
  scroll-snap-type: x mandatory;
}

.scroll-card {
  background-color: #ffffff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  min-width: 150px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Ensures vertical centering */
  height: 140px; /* Optional: give all tiles same height */
}

.scroll-card img {
  width: 40px;
  height: 40px;
}

.scroll-card p {
  color: #000000;
  font-weight: 600;
  margin-top: 10px;
  text-align: center;
}
.contact-section {
  max-width: 1000px;
  margin: 40px auto;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  padding: 40px;
  border-radius: 12px;
  color: white;
}
.contact-info {
  display: grid;
  gap: 15px;
  font-size: 16px;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  color: white;
  font-weight: bold;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-info div span,
.contact-info div a {
  color: white !important;
  font-weight: bold !important;
  font-family: inherit;
  font-size: 16px;
}

.contact-info a {
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}
