/* ============================================================
   NURICK HOLDINGS EQUIPMENT LTD — REVAMP CSS
   Modern Corporate | Navy Blue & Gold
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --navy:       #0B1F3A;
  --navy-mid:   #122646;
  --navy-light: #1A3660;
  --gold:       #C9A84C;
  --gold-light: #E0C06A;
  --gold-dark:  #A8872E;
  --white:      #FFFFFF;
  --off-white:  #F5F3EE;
  --gray-light: #EEF0F3;
  --gray:       #8A9BB0;
  --text:       #2C3E50;
  --text-light: #5A6A7A;
  --border:     rgba(201,168,76,0.2);
  --shadow-sm:  0 2px 12px rgba(11,31,58,0.08);
  --shadow-md:  0 8px 32px rgba(11,31,58,0.14);
  --shadow-lg:  0 20px 60px rgba(11,31,58,0.18);
  --radius:     4px;
  --radius-lg:  8px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

.page-wrapper { overflow: hidden; }

/* ============================================================
   PRELOADER — DISABLED
   ============================================================ */
.preloader { display: none !important; }

/* ============================================================
   UTILITY
   ============================================================ */
.auto-container { max-width: 1240px; margin: 0 auto; padding: 0 30px; }
.clearfix::after { content: ''; display: table; clear: both; }

.gold-line {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin-bottom: 20px;
}

.section-tag {
  display: inline-block;
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-style-one {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 13px 28px;
  border-radius: var(--radius);
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}
.btn-style-one:hover {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.45);
  color: var(--navy);
}

.btn-style-two {
  background: var(--navy);
  color: var(--white);
  padding: 13px 28px;
  border-radius: var(--radius);
}
.btn-style-two:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  color: var(--white);
}

.btn-style-three {
  background: transparent;
  color: var(--white);
  padding: 13px 30px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
}
.btn-style-three:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-style-four {
  background: transparent;
  color: var(--gold);
  padding: 10px 22px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  font-size: 12px;
}
.btn-style-four:hover {
  background: var(--gold);
  color: var(--navy);
}

.btn-style-five {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 14px 36px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
}
.btn-style-five:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.45);
}

/* ============================================================
   TOP BAR
   ============================================================ */
.header-top {
  background: var(--navy);
  padding: 9px 0;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.header-top .auto-container { display: flex; justify-content: space-between; align-items: center; }
.header-top .text {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
}
.info-list { display: flex; gap: 24px; }
.info-list li a {
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 7px;
  transition: var(--transition);
}
.info-list li a:hover { color: var(--gold); }
.info-list li a .icon { color: var(--gold); font-size: 13px; }

/* ============================================================
   HEADER UPPER
   ============================================================ */
.header-upper {
  background: var(--white);
  padding: 18px 0;
  box-shadow: var(--shadow-sm);
}
.header-upper .inner-container { max-width: 1240px; margin: 0 auto; padding: 0 30px; }
.header-upper .auto-container { display: flex; align-items: center; justify-content: space-between; }
.logo img { height: 54px; width: auto; }

/* ============================================================
   MAIN NAVIGATION
   ============================================================ */
.main-header { position: relative; z-index: 999; }

.nav-outer { display: flex; align-items: center; justify-content: space-between; gap: 0; }

.outer-box { margin-left: 30px; flex-shrink: 0; }

.main-menu .navigation { display: flex; align-items: center; gap: 4px; }
.main-menu .navigation > li > a {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--navy);
  padding: 10px 16px;
  border-radius: var(--radius);
  transition: var(--transition);
  position: relative;
}
.main-menu .navigation > li > a::after {
  content: '';
  position: absolute;
  bottom: 5px; left: 16px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.main-menu .navigation > li > a:hover { color: var(--gold); }
.main-menu .navigation > li > a:hover::after { width: calc(100% - 32px); }

/* Header Lower (style-two pages) */
.header-lower {
  background: var(--navy);
  padding: 0;
}
.header-lower .auto-container { display: flex; align-items: center; justify-content: space-between; padding: 12px 30px; max-width: 1240px; margin: 0 auto; }
.header-lower .navigation > li > a { color: rgba(255,255,255,0.85); }
.header-lower .navigation > li > a:hover { color: var(--gold); }
.header-lower .navigation > li > a::after { bottom: 4px; }

/* Dropdown */
.main-menu .navigation li.dropdown { position: relative; }
.main-menu .navigation li.dropdown ul {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 260px;
  background: var(--white);
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-lg);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 100;
}
.main-menu .navigation li.dropdown:hover ul { opacity: 1; visibility: visible; transform: translateY(0); }
.main-menu .navigation li.dropdown ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 13px;
  color: var(--text);
  border-bottom: 1px solid var(--gray-light);
  transition: var(--transition);
}
.main-menu .navigation li.dropdown ul li a:hover {
  color: var(--gold);
  background: var(--off-white);
  padding-left: 26px;
}

/* Sticky Header */
.sticky-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: var(--navy);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  z-index: 9999;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}
.sticky-header.fixed { transform: translateY(0); }
.sticky-header .auto-container { display: flex; align-items: center; justify-content: space-between; max-width: 1240px; margin: 0 auto; padding: 0 30px; }
.sticky-header .logo img { height: 40px; }
.sticky-header .navigation > li > a { color: rgba(255,255,255,0.85); font-size: 13px; }
.sticky-header .navigation > li > a:hover { color: var(--gold); }

/* Mobile Toggle */
.navbar-toggler {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 7px 12px;
  border-radius: var(--radius);
  cursor: pointer;
  display: none;
}

/* ============================================================
   HERO / MAIN SLIDER
   ============================================================ */
.main-slider {
  position: relative;
  background: var(--navy);
  min-height: 640px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.main-slider::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.65) 100%);
  z-index: 1;
}
.main-slider .slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: url(images/main-slider/1.jpg);
}
.main-slider .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  margin: 0 auto;
  padding: 100px 30px;
  width: 100%;
}
.main-slider .hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.main-slider .hero-tag::before {
  content: '';
  width: 30px; height: 2px;
  background: var(--gold);
}
.main-slider h1 {
  font-size: clamp(36px, 5vw, 64px);
  color: var(--white);
  max-width: 700px;
  line-height: 1.15;
  margin-bottom: 24px;
}
.main-slider h1 span { color: var(--gold); }
.main-slider .hero-text {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 540px;
  margin-bottom: 40px;
  line-height: 1.75;
}
.main-slider .hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* Stats bar */
.hero-stats {
  display: flex;
  gap: 0;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  margin-top: 60px;
  overflow: hidden;
  max-width: 600px;
}
.hero-stat {
  flex: 1;
  padding: 20px 24px;
  border-right: 1px solid rgba(201,168,76,0.15);
  text-align: center;
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  line-height: 1;
}
.hero-stat .label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}

/* ============================================================
   PAGE BANNER (Inner Pages)
   ============================================================ */
.page-banner {
  position: relative;
  padding: 90px 0 70px;
  background-size: cover;
  background-position: center;
  text-align: left;
}
.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.6) 100%);
}
.page-banner .auto-container { position: relative; z-index: 1; }
.page-banner h1 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  margin-bottom: 14px;
}
.bread-crumb { display: flex; gap: 10px; align-items: center; }
.bread-crumb li {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}
.bread-crumb li a { color: var(--gold); }
.bread-crumb li + li::before { content: '›'; margin-right: 10px; color: var(--gold); }

/* ============================================================
   SERVICES SECTION (Homepage)
   ============================================================ */
.services-section { padding: 90px 0; background: var(--off-white); }
.services-section .section-head { margin-bottom: 56px; }
.services-section .section-head h2 { font-size: clamp(26px, 3vw, 38px); }

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(11,31,58,0.07);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(201,168,76,0.2);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card .icon-box {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
  color: var(--gold);
}
.service-card h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--navy);
}
.service-card h4 a { color: inherit; }
.service-card h4 a:hover { color: var(--gold); }
.service-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.service-card .read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  margin-top: 18px;
  letter-spacing: 0.5px;
}
.service-card .read-more:hover { gap: 10px; }

/* ============================================================
   ABOUT SECTION (Homepage)
   ============================================================ */
.about-section { padding: 90px 0; }
.about-section .row { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.about-section .image-col { flex: 1; min-width: 300px; position: relative; }
.about-section .image-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about-section .image-col .badge-box {
  position: absolute;
  bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  padding: 22px 26px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-section .image-col .badge-box .num {
  font-family: 'Playfair Display', serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 1;
  display: block;
}
.about-section .image-col .badge-box .lbl { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.about-section .content-col { flex: 1; min-width: 300px; }
.about-section h2 { font-size: clamp(26px, 3vw, 38px); margin-bottom: 20px; }
.about-section p { color: var(--text-light); margin-bottom: 16px; }
.about-features { display: flex; flex-direction: column; gap: 14px; margin: 28px 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about-feature .icon { color: var(--gold); font-size: 18px; margin-top: 2px; }
.about-feature h5 { font-size: 15px; margin-bottom: 4px; color: var(--navy); }
.about-feature p { font-size: 13px; color: var(--text-light); margin: 0; }

/* ============================================================
   SKILL SECTION
   ============================================================ */
.skill-section {
  padding: 90px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.skill-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.82) 100%);
}
.skill-section .auto-container { position: relative; z-index: 1; }
.skill-section .row { display: flex; gap: 60px; align-items: center; flex-wrap: wrap; }
.skill-column { flex: 1; min-width: 300px; }
.skill-column h2 { font-size: clamp(24px, 3vw, 34px); color: var(--white); margin-bottom: 32px; }
.skill-column h2 span { color: var(--gold); }

.skill-item { margin-bottom: 28px; }
.skill-header { display: flex; justify-content: space-between; margin-bottom: 10px; }
.skill-title { font-size: 14px; font-weight: 600; color: rgba(255,255,255,0.85); }
.skill-percentage { font-size: 14px; font-weight: 700; color: var(--gold); }
.skill-bar { background: rgba(255,255,255,0.1); border-radius: 50px; height: 6px; overflow: hidden; }
.bar { height: 100%; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 50px; width: 0; transition: width 1.5s ease; }

/* ============================================================
   FACT COUNTER
   ============================================================ */
.fact-counter { padding: 30px 0; }
.fact-counter .clearfix { display: flex; flex-wrap: wrap; gap: 20px; }
.counter-column {
  flex: 1;
  min-width: 150px;
  text-align: center;
  padding: 24px 16px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--gold);
}
.count-outer { font-family: 'Playfair Display', serif; font-size: 38px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.counter-title { font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: var(--text-light); font-weight: 600; }

/* ============================================================
   FACTORY / CLIENTS SECTION
   ============================================================ */
.factory-section {
  padding: 70px 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.factory-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(11,31,58,0.04);
}
.factory-section .auto-container { position: relative; z-index: 1; }
.factory-section .title-box { text-align: center; margin-bottom: 44px; }
.factory-section .title-box h2 { font-size: clamp(22px, 3vw, 32px); max-width: 700px; margin: 0 auto 14px; }
.factory-section .title-box .text { font-size: 15px; color: var(--text-light); max-width: 640px; margin: 0 auto; }

.factories-icons-carousel { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 32px; }
.factory-icon a { display: flex; align-items: center; justify-content: center; padding: 16px 24px; background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg); transition: var(--transition); }
.factory-icon a img { height: 44px; width: auto; filter: grayscale(60%); opacity: 0.7; transition: var(--transition); }
.factory-icon a:hover { border-color: var(--gold); box-shadow: var(--shadow-md); }
.factory-icon a:hover img { filter: none; opacity: 1; }

/* ============================================================
   QUOTE SECTION
   ============================================================ */
.quote-section {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  padding: 60px 0;
}
.quote-section .inner-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.quote-section .content { display: flex; align-items: center; gap: 20px; }
.quote-section .icon { font-size: 36px; color: var(--gold); }
.quote-section h3 { font-size: clamp(18px, 2.5vw, 24px); color: var(--white); margin-bottom: 6px; }
.quote-section .text { font-size: 14px; color: rgba(255,255,255,0.65); }

/* ============================================================
   ABOUT PAGE SECTIONS
   ============================================================ */
.about-section-two {
  padding: 90px 0;
  background-size: cover;
  position: relative;
}
.about-section-two .title-style-one { text-align: center; margin-bottom: 54px; }
.about-section-two .title-style-one .icon img { height: 50px; margin: 0 auto 16px; }
.about-section-two .title-style-one .subtitle { color: var(--gold); font-size: 12px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.about-section-two .title-style-one h2 { font-size: clamp(24px, 3vw, 36px); max-width: 680px; margin: 0 auto 18px; }
.about-section-two .title-style-one .text { color: var(--text-light); max-width: 640px; margin: 0 auto; }
.about-section-two .row { display: flex; gap: 50px; align-items: center; flex-wrap: wrap; }
.about-section-two .image-column, .about-section-two .content-column { flex: 1; min-width: 280px; }
.about-section-two .image figure img { border-radius: var(--radius-lg); width: 100%; }
.about-section-two .text strong { font-weight: 600; color: var(--navy); }
.about-section-two .text p { color: var(--text-light); margin-bottom: 16px; }

/* Mission Section */
.mission-section {
  padding: 0;
  background-size: cover;
  background-position: center;
  position: relative;
}
.mission-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,31,58,0.92) 0%, rgba(11,31,58,0.75) 100%);
}
.mission-section .auto-container { position: relative; z-index: 1; }
.mission-section .row { display: flex; flex-wrap: wrap; }
.mission-section .colum { flex: 1; min-width: 300px; }
.mission-section .inner-column { padding: 60px 40px; }
.mission-section .content-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: var(--radius-lg);
  padding: 32px;
  margin-bottom: 24px;
}
.mission-section .content-box h4 { font-size: 22px; color: var(--gold); margin-bottom: 14px; }
.mission-section .content-box .text { font-size: 14px; color: rgba(255,255,255,0.75); }
.mission-section .image-box img { border-radius: var(--radius-lg); width: 100%; }

/* FAQ Section */
.faq-section { padding: 90px 0; }
.faq-section .row { display: flex; gap: 50px; flex-wrap: wrap; }
.faq-section .accordion-column, .faq-section .image-column { flex: 1; min-width: 280px; }
.faq-section .title-style-one .subtitle { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }
.faq-section .title-style-one h2 { font-size: clamp(22px, 2.5vw, 32px); margin-bottom: 30px; }

.accordion-box { display: flex; flex-direction: column; gap: 12px; }
.accordion.block {
  border: 1px solid var(--gray-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.accordion.block:hover { border-color: rgba(201,168,76,0.3); }
.acc-btn {
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition);
  background: var(--off-white);
}
.acc-btn.active { background: var(--navy); color: var(--gold); }
.acc-btn .icon-outer { color: var(--gold); font-size: 16px; }
.acc-content { display: none; }
.acc-content.current { display: block; }
.acc-content .text { padding: 18px 22px; font-size: 14px; color: var(--text-light); line-height: 1.75; border-top: 1px solid var(--gray-light); }
.faq-section .image-column img { border-radius: var(--radius-lg); width: 100%; }

/* Featured Services */
.featured-services { display: flex; flex-wrap: wrap; }
.feature-block-five { flex: 1; min-width: 250px; }
.feature-block-five .inner-box {
  position: relative;
  padding: 60px 36px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
}
.feature-block-five .inner-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11,31,58,0.88) 0%, rgba(11,31,58,0.4) 100%);
  transition: var(--transition);
}
.feature-block-five .inner-box:hover::before { background: linear-gradient(0deg, rgba(11,31,58,0.95) 0%, rgba(11,31,58,0.6) 100%); }
.feature-block-five .content { position: relative; z-index: 1; }
.feature-block-five .icon-box { font-size: 30px; color: var(--gold); margin-bottom: 12px; }
.feature-block-five h4 { font-size: 18px; color: var(--white); }
.feature-block-five h4 a { color: inherit; }
.feature-block-five h4 a:hover { color: var(--gold); }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page-section { padding: 90px 0; }
.contact-page-section .row { display: flex; gap: 50px; flex-wrap: wrap; }
.contact-page-section .info-column, .contact-page-section .form-column { flex: 1; min-width: 280px; }

.contact-page-section .title-box { margin-bottom: 30px; }
.contact-page-section .title-box h3 { font-size: 24px; margin-bottom: 10px; }
.contact-page-section .title-text { font-size: 14px; color: var(--text-light); }

.contact-info-list { display: flex; flex-direction: column; gap: 16px; }
.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  font-size: 14px;
  color: var(--text-light);
  border-left: 3px solid var(--gold);
}
.contact-info-list li .icon { color: var(--gold); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.contact-info-list li strong { display: block; font-weight: 700; color: var(--navy); font-size: 13px; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; }

.contact-page-section .sec-title .title { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.contact-page-section .sec-title h2 { font-size: clamp(22px, 2.5vw, 30px); margin-bottom: 24px; }

.contact-form .form-group { margin-bottom: 20px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--gray-light);
  border-radius: var(--radius);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form .row { display: flex; gap: 20px; flex-wrap: wrap; }
.contact-form .col-lg-6 { flex: 1; min-width: 200px; }
.contact-form .col-lg-12 { width: 100%; }

/* ============================================================
   SERVICE DETAIL PAGES
   ============================================================ */
.sidebar-page-container { padding: 80px 0; }
.sidebar-page-container .auto-container > .row { display: flex; gap: 40px; flex-wrap: wrap; }
.sidebar-side { flex: 0 0 300px; }
.content-side { flex: 1; min-width: 300px; }

/* Sidebar Widgets */
.sidebar-widget { margin-bottom: 30px; }
.sidebar-widget.brochures {
  background: var(--off-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.sidebar-title {
  background: var(--navy);
  padding: 14px 20px;
}
.sidebar-title h5 { color: var(--gold); font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; font-family: 'DM Sans', sans-serif; }
.sidebar-widget .widget-content { padding: 20px; display: flex; flex-direction: column; gap: 12px; }
.brochure-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.brochure-btn .icon { color: var(--gold); }
.brochure-btn:hover { border-color: var(--gold); background: var(--navy); color: var(--gold); }

.sidebar-widget.support-widget {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: var(--radius-lg);
  text-align: center;
}
.support-widget .widget-content { padding: 30px 24px; }
.support-widget .icon { font-size: 38px; color: var(--gold); margin-bottom: 12px; }
.support-widget .text { font-size: 14px; color: rgba(255,255,255,0.7); margin-bottom: 10px; }
.support-widget .number { font-family: 'Playfair Display', serif; font-size: 20px; color: var(--gold); font-weight: 700; margin-bottom: 8px; }
.support-widget .email a { font-size: 13px; color: rgba(255,255,255,0.65); }
.support-widget .email a:hover { color: var(--gold); }

/* Service Detail Content */
.services-detail .inner-box { background: var(--white); }
.services-detail .image img { width: 100%; border-radius: var(--radius-lg); margin-bottom: 36px; }
.services-detail .title-box { margin-bottom: 24px; }
.services-detail .title-box .title { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 8px; }
.services-detail .title-box h2 { font-size: clamp(24px, 3vw, 34px); }
.services-detail .bold-text { font-size: 16px; font-weight: 500; color: var(--navy); line-height: 1.7; margin-bottom: 24px; padding: 20px 24px; border-left: 4px solid var(--gold); background: var(--off-white); border-radius: 0 var(--radius) var(--radius) 0; }
.services-detail .text p { color: var(--text-light); margin-bottom: 16px; }
.services-detail .text h3 { font-size: 20px; color: var(--navy); margin: 28px 0 12px; }
.services-detail .text h5 { font-size: 16px; color: var(--gold); font-family: 'DM Sans', sans-serif; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin: 32px 0 20px; }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer {
  background: var(--navy);
  padding-top: 70px;
}
.main-footer .widgets-section { padding-bottom: 50px; }
.main-footer .row { display: flex; flex-wrap: wrap; gap: 40px; }
.big-column { flex: 1; min-width: 280px; }
.footer-column { flex: 1; min-width: 180px; }

.footer-widget .logo { margin-bottom: 18px; }
.footer-widget .logo img { height: 46px; }
.footer-widget .text { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.75; margin-bottom: 20px; }

.footer-widget h2 {
  font-size: 14px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(201,168,76,0.2);
}

.footer-service-list { display: flex; flex-direction: column; gap: 8px; }
.footer-service-list li a {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-service-list li a::before {
  content: '›';
  color: var(--gold);
  font-size: 16px;
}
.footer-service-list li a:hover { color: var(--gold); padding-left: 4px; }

.contact-widget .number { font-size: 22px; font-family: 'Playfair Display', serif; color: var(--white); margin-bottom: 10px; }
.contact-widget ul li a { font-size: 13px; color: rgba(255,255,255,0.55); }
.contact-widget ul li a:hover { color: var(--gold); }

/* Footer Bottom */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.copyright { font-size: 12px; color: rgba(255,255,255,0.4); }

.social-links { display: flex; gap: 8px; }
.social-links li a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.social-links li a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
.scroll-to-top {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
}
.scroll-to-top.visible { opacity: 1; visibility: visible; }
.scroll-to-top:hover { transform: translateY(-4px); }

/* ============================================================
   SENT PAGE
   ============================================================ */
.faq-section .subtitle { color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; font-weight: 600; margin-bottom: 10px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .navbar-toggler { display: flex; }
  .navbar-collapse { display: none; width: 100%; }
  .navbar-collapse.show { display: block; }
  .main-menu .navigation { flex-direction: column; gap: 0; padding: 10px 0; }
  .main-menu .navigation > li > a { padding: 12px 0; border-radius: 0; }
  .main-menu .navigation > li > a::after { display: none; }
  .header-lower .auto-container { flex-wrap: wrap; }
  .main-slider { min-height: 500px; }
  .main-slider .hero-content { padding: 80px 20px; }
  .hero-stats { max-width: 100%; }
  .about-section .row, .skill-section .row, .faq-section .row { flex-direction: column; }
  .about-section .image-col .badge-box { bottom: 10px; right: 10px; }
  .mission-section .row { flex-direction: column; }
  .sidebar-page-container .auto-container > .row { flex-direction: column; }
  .sidebar-side { flex: none; width: 100%; }
}

@media (max-width: 768px) {
  .header-top { display: none; }
  .services-grid { grid-template-columns: 1fr; }
  .feature-block-five { flex: 0 0 100%; }
  .hero-stats { flex-direction: column; }
  .hero-stat { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .hero-stat:last-child { border-bottom: none; }
  .quote-section .inner-section { flex-direction: column; text-align: center; }
  .quote-section .content { flex-direction: column; text-align: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .info-list { display: none; }
}

@media (max-width: 480px) {
  .auto-container { padding: 0 18px; }
  .main-slider h1 { font-size: 30px; }
  .hero-btns { flex-direction: column; }
  .theme-btn { justify-content: center; text-align: center; }
}

/* ============================================================
   ONLINE IMAGE FALLBACKS (Unsplash free stock images)
   These display when local images are missing
   ============================================================ */

/* Hero slider fallback */
.main-slider .slide-bg {
  background-image: url('https://images.unsplash.com/photo-1588421357574-87938a86fa28?w=1600&q=80');
}

/* About page banner fallback */
.page-banner.style-two {
  background-image: url('https://images.unsplash.com/photo-1605745341112-85968b19335b?w=1600&q=80') !important;
}

/* Contact page banner fallback */
section.page-banner[style*="background/3.jpg"] {
  background-image: url('https://images.unsplash.com/photo-1423592707957-3b212afa6733?w=1600&q=80') !important;
}

/* Skill section background fallback */
.skill-section {
  background-image: url('https://images.unsplash.com/photo-1579551053957-1f3c18e04e8d?w=1600&q=80') !important;
}

/* Mission section background fallback */
.mission-section {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') !important;
}

/* Featured service block fallbacks */
.feature-block-five:nth-child(1) .inner-box {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=800&q=80') !important;
}
.feature-block-five:nth-child(2) .inner-box {
  background-image: url('https://images.unsplash.com/photo-1605745341112-85968b19335b?w=800&q=80') !important;
}
.feature-block-five:nth-child(3) .inner-box {
  background-image: url('https://images.unsplash.com/photo-1579551053957-1f3c18e04e8d?w=800&q=80') !important;
}

/* Service page banners — contractor */
.page-banner[style*="contractor.jpg"] {
  background-image: url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1600&q=80') !important;
}
/* shipping */
.page-banner[style*="shipping.jpg"] {
  background-image: url('https://images.unsplash.com/photo-1605745341112-85968b19335b?w=1600&q=80') !important;
}
/* vessel */
.page-banner[style*="vessel.png"] {
  background-image: url('https://images.unsplash.com/photo-1588421357574-87938a86fa28?w=1600&q=80') !important;
}
/* supply */
.page-banner[style*="supply.jpg"] {
  background-image: url('https://images.unsplash.com/photo-1566576912321-d58ddd7a6088?w=1600&q=80') !important;
}
/* crew */
.page-banner[style*="crew"] {
  background-image: url('https://images.unsplash.com/photo-1521737604893-d14cc237f11d?w=1600&q=80') !important;
}
/* protective */
.page-banner[style*="protective.jpg"] {
  background-image: url('https://images.unsplash.com/photo-1423592707957-3b212afa6733?w=1600&q=80') !important;
}
/* oil and gas */
.page-banner[style*="oil-and-gas.jpg"] {
  background-image: url('https://images.unsplash.com/photo-1579551053957-1f3c18e04e8d?w=1600&q=80') !important;
}
