:root {
  --primary-deep: #281f6b;
  --accent-yellow: #9d753c;
  --accent-yellow-light: #c9ab7a;
  --dark-navy: #101535;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #222;
}

.topbar {
  background-color: var(--primary-deep);
}

.topbar a,
.topbar span {
  color: #fff;
}

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

.topbar a:hover {
  color: var(--accent-yellow);
}

.navbar-brand .brand-logo {
  height: 60px;
  width: auto;
}

.footer-logo .brand-logo {
  height: 64px;
  width: auto;
}

.brand-text {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
  line-height: 1;
}

.navbar-brand .brand-text,
.footer-logo .brand-text {
  line-height: 1;
}

.brand-text-primary {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.brand-text-secondary {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent-yellow);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #232c47;
}

.navbar-nav .nav-link.dropdown-toggle::after {
  border: none;
  content: '\f282';
  font-family: 'bootstrap-icons';
  font-size: 0.85rem;
  margin-left: 0.4rem;
  vertical-align: middle;
}

.navbar-nav .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.navbar-nav .nav-link.dropdown-toggle:focus,
.navbar-nav .nav-link.dropdown-toggle.show {
  color: var(--accent-yellow);
}

.navbar-nav .dropdown-menu {
  border: none;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(16, 21, 53, 0.12);
  padding: 0.75rem;
  min-width: 220px;
  background-color: #fff;
}

.navbar-nav .dropdown-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 24px;
  width: 16px;
  height: 16px;
  background-color: #fff;
  transform: rotate(45deg);
  box-shadow: -3px -3px 10px rgba(0, 0, 0, 0.03);
}

.dropdown-menu .dropdown-item {
  border-radius: 12px;
  padding: 0.6rem 0.75rem;
  font-weight: 500;
  color: #1f2540;
}

.dropdown-menu .dropdown-item:hover,
.dropdown-menu .dropdown-item:focus {
  background-color: rgba(157, 117, 60, 0.1);
  color: var(--accent-yellow);
}

.navbar-nav .dropdown-menu {
  margin-top: 0.6rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus {
  color: var(--accent-yellow);
}

.hero-wrapper {
  position: relative;
}

.hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(16, 21, 53, 0.88) 0%, rgba(16, 21, 53, 0.65) 40%, rgba(16, 21, 53, 0.1) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 520px;
}

.hero-title span {
  color: var(--accent-yellow);
}

.hero-lead {
  color: rgba(255, 255, 255, 0.85);
}

.letter-spacing {
  letter-spacing: 0.35em;
}

.btn-quote {
  background-color: var(--accent-yellow);
  color: #111;
  border-radius: 50px;
  font-weight: 600;
}

.btn-quote:hover {
  background-color: var(--accent-yellow-light);
  color: #111;
}

.btn-dark-navy {
  background-color: var(--dark-navy);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
}

.btn-dark-navy:hover {
  background-color: #1c234d;
  color: #fff;
}

.hero-wrapper .carousel-item {
  min-height: 80vh;
}

.hero-controls {
  position: absolute;
  inset-block-start: 50%;
  inset-inline-start: 0;
  inset-inline-end: 0;
  display: flex;
  justify-content: space-between;
  padding-inline: 1rem;
  z-index: 1;
  pointer-events: none;
}

.hero-controls button {
  pointer-events: all;
  border: none;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background-color: rgba(40, 31, 107, 0.8);
  color: #fff;
  transition: background-color 0.2s ease-in-out;
}

.hero-controls button:hover {
  background-color: rgba(40, 31, 107, 1);
}

.hero-wrapper .carousel-indicators {
  bottom: 2rem;
}

.hero-wrapper .carousel-indicators [data-bs-target] {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
}

.hero-wrapper .carousel-indicators .active {
  background-color: var(--accent-yellow);
}

.section-intro {
  text-transform: uppercase;
  letter-spacing: 0.35em;
  font-size: 0.78rem;
  color: var(--accent-yellow);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--dark-navy);
}

.section-lead {
  color: #5a6373;
  max-width: 720px;
}

.iso-certificate img {
  display: block;
  max-width: 220px;
  height: auto;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1.25rem 1.5rem;
  border-radius: 16px;
  background-color: #fff;
  box-shadow: 0 20px 45px rgba(16, 21, 53, 0.08);
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background-color: rgba(157, 117, 60, 0.16);
  color: var(--accent-yellow);
  flex-shrink: 0;
  line-height: 0;
}

.stat-icon i {
  font-size: 1.8rem;
  line-height: 1;
}

.stat-card h3 {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--dark-navy);
}

.stat-card span {
  display: block;
  font-size: 0.85rem;
  color: #5a6373;
}

.experience-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 20px 60px rgba(16, 21, 53, 0.1);
  max-width: 300px;
  margin-inline-start: auto;
}

.experience-card .badge-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-light));
  font-weight: 700;
  color: var(--dark-navy);
  font-size: 1.8rem;
  margin-bottom: 1rem;
}

.experience-card p {
  margin: 0;
  color: #5a6373;
}

.about-section .feature-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
  display: grid;
  gap: 0.75rem;
}

.about-section .feature-list li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #444b5f;
}

.about-section .feature-list i {
  color: var(--accent-yellow);
  font-size: 1.1rem;
}

.icon-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.9rem;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: #4c5266;
  line-height: 1.5;
}

.icon-list i {
  color: var(--accent-yellow);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.services-section {
  background-color: #11183d;
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(157, 117, 60, 0.07), transparent 45%), radial-gradient(circle at 80% 10%, rgba(201, 171, 122, 0.1), transparent 40%);
  pointer-events: none;
}

.services-section .section-intro {
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.25em;
}

.services-section .section-title,
.services-section .section-lead {
  color: #fff;
}

.services-section .section-lead {
  opacity: 0.75;
}

.brand-logos {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2.5rem;
}

.brand-logos li {
  font-weight: 600;
  color: rgba(255, 255, 255, 0.65);
}

.service-card {
  position: relative;
  background-color: #fff;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.14);
  height: 100%;
}

.service-card.highlight {
  background: linear-gradient(135deg, #181d4c, #262d6c);
  color: #fff;
}

.service-card.highlight .btn-link {
  color: var(--accent-yellow);
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background-color: rgba(157, 117, 60, 0.16);
  color: var(--accent-yellow);
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.service-card.highlight .service-icon {
  background-color: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.service-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.service-card p {
  color: #5a6373;
  margin-bottom: 1.5rem;
}

.service-card.highlight p {
  color: rgba(255, 255, 255, 0.7);
}

.service-card .btn-link {
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-yellow);
}

.service-card .btn-link i {
  margin-inline-start: 0.35rem;
  transition: transform 0.2s ease-in-out;
}

.service-card .btn-link:hover i {
  transform: translateX(4px);
}

.service-image {
  border-radius: 24px;
  overflow: hidden;
}

.projects-section {
  position: relative;
  padding-block: 6rem;
  background-color: #f8f9ff;
}

.projects-hero {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(110deg, rgba(18, 23, 60, 0.9), rgba(18, 23, 60, 0.6)), url("https://images.unsplash.com/photo-1531835551804-76ce21ab8d40?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
  color: #fff;
  padding: 4rem 3.5rem;
}

.projects-hero h2 {
  font-size: clamp(2.3rem, 4vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.projects-hero h2 span {
  color: var(--accent-yellow);
}

.projects-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.projects-gallery figure {
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(18, 23, 60, 0.18);
}

.projects-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.projects-gallery figure:hover img {
  transform: scale(1.05);
}

.contact-hero {
  background: linear-gradient(110deg, #101535, #1c2452);
  color: #fff;
  padding: 5rem 0;
}

.contact-summary-card {
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  backdrop-filter: blur(6px);
}

.contact-info-card {
  border-radius: 24px;
  background-color: #fff;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(16, 21, 53, 0.1);
}

.contact-form-card {
  border-radius: 24px;
  background-color: #fff;
  padding: 2.5rem;
  box-shadow: 0 25px 60px rgba(16, 21, 53, 0.1);
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: grid;
  gap: 1.5rem;
}

.contact-list li {
  display: flex;
  gap: 1rem;
}

.contact-list .icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: rgba(157, 117, 60, 0.15);
  color: var(--accent-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
}

.contact-form .form-control,
.contact-form .form-select {
  border-radius: 14px;
  border: 1px solid #dfe3f0;
  padding: 0.75rem 1rem;
  box-shadow: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 0.1rem rgba(157, 117, 60, 0.25);
}

.contact-form label {
  font-weight: 600;
  color: #252a42;
}

.projects-page-hero {
  position: relative;
  padding: 5.5rem 0;
  background: linear-gradient(120deg, #0f1437, #1b214d);
  color: #fff;
}

.projects-page-hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  margin-bottom: 1rem;
}

.text-white-70 {
  color: rgba(255, 255, 255, 0.7) !important;
}

.tag-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.tag-list li {
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  background-color: rgba(255, 255, 255, 0.08);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.project-highlight-card {
  border-radius: 24px;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(6px);
}

.project-highlight-card .btn {
  border-radius: 50px;
}

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

.portfolio-card {
  background-color: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.portfolio-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.portfolio-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.portfolio-card-body h3 {
  font-size: 1.15rem;
  margin: 0;
}

.portfolio-card-body p {
  margin: 0;
  color: #53586a;
}

.portfolio-card .badge {
  align-self: flex-start;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.projects-pagination {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 2.5rem;
}

.projects-pagination .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d5d8e5;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.projects-pagination .dot.active {
  background-color: var(--accent-yellow);
  transform: scale(1.2);
}

.about-hero {
  position: relative;
  padding: 6rem 0;
  color: #fff;
  background: linear-gradient(110deg, rgba(16, 21, 53, 0.88), rgba(16, 21, 53, 0.6)), url("assets/images/about-banner.jpg") center/cover no-repeat;
}

.about-hero h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-hero p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.75);
}

.breadcrumb-links {
  display: inline-flex;
  gap: 0.75rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 1rem;
}

.story-card {
  background-color: #fff;
  border-radius: 24px;
  padding: 3rem;
  box-shadow: 0 20px 70px rgba(16, 21, 53, 0.08);
}

.story-card h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--dark-navy);
  margin-bottom: 1.5rem;
}

.story-card p {
  color: #4d566b;
}

.story-highlights {
  display: grid;
  gap: 1.5rem;
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  border-radius: 16px;
  background-color: #f5f7ff;
  padding: 1.5rem;
}

.highlight-item .number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent-yellow);
}

.value-card {
  border-radius: 20px;
  background-color: #fff;
  padding: 2.25rem 2rem;
  height: 100%;
  box-shadow: 0 20px 40px rgba(16, 21, 53, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(16, 21, 53, 0.12);
}

.value-card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background-color: rgba(157, 117, 60, 0.18);
  color: var(--accent-yellow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.25rem;
}

.process-wrapper {
  border-radius: 24px;
  background-color: #101535;
  padding: 3rem;
  color: rgba(255, 255, 255, 0.8);
  position: relative;
  overflow: hidden;
}

.process-wrapper::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 10%, rgba(157, 117, 60, 0.18), transparent 45%), radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.08), transparent 40%);
  pointer-events: none;
}

.process-step {
  position: relative;
  padding: 1.5rem;
  border-radius: 18px;
  background-color: rgba(255, 255, 255, 0.06);
  height: 100%;
  backdrop-filter: blur(6px);
}

.process-step .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(157, 117, 60, 0.25);
  color: #fff;
  font-weight: 700;
  margin-bottom: 1rem;
}

.team-card {
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(16, 21, 53, 0.08);
  overflow: hidden;
  height: 100%;
}

.team-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.team-card .content {
  padding: 1.5rem 1.75rem 1.75rem;
}

.team-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.team-card span {
  font-size: 0.95rem;
  color: #6a7288;
}

.site-footer {
  background: linear-gradient(0deg, #0b0f26 0%, #12172f 60%, transparent 60%);
  position: relative;
  padding-top: 6rem;
}

.footer-card {
  background-color: #070b1c;
  border-radius: 18px 18px 0 0;
  padding: 4rem 3rem 3rem;
  box-shadow: 0 -10px 40px rgba(7, 11, 28, 0.5);
  position: relative;
  color: rgba(255, 255, 255, 0.75);
}

.footer-card::after {
  content: "";
  position: absolute;
  inset-inline: 0;
  inset-block-end: -16px;
  height: 16px;
  background: linear-gradient(90deg, var(--accent-yellow), var(--accent-yellow-light));
  border-radius: 0 0 16px 16px;
}

.footer-logo {
  margin-bottom: 1.5rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 2rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.footer-social a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.footer-heading {
  font-size: 1.15rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1.5rem;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-list li + li {
  margin-top: 0.75rem;
}

.footer-list a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
}

.footer-list a:hover {
  color: var(--accent-yellow);
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 0.9rem;
}

.footer-contact-item i {
  color: var(--accent-yellow);
  margin-top: 0.15rem;
}

.footer-bottom {
  padding: 1.5rem 0;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom a {
  color: var(--accent-yellow);
  text-decoration: none;
}

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

.commitment-card {
  border-radius: 20px;
  background-color: #fff;
  padding: 2rem;
  box-shadow: 0 15px 35px rgba(16, 21, 53, 0.08);
}

@media (max-width: 991.98px) {
  .navbar-nav .nav-link {
    padding-block: 0.75rem;
  }

  .hero {
    min-height: 70vh;
  }
}

@media (max-width: 767.98px) {
  .stat-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .brand-logos {
    gap: 1rem 1.5rem;
  }

  .projects-hero {
    padding: 3rem 2rem;
  }

  .footer-card {
    padding: 3rem 2rem 2.5rem;
  }

  .about-hero {
    padding: 4.5rem 0;
  }

  .process-wrapper {
    padding: 2.5rem 2rem;
  }
}
