/* ================= RESET ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ================= BODY ================= */
body {
  font-family: Arial, sans-serif;
  color: #fff;
  background: url("images-bg.jpg") no-repeat center center fixed;
  background-size: cover;
  overflow-x: hidden;
}

/* ================= HEADER ================= */
header {
  width: 100%;
  background: rgba(0,0,0,0.85);
  padding: 15px 40px;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo-container {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-container img {
  height: 60px;
}

.logo-text h1 {
  font-size: 20px;
  color: #00cfff;
}

.logo-text p {
  font-size: 12px;
  color: #ccc;
}

/* NAV */
.nav-menu {
  display: flex;
  gap: 30px;
}

.nav-menu a {
  text-decoration: none;
  color: #00cfff;
  font-weight: bold;
}

.nav-menu a:hover {
  color: white;
}

/* ================= HERO ================= */
.hero {
  text-align: center;
  padding: 120px 20px;
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  color: #ccc;
}

/* ================= SECTION ================= */
section {
  padding: 70px 40px;
}

/* ================= TITLE CENTER ================= */
.section-title {
  text-align: center;
  margin-bottom: 40px;
  font-size: 32px;
}

/* ================= SERVICES ================= */
.services-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* CARD */
.service-card {
  text-align: center;
  text-decoration: none;
  color: white;
}

/* FIX IMAGE HEIGHT ISSUE */
.service-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px;
}

.service-card h3 {
  margin-top: 15px;
}

/* HOVER */
.service-card:hover {
  transform: scale(1.05);
}

/* ================= ABOUT ================= */
.about-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
}

.about-content h2 {
  margin-bottom: 15px;
}

.about-content p {
  line-height: 1.6;
}

.btn-read {
  background: orange;
  padding: 12px 25px;
  color: white;
  text-decoration: none;
  display: inline-block;
  margin-top: 15px;
}

/* ================= CONTACT ================= */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, textarea {
  padding: 10px;
  border: none;
}

button {
  padding: 10px;
  background: orange;
  border: none;
  cursor: pointer;
}

/* ================= FOOTER ================= */
footer {
  text-align: center;
  padding: 20px;
  background: rgba(0,0,0,0.85);
}

/* ================= MOBILE ================= */
@media (max-width: 768px) {

  /* HEADER */
  .header {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-menu {
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
  }

  /* HERO */
  .hero h1 {
    font-size: 28px;
  }

  /* SERVICES */
  .services-container {
    grid-template-columns: 1fr;
  }

  /* ABOUT */
  .about-container {
    grid-template-columns: 1fr;
  }

  /* CONTACT */
  .contact-container {
    grid-template-columns: 1fr;
  }
}

/* FIX MISSION IMAGE SIZE */
.mission-image img {
  width: 150px;      /* adjust size */
  height: auto;
  max-width: 100%;
  display: block;
}

/* OPTIONAL: ALIGN PROPERLY */
.mission-row {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}
/* HERO */
.inner-hero {
  text-align: center;
  padding: 40px 20px 10px;
}

.inner-hero h1 {
  color: #fff;
  font-size: 40px;
}

/* ABOUT SECTION */
.about-container {
  max-width: 1100px;
  margin: auto;
  padding: 20px;
  color: #fff;
}

.about-text {
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 16px;
}

/* HEADINGS */
.section-title {
  color: #00cfff;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* LIST */
.about-list {
  margin-left: 20px;
  margin-bottom: 20px;
}

.about-list li {
  margin-bottom: 10px;
}

/* FIX BACKGROUND ISSUE */
body {
  background-size: cover;
  background-attachment: fixed;
}

/* MOBILE */
@media (max-width: 768px) {

  .inner-hero h1 {
    font-size: 28px;
  }

  .about-container {
    padding: 15px;
  }

}

/* CONTACT SECTION */
.contact-section {
  padding: 40px 20px;
}

/* GRID */
.contact-box {
  display: flex;
  gap: 30px;
  max-width: 1100px;
  margin: auto;
  flex-wrap: wrap;
}

/* COMMON CARD STYLE */
.contact-form,
.contact-info {
  flex: 1;
  background: rgba(0,0,0,0.6);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #00cfff;
  box-shadow: 0 0 10px rgba(0,207,255,0.3);
}

/* HEADINGS */
.contact-form h2,
.contact-info h2 {
  margin-bottom: 20px;
}

/* INPUTS */
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: none;
  border-radius: 5px;
}

/* TEXTAREA */
.contact-form textarea {
  height: 100px;
}

/* BUTTON */
.contact-form button {
  background: #00cfff;
  border: none;
  padding: 10px 20px;
  color: #000;
  border-radius: 5px;
  cursor: pointer;
}

/* HIGHLIGHT TEXT */
.highlight {
  color: #00cfff;
}

/* MOBILE */
@media (max-width: 768px) {
  .contact-box {
    flex-direction: column;
  }
}

.contact-info strong {
  display: block;
  margin-top: 20px;   /* space BEFORE each heading */
  margin-bottom: 5px; /* small space after heading */
  font-size: 16px;
}

/* Remove extra spacing from paragraph */
.contact-info p {
  margin: 10;
}

/* ABOUT WRAPPER */
.about-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
}

/* CONTENT BOX */
.about-content {
  max-width: 900px;
  width: 100%;
  color: #fff;
  line-height: 1.8;
}

/* PARAGRAPH */
.about-content p {
  margin-bottom: 20px;
  font-size: 16px;
}

/* HEADINGS */
.about-content h2 {
  color: #00cfff;
  margin-top: 40px;
  margin-bottom: 15px;
}

/* LIST */
.about-content ul {
  margin-left: 20px;
  margin-bottom: 20px;
}

.about-content li {
  margin-bottom: 10px;
}

/* HERO FIX */
.inner-hero {
  text-align: center;
  padding: 40px 20px 10px;
}

.inner-hero h1 {
  font-size: 40px;
  color: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .about-content {
    padding: 10px;
  }

  .inner-hero h1 {
    font-size: 28px;
  }
}

/* SERVICE PAGE HERO SECTION */
.inner-hero {
  padding: 40px 20px 10px;   /* reduce bottom space */
}

/* SERVICE CONTENT SECTION */
.service-content {
  margin-top: 0;             /* remove extra gap */
  padding-top: 10px;         /* small spacing only */
}

.inner-hero h1 {
  margin-bottom: 10px;   /* reduce space below heading */
}

.service-content h2 {
  margin-top: 0;         /* remove top gap */
}

/* REMOVE ALL EXTRA GAP */
.inner-hero {
  padding: 30px 20px 0 !important;
  margin-bottom: 0 !important;
}

/* REMOVE HEADING GAP */
.inner-hero h1 {
  margin: 0 !important;
  padding: 0 !important;
}

/* SERVICE CONTENT SECTION */
.service-content {
  margin-top: 0 !important;
  padding-top: 5px !important;
}

/* REMOVE DEFAULT H2 GAP */
.service-content h2 {
  margin-top: 0 !important;
}

/* ALSO FIX ANY SECTION GAP */
section {
  margin: 0;
  padding-bottom: 20px;
}

.container {
  max-width: 1100px;
  margin: auto;
}

/* FULL PAGE LAYOUT FIX */
html, body {
  height: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
}

/* MAIN CONTENT SHOULD EXPAND */
body > section {
  flex: 1;
}

/* FOOTER FIX */
footer {
  text-align: center;
  padding: 15px;
  background: rgba(0,0,0,0.8);
  color: #fff;
}