/* ======= GLOBAL STYLES ======= */
:root {
  --primary: #00a8e8;  /* Sky Blue */
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #f4f6f8;
  --text: #333;
  --radius: 10px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  background-color: var(--gray);
  scroll-behavior: smooth;
}

/* Containers */
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* ======= TOP BAR ======= */
.top-bar {
  background: var(--primary);
  color: white;
  font-size: 14px;
  text-align: center;
  padding: 6px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-img {
  width: 50px;       /* perfect header size */
  height: auto;
  object-fit: contain;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.logo-text h1 {
  font-size: 22px;
  margin: 0;
  line-height: 1;
  color: var(--dark);
}
.logo-text h1 span {
  color: var(--primary);
}
.logo-text p {
  font-size: 11px;
  margin: 0;
  color: #777;
  letter-spacing: 0.5px;
}


/* ======= HEADER ======= */
.header {
  background: white;
  box-shadow: 0 3px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.nav a {
  margin: 0 12px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  transition: 0.3s;
}
.nav a.active, .nav a:hover { color: var(--primary); }

#menu-toggle {
  display: none;
  font-size: 24px;
  background: none;
  border: none;
  cursor: pointer;
}

/* ======= HERO SECTIONS ======= */
.hero, .page-hero {
  background-size: cover;
  background-position: center;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero {
  background-size: cover;
  background-position: center;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.hero .overlay, .page-hero .overlay {
  background: rgba(0, 0, 0, 0.45);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-content, .page-hero .container {
  text-align: center;
  color: white;
  max-width: 700px;
}
.hero-content h2, .page-hero h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
.hero-content p, .page-hero p {
  font-size: 1.1rem;
  margin-bottom: 25px;
  color: #eaf9ff;
}

/* ======= BUTTONS ======= */
.btn {
  display: inline-block;
  padding: 12px 25px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius);
  text-decoration: none;
  transition: 0.3s;
}
.btn:hover { background: #007bb8; }

/* ======= INTRO SECTION ======= */
.intro {
  background: white;
  margin: 60px auto;
  padding: 40px;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  text-align: center;
}
.intro h2 { color: var(--primary); margin-bottom: 20px; }

/* ======= SERVICES GRID ======= */
.services {
  background: var(--gray);
  padding: 60px 0;
  text-align: center;
}
.services h2 { color: var(--primary); margin-bottom: 40px; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}
.service-card {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  overflow: hidden;
  transition: transform 0.3s;
}
.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.service-card:hover { transform: translateY(-8px); }
.service-card h3 {
  margin: 15px 0 5px;
  color: var(--primary);
}
.service-card p {
  padding: 0 20px 25px;
  font-size: 15px;
  color: #555;
}

/* ======= CTA ======= */
.cta {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 60px 20px;
}
.cta h2 { margin-bottom: 10px; }

/* ======= PAGE CONTENT WRAPPERS ======= */
.content-wrap { padding: 48px 0; }

/* ======= ABOUT PAGE ======= */
.two-col {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 28px;
  align-items: start;
}
.quote-box {
  background: linear-gradient(180deg, rgba(0,168,232,0.06), rgba(0,168,232,0.03));
  border-left: 4px solid var(--primary);
  padding: 18px;
  border-radius: 8px;
  font-style: italic;
  color: #123;
  margin: 12px 0;
}
.timeline-list { list-style: none; padding-left: 0; margin-top: 12px; }
.timeline-list li { padding: 10px 0; border-bottom: 1px dashed #eee; }

/* Careers */
.careers .vacancy {
  background: white;
  padding: 16px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.04);
  margin-bottom: 14px;
}
.careers .vacancy h4 { color: var(--primary); margin: 0 0 8px; }
.careers .apply {
  margin-top: 10px;
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  text-decoration: none;
}

/* ======= SERVICES PAGE ======= */
.service-section {
  background: #fff;
  margin: 50px 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
}
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
.service-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-text { padding: 40px; }
.service-text h2 {
  color: var(--primary);
  margin-bottom: 10px;
}
.service-text p {
  color: #555;
  line-height: 1.7;
}

/* ======= CONTACT PAGE ======= */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin: 60px 0;
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
}
.contact-info h3 { color: var(--primary); margin-bottom: 10px; }
.contact-info p, .contact-info a {
  color: #444;
  text-decoration: none;
  display: block;
  margin-bottom: 6px;
}
.contact-form label {
  display: block;
  font-weight: 600;
  margin-top: 10px;
  color: var(--primary);
}
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 8px;
  margin-top: 6px;
  font-size: 15px;
  resize: vertical;
}
.contact-form button {
  margin-top: 15px;
  background: var(--primary);
  color: white;
  border: none;
  padding: 12px 24px;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.3s;
}
.contact-form button:hover { background: #007bb8; }
iframe {
  width: 100%;
  height: 250px;
  border: none;
  border-radius: 8px;
  margin-top: 15px;
}

/* ======= FOOTER ======= */
.footer {
  background: var(--dark);
  color: white;
  padding: 60px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 18px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}
.footer-col ul {
  list-style: none;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul li a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: 0.3s;
}
.footer-col ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 15px !important;
}
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}
.footer-bottom p {
  font-size: 14px;
  color: #888;
}

/* ======= RESPONSIVE ======= */
@media (max-width: 900px) {
  .nav {
    display: none;
    flex-direction: column;
    background: white;
    position: absolute;
    top: 65px;
    right: 20px;
    border-radius: var(--radius);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  }
  .nav.show { display: flex; }
  #menu-toggle { display: block; }
  .two-col, .service-content, .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .service-text, .contact-form, .contact-info {
    padding: 25px;
  }
  .hero-content h2, .page-hero h1 { font-size: 1.8rem; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 600px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
