@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:ital,wght@0,200..800;1,200..800&display=swap');

:root {
  /* Colors */
  --primary-color: #0d1b2a;
  --secondary-color: #1b263b;
  --accent-color: #FEA500;
  --accent-hover: #d98f00;
  --text-dark: #334155;
  --text-light: #f8fafc;
  --bg-light: #ffffff;
  --bg-gray: #f8fafc;
  --bg-dark-card: rgba(27, 38, 59, 0.704);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);

  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 30px -10px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.15);

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  display: block;
}


/* Base Classes */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 5rem 0;
}

.services-section {
  background-color: var(--bg-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 2.2rem;

  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  letter-spacing: 0.3px;
}

.btn-primary {
  background-color: var(--accent-color);
  color: var(--primary-color);
}


.btn-primary:hover {
  background-color: var(--accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px -5px rgba(254, 165, 0, 0.4);
}

.btn-outline {
  background-color: transparent;
  border: 1.5px solid var(--text-light);
  color: var(--text-light);
}

.btn-outline:hover {
  background-color: var(--text-light);
  color: var(--primary-color);
  transform: translateY(-3px);
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  color: var(--primary-color);
  letter-spacing: -1px;
}

.section-subtitle {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 4rem;
  max-width: 700px;
  opacity: 0.85;
}

/* Glassmorphism */
.glass {
  background: var(--bg-dark-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-md);
}

.dark-section {
  background: url('assets/construction-wall.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
  z-index: -90;
}

.dark-section::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 120%;
  height: 120%;
  pointer-events: none;

}

.dark-section .section-title {
  color: var(--text-light);
}

.dark-section .section-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Responsive */
@media (max-width: 768px) {
  .section {
    padding: 3rem 0;
  }

  .section-title {
    font-size: 2rem;
  }
}

/* Utilities */
.text-center {
  text-align: center;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.mt-2 {
  margin-top: 2rem;

}

.mt-4 {
  margin-top: 4rem;
  margin-right: -20rem;
}

.fw-light {
  font-weight: 300;
}

.d-none-mobile {
  display: block;
}

.border-bottom {
  border-bottom: 1px solid #e2e8f0;
}

.rounded-image {
  overflow: hidden;
}

.shadow-lg {
  box-shadow: var(--shadow-lg);
}

.container-flex {
  display: flex;
  gap: 4rem;
  justify-content: space-between;
}

.align-center {
  align-items: center;
}

@media (max-width: 900px) {
  .container-flex {
    flex-direction: column;
  }

  .container-flex>* {
    width: 100%;
  }

  .d-none-mobile {
    display: none !important;
  }
}

/* Header */
.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo-text {
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -0.5px;
  color: var(--text-light);
  font-family: var(--font-heading);
}

.logo-img {
  height: 58px;
  width: auto;
  display: block;
  object-fit: contain;
}

.nav-list {
  display: flex;
  gap: 2rem;
  margin-left: 20rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-light);
}

/* Hero Section */
.hero {
  display: flex;
  min-height: 100vh;
}

.hero-slim {
  min-height: 62vh;
}

.hero-slim .hero-image {
  position: relative;
  overflow: hidden;
}

.hero-slim .hero-inner {
  padding-top: 5rem;
  padding-bottom: 3rem;
}

.hero-slim .hero-title {
  font-size: 2.8rem;
}

.hero-content {
  width: 50%;
  display: flex;
  align-items: center;
  padding: 0 10% 0 5%;
  position: relative;
  background-color: rgba(13, 27, 42, 0.485);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1;
}



.hero-inner {
  max-width: 550px;
  margin-left: auto;
  /* Push towards center */
  padding-top: 6rem;
  /* Account for header */
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 1.5rem;
}

.text-yellow {
  color: var(--accent-color);
}

.hero-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
}

.stat {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.stat-icon {
  color: var(--accent-color);
  font-size: 1.2rem;
}

.hero-image {
  width: 50%;
  position: relative;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: fixed;
  top: 0;
  right: 0;
  width: 50%;
  height: 100vh;
  z-index: -1;
}

@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }

  .hero-content,
  .hero-image {
    width: 100%;
  }

  .hero-content {
    min-height: 80vh;
    padding-bottom: 4rem;
  }

  .hero-inner {
    margin: 0 auto;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .hero-image {
    height: 400px;
  }

  .hero-image img {
    position: relative;
    width: 100%;
    height: 100%;
    top: auto;
    right: auto;
  }
}

.hero-slim .hero-image img {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/* Overview */
.overview {
  padding: 8rem 0;
  background-color: var(--bg-light);
  background: radial-gradient(40% 40% at 50% 50%, rgba(254, 165, 0, 0.03) 0%, var(--bg-light) 100%);
  position: relative;
  z-index: 2;
}

.ultra-title {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 0.9;
  margin-bottom: 3rem;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: -2px;
}

.text-outline {
  color: transparent;
  -webkit-text-stroke: 1.5px var(--primary-color);
  opacity: 0.3;
}

.overview-text {
  font-size: 1.3rem;
  max-width: 900px;
  margin: 0 auto;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 768px) {
  .ultra-title {
    font-size: 3rem;
    letter-spacing: -1px;
  }
}

/* Services */
.services-highlight {
  border-radius: var(--radius-lg);
  margin: 0 2rem;
  padding: 8rem 0;
}

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

.service-card {
  overflow: hidden;
  transition: var(--transition);
  background: rgb(15, 58, 103);
  border-left: 1px solid rgb(255, 255, 255);
  border-bottom: 1px solid rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  color: #ffffff
}

.service-card:hover {
  transform: translateY(-10px);
  background: var(--accent-color);
  border-color: rgba(254, 165, 0, 0.3);
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.service-img-wrapper {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-img-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, var(--primary-color), transparent);
  opacity: 0.6;

}

.service-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card:hover .service-img-wrapper img {
  transform: scale(1.1);
}

.service-card-content {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-content h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.service-card-content p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.service-card-content .btn {
  margin-top: auto;
  align-self: flex-start;
}

/* Partnering */
.partnering {
  padding: 10rem 0;
  background-color: var(--bg-gray);
}

.partnering-content {
  flex: 1.2;
}

.partnering-image {
  flex: 1;
  position: relative;
}

.partnering-image::after {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 4px solid var(--accent-color);
  border-radius: var(--radius-md);
  z-index: -1;
  opacity: 0.2;
}

.badge {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  background-color: #334155;
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 700;

  margin-bottom: 1.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.check-list {
  margin: 1.5rem 0;
}

.check-list li {
  position: relative;
  padding-left: 2.5rem;
  margin-bottom: 1.2rem;
  font-weight: 500;
  font-size: 1.05rem;
}

.check-list li::before {
  content: '\f00c';
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  width: 1.5rem;
  height: 1.5rem;
  background-color: var(--accent-color);
  color: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.75rem;
}

/* Footer */
.footer {
  padding: 6rem 0 3rem;
  background-color: #030712;
  color: var(--text-light);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 5rem;
}

.footer-brand p {
  margin-top: 1.5rem;
  opacity: 0.6;
  max-width: 350px;
  font-size: 1rem;
}

.footer-logo {
  height: 52px;
  margin-bottom: 1.5rem;
  opacity: 0.92;
}

.footer-links h4,
.footer-contact h4 {
  margin-bottom: 2rem;
  color: var(--text-light);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.footer-links ul li {
  margin-bottom: 1.2rem;
}

.footer-links a {
  opacity: 0.6;
  transition: var(--transition);
  font-weight: 500;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-contact p {
  opacity: 0.7;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  display: flex;
  gap: 10px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 3rem;
  text-align: center;
  opacity: 0.4;
  font-size: 0.85rem;
}

.footer-bottom a {
  color: var(--accent-color);
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom a:hover {
  opacity: 0.8;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* Inner Header Overrides */
.inner-header {
  position: relative;
  background-color: var(--bg-light);
  border-bottom: 1px solid var(--bg-gray);
}

.inner-header .logo-text,
.inner-header .nav-link {
  color: var(--text-dark);
}

.inner-header .nav-link:hover,
.inner-header .nav-link.active {
  color: var(--accent-color);
}

.inner-header .mobile-menu-btn span {
  background-color: var(--text-dark);
}

/* Page Header */
.page-header {
  padding: 6rem 0;
  position: relative;
  background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
}

.page-title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1rem;
  color: var(--text-light);
}

.page-subtitle {
  font-size: 1.2rem;
  color: var(--accent-color);
}

/* Mobile Menu Button */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
}

.mobile-menu-btn span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-light);
  transition: 0.3s;
}

@media (max-width: 900px) {
  .mobile-menu-btn {
    display: flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-color);
    padding: 2rem 0;
    text-align: center;
    box-shadow: var(--shadow-lg);
  }

  .nav.nav-open {
    display: block;
  }

  .nav-list {
    flex-direction: column;
    gap: 1.5rem;
  }

  .nav-link {
    color: var(--text-light);
  }

  .inner-header .nav {
    background-color: var(--bg-light);
  }

  .inner-header .nav-link {
    color: var(--text-dark);
  }
}