:root {
  --navy: #0c1a3a;
  --navy-2: #142b5c;
  --navy-3: #1b3a7a;
  --accent: #f05324;
  --accent-dark: #d84215;
  --gold: #ffc107;
  --dark: #101010;
  --text: #5a6370;
  --text-light: #a9b3c3;
  --bg-light: #f5f6f8;
  --white: #ffffff;
  --border: #e7e9ee;
  --shadow: 0 10px 40px rgba(12, 26, 58, 0.12);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Rubik", sans-serif;
  color: var(--text);
  font-size: 16px;
  line-height: 1.75;
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  color: var(--navy);
  line-height: 1.25;
}

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

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

ul {
  list-style: none;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 34px;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 40%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: translateX(-130%) skewX(-20deg);
  pointer-events: none;
}

.btn:hover {
  background: var(--navy);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(240, 83, 36, 0.35);
}

.btn:hover::after {
  animation: shine 0.9s ease;
}

.btn i {
  margin-left: 8px;
}

/* ---------------------------------------------------------------------------
   Top bar
--------------------------------------------------------------------------- */
.topbar {
  background: var(--navy);
  padding: 10px 0;
  color: var(--white);
  font-size: 14px;
}

.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.topbar-contact {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.topbar-contact a {
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s;
}

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

.topbar-contact i {
  color: var(--accent);
}

.topbar-iso {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-weight: 500;
}

.topbar-iso i {
  color: var(--gold);
}

.topbar-social {
  display: flex;
  gap: 16px;
}

.topbar-social a {
  color: var(--white);
  font-size: 14px;
  transition: color 0.3s;
}

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

/* ---------------------------------------------------------------------------
   Header / navigation
--------------------------------------------------------------------------- */
.site-header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: "Poppins", sans-serif;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 16px;
}

.logo-text {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.logo-text span {
  color: var(--accent);
}
.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.footer-about .logo-img {
    height: 60px;
}

.logo-sub {
  font-family: "Rubik", sans-serif;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  text-transform: uppercase;
  display: block;
}

.main-nav ul {
  display: flex;
  gap: 30px;
}

.main-nav a {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 6px 0;
  transition: color 0.3s;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--accent);
}

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

.nav-brochure {
  color: var(--accent) !important;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.track-box {
  display: flex;
  align-items: center;
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.track-box input {
  border: 0;
  outline: 0;
  background: transparent;
  padding: 10px 12px;
  font-family: "Rubik", sans-serif;
  font-size: 13px;
  width: 160px;
  color: var(--navy);
}

.track-box input::placeholder {
  color: var(--text-light);
}

.track-box button {
  background: var(--accent);
  border: 0;
  color: var(--white);
  width: 42px;
  height: 42px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}

.track-box button:hover {
  background: var(--navy);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* Mobile drawer extras (default hidden on desktop) */
.nav-drawer-head,
.nav-drawer-footer,
.nav-close {
  display: none;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 1999;
  background: rgba(12, 26, 58, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.nav-overlay.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

body.nav-locked {
  overflow: hidden;
}

/* ---------------------------------------------------------------------------
   Hero slider
--------------------------------------------------------------------------- */
.hero {
  position: relative;
  height: 640px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(10, 24, 56, 0.88) 30%, rgba(10, 24, 56, 0.45));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: fadeUp 1s ease both;
}

.hero-tagline {
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 16px;
  display: block;
}

.hero-content h1 {
  color: var(--white);
  font-size: 56px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content h1 span {
  color: var(--accent);
}

.hero-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 17px;
  margin-bottom: 30px;
  max-width: 520px;
}

.hero-arrows button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: var(--white);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  z-index: 3;
  transition: all 0.3s;
}

.hero-arrows button:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.hero-arrows .prev {
  left: 40px;
}

.hero-arrows .next {
  right: 40px;
}

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

/* ---------------------------------------------------------------------------
   Section titles
--------------------------------------------------------------------------- */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title.left {
  text-align: left;
}

.tagline-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 14px;
}

.section-title.left .tagline-box {
  justify-content: flex-start;
}

.tagline-border {
  width: 45px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

.tagline {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  text-transform: uppercase;
}

.tagline-box i {
  color: var(--accent);
  font-size: 14px;
}

.section-title h2 {
  font-size: 40px;
  font-weight: 700;
}

.section-title h2 span {
  color: var(--accent);
}

.section-title p {
  margin-top: 16px;
  max-width: 620px;
  margin-left: auto;
  margin-right: auto;
}

.section-title.left p {
  margin-left: 0;
}

/* ---------------------------------------------------------------------------
   About
--------------------------------------------------------------------------- */
.about-section {
  padding: 100px 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-images {
  position: relative;
}

.about-img-main {
  border-radius: 10px;
  height: 440px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}

.about-img-accent {
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 240px;
  height: 220px;
  border: 6px solid var(--white);
  border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: var(--shadow);
  overflow: hidden;
  perspective: 800px;
  z-index: 2;
}

/* 3D flip cards */
.flip-inner {
  position: absolute;
  inset: 0;
  transform-style: preserve-3d;
  transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
}

.about-img-main:hover .flip-inner,
.about-img-main:focus-within .flip-inner,
.about-img-accent:hover .flip-inner,
.about-img-accent:focus-within .flip-inner {
  transform: rotateY(180deg);
}

.flip-front,
.flip-back {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  border-radius: 8px;
  overflow: hidden;
}

.flip-front img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flip-back {
  transform: rotateY(180deg);
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  color: var(--white);
}

.flip-back i {
  font-size: 52px;
  color: var(--accent);
  margin-bottom: 16px;
  animation: floatY 4s ease-in-out infinite;
}

.flip-back h3 {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 8px;
}

.flip-back p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.6;
}

.about-img-accent .flip-back {
  padding: 14px;
}

.about-img-accent .flip-back i {
  font-size: 30px;
  margin-bottom: 8px;
}

.about-img-accent .flip-back p {
  font-size: 12px;
  font-weight: 500;
}

.experience-box {
  position: absolute;
  top: 30px;
  left: -20px;
  background: var(--white);
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 18px 26px;
  text-align: center;
}

.experience-box .count {
  font-family: "Poppins", sans-serif;
  font-size: 40px;
  font-weight: 700;
  color: var(--accent);
}

.experience-box p {
  font-size: 13px;
  font-weight: 500;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-text {
  margin: 20px 0 26px;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 26px;
}

.feature-list li {
  background: var(--bg-light);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 20px;
  transition: all 0.3s;
}

.feature-list li:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.feature-list .icon {
  color: var(--accent);
  font-size: 22px;
  margin-bottom: 10px;
}

.feature-list h4 {
  font-size: 16px;
  margin-bottom: 4px;
}

.feature-list p {
  font-size: 14px;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
  margin-bottom: 30px;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--navy);
}

.check-list i {
  color: var(--accent);
}

/* ---------------------------------------------------------------------------
   Sliding marquee
--------------------------------------------------------------------------- */
.marquee-section {
  background: var(--navy);
  overflow: hidden;
  padding: 24px 0;
  border-top: 3px solid var(--accent);
}

.marquee {
  display: flex;
  width: max-content;
  animation: scroll 30s linear infinite;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 30px;
  padding-right: 30px;
  white-space: nowrap;
}

.marquee-item h2 {
  color: var(--white);
  font-size: 30px;
  font-weight: 600;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 30px;
}

.marquee-item h2 span {
  color: var(--accent);
}

.marquee-item i {
  color: var(--accent);
  font-size: 22px;
}

@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------------------------------------------------------------------------
   Services
--------------------------------------------------------------------------- */
.services-section {
  padding: 100px 0;
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.06);
  transition: all 0.35s;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.card-visual {
  height: 200px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.3);
  font-size: 70px;
}

.card-visual .tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--accent);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 4px;
  z-index: 2;
}

.card-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-body {
  padding: 26px;
}

.card-body h3 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color 0.3s;
}

.service-card:hover .card-body h3 {
  color: var(--accent);
}

.card-body p {
  font-size: 15px;
}

.card-body .card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--accent);
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: 14px;
}

/* ---------------------------------------------------------------------------
   Projects / freight
--------------------------------------------------------------------------- */
.projects-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.projects-section::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 83, 36, 0.1), transparent 70%);
}

.projects-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(20, 43, 92, 0.1), transparent 70%);
}

.projects-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-card {
  position: relative;
  height: 360px;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(12, 26, 58, 0.1);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 24, 56, 0.92), rgba(10, 24, 56, 0.15));
  transition: background 0.4s;
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(240, 83, 36, 0.95), rgba(216, 66, 21, 0.85));
  opacity: 0;
  transition: opacity 0.4s;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 55px rgba(12, 26, 58, 0.28);
}

.project-card:hover::before {
  background: linear-gradient(to top, rgba(10, 24, 56, 0.4), rgba(10, 24, 56, 0));
}

.project-card:hover::after {
  opacity: 1;
}

.project-num {
  position: absolute;
  top: 18px;
  right: 20px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 2px;
  z-index: 2;
  transition: color 0.4s;
}

.project-card:hover .project-num {
  color: var(--white);
}

.project-icon {
  position: absolute;
  top: 16px;
  left: 20px;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.9);
  z-index: 2;
  transition: transform 0.4s ease;
}

.project-card:hover .project-icon {
  transform: translateY(4px) scale(1.15);
}

.project-info {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: 28px;
  color: var(--white);
  transform: translateY(18px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

.project-info p {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 6px;
  letter-spacing: 1px;
}

.project-info h3 {
  font-size: 20px;
  color: var(--white);
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  opacity: 0;
  transform: translateX(-12px);
  transition: all 0.4s ease 0.1s;
}

.project-card:hover .project-link {
  opacity: 1;
  transform: translateX(0);
}

.project-link i {
  transition: transform 0.3s ease;
}

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

.project-shine {
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: skewX(-25deg);
  z-index: 4;
  pointer-events: none;
}

.project-card:hover .project-shine {
  animation: shine 0.9s ease;
}

.projects-cta {
  position: relative;
  z-index: 1;
  margin-top: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 16px;
  padding: 26px 32px;
  box-shadow: 0 12px 40px rgba(12, 26, 58, 0.2);
}

.projects-cta p {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
}

/* ---------------------------------------------------------------------------
   Specialisation
--------------------------------------------------------------------------- */
.specialisation-section {
  padding: 90px 0;
  background: var(--bg-light);
}

.specialisation-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.specialisation-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 30px 18px;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  transition: all 0.3s;
}

.specialisation-item i {
  font-size: 34px;
  color: var(--accent);
  transition: all 0.3s;
}

.specialisation-item:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.specialisation-item:hover i {
  color: var(--accent);
}

/* ---------------------------------------------------------------------------
   Process
--------------------------------------------------------------------------- */
.process-section {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
}

.process-section .tagline {
  color: var(--accent);
}

.process-section .section-title h2 {
  color: var(--white);
}

.process-section .section-title h2 span {
  color: var(--accent);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.process-item {
  text-align: center;
  padding: 40px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  position: relative;
  transition: all 0.35s;
}

.process-item:hover {
  background: var(--accent);
  transform: translateY(-6px);
}

.process-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto 22px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  transition: all 0.35s;
}

.process-item:hover .process-icon {
  background: var(--white);
  color: var(--accent);
}

.process-item h4 {
  color: var(--white);
  font-size: 17px;
  margin-bottom: 10px;
  text-transform: capitalize;
}

.process-item p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

.process-item:hover p,
.process-item:hover h4 {
  color: var(--white);
}

/* ---------------------------------------------------------------------------
   Counters
--------------------------------------------------------------------------- */
.counters-section {
  padding: 90px 0;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
}

.counter-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.counter-item {
  text-align: center;
  color: var(--white);
}

.counter-item .icon {
  font-size: 38px;
  color: var(--accent);
  margin-bottom: 14px;
}

.counter-item .count {
  font-family: "Poppins", sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: var(--white);
}

.counter-item .count span {
  color: var(--accent);
}

.counter-item p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
}

/* ---------------------------------------------------------------------------
   CTA
--------------------------------------------------------------------------- */
.cta-section {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  padding: 60px 0;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.cta-inner h2 {
  color: var(--white);
  font-size: 34px;
  font-weight: 700;
}

.cta-right {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-call {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--white);
}

.cta-call .icon {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.cta-call span {
  font-size: 14px;
  opacity: 0.85;
  display: block;
}

.cta-call a {
  font-family: "Poppins", sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
}

.cta-section .btn {
  background: var(--white);
  color: var(--accent);
}

.cta-section .btn:hover {
  background: var(--navy);
  color: var(--white);
}

/* ---------------------------------------------------------------------------
   FAQ
--------------------------------------------------------------------------- */
.faq-section {
  padding: 100px 0;
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  align-items: center;
}

.faq-img-box {
  position: relative;
}

.faq-img {
  border-radius: 10px;
  height: 440px;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 120px;
}

.faq-exp-box {
  position: absolute;
  right: -20px;
  bottom: 40px;
  background: var(--accent);
  color: var(--white);
  border-radius: 10px;
  padding: 22px 30px;
  text-align: center;
  box-shadow: var(--shadow);
}

.faq-exp-box h2 {
  font-size: 44px;
  color: var(--white);
}

.faq-exp-box p {
  font-size: 14px;
  font-weight: 500;
}

.accordion-item {
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 16px;
  overflow: hidden;
  background: var(--bg-light);
  transition: all 0.3s;
}

.accordion-item.active {
  background: var(--white);
  box-shadow: var(--shadow);
}

.accordion-title {
  padding: 20px 26px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-title h4 {
  font-size: 17px;
  font-weight: 500;
}

.accordion-title .icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: all 0.3s;
}

.accordion-item.active .accordion-title .icon {
  background: var(--navy);
  transform: rotate(45deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-body p {
  padding: 0 26px 22px;
  font-size: 15px;
}

/* ---------------------------------------------------------------------------
   Brands
--------------------------------------------------------------------------- */
.brands-section {
  padding: 60px 0;
  background: var(--bg-light);
}

.brand-list {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  animation: scroll 45s linear infinite;
  padding: 6px 0;
}

.brand-list:hover {
  animation-play-state: paused;
}

.brand-item {
  flex: 0 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  height: 110px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  color: var(--navy);
  font-size: 16px;
  opacity: 0.85;
  transition: all 0.3s;
}

.brand-item img {
  max-width: 150px;
  max-height: 80px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.brand-item:hover {
  opacity: 1;
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

/* ---------------------------------------------------------------------------
   Client Ratings
--------------------------------------------------------------------------- */
.ratings-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  position: relative;
  overflow: hidden;
}

.ratings-section::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.12), transparent 70%);
}

.ratings-section::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 83, 36, 0.18), transparent 70%);
}

.ratings-section .section-title h2 {
  color: var(--white);
}

.ratings-section .section-title h2 span {
  color: var(--accent);
}

.ratings-overview {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
  text-align: center;
}

.rating-score {
  display: flex;
  align-items: center;
  gap: 14px;
}

.rating-score .score {
  font-family: "Poppins", sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.rating-score .stars,
.rating-card .stars {
  display: flex;
  gap: 5px;
  color: var(--gold);
  font-size: 15px;
}

.ratings-overview p {
  color: rgba(255, 255, 255, 0.8);
}

.ratings-overview p strong {
  color: var(--white);
}

.ratings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
  z-index: 1;
}

.rating-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 34px 30px 30px;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.35s;
}

.rating-card::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 18px;
  right: 24px;
  font-size: 30px;
  color: rgba(240, 83, 36, 0.18);
}

.rating-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 22px 50px rgba(12, 26, 58, 0.25);
}

.rating-text {
  font-size: 15px;
  line-height: 1.8;
  color: var(--text);
  flex: 1;
}

.rating-client {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.rating-client .avatar {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-client h5 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 2px;
}

.rating-client span {
  font-size: 13px;
  color: var(--text-light);
  display: block;
  line-height: 1.5;
}

.rating-client span em {
  color: var(--navy);
  font-style: normal;
  font-weight: 500;
}

.rating-client .verified {
  margin-left: auto;
  color: #22c55e;
  font-size: 18px;
}

/* ---------------------------------------------------------------------------
   Footer
--------------------------------------------------------------------------- */
.site-footer {
  background: var(--navy);
  color: var(--text-light);
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 50px;
}

.footer-col h3 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h3::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-col p {
  font-size: 15px;
}

.footer-about .logo {
  margin-bottom: 18px;
}

.footer-about .logo-text {
  color: var(--white);
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 22px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 15px;
  align-items: flex-start;
}

.footer-contact li i {
  color: var(--accent);
  margin-top: 5px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.footer-links a i {
  font-size: 11px;
  color: var(--accent);
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 6px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-hours li span {
  color: var(--white);
  font-weight: 500;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 14px;
}

.footer-bottom a {
  color: var(--accent);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 46px;
  height: 46px;
  background: var(--accent);
  color: var(--white);
  border: 0;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  z-index: 900;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--navy);
}

/* WhatsApp float */
.whatsapp-float {
  position: fixed;
  bottom: 26px;
  right: 96px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 30px;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  z-index: 950;
  animation: whatsappBounce 2s ease-in-out infinite;
}

.whatsapp-float:hover {
  color: var(--white);
  animation: none;
  transform: scale(1.1);
}

.whatsapp-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25d366;
  z-index: -1;
  animation: whatsappPing 1.6s ease-out infinite;
}

.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  top: 50%;
  transform: translateY(-50%) translateX(8px);
  background: var(--navy);
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
  content: "";
  position: absolute;
  right: -6px;
  top: 50%;
  transform: translateY(-50%);
  border: 6px solid transparent;
  border-left-color: var(--navy);
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(-50%) translateX(0);
}

@keyframes whatsappBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes whatsappPing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Preloader */
.loader {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 55%, var(--navy-3) 100%);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}

.loader-logo {
  position: relative;
  width: 130px;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loader-logo img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  background: var(--white);
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
  animation: pulseLogo 1.6s ease-in-out infinite;
  position: relative;
  z-index: 2;
}

.loader-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 3px solid transparent;
}

.loader-ring-1 {
  border-top-color: var(--accent);
  border-right-color: rgba(240, 83, 36, 0.35);
  animation: spin 1.1s linear infinite;
}

.loader-ring-2 {
  inset: 12px;
  border-bottom-color: var(--white);
  border-left-color: rgba(255, 255, 255, 0.3);
  animation: spin 1.6s linear infinite reverse;
}

.loader-text {
  text-align: center;
}

.loader-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.loader-text h2 span {
  color: var(--accent);
}

.loader-text p {
  font-size: 12px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 4px;
}

.loader-bar {
  width: 200px;
  height: 4px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  width: 40%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--accent), #ff8a5c);
  animation: loadBar 1.3s ease-in-out infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes pulseLogo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.07); }
}

@keyframes loadBar {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(350%); }
}

/* Custom cursor */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  border-radius: 50%;
  opacity: 0;
  z-index: 10000;
  will-change: transform;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(240, 83, 36, 0.9);
}

.cursor-ring {
  width: 36px;
  height: 36px;
  border: 2px solid rgba(240, 83, 36, 0.65);
  box-shadow: 0 0 18px rgba(240, 83, 36, 0.25);
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.cursor-ring.hover {
  width: 58px;
  height: 58px;
  border-color: var(--accent);
  background: rgba(240, 83, 36, 0.12);
  box-shadow: 0 0 30px rgba(240, 83, 36, 0.4);
}

@media (hover: none), (pointer: coarse) {
  .cursor-dot,
  .cursor-ring {
    display: none;
  }
}

/* ---------------------------------------------------------------------------
   Responsive
--------------------------------------------------------------------------- */
@media (max-width: 1200px) {
  .main-nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: var(--white);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.35s ease, visibility 0s linear 0.35s;
    transform: translateX(100%);
    visibility: hidden;
    z-index: 2000;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
  }

  .main-nav.open {
    transform: translateX(0);
    visibility: visible;
    transition: transform 0.35s ease;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 2px;
    padding: 16px 24px;
  }

  .main-nav ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 6px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
  }

  .main-nav a::after {
    display: none;
  }

  .nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
  }

  .nav-drawer-head .logo {
    padding: 0;
    flex: 1;
    min-width: 0;
  }

  .nav-drawer-head .logo-img {
    height: 40px;
    flex: 0 0 auto;
  }

  .nav-drawer-head .logo > div {
    min-width: 0;
    overflow: hidden;
  }

  .nav-drawer-head .logo-text {
    white-space: nowrap;
  }

  .nav-close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    border: 0;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--navy);
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s;
  }

  .nav-close:hover {
    background: var(--accent);
    color: var(--white);
  }

  .nav-drawer-footer {
    display: block;
    margin-top: auto;
    padding: 20px;
    border-top: 1px solid var(--border);
  }

  .nav-drawer-footer .track-box {
    width: 100%;
  }

  .nav-drawer-footer .track-box input {
    flex: 1;
    width: auto;
    min-width: 0;
  }

  .nav-drawer-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 16px;
    padding: 0;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--navy);
  }

  .nav-drawer-phone i {
    color: var(--accent);
  }

  .nav-toggle {
    display: block;
  }

  .header-actions .track-box {
    display: none;
  }
}

@media (max-width: 1024px) {
  .services-grid,
  .process-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .counter-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .specialisation-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .ratings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .faq-grid {
    grid-template-columns: 1fr;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 42px;
  }
}

@media (max-width: 768px) {
  .hero {
    height: 500px;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  .hero-arrows .prev { left: 16px; }
  .hero-arrows .next { right: 16px; }

  .services-grid,
  .process-list,
  .projects-grid,
  .footer-grid,
  .feature-list,
  .check-list {
    grid-template-columns: 1fr;
  }

  .counter-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
  }

  .specialisation-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .ratings-grid {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .projects-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
  }

  .about-img-accent {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .topbar-iso,
  .topbar-social {
    display: none;
  }

  .topbar-inner {
    justify-content: center;
  }

  .topbar-contact {
    justify-content: center;
    gap: 16px;
  }

  .hero {
    height: 440px;
  }

  .hero-content h1 {
    font-size: 27px;
  }

  .hero-content p {
    font-size: 15px;
    margin-bottom: 22px;
  }

  .hero-tagline {
    font-size: 11px;
    letter-spacing: 3px;
  }

  .hero-arrows button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }

  .hero-plane {
    font-size: 48px;
    right: 6%;
    top: 18%;
  }

  .hero-scroll {
    display: none;
  }

  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }

  .section-title {
    margin-bottom: 34px;
  }

  .section-title h2 {
    font-size: 28px;
  }

  .tagline {
    font-size: 11px;
    letter-spacing: 2px;
  }

  .about-section,
  .services-section,
  .projects-section,
  .process-section,
  .faq-section,
  .ratings-section {
    padding: 60px 0;
  }

  .specialisation-section {
    padding: 50px 0;
  }

  .about-img-main {
    height: 320px;
  }

  .experience-box {
    left: 10px;
    top: 14px;
    padding: 12px 16px;
  }

  .experience-box .count {
    font-size: 28px;
  }

  .marquee-item h2 {
    font-size: 20px;
    gap: 16px;
  }

  .project-card {
    height: 300px;
  }

  .projects-cta p {
    font-size: 17px;
  }

  .cta-inner h2 {
    font-size: 26px;
  }

  .faq-img {
    height: 300px;
    font-size: 80px;
  }

  .faq-exp-box {
    right: 10px;
    bottom: 20px;
    padding: 14px 20px;
  }

  .faq-exp-box h2 {
    font-size: 32px;
  }

  .rating-card {
    padding: 26px 20px 22px;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 50px;
    height: 50px;
    font-size: 24px;
  }

  .whatsapp-tooltip {
    display: none;
  }

  .back-to-top {
    right: 14px;
    bottom: 74px;
    width: 42px;
    height: 42px;
  }

  .contact-info-card {
    padding: 28px 20px 24px;
  }

  .map-embed iframe {
    height: 300px;
  }

  .exp-badge {
    min-width: 0;
    width: 100%;
  }

  .page-banner__content h1,
  .page-banner h1 {
    font-size: 30px;
  }
}

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

@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-40px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes zoomIn {
  from { opacity: 0; transform: scale(0.8); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(14px); }
}

@keyframes bounceDown {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 10px); }
}

@keyframes pulseRing {
  0% { box-shadow: 0 0 0 0 rgba(240, 83, 36, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(240, 83, 36, 0); }
  100% { box-shadow: 0 0 0 0 rgba(240, 83, 36, 0); }
}

@keyframes kenburns {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.12) translate(1.5%, -1.5%); }
  100% { transform: scale(1) translate(0, 0); }
}

@keyframes shine {
  0% { transform: translateX(-130%) skewX(-20deg); }
  100% { transform: translateX(240%) skewX(-20deg); }
}

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  20% { transform: rotate(-12deg); }
  40% { transform: rotate(12deg); }
  60% { transform: rotate(-8deg); }
  80% { transform: rotate(8deg); }
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Hero load-in stagger */
.hero-content .hero-tagline { animation: fadeInDown 0.8s ease both 0.2s; }
.hero-content h1 { animation: fadeUp 0.9s ease both 0.35s; }
.hero-content p { animation: fadeUp 0.9s ease both 0.55s; }
.hero-content .btn { animation: fadeUp 0.9s ease both 0.75s; }

/* Hero background image with kenburns zoom */
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-slide.active .hero-bg {
  animation: kenburns 16s ease-in-out infinite;
}

/* Floating plane decoration in hero */
.hero-plane {
  position: absolute;
  top: 24%;
  right: 10%;
  font-size: 80px;
  color: rgba(255, 255, 255, 0.14);
  z-index: 1;
  animation: floatY 5s ease-in-out infinite;
}

/* Scroll-down indicator */
.hero-scroll {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white);
  font-size: 22px;
  z-index: 3;
  opacity: 0.85;
  animation: bounceDown 2s ease-in-out infinite;
  transition: color 0.3s;
}

.hero-scroll:hover {
  color: var(--accent);
}

/* Scroll reveal system */
.reveal {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-up { transform: translateY(50px); }
.reveal-left { transform: translateX(-60px); }
.reveal-right { transform: translateX(60px); }
.reveal-zoom { transform: scale(0.85); }

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* Always-on decorative animations */
.animate-float { animation: floatY 5s ease-in-out infinite; }
.animate-float-x { animation: floatX 5s ease-in-out infinite; }
.animate-pulse { animation: pulseRing 2.2s ease-out infinite; }
.animate-spin-slow { animation: spinSlow 18s linear infinite; }

.tagline-box i {
  animation: floatY 3s ease-in-out infinite;
}

.experience-box {
  animation: floatY 5s ease-in-out infinite;
}

.counter-item .icon {
  animation: floatY 3.5s ease-in-out infinite;
}

.cta-call .icon {
  animation: pulseRing 2.2s ease-out infinite;
}

/* Animated CTA gradient */
.cta-section {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark), #f7a325, var(--accent-dark), var(--accent));
  background-size: 300% 300%;
  animation: gradientShift 10s ease infinite;
}

/* Service card icon wiggle on hover */
.service-card:hover .card-visual i {
  animation: wiggle 0.6s ease;
}

/* Project info slides up on hover */
.project-card .project-info {
  transform: translateY(18px);
  transition: transform 0.4s ease;
}

.project-card:hover .project-info {
  transform: translateY(0);
}

/* Process icons hover bounce */
.process-item .process-icon {
  transition: background 0.35s, color 0.35s, transform 0.35s;
}

.process-item:hover .process-icon {
  transform: rotate(360deg) scale(1.05);
}

/* Feature list icon wiggle on hover */
.feature-list li:hover .icon i {
  animation: wiggle 0.5s ease;
}

/* Accordion title arrow rotate */
.accordion-title .icon {
  transition: background 0.3s, transform 0.3s;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------------------------
   About page
--------------------------------------------------------------------------- */

/* ---- Page Banner ---- */
.page-banner {
  position: relative;
  padding: 140px 0 90px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  overflow: hidden;
}

.page-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0.35;
}

.page-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 18s ease-in-out infinite alternate;
}

.page-banner__content {
  position: relative;
  z-index: 2;
}

.page-banner__content h1 {
  color: var(--white);
  font-size: 54px;
  font-weight: 800;
  margin: 12px 0 16px;
}

.page-banner__content h1 span {
  color: var(--accent);
}

.breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 15px;
}

.breadcrumb a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

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

.breadcrumb i {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.5);
}

/* ---- Mission & Vision ---- */
.mission-section {
  padding: 80px 0 40px;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.mission-card {
  position: relative;
  padding: 46px 40px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(12, 26, 58, 0.25);
  transition: transform 0.4s, box-shadow 0.4s;
}

.mission-card::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -70px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
}

.mission-card::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
}

.mission-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 55px rgba(12, 26, 58, 0.35);
}

.mission-accent {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.mission-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  font-size: 30px;
  color: var(--gold);
  margin-bottom: 22px;
  animation: floatY 3.5s ease-in-out infinite;
}

.mission-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.mission-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

/* ---- Core Values ---- */
.values-section {
  padding: 40px 0 80px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 48px;
}

.value-card {
  position: relative;
  padding: 34px 28px;
  background: var(--white);
  border: 1px solid #eef0f6;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(12, 26, 58, 0.07);
  text-align: center;
  transition: transform 0.35s, box-shadow 0.35s, border-color 0.35s;
}

.value-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 60px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--accent), var(--gold));
  transition: transform 0.4s;
}

.value-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(12, 26, 58, 0.15);
  border-color: rgba(240, 83, 36, 0.35);
}

.value-card:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.value-card > i {
  width: 66px;
  height: 66px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border-radius: 50%;
  font-size: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 24px rgba(240, 83, 36, 0.3);
  transition: transform 0.4s;
}

.value-card:hover > i {
  animation: wiggle 0.5s ease;
}

.value-card h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}

.value-card p {
  color: #64748b;
  font-size: 14.5px;
  line-height: 1.7;
}

/* ---- Leadership / Team ---- */
.team-section {
  padding: 80px 0;
  background: #f7f9fd;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.team-card {
  padding: 34px 20px 30px;
  background: var(--white);
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(12, 26, 58, 0.07);
  border-top: 4px solid var(--accent);
  transition: transform 0.35s, box-shadow 0.35s;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(12, 26, 58, 0.16);
}

.team-avatar {
  width: 92px;
  height: 92px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  overflow: hidden;
  font-size: 40px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  box-shadow: 0 0 0 5px rgba(240, 83, 36, 0.12);
  transition: box-shadow 0.35s;
}

.team-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.team-card:hover .team-avatar {
  box-shadow: 0 0 0 5px rgba(240, 83, 36, 0.35);
}

.team-card h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}

.team-card span {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 8px;
}

.team-card p {
  font-size: 13px;
  color: #64748b;
}

/* ---- Branch Network / Regions ---- */
.region-section {
  padding: 80px 0;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.region-card {
  padding: 28px 24px;
  background: var(--white);
  border: 1px solid #eef0f6;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(12, 26, 58, 0.06);
  transition: transform 0.35s, box-shadow 0.35s;
}

.region-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(12, 26, 58, 0.14);
}

.region-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 14px;
  border-bottom: 2px dashed #e2e8f0;
}

.region-head i {
  font-size: 20px;
  color: var(--accent);
}

.region-head h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.region-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.region-card li {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 6px 0;
  font-size: 13.5px;
  color: #475569;
}

.region-card li i {
  color: var(--accent);
  font-size: 12px;
}

/* ---- Years of Experience ---- */
.exp-section {
  padding: 20px 0 70px;
}

.exp-banner {
  position: relative;
  display: flex;
  align-items: center;
  gap: 50px;
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  border-radius: 20px;
  padding: 55px 60px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(12, 26, 58, 0.28);
}

.exp-banner::before {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240, 83, 36, 0.25), transparent 70%);
}

.exp-banner::after {
  content: "";
  position: absolute;
  bottom: -140px;
  left: 30%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 193, 7, 0.1), transparent 70%);
}

.exp-badge {
  min-width: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 34px 26px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  position: relative;
  z-index: 1;
}

.exp-years {
  font-family: "Poppins", sans-serif;
  font-size: 92px;
  font-weight: 800;
  line-height: 1;
  color: var(--gold);
  display: flex;
}

.exp-years span {
  color: var(--accent);
  font-size: 50px;
  margin-top: 8px;
}

.exp-label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  line-height: 1.5;
}

.exp-info {
  position: relative;
  z-index: 1;
}

.exp-info h2 {
  color: var(--white);
  font-size: 34px;
  margin-bottom: 16px;
}

.exp-info h2 span {
  color: var(--accent);
}

.exp-info p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 620px;
  line-height: 1.8;
}

.exp-ticks {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 30px;
  margin: 22px 0 28px;
}

.exp-ticks span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 500;
}

.exp-ticks i {
  color: var(--gold);
}

/* ---- About page responsive ---- */
@media (max-width: 1024px) {
  .mission-grid {
    grid-template-columns: 1fr;
  }

  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .region-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .page-banner {
    padding: 120px 0 70px;
  }

  .page-banner__content h1 {
    font-size: 34px;
  }

  .exp-banner {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 40px 26px;
  }

  .exp-info p {
    margin: 0 auto;
  }

  .exp-ticks {
    justify-content: center;
  }

  .values-grid,
  .team-grid,
  .region-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .mission-card {
    padding: 34px 26px;
  }
}

@media (max-width: 480px) {
  .values-grid,
  .team-grid,
  .region-grid {
    grid-template-columns: 1fr;
  }

  .exp-years {
    font-size: 72px;
  }

  .exp-years span {
    font-size: 40px;
  }

  .exp-info h2 {
    font-size: 27px;
  }
}

/* ---- Services page ---- */
.choose-section {
  padding: 30px 0 90px;
}

.choose-section .about-right {
  padding-top: 30px;
}

.card-body .service-points {
  list-style: none;
  margin: 12px 0 4px;
  padding: 0;
  text-align: left;
}

.card-body .service-points li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: #64748b;
  padding: 3px 0;
}

.card-body .service-points li i {
  color: var(--accent);
  font-size: 12px;
}

/* ---- Contact page ---- */
.contact-info-section {
  padding: 80px 0 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-info-card {
  position: relative;
  padding: 38px 28px 32px;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  color: var(--white);
  border-radius: 18px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 16px 38px rgba(12, 26, 58, 0.22);
  transition: transform 0.35s, box-shadow 0.35s;
}

.contact-info-card::before {
  content: "";
  position: absolute;
  top: -50px;
  right: -50px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.contact-info-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 52px rgba(12, 26, 58, 0.32);
}

.contact-info-card .info-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 28px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  box-shadow: 0 12px 24px rgba(240, 83, 36, 0.35);
  animation: floatY 3.5s ease-in-out infinite;
}

.contact-info-card h4 {
  font-size: 19px;
  font-weight: 700;
  margin-bottom: 12px;
  position: relative;
  z-index: 1;
}

.contact-info-card p {
  font-size: 14px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.85);
  position: relative;
  z-index: 1;
}

.contact-info-card p a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s;
}

.contact-info-card p a:hover {
  color: var(--accent);
}

/* ---- Contact Form ---- */
.contact-form-section {
  padding: 80px 0;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  margin-top: 30px;
  padding: 36px;
  background: var(--white);
  border: 1px solid #eef0f6;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(12, 26, 58, 0.08);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  font-family: inherit;
  font-size: 14.5px;
  color: var(--navy);
  background: #f7f9fd;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s, background 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  background: var(--white);
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(240, 83, 36, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .btn {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
}

.form-success {
  margin-top: 30px;
  padding: 40px 30px;
  text-align: center;
  background: linear-gradient(135deg, var(--navy), var(--navy-3));
  border-radius: 18px;
  color: var(--white);
}

.form-success > i {
  font-size: 54px;
  color: var(--gold);
  margin-bottom: 14px;
}

.form-success h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-success p {
  color: rgba(255, 255, 255, 0.85);
  max-width: 420px;
  margin: 0 auto;
}

/* ---- Contact Side Column ---- */
.contact-side-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-side-card {
  padding: 30px 26px;
  background: var(--white);
  border: 1px solid #eef0f6;
  border-radius: 18px;
  box-shadow: 0 14px 38px rgba(12, 26, 58, 0.08);
  transition: transform 0.35s, box-shadow 0.35s;
}

.contact-side-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 46px rgba(12, 26, 58, 0.14);
}

.side-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.side-head i {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 48px;
  border-radius: 12px;
  font-size: 20px;
  color: var(--white);
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
}

.side-head h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}

.contact-side-card > p {
  font-size: 14px;
  line-height: 1.8;
  color: #64748b;
  margin-bottom: 18px;
}

.btn-light {
  background: linear-gradient(135deg, var(--navy-2), var(--navy-3));
  color: var(--white);
}

.btn-light:hover {
  box-shadow: 0 14px 30px rgba(12, 26, 58, 0.3);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}

.btn-outline:hover {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 14px 30px rgba(240, 83, 36, 0.3);
}

.btn-outline i {
  color: inherit;
}

/* ---- Map ---- */
.map-section {
  padding: 0 0 80px;
}

.map-embed {
  margin-top: 48px;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(12, 26, 58, 0.16);
  border: 4px solid var(--white);
}

.map-embed iframe {
  display: block;
  width: 100%;
}

/* ---- Contact page responsive ---- */
@media (max-width: 1024px) {
  .contact-info-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }
}

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

  .contact-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

/* ---------------------------------------------------------------------------
   Page banner (inner pages)
--------------------------------------------------------------------------- */
.page-banner {
  background: linear-gradient(135deg, var(--navy), var(--navy-2));
  padding: 70px 0 90px;
  text-align: center;
}

.page-banner-tag {
  display: inline-block;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 13px;
  margin-bottom: 10px;
}

.page-banner h1 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 12px;
}

.page-banner h1 span {
  color: var(--accent);
}

.page-banner p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 560px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .page-banner {
    padding: 50px 0 70px;
  }

  .page-banner h1 {
    font-size: 30px;
  }
}
