/* ---------------------------------
   🌐 Global Variables & Base Styles
---------------------------------- */
:root {
  --primary-color: #243b55;
  --background-color: #fdfdfd;
  --accent-color: #f5a623;
  --secondary-text-color: #4a4a4a;
  --highlight-color: #00cfff;

  --font-logo: "Montserrat", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-logo);
  background-color: var(--background-color);
  color: var(--secondary-text-color);
  margin: 0;
  padding: 0;
}

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

/* ------------------------------
   🧭 Navigation & Header Styles
------------------------------- */
.navbar {
  background: var(--background-color);
  padding: 0.5rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}
.logo:hover {
  opacity: 0.9;
}

.logo img {
  height: 100px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

nav a {
  text-decoration: none;
  color: var(--primary-color);
  font-weight: bold;
  transition: color 0.2s ease;
}
nav a:hover {
  color: var(--highlight-color);
}

/* -----------------------------
   🦸 Hero Section
------------------------------ */
.hero {
  position: relative;
  background: linear-gradient(145deg, #1f314a, #23395d);
  color: white;
  padding: 5rem 2rem;
  overflow: hidden;
}

.hero-bg-blend {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.2;
  background-size: cover;
  background-position: right center;
  pointer-events: none;
}

.hero-bg-blend img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  mix-blend-mode: soft-light;
  opacity: 0.15;
  filter: blur(2px);
}

.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 500px;
  animation: fadeIn 0.8s ease-out;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero-text p {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: #d9e2ef;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: background 0.3s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent-color);
  color: #000;
}
.btn-primary:hover {
  background: #d68f1e;
}

.btn-secondary {
  border: 2px solid #fff;
  color: #fff;
  background: transparent;
}
.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ----------------------------
   🔖 Page Header
----------------------------- */
.page-header {
  text-align: center;
  padding: 3rem 1rem 2rem;
}

.page-header h1 {
  font-size: 2.5rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
  font-weight: 800;
}

.page-header p {
  font-size: 1.05rem;
  color: var(--secondary-text-color);
}

/* ----------------------------
   💼 Services Section
----------------------------- */
.services-preview,
.services-section {
  background-color: var(--background-color);
  padding: 4rem 2rem;
}

.services-preview h3 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: var(--primary-color);
}

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

.service-card {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 2rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.service-card h3,
.service-card h4 {
  font-size: 1.2rem;
  color: var(--primary-color);
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--secondary-text-color);
}

.service-badge {
  font-size: 0.75rem;
  font-weight: 600;
  color: white;
  background: var(--accent-color);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  display: inline-block;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ----------------------------
   🗂 Portfolio Section
----------------------------- */
.portfolio-listing {
  padding: 4rem 2rem;
  background-color: var(--background-color);
}

.portfolio-grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.case-card {
  background: white;
  border: 1px solid #eaeaea;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.case-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.case-card p {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--secondary-text-color);
}

/* ----------------------------
   🧑‍💼 About Section
----------------------------- */
.about-section {
  padding: 4rem 2rem;
  background-color: var(--background-color);
}

.about-section h3 {
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.about-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: var(--secondary-text-color);
}

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

.approach-card {
  background: white;
  border: 1px solid #eaeaea;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.3s ease;
}
.approach-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.approach-card h4 {
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

/* ----------------------------
   🌍 Industries Section
----------------------------- */
.industries {
  background: #f9f9f9;
  padding: 3rem 2rem;
  margin-top: 3rem;
}

.industries h3 {
  text-align: center;
  color: var(--primary-color);
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
}

.industries p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--secondary-text-color);
}

/* ----------------------------
   📮 Contact Section
----------------------------- */
.contact-section {
  padding: 4rem 2rem;
  background: var(--background-color);
}

.contact-box {
  background: white;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
}

.contact-box h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary-color);
  margin-bottom: 1rem;
}

.contact-box p {
  font-size: 1rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-text-color);
}

.contact-box a {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-box a:hover {
  color: var(--highlight-color);
}

/* ----------------------------
   🔻 Footer
----------------------------- */
.footer {
  padding: 2rem;
  text-align: center;
  background-color: #f5f5f5;
  color: var(--secondary-text-color);
  font-size: 0.9rem;
}

/* ----------------------------
   📱 Responsive Styles
----------------------------- */
@media (max-width: 768px) {
  .hero .container {
    flex-direction: column;
    text-align: center;
  }

  .hero-text h1 {
    font-size: 2.25rem;
  }

  .hero-image {
    text-align: center;
    margin-top: 2rem;
  }

  .hero-image img {
    max-width: 180px;
  }

  nav ul {
    flex-direction: column;
    gap: 0.75rem;
    padding: 1rem 0;
  }

  .logo img {
    height: 80px;
  }

  .services-preview h3 {
    font-size: 1.5rem;
  }

  .service-card {
    padding: 1rem;
  }
}

/* ----------------------------
   ✨ Animations
----------------------------- */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
