@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Outfit:wght@300;400;500;700;800&display=swap");

:root {
  --janix-blue: #04101e;
  --janix-green: #008f4c;
  --janix-accent: #0d930e;
  --janix-dark: #02060b;
  --janix-light: #fdfdfd;
  --janix-gray: #7a8288;
  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

body {
  font-family: "Inter", sans-serif;
  color: #333;
  background-color: var(--janix-light);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6,
.brand-font {
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}

.text-primary-janix {
  color: var(--janix-blue) !important;
}
.text-secondary-janix {
  color: var(--janix-green) !important;
}
.text-accent-janix {
  color: var(--janix-accent) !important;
}
.bg-primary-janix {
  background-color: var(--janix-blue) !important;
}
.bg-secondary-janix {
  background-color: var(--janix-green) !important;
}
.bg-accent-janix {
  background-color: var(--janix-accent) !important;
}
.bg-dark-janix {
  background-color: var(--janix-dark) !important;
  color: #fff;
}
.fw-light {
  font-weight: 300 !important;
}

/* =========================================
   BUTTONS
   ========================================= */
.btn-janix {
  background-color: var(--janix-blue);
  color: #fff;
  border: 1px solid var(--janix-blue);
  padding: 14px 32px;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  z-index: 1;
  text-decoration: none;
  display: inline-block;
}
.btn-janix::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: var(--janix-accent);
  transition: var(--transition);
  z-index: -1;
}
.btn-janix:hover::before {
  width: 100%;
}
.btn-janix:hover {
  color: var(--janix-dark);
  border-color: var(--janix-accent);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(212, 175, 55, 0.2);
}

.btn-janix-outline {
  background-color: transparent;
  color: var(--janix-blue);
  border: 1px solid var(--janix-blue);
  padding: 12px 28px;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-janix-outline:hover {
  background-color: var(--janix-blue);
  color: #fff;
}

.btn-janix-gold {
  background: var(--janix-accent);
  color: var(--janix-dark);
  border: 1px solid var(--janix-accent);
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 48px;
  border-radius: 2px;
  font-family: "Outfit", sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  text-decoration: none;
  display: inline-block;
}
.btn-janix-gold:hover {
  background: #fff;
  color: var(--janix-blue);
  border-color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

/* =========================================
   TOP BAR
   ========================================= */
.top-bar {
  background-color: var(--janix-dark);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
  padding: 10px 0;
  z-index: 1040;
  position: relative;
  letter-spacing: 0.5px;
}
.top-bar a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  margin-left: 25px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}
.top-bar a:hover {
  color: var(--janix-accent);
}
.top-bar .social-icons a {
  margin-left: 15px;
  font-size: 0.9rem;
}

/* =========================================
   MAIN NAVBAR
   ========================================= */
.janix-navbar {
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
  transition: var(--transition);
  z-index: 1030;
}
.janix-navbar.scrolled {
  padding: 12px 0;
  background-color: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.navbar-brand {
  font-family: "Outfit", sans-serif;
  font-weight: 800;
  font-size: 30px;
  letter-spacing: -0.5px;
  display: flex;
  align-items: center;
  color: var(--janix-blue) !important;
}
.navbar-brand img {
  width: 160px;
}
.brand-icon {
  width: 40px;
  height: 40px;
  margin-right: 12px;
  position: relative;
}
.brand-icon::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 35px;
  background: var(--janix-blue);
  transform: rotate(30deg);
  left: 12px;
  top: 2px;
}
.brand-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 25px;
  background: var(--janix-green);
  transform: rotate(-30deg);
  left: 22px;
  top: 12px;
}

.nav-link {
  color: var(--janix-blue) !important;
  font-weight: 550;
  margin: 0 35px;
  position: relative;
  font-family: "Outfit", sans-serif;
  font-size: 19px;
  letter-spacing: 1px;
  padding: 8px 0 !important;
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0px;
  right: 0px;
  height: 1px;
  background-color: var(--janix-accent);
  transition: var(--transition);
  transform: scaleX(0);
  transform-origin: right;
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
  transform-origin: left;
}
.nav-link:hover {
  color: var(--janix-accent) !important;
}

/* =========================================
   MEGA MENU
   ========================================= */
.nav-item.dropdown.mega-dropdown {
  position: static;
}
.mega-menu {
  width: 100%;
  left: 0;
  right: 0;
  border: none;
  border-radius: 0 0 12px 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
  padding: 50px 0;
  margin-top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 0, 0, 0.05);
  display: block;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  pointer-events: none;
}
.nav-item.dropdown.mega-dropdown:hover .mega-menu,
.mega-menu.show {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.dropdown-item:hover{
  background-color: #079f11;
}
@media (min-width: 992px) {
  .mega-menu {
    position: absolute;
  }
}

.mega-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--janix-blue);
  margin-bottom: 25px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mega-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mega-list li {
  margin-bottom: 15px;
}
.mega-list a {
  color: var(--janix-gray);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  transition: var(--transition);
  display: flex;
  align-items: center;
}
.mega-list a i {
  margin-right: 12px;
  color: var(--janix-accent);
  font-size: 1rem;
  opacity: 0.7;
  transition: var(--transition);
}
.mega-list a:hover {
  color: var(--janix-blue);
  transform: translateX(8px);
}
.mega-list a:hover i {
  opacity: 1;
}

.mega-feature-box {
  background: var(--janix-light);
  padding: 40px;
  border-radius: 8px;
  border-left: 3px solid var(--janix-accent);
  height: 100%;
}
.mega-feature-box-blue {
  border-left-color: var(--janix-blue);
}
.mega-feature-title {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--janix-blue);
  margin-bottom: 15px;
}
.mega-feature-text {
  font-size: 0.95rem;
  color: var(--janix-gray);
  margin-bottom: 25px;
  line-height: 1.6;
}

/* =========================================
   ADNOC STYLE HEADER (Homepage)
   ========================================= */
.adnoc-header-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
  display: flex;
}
.adnoc-logo-box {
  background: #fff;
  width: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 15px;
}
.adnoc-logo-box img {
  max-width: 100%;
  height: auto;
}
.adnoc-nav-box {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.adnoc-top-bar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  padding: 10px 0;
}
.adnoc-top-btn {
  background: #0d930e;
  color: #fff;
  font-weight: 500;
  padding: 12px 30px;
  text-decoration: none;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-family: "Outfit", sans-serif;
  letter-spacing: 1px;
  transition: var(--transition);
}
.adnoc-top-btn:hover {
  background: var(--janix-accent);
  color: #000;
}
.adnoc-top-links {
  display: flex;
  gap: 25px;
  padding-right: 30px;
}
.adnoc-top-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.adnoc-top-links a:hover {
  color: #fff;
}

.adnoc-main-nav {
  background: transparent !important;
  padding: 10px 30px !important;
  box-shadow: none;
  backdrop-filter: none;
}
.adnoc-main-nav .navbar-nav {
  flex-direction: row;
  gap: 10px;
}
.adnoc-main-nav .nav-link {
  color: #fff !important;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 15px;
  padding: 10px 0 !important;
}
.adnoc-main-nav .nav-link::after {
  background-color: #ffd700;
}
.adnoc-main-nav .nav-link:hover {
  color: #ffd700 !important;
}
.adnoc-main-nav .mega-menu {
  margin-top: 15px;
  border-radius: 8px;
}

/* =========================================
   HERO SECTION (Homepage)
   ========================================= */
.adnoc-hero-section {
  height: 100vh;
  min-height: 700px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
}
.adnoc-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(4, 16, 30, 0.85) 0%,
    rgba(4, 16, 30, 0.4) 100%
  );
  z-index: 1;
}
.adnoc-hero-content {
  position: relative;
  z-index: 2;
  padding-left: 10%;
  max-width: 900px;
  margin-top: 50px;
}
.adnoc-hero-title {
  color: #fff;
  font-size: 3.2rem;
  letter-spacing: 1.2px;
  font-weight: 800;
  margin-bottom: 20px;
  font-family: "Outfit", sans-serif;
  line-height: 1.1;
}
.adnoc-hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  font-weight: 300;
  margin-bottom: 40px;
  line-height: 1.6;
  max-width: 700px;
}
.adnoc-hero-btn {
  background-color: #0d930e;
  color: #fff;
  text-transform: uppercase;
  font-size: 0.9rem;
  letter-spacing: 1px;
  font-weight: 700;
  border: none;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  display: inline-block;
  transition: var(--transition);
  font-family: "Outfit", sans-serif;
}
.adnoc-hero-btn:hover {
  background-color: var(--janix-accent);
  color: #000;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Hero Carousel Cards */
.adnoc-carousel-container {
  position: absolute;
  bottom: 30px;
  right: 50px;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.adnoc-cards {
  display: flex;
  gap: 15px;
}
.adnoc-card {
  width: 200px;
  height: 130px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}
.adnoc-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.adnoc-card:hover img {
  transform: scale(1.08);
}
.adnoc-card-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  display: flex;
  align-items: flex-end;
  height: 50%;
}
.adnoc-card-title {
  color: #fff;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.2;
  font-family: "Outfit", sans-serif;
}
.adnoc-dots {
  display: flex;
  gap: 8px;
  margin-top: 15px;
  justify-content: flex-end;
  width: 100%;
  padding-right: 5px;
}
.adnoc-dot {
  width: 6px;
  height: 6px;
  background: rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}
.adnoc-dot:hover,
.adnoc-dot.active {
  background: #fff;
}
.adnoc-dot.active {
  width: 25px;
  border-radius: 4px;
}

/* =========================================
   SUBPAGE HERO
   ========================================= */
/* .page-hero {
  position: relative;
  height: 50vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--janix-blue);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at center,
    rgba(212, 175, 55, 0.12) 0%,
    transparent 65%
  );
}
.page-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--janix-accent),
    transparent
  );
}
.page-title {
  font-size: 4rem;
  font-weight: 800;
  position: relative;
  z-index: 2;
  letter-spacing: -1.5px;
}
.page-hero .lead {
  position: relative;
  z-index: 2;
} */

/* =========================================
   SECTIONS & LAYOUTS
   ========================================= */
.section-padding {
  padding: 140px 0;
}
.section-padding-sm {
  padding: 90px 0;
}
.bg-corporate-light {
  background-color: #f7f9fa;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
  color: var(--janix-blue);
  font-weight: 800;
  letter-spacing: -1px;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: var(--janix-accent);
}
.text-center .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  color: var(--janix-accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 15px;
  display: block;
}

/* =========================================
   KEY FACTS (Floating Glassmorphism)
   ========================================= */
.key-facts-wrapper {
  position: relative;
  margin-top: -20px;
  z-index: 10;
}
.key-facts-card {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(20px);
  border-radius: 8px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  padding: 40px 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-top: 3px solid var(--janix-accent);
}
.fact-item {
  text-align: center;
  border-right: 1px solid rgba(0, 0, 0, 0.08);
}
.fact-item:last-child {
  border-right: none;
}
.fact-number {
  font-family: "Outfit", sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--janix-blue);
  line-height: 1;
  margin-bottom: 10px;
}
.fact-text {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--janix-gray);
}

/* =========================================
   WELCOME SECTION (Premium)
   ========================================= */
.welcome-section {
  background: linear-gradient(180deg, #fdfdfd 0%, #f4f6f8 100%);
  position: relative;
  overflow: hidden;
}
.welcome-section::before {
  content: "";
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(212, 175, 55, 0.05) 0%,
    transparent 70%
  );
  pointer-events: none;
}
.welcome-title {
  font-family: "Outfit", sans-serif;
  font-size: 4.5rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.welcome-badge {
  background-color: var(--janix-green);
  letter-spacing: 4px;
  font-weight: 500;
  font-size: 1.1rem;
}
.welcome-text {
  max-width: 900px;
  line-height: 1.9;
  font-size: 1rem;
}
.welcome-image {
  max-height: 350px;
  border-radius: 0;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1),
    box-shadow 0.5s ease;
  object-fit: cover;
}
.welcome-image:hover {
  transform: scale(1.03) translateY(-6px);
  box-shadow: 0 35px 60px rgba(0, 0, 0, 0.2);
}

/* =========================================
   PRODUCT CARDS (Sleek Minimalist - Homepage)
   ========================================= */
.janix-premium-card {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  height: 480px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.janix-premium-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.janix-premium-card::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to top,
    rgba(4, 16, 30, 0.95) 0%,
    rgba(4, 16, 30, 0.2) 60%,
    transparent 100%
  );
  transition: opacity 0.5s ease;
}
.janix-premium-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 40px;
  z-index: 2;
  color: #fff;
  transform: translateY(30px);
  transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.janix-premium-card-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: #fff;
}
.janix-premium-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  opacity: 0;
  transition: opacity 0.5s ease;
  margin-bottom: 20px;
}
.janix-premium-card-link {
  display: inline-flex;
  align-items: center;
  color: var(--janix-accent);
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-decoration: none;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.janix-premium-card-link i {
  margin-left: 8px;
  transition: transform 0.3s;
}
.janix-premium-card:hover img {
  transform: scale(1.05);
}
.janix-premium-card:hover::after {
  opacity: 0.9;
}
.janix-premium-card:hover .janix-premium-card-content {
  transform: translateY(0);
}
.janix-premium-card:hover .janix-premium-card-desc,
.janix-premium-card:hover .janix-premium-card-link {
  opacity: 1;
}
.janix-premium-card-link:hover {
  color: #fff;
}
.janix-premium-card-link:hover i {
  transform: translateX(5px);
}

/* =========================================
   PRODUCTS PAGE CARDS (Premium Grid)
   ========================================= */
.janix-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.04);
  height: 100%;
}
.janix-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 55px rgba(0, 0, 0, 0.12);
  border-color: var(--janix-accent);
}
.janix-card-img-wrapper {
  height: 220px;
  overflow: hidden;
}
.janix-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.janix-card:hover .janix-card-img {
  transform: scale(1.07);
}
.janix-card-body {
  padding: 30px;
}
.janix-card-title {
  font-family: "Outfit", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--janix-blue);
  margin-bottom: 10px;
}
.janix-card-icon {
  width: 65px;
  height: 65px;
  background: linear-gradient(135deg, var(--janix-blue), #1e3a5f);
  color: var(--janix-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.janix-card:hover .janix-card-icon {
  background: linear-gradient(135deg, var(--janix-accent), #e6b800);
  color: var(--janix-dark);
  transform: scale(1.1) rotate(5deg);
}

/* =========================================
   CTA SECTION (Premium)
   ========================================= */
.cta-section {
  position: relative;
  overflow: hidden;
}
.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(4, 16, 30, 0.9);
}
.cta-title {
  font-family: "Outfit", sans-serif;
  font-size: 3.5rem;
  letter-spacing: -1px;
  font-weight: 800;
}
.cta-text {
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 1.1rem;
}
.cta-overlay {
  background: linear-gradient(
    135deg,
    rgba(4, 16, 30, 0.52) 0%,
    rgba(22, 36, 61, 0.55) 100%
  );
}
.cta-contact-btn {
  background: #114198;
  color: #fff;
  letter-spacing: 1px;
  transition: transform 0.3s ease;
  text-decoration: none;
}

/* =========================================
   CONTACT PAGE (Premium)
   ========================================= */
   .contact-info-card {
    background: linear-gradient(135deg, var(--janix-blue) 0%, #0d2040 100%);
    color: #fff;
    text-align: left;
    padding: 50px 40px;
    border-radius: 8px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: "";
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
}

.social-links {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--janix-gold);
    border-color: var(--janix-gold);
    color: #fff;
    transform: translateY(-3px);
}

.contact-form-card {
  background: #fff;
  padding: 50px 45px;
  border-radius: 8px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.04);
}
.contact-form-card .form-control {
  border: none;
  background: #f5f7fa;
  padding: 14px 18px;
  border-radius: 4px;
  font-size: 0.95rem;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}
.contact-form-card .form-control:focus {
  box-shadow: none;
  background: #eef2f8;
  border-bottom-color: var(--janix-accent);
}
.contact-form-card .form-label {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--janix-gray);
  margin-bottom: 8px;
}

/* =========================================
   PARTNERS / MARQUEE
   ========================================= */
.partners-section {
  background: #fff;
}
.marquee-container {
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  padding: 20px 0;
}
.marquee-container::before,
.marquee-container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}
.marquee-container::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.marquee-container::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.marquee-content {
  display: inline-block;
  animation: marquee 30s linear infinite;
}
.marquee-content:hover {
  animation-play-state: paused;
}
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.marquee-content img {
  height: 45px;
  margin: 0 40px;
  filter: grayscale(100%) opacity(0.5);
  transition: var(--transition);
}
.marquee-content img:hover {
  filter: grayscale(0%) opacity(1);
}

/* =========================================
   LICENSED ACTIVITIES TABLE
   ========================================= */
.licensed-activities-wrapper {
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
}
.licensed-activities-table {
  font-size: 0.95rem;
  margin-bottom: 0;
}
.licensed-activities-table td.code-col {
  color: var(--janix-accent);
  background: #fdfdfd;
  font-family: "Outfit", sans-serif;
}
.licensed-activities-table td.name-col {
  color: var(--janix-blue);
  font-weight: 600;
}
.licensed-activities-table tr:last-child td {
  border-bottom: none;
}
.licensed-activities-table tbody tr {
  transition: background 0.25s ease;
}
.licensed-activities-table tbody tr:hover {
  background: rgba(212, 175, 55, 0.04);
}


/* =========================================
   FLOATING ICONS GROUP
   ========================================= */
.floating-social-group {
  position: fixed;
  bottom: 40px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 1050;
  align-items: center;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 15px 12px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
/* .floating-social-group:hover {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
} */
.floating-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.floating-icon:hover {
  transform: scale(1.15);
  color: #fff;
}
.floating-wa {
  background: linear-gradient(135deg, #25d366, #128c7e);
}
.floating-wa:hover {
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.floating-chat {
  background: linear-gradient(135deg, var(--janix-blue), #1e3a5f);
}
.floating-chat:hover {
  box-shadow: 0 8px 20px rgba(4, 16, 30, 0.4);
}

.floating-mail {
  background: linear-gradient(135deg, var(--janix-accent), #e6b800);
  color: var(--janix-dark);
}
.floating-mail:hover {
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.4);
  color: var(--janix-dark);
}

.floating-top {
  background: #fff;
  color: var(--janix-blue);
  border: 1px solid rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  height: 0;
  width: 0;
  margin: 0;
  padding: 0;
  overflow: hidden;
}
.floating-top.show {
  opacity: 1;
  visibility: visible;
  height: 45px;
  width: 45px;
  margin-top: 5px;
}
.floating-top:hover {
  color: #fff;
  background: var(--janix-blue);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (max-width: 991px) {
  .top-bar {
    display: none;
  }
  .janix-navbar {
    padding: 10px 0;
  }
  .navbar-collapse {
    background: #fff;
    padding: 20px;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 15px;
    border-top: 2px solid var(--janix-blue);
  }
  .key-facts-wrapper {
    margin-top: -25px;
  }
  .fact-item {
    border-right: none;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .fact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }

  .mega-menu {
    box-shadow: none;
    padding: 15px 0;
    border: none;
    background: transparent;
    display: none;
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: none;
  }
  .nav-item.dropdown.mega-dropdown:hover .mega-menu {
    display: block;
  }

  .adnoc-header-wrapper {
    flex-direction: column;
  }
  .adnoc-logo-box {
    width: 100%;
    padding: 10px;
  }
  .adnoc-top-bar {
    display: none;
  }
  .adnoc-main-nav {
    background: rgba(0, 0, 0, 0.9) !important;
    padding: 10px !important;
  }
  .adnoc-main-nav .navbar-nav {
    flex-direction: column;
    gap: 0px;
  }
  .adnoc-hero-content {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 120px;
  }
  .adnoc-hero-title {
    font-size: 3rem;
  }
  .adnoc-carousel-container {
    display: none;
  }

  .welcome-title {
    font-size: 2.8rem;
  }
  .cta-title {
    font-size: 2.4rem;
  }
  .page-title {
    font-size: 2.8rem;
  }
}

@media (max-width: 576px) {
  .welcome-title {
    font-size: 2.2rem;
  }
  .contact-form-card {
    padding: 30px 20px;
  }
  .contact-info-card {
    padding: 35px 25px;
  }
  .section-padding {
    padding: 80px 0;
  }
}

/* =========================================
   HERO BANNER GLASS BOX & LAYOUT
   ========================================= */
.hero-bg-product-building {
  /* Background image moved to HTML img tag */
}
.hero-glass-box {
  background: rgba(30, 40, 50, 0.22);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border-radius: 20px;
  padding: 30px 20px;
  max-width: 750px;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  margin-left: 5%;
  margin-top: -60px;
}

@media (max-width: 576px) {
  .hero-glass-box{
     margin: 0 5px;
  }
}

.adnoc-hero-section {
  position: relative;
}
.adnoc-hero-section .adnoc-hero-overlay {
  background: rgba(0, 0, 0, 0.2); 
}

/* =========================================
   SIDE FLOATING ICONS (PILL)
   ========================================= */
.floating-social-group {
  position: fixed;
  bottom: 25%;
  transform: translateY(50%);
  right: 10px;
  left: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1050;
  align-items: center;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 10px 5px;
  border-radius: 50px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}
.floating-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.2rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.floating-icon:hover {
  transform: scale(1.15);
  color: #fff;
}
.floating-wa {
  background: #25d366;
}
.floating-chat {
  background: var(--janix-blue);
}
.floating-mail {
  background: #fbc02d;
  color: var(--janix-dark);
}
.floating-mail:hover {
  color: var(--janix-dark);
}
.floating-top {
  display: none !important;
}

/* =========================================
   HEADER COMPONENTS
   ========================================= */

.btn-book-online {
  background-color: var(--janix-dark);
  color: #fff;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.btn-book-online:hover {
  background-color: var(--janix-accent);
  color: var(--janix-dark);
}

/* ================= PRODUCTS SECTION ================= */
.products-section {
  padding: 100px 0;
  background: #f7f9fc;
  overflow: hidden;
}

.products-heading {
  max-width: 720px;
  width: 100%;
  margin: 0 auto 55px;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #033692;
  margin-bottom: 14px;
  position: relative;
}

.section-tag::before,
.section-tag::after {
  content: "";
  display: inline-block;
  width: 25px;
  height: 2px;
  background: #033692;
  vertical-align: middle;
  margin: 0 10px;
}

.products-heading h2 {
  margin: 0 0 18px;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  color: #000;
}

.products-heading h2 span {
  color: #079f11;
}

.products-heading p {
  margin: 0 auto;
  max-width: 650px;
  font-size: 16px;
  line-height: 1.8;
  color: #687386;
}

/* ================= PRODUCTS GRID ================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.product-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e7ebf1;
  transition: all 0.4s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(20, 44, 80, 0.12);
}
.product-image {
  /* height: 300px; */
  width: 100%;
  /* height: 350px; */
  position: relative;
  overflow: hidden;
  background: #e9edf3;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.08);
}
.product-image::after {
  content: "";
  position: absolute;
  inset: 0;
  /* background: linear-gradient(to top, rgba(0, 20, 50, 0.55), transparent 55%); */
}
.product-number {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;

  width: 42px;
  height: 42px;

  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #0754b8;

  font-size: 13px;
  font-weight: 800;

  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}
.product-content {
  padding: 27px 27px 30px;
}

.product-content > span {
  display: inline-block;
  margin-bottom: 10px;
  color: #18a637;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.product-content h3 {
  margin: 0 0 12px;
  color: #12213b;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 750;
}

.product-content p {
  margin: 0 0 20px;
  color: #707b8d;
  font-size: 14px;
  line-height: 1.7;
}
.product-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: #033692;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.product-link i {
  font-size: 12px;
  transition: transform 0.3s ease;
}

.product-link:hover {
  color: #18a637;
}

.product-link:hover i {
  transform: translateX(5px);
}
@media (max-width: 991px) {
  .products-section {
    padding: 80px 0;
  }

  .products-heading h2 {
    font-size: 36px;
  }

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

  /* .product-image {
    height: 220px;
  } */
}

@media (max-width: 767px) {
  .products-section {
    padding: 65px 15px;
  }

  .products-heading {
    margin-bottom: 40px;
  }

  .products-heading h2 {
    font-size: 30px;
  }

  .products-heading p {
    font-size: 14px;
    line-height: 1.7;
  }

  .section-tag::before,
  .section-tag::after {
    width: 15px;
    margin: 0 6px;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* .product-image {
    height: 230px;
  } */

  .product-content {
    padding: 23px;
  }

  .product-content h3 {
    font-size: 20px;
  }
}

@media (max-width: 400px) {
  .products-heading h2 {
    font-size: 27px;
  }

  /* .product-image {
    height: 210px;
  } */

  .product-content {
    padding: 20px;
  }
}

/* =========================================
   WHY CHOOSE US SECTION
   ========================================= */
.why-choose-section {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  color: #fff;
}
.bg-image-fallback {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.why-choose-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 36, 61, 0.9);
  z-index: 1;
}
.why-choose-header {
  background: #fff;
  color: #000;
  display: inline-block;
  padding: 15px 35px;
  border-radius: 4px;
  margin-bottom: 30px;
}
.why-choose-header h2 {
  margin: 0;
  font-size: 1.8rem;
  font-family: "Outfit", sans-serif;
  font-weight: 700;
}
.why-choose-box {
  padding-right: 15px;
}
.why-choose-icon {
  width: 55px;
  height: 55px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 25px;
  color: #fff;
  transition: all 0.3s ease;
}
.why-choose-box:hover .why-choose-icon {
  background: #fff;
  color: rgba(22, 36, 61, 1);
}
.why-choose-box h3 {
  font-size: 1.3rem;
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  margin-bottom: 15px;
}
.why-choose-box p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* cta */
.glass-cta-card .section-subtitle {
  background: #a9f7ae;
  color: #079f11;
  font-size: 0.85rem;
  letter-spacing: 2px;
  border: 1px solid rgba(51, 246, 132, 0.3);
}

/* PAGE HERO ----PAGE HEADERS */
/* =========================
   PAGE HERO
========================= */

.page-hero {
    position: relative;
    overflow: hidden;
    min-height: 390px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--janix-dark), #1a2a40);
    color: #fff;
}

.page-hero .container {
    position: relative;
    z-index: 5;
    width: 100%;
}

.page-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    padding: 70px 0;
}


/* =========================
   HERO TEXT
========================= */

.hero-text {
    max-width: 650px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    margin-bottom: 20px;

    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

.hero-badge i {
    color: #008f4c;
}

.hero-text h1 {
    margin: 0 0 10px;
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 700;
}

.hero-text p {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
}


/* =========================
   BREADCRUMB
========================= */

.breadcrumb-wrapper {
    text-align: right;
}

.breadcrumb-label {
    display: block;
    margin-bottom: 10px;

    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;

    margin: 0;
    padding: 0;
    font-size: 15px;
}

.breadcrumb a {
    display: flex;
    align-items: center;
    gap: 7px;

    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb-divider {
    color: rgba(255, 255, 255, 0.3);
}

.breadcrumb-divider i {
    font-size: 10px;
}

.breadcrumb .active {
    color: #008f4c;
    font-weight: 600;
}


/* =========================
   DECORATIVE BACKGROUND
========================= */

.hero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-glow-1 {
    width: 450px;
    height: 450px;
    top: -250px;
    left: -150px;

    background: radial-gradient(
        circle,
        rgba(230, 57, 70, 0.12),
        transparent 70%
    );
}

.hero-glow-2 {
    width: 400px;
    height: 400px;
    right: -200px;
    bottom: -250px;

    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.05),
        transparent 70%
    );
}

.hero-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.12;

    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);

    background-size: 50px 50px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 991px) {

    .page-hero-content {
        gap: 30px;
        padding: 60px 0;
    }

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

    .hero-text p {
        font-size: 1.05rem;
    }

    .breadcrumb-wrapper {
        min-width: 200px;
    }
}


/* =========================
   MOBILE
========================= */

@media (max-width: 767px) {

    .page-hero {
        min-height: auto;
    }

    .page-hero-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 30px;
        padding: 60px 0 50px;
    }

    .hero-text {
        width: 100%;
    }

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

    .hero-text p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .breadcrumb-wrapper {
        width: 100%;
        text-align: left;
    }

    .breadcrumb {
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .breadcrumb-label {
        margin-bottom: 8px;
    }
}


/* =========================
   SMALL MOBILE
========================= */

@media (max-width: 480px) {

    .page-hero-content {
        padding: 50px 0 40px;
        gap: 25px;
    }

    .hero-badge {
        font-size: 11px;
        padding: 7px 13px;
    }

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

    .hero-text p {
        font-size: 0.95rem;
    }

    .breadcrumb {
        font-size: 13px;
        gap: 8px;
    }
}

/* ABOUT SECTION ---ABOUT PAGE */

.about-story-section {
  padding: 80px 0;
  margin-top: 30px;
  background: #ffffff;
}

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

  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
}

.about-image-wrapper {
  position: relative;
  width: 100%;
  padding: 0 0 25px 25px;
}

.about-image-box {
  position: relative;
  z-index: 2;

  width: 100%;
  height: 560px;

  overflow: hidden;
  border-radius: 20px;
  border: 4px solid #ffffff;

  background: #f5f5f5;

  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.15);
}

.about-image-box img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: cover;

  transition: transform 0.6s ease;
}

.about-image-wrapper:hover .about-image-box img {
  transform: scale(1.04);
}

.about-image-accent {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 5px;
  left: 0;
  border-radius: 20px;
  background: var(--janix-accent);
  z-index: 1;
}

.about-content {
  padding-left: 10px;
}

.about-subtitle {
  display: inline-block;

  padding: 8px 18px;
  margin-bottom: 18px;

  border-radius: 50px;

  background: rgba(4, 16, 30, 0.06);

  color: var(--janix-dark, #04101e);

  font-size: 13px;
  font-weight: 700;

  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.about-content h2 {
  margin: 0 0 25px;

  color: var(--janix-dark, #04101e);

  font-size: clamp(2rem, 4vw, 2.8rem);
  line-height: 1.2;

  font-weight: 700;

  letter-spacing: -1px;
}

.about-content p {
  margin: 0 0 22px;

  color: #5f6873;

  font-size: 16px;
  line-height: 1.8;
}

.about-content .about-lead {
  margin-bottom: 25px;

  color: #555f6b;

  font-size: 17px;
  line-height: 1.85;

  font-weight: 400;
}
@media (max-width: 991px) {
  .about-story-section {
    padding: 65px 0;
  }

  .about-container {
    width: 90%;

    grid-template-columns: 1fr;

    gap: 60px;
  }

  .about-image-wrapper {
    max-width: 650px;
    margin: 0 auto;
  }

  .about-image-box {
    height: 500px;
  }

  .about-content {
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .about-story-section {
    padding: 50px 0;
    margin-top: 15px;
  }

  .about-container {
    width: 92%;
    gap: 45px;
  }

  .about-image-wrapper {
    padding-left: 15px;
    padding-bottom: 18px;
  }

  .about-image-box {
    height: 400px;
    border-radius: 16px;
  }

  .about-image-accent {
    top: 18px;
    border-radius: 16px;
  }

  .about-subtitle {
    padding: 7px 15px;

    font-size: 11px;
    letter-spacing: 1.2px;
  }

  .about-content h2 {
    margin-bottom: 20px;

    font-size: 2rem;
  }

  .about-content p {
    font-size: 15px;
    line-height: 1.75;

    margin-bottom: 18px;
  }

  .about-content .about-lead {
    font-size: 15.5px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .about-image-box {
    height: 330px;
  }

  .about-content h2 {
    font-size: 1.8rem;
  }

  .about-content p {
    font-size: 14.5px;
  }
}

/* =========================================
   MISSION & VISION SECTION
========================================= */
.mission-vision-section {
  padding: 100px 20px;
  background: #f7f8fa;
  overflow: hidden;
}

.mv-container {
  max-width: 1200px;
  margin: 0 auto;
}
.mv-heading {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 55px;
}

.mv-subtitle {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 14px;
  border-radius: 50px;
  background: rgba(4, 16, 30, 0.06);
  color: #079f11;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.mv-heading h2 {
  margin: 0;
  color: #04101e;
  font-size: 46px;
  font-weight: 700;
  letter-spacing: 1px;
}

.mv-heading p {
  margin: 18px auto 0;
  color: #6c757d;
  font-size: 17px;
  line-height: 1.7;
}
.mv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.mv-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 25px;
  padding: 45px 40px;
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e9ecef;
  box-shadow: 0 8px 30px rgba(4, 16, 30, 0.06);
  overflow: hidden;
  transition: all 0.35s ease;
}

.mv-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(4, 16, 30, 0.12);
}
.mv-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #033692;
}

.vision-card::before {
  background: #079f11;
}
.mv-icon {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(4, 16, 30, 0.06);
  color: #033692;
  font-size: 28px;
  transition: all 0.35s ease;
}

.vision-card .mv-icon {
  background: rgba(230, 57, 70, 0.1);
  color: #079f11;
}

.mv-card:hover .mv-icon {
  transform: scale(1.08);
}
.mv-content {
  position: relative;
  z-index: 2;
}

.mv-label {
  display: block;
  margin-bottom: 8px;
  color: #079f11;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}

.mission-card .mv-label {
  color: #033692;
}

.mv-content h3 {
  margin: 0 0 15px;
  color: #04101e;
  font-size: 25px;
  font-weight: 700;
}

.mv-content p {
  margin: 0;
  color: #6c757d;
  font-size: 15px;
  line-height: 1.8;
}
.mv-number {
  position: absolute;
  right: 20px;
  bottom: -12px;
  color: rgba(4, 16, 30, 0.035);
  font-size: 90px;
  font-weight: 800;
  line-height: 1;
  pointer-events: none;
}

.vision-card .mv-number {
  color: rgba(230, 57, 70, 0.045);
}

@media (max-width: 991px) {
  .mission-vision-section {
    padding: 80px 20px;
  }

  .mv-heading h2 {
    font-size: 36px;
  }

  .mv-grid {
    grid-template-columns: 1fr;
    max-width: 750px;
    margin: 0 auto;
  }
}

@media (max-width: 576px) {
  .mission-vision-section {
    padding: 65px 15px;
  }

  .mv-heading {
    margin-bottom: 40px;
  }

  .mv-heading h2 {
    font-size: 30px;
  }

  .mv-heading p {
    font-size: 15px;
  }

  .mv-card {
    padding: 30px 25px;
    flex-direction: column;
    gap: 20px;
    border-radius: 18px;
  }

  .mv-icon {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
    font-size: 24px;
    border-radius: 15px;
  }

  .mv-content h3 {
    font-size: 22px;
  }

  .mv-content p {
    font-size: 14px;
  }

  .mv-number {
    font-size: 70px;
  }
}

/* ========================================= 
    CORE VALUES SECTION 
========================================= */
.core-values-section {
  padding: 100px 20px;
  background: #ffffff;
  overflow: hidden;
}
.core-values-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}
.core-values-heading {
  max-width: 680px;
  width: 100%;
  margin: 0 auto 55px;
  text-align: center;
}
.core-values-subtitle {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 15px;
  background: rgba(4, 16, 30, 0.06);
  border-radius: 50px;
  color: #079f11 ;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.core-values-heading h2 {
  margin: 0;
  color: #04101e;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}
.core-values-heading p {
  max-width: 600px;
  margin: 18px auto 0;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.7;
}
.core-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.core-value-card {
  position: relative;
  padding: 20px 28px 25px;
  background: #ffffff;
  border: 1px solid #e9ecef;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(4, 16, 30, 0.06);
  overflow: hidden;
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}
.core-value-card:hover {
  transform: translateY(-10px);
  border-color: rgba(230, 57, 70, 0.2);
  box-shadow: 0 20px 45px rgba(4, 16, 30, 0.12);
}
.core-value-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #033692;
  transition: background 0.3s ease;
}
.core-value-card:nth-child(even)::before {
  background: #079f11;
}
.core-value-card:hover::before {
  background: #079f11;
}
.core-value-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  font-size: 27px;
  transition:
    transform 0.35s ease,
    border-radius 0.35s ease;
}
.dark-icon {
  background: rgba(4, 16, 30, 0.06);
  color: #04101e;
}
.red-icon {
  background: rgba(230, 57, 70, 0.1);
  color: #e63946;
}
.core-value-card:hover .core-value-icon {
  transform: translateY(-4px) scale(1.08);
  border-radius: 50%;
}
.core-value-number {
  position: absolute;
  top: 18px;
  right: 20px;
  color: rgba(4, 16, 30, 0.06);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
}
.core-value-card h3 {
  margin: 0 0 14px;
  color: #04101e;
  font-size: 20px;
  font-weight: 700;
}
.core-value-card p {
  margin: 0;
  color: #6c757d;
  font-size: 14px;
  line-height: 1.8;
}
.core-value-line {
  width: 35px;
  height: 3px;
  margin: 25px auto 0;
  background: #04101e;
  border-radius: 10px;
  transition:
    width 0.35s ease,
    background 0.35s ease;
}
.core-value-card:nth-child(even) .core-value-line {
  background: #079f11;
}
.core-value-card:hover .core-value-line {
  width: 60px;
}
@media (max-width: 991px) {
  .core-values-section {
    padding: 80px 20px;
  }
  .core-values-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .core-values-heading h2 {
    font-size: 36px;
  }
}
@media (max-width: 576px) {
  .core-values-section {
    padding: 65px 15px;
  }
  .core-values-heading {
    margin-bottom: 40px;
  }
  .core-values-heading h2 {
    font-size: 30px;
  }
  .core-values-heading p {
    font-size: 15px;
  }
  .core-values-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .core-value-card {
    padding: 35px 25px 30px;
  }
  .core-value-icon {
    width: 65px;
    height: 65px;
    font-size: 24px;
  }
}

/* ========================================= 
  LICENSED ACTIVITIES SECTION 
  ========================================= */
.licensed-section {
  padding: 100px 20px;
  background: #f6f8fa;
}
.licensed-container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
} 
.licensed-heading {
  max-width: 720px;
  margin: 0 auto 55px;
  text-align: center;
}
.licensed-subtitle {
  display: inline-block;
  padding: 7px 18px;
  margin-bottom: 15px;
  border-radius: 50px;
  background: rgba(4, 16, 30, 0.06);
  color: #079f11 ;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
}
.licensed-heading h2 {
  margin: 0;
  color: #04101e;
  font-size: 42px;
  font-weight: 700;
  letter-spacing: -1px;
}
.licensed-heading p {
  max-width: 650px;
  margin: 18px auto 0;
  color: #6c757d;
  font-size: 16px;
  line-height: 1.7;
} 
.licensed-table-wrapper {
  width: 100%;
  background: #ffffff;
  border: 1px solid #e5e8ec;
  border-radius: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  box-shadow: 0 10px 35px rgba(4, 16, 30, 0.07);
} 
.licensed-table {
  width: 100%;
  min-width: 850px;
  border-collapse: collapse;
  text-align: left;
}
.licensed-table thead {
  background: #04101e;
}
.licensed-table th {
  padding: 20px 25px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.licensed-table th:first-child {
  width: 18%;
}
.licensed-table th:nth-child(2) {
  width: 32%;
}
.licensed-table th:last-child {
  width: 50%;
} 
.licensed-table tbody tr {
  border-bottom: 1px solid #edf0f2;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}
.licensed-table tbody tr:last-child {
  border-bottom: none;
}
.licensed-table tbody tr:hover {
  background: #fafbfc;
} 
.licensed-table td {
  padding: 15px;
  vertical-align: middle;
} /* Activity Code */
.activity-code {
  color: #033692;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.5px;
} /* Activity Name */
.activity-name {
  color: #04101e;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
} /* Description */
.activity-description {
  color: #6c757d;
  font-size: 14px;
  line-height: 1.7;
} 
.activity-code::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  vertical-align: middle;
  border-radius: 50%;
  background: #033692;
} 
@media (max-width: 991px) {
  .licensed-section {
    padding: 80px 20px;
  }
  .licensed-heading h2 {
    font-size: 36px;
  }
  .licensed-table {
    min-width: 750px;
  }
  .licensed-table th,
  .licensed-table td {
    padding: 20px;
  }
} 
@media (max-width: 576px) {
  .licensed-section {
    padding: 65px 15px;
  }
  .licensed-heading {
    margin-bottom: 40px;
  }
  .licensed-heading h2 {
    font-size: 30px;
  }
  .licensed-heading p {
    font-size: 15px;
  }
  .licensed-table-wrapper {
    border-radius: 14px; 
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .licensed-table {
    min-width: 720px;
  }
  .licensed-table th {
    padding: 17px 18px;
    font-size: 12px;
  }
  .licensed-table td {
    padding: 20px 18px;
  }
  .activity-code {
    font-size: 13px;
  }
  .activity-name {
    font-size: 14px;
  }
  .activity-description {
    font-size: 13px;
  }
}

/* FOOTER SECTION */
/* ==============================
   CUSTOM INDUSTRIAL FOOTER
================================= */

.custom-footer {
    background: #162643;
    overflow: hidden;
}

/* Subtle background */
.custom-footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(
        90deg,
        #294a91 0%,
        #294a91 50%,
        #16a34a 50%,
        #16a34a 100%
    );
}

.footer-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            135deg,
            rgba(22, 38, 67, 0.98),
            rgba(13, 29, 54, 0.98)
        );
    z-index: 1;
}


/* LOGO */

.footer-logo {
    max-width: 190px;
    height: auto;
}

.footer-description {
    color: #c7d0df;
    font-size: 14px;
    line-height: 1.8;
    margin: 0;
    max-width: 300px;
}


/* TITLES */

.footer-title {
    position: relative;
    color: #ffffff;
    font-size: 17px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 25px;
    padding-bottom: 12px;
}

.footer-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 3px;
    background: #18a34a;
    border-radius: 3px;
}


/* FOOTER LINKS */

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

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

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 14px;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.footer-links a i {
    font-size: 9px;
    color: #18a34a;
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.footer-links a:hover {
    color: #ffffff;
    padding-left: 5px;
}

.footer-links a:hover i {
    transform: translateX(3px);
}


/* CONTACT */

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    margin-bottom: 20px;
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
}

.footer-contact a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-contact a:hover {
    color: #18a34a;
}

.contact-icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.08);
    color: #18a34a;
    border-radius: 50%;
    font-size: 13px;
}


/* CONTACT BUTTON */

.footer-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 11px 20px;
    background: #18a34a;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-contact-btn:hover {
    background: #ffffff;
    color: #162643;
    transform: translateY(-2px);
}

.footer-contact-btn i {
    transition: transform 0.3s ease;
}

.footer-contact-btn:hover i {
    transform: translateX(4px);
}


/* SOCIAL ICONS */

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: #18a34a;
    border-color: #18a34a;
    transform: translateY(-3px);
}


/* BOTTOM */

.footer-bottom-custom {
    background: #0b172b;
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 18px 0;
    color: #9ca9bb;
    font-size: 13px;
}

.footer-bottom-custom a {
    color: #cbd5e1;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-bottom-custom a:hover {
    color: #18a34a;
}

.footer-divider {
    margin: 0 10px;
    color: #536176;
}


/* ==============================
   MOBILE
================================= */

@media (max-width: 991px) {

    .footer-description {
        max-width: 100%;
    }

    .footer-title {
        margin-bottom: 20px;
    }
}


@media (max-width: 767px) {

    .custom-footer {
        text-align: left;
    }

    .footer-logo {
        max-width: 170px;
    }

    .footer-social {
        margin-bottom: 10px;
    }

    .footer-bottom-custom {
        text-align: center;
    }

    .footer-bottom-custom .text-md-end {
        text-align: center !important;
    }

}

/* ==============================
   CUSTOM GLASS OFF CANVAS
================================= */
.custom-glass-offcanvas {
    background: rgba(11, 23, 43, 0.85) !important;
    backdrop-filter: blur(25px);
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.custom-glass-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    color: #fff !important;
}
.custom-glass-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--janix-accent) !important;
    box-shadow: 0 0 0 0.25rem rgba(13, 147, 14, 0.25) !important;
}

/* ==============================
   ANIMATED HERO (Imageless)
================================= */
.animated-hero {
    background: linear-gradient(-45deg, #04101e, #0d930e, #02060b, #008f4c);
    background-size: 400% 400%;
    animation: gradientBG 12s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 50vh;
}
.animated-hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 30px 30px;
    opacity: 0.6;
    z-index: 1;
}
.animated-hero .container {
    position: relative;
    z-index: 2;
}

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

/* ==============================
   SERVICES SPLIT LAYOUT
================================= */
.service-split-row {
    align-items: center;
    margin-bottom: 60px;
}
.service-split-row:nth-child(even) {
    flex-direction: row-reverse;
}
.service-img-wrapper {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}
.service-img-wrapper img {
    transition: transform 0.5s ease;
    width: 100%;
}
.service-split-row:hover .service-img-wrapper img {
    transform: scale(1.05);
}
.service-content-box {
    padding: 30px;
}
.service-icon-large {
    font-size: 3rem;
    color: var(--janix-accent);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .service-split-row:nth-child(even) {
        flex-direction: row;
    }
    .service-content-box {
        padding: 20px 0;
    }
}

/* ==============================
   SERVICES DARK LAYOUT
================================= */
.services-dark-banner {
    background-color: #0b111e;
    padding: 120px 0 80px 0;
    color: #ffffff;
}
.services-dark-banner .page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}
.services-dark-banner .lead {
    color: #cbd5e1;
    font-size: 1.15rem;
    max-width: 800px;
    line-height: 1.8;
}

.services-dark-section {
    background-color: #1c212a;
    padding: 80px 0;
}
.service-dark-card {
    background-color: #0b111e;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}
.service-dark-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
}
.service-dark-card-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}
.service-dark-card-body {
    padding: 30px;
}
.service-dark-card-title {
    color: #60a5fa; /* light blue matching screenshot */
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 15px;
}
.service-dark-card-text {
    color: #e2e8f0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* PRODUCTS HERO */
.materials-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding: 80px 20px;
}

.materials-hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.materials-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2;
}

.materials-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.materials-hero-content h1 {
    margin: 0;
    color: #fff;
    font-size: 56px;
    font-weight: 700;
    line-height: 1.2;
}

.materials-hero-content p {
    max-width: 700px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .materials-hero {
        min-height: 45vh;
        padding: 70px 20px;
    }

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

    .materials-hero-content p {
        font-size: 16px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .materials-hero {
        min-height: 40vh;
        padding: 60px 15px;
    }

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

    .materials-hero-content p {
        font-size: 15px;
        line-height: 1.6;
    }
}


/* products section  */
/* =========================================
   CONSTRUCTION SOLUTIONS SECTION
========================================= */

.construction-solutions-section {
    width: 100%;
    padding: 90px 0;
    background: #ffffff;
}

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

.construction-solutions-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 70px;
}


/* =========================================
   IMAGE
========================================= */

.construction-solutions-image {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.12);
}

.construction-solutions-image img {
    display: block;
    width: 100%;
    height: 520px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.construction-solutions-image:hover img {
    transform: scale(1.05);
}


/* =========================================
   CONTENT
========================================= */

.construction-solutions-content {
    width: 100%;
}

.construction-solutions-content h2 {
    margin: 0 0 22px;
    color: #1b1b1b;
    font-size: 38px;
    line-height: 1.2;
    font-weight: 700;
}

.construction-solutions-content p {
    margin: 0 0 30px;
    color: #6c757d;
    font-size: 16px;
    line-height: 1.8;
}


/* =========================================
   LIST
========================================= */

.construction-solutions-content ul {
    margin: 0 0 20px;
    padding: 0;
    list-style: none;
}

.construction-solutions-content ul li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #222222;
    font-size: 16px;
    font-weight: 500;
}

.construction-solutions-content ul li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    flex-shrink: 0;
    border-radius: 50%;
    background: #033692;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.construction-solutions-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.construction-solutions-buttons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 0 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.construction-solutions-primary {
    background: #079f11;
    border: 2px solid #079f11;
    color: #ffffff;
}

.construction-solutions-primary:hover {
    background: #084298;
    border-color: #084298;
    color: #ffffff;
    transform: translateY(-2px);
}
@media (max-width: 991px) {

    .construction-solutions-section {
        padding: 70px 0;
    }

    .construction-solutions-row {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .construction-solutions-image img {
        height: 450px;
    }

    .construction-solutions-content h2 {
        font-size: 34px;
    }
}

@media (max-width: 576px) {

    .construction-solutions-section {
        padding: 55px 0;
    }

    .construction-solutions-container {
        width: 92%;
    }

    .construction-solutions-row {
        gap: 35px;
    }

    .construction-solutions-image img {
        height: 320px;
    }

    .construction-solutions-content h2 {
        font-size: 28px;
        margin-bottom: 18px;
    }

    .construction-solutions-content p {
        font-size: 15px;
        line-height: 1.7;
    }

    .construction-solutions-content ul li {
        font-size: 14px;
    }

    .construction-solutions-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .construction-solutions-buttons a {
        width: 100%;
    }
}

/* SERVICES */
.fabrication-services {
    width: 100%;
    padding: 90px 0;
    /* background: #1a1f2e; */
}

.fabrication-container {
    width: 100%;
    max-width: 1250px;
    margin: 0 auto;
}

.fabrication-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.fabrication-card {
    background: #222;
    overflow: hidden;
    height: 100%;
    transition: all 0.4s ease;
}

.fabrication-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
}

.fabrication-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.fabrication-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.fabrication-card:hover .fabrication-image img {
    transform: scale(1.08);
}

.fabrication-content {
    padding: 28px 25px;
}

.fabrication-content h3 {
    margin: 0 0 15px;
    color: #fff;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    letter-spacing: 1px;
}

.fabrication-content p {
    margin: 0;
    color: #ccc;
    font-size: 15px;
    line-height: 1.7;
}

@media (max-width: 1100px) {

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

}

@media (max-width: 600px) {

    .fabrication-services {
        padding: 60px 0;
    }

    .fabrication-container {
        width: 92%;
    }

    .fabrication-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .fabrication-image {
        height: 240px;
    }

    .fabrication-content {
        padding: 25px 22px;
    }

    .fabrication-content h3 {
        font-size: 19px;
    }

    .fabrication-content p {
        font-size: 14px;
    }

}
/* =========================================
   UNIQUE STYLE & ANIMATIONS (Added as requested)
   ========================================= */

/* Simple Hero Banner for Product Pages */
.simple-hero {
  position: relative;
  height: auto;
  min-height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--janix-blue) 0%, #081e36 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
  padding: 80px 0;
}

.simple-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: 
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 50px 50px,
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px) 0 0 / 50px 50px;
  animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
  0% { transform: translateY(0); }
  100% { transform: translateY(50px); }
}

.hero-badge {
  display: inline-block;
  background: rgba(13, 147, 14, 0.2);
  color: var(--janix-accent);
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  border: 1px solid rgba(13, 147, 14, 0.4);
  text-transform: uppercase;
  animation: pulseBadge 2s infinite alternate;
}

@keyframes pulseBadge {
  0% { box-shadow: 0 0 0 0 rgba(13, 147, 14, 0.4); }
  100% { box-shadow: 0 0 15px 5px rgba(13, 147, 14, 0.2); }
}

.hero-line {
  width: 60px;
  height: 4px;
  background: var(--janix-accent);
  border-radius: 2px;
  transition: width 0.5s ease;
}

.simple-hero:hover .hero-line {
  width: 120px;
}

/* Whole Site Animations & Unique Style */
body {
  animation: fadeInBody 1s ease-in-out;
}

@keyframes fadeInBody {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Responsive fixes */
@media (max-width: 768px) {
  .simple-hero {
    min-height: 35vh;
    padding: 60px 0;
  }
  .page-title {
    font-size: 2.5rem;
  }
  .feature-pill {
    margin-bottom: 15px;
  }
}

/* Hover effects for images site-wide */
img:not(.header-logo):not(.footer-logo) {
  transition: transform 0.5s ease, filter 0.5s ease;
}
img:not(.header-logo):not(.footer-logo):hover {
  transform: scale(1.02);
  filter: brightness(1.05);
}


/* Floating Icon Sizing Fix */
.floating-icon {
  width: 40px !important;
  height: 40px !important;
  font-size: 1.1rem !important;
}
@media (max-width: 768px) {
  .floating-icon {
    width: 42px !important;
    height: 42px !important;
    font-size: 1.1rem !important;
  }
}

/* Additional Global Animations */
.janix-card, .janix-hover-lift, .feature-pill {
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease !important;
}

.janix-card:hover, .janix-hover-lift:hover {
  transform: translateY(-8px) scale(1.02) !important;
  box-shadow: 0 15px 35px rgba(0,0,0,0.1) !important;
}

h1, h2, h3 {
  animation: slideInUp 0.8s ease-out;
}

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

.btn-janix, .btn-janix-outline, .btn-janix-gold {
  transition: all 0.3s ease-in-out !important;
}

/* Staggered animation for lists */
ul li {
  animation: fadeInRight 0.5s ease-out backwards;
}
ul li:nth-child(1) { animation-delay: 0.1s; }
ul li:nth-child(2) { animation-delay: 0.2s; }
ul li:nth-child(3) { animation-delay: 0.3s; }
ul li:nth-child(4) { animation-delay: 0.4s; }
ul li:nth-child(5) { animation-delay: 0.5s; }

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


/* Hero Alignments for Mobile */
@media (max-width: 768px) {
  .adnoc-hero-content {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .adnoc-hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  .adnoc-hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  .adnoc-hero-section {
    min-height: 500px;
  }
}


/* Explicit Fix for About & Contact Hero Alignment on Mobile */
@media (max-width: 767px) {
  .page-hero-content {
    align-items: center !important;
    text-align: center !important;
    padding: 60px 15px !important;
  }
  .hero-text {
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-text h1 {
    font-size: 2.5rem !important;
    text-align: center;
  }
  .hero-text p {
    text-align: center;
  }
  .breadcrumb-wrapper {
    width: 100%;
    text-align: center !important;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .breadcrumb {
    justify-content: center !important;
  }
}

/* SERVICE HEADER */

.service-header {
    background-color: #0b111e;
    padding: 60px 0;
    width: 100%;
}

.service-header-content {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.service-header-content h1 {
    color: #ffffff;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 24px;
}

.service-header-content p {
    color: rgba(255, 255, 255, 0.65);
    max-width: 850px;
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {

    .service-header {
        padding: 60px 0;
    }

    .service-header-content {
        width: 88%;
    }

    .service-header-content h1 {
        font-size: 2.6rem;
        margin-bottom: 20px;
    }

    .service-header-content p {
        font-size: 1rem;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {

    .service-header {
        padding: 50px 0;
    }

    .service-header-content h1 {
        font-size: 2.4rem;
    }

    .service-header-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* CNC HIGHLIGHT */
.cnc-highlight-section {
    position: relative;
    padding: 90px 0;
    overflow: hidden;
    color: #000;
    /* background: linear-gradient(
        135deg,
        #020c1b 0%,
        #0a192f 100%
    ); */
}

.cnc-container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.cnc-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
}

.cnc-glow-blue {
    width: 500px;
    height: 500px;
    background: rgba(3, 54, 146, 0.4);
    top: -150px;
    right: -150px;
}

.cnc-glow-green {
    width: 400px;
    height: 400px;
    background: rgba(7, 159, 17, 0.3);
    bottom: -100px;
    left: -100px;
}
.cnc-row {
    display: flex;
    align-items: center;
    gap: 70px;
}

.cnc-image-column {
    width: 50%;
}

.cnc-image-wrapper {
    position: relative;
}

.cnc-main-image {
    width: 100%;
    /* height: 480px; */
    object-fit: cover;
    display: block;
    border-radius: 18px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35); */
}

.cnc-floating-badge {
    position: absolute;
    left: 40px;
    bottom: -25px;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 16px 22px;
    background: #ffffff;
    color: #222222;

    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);

    animation: cncFloatBadge 4s ease-in-out infinite;
}

.cnc-badge-icon {
    width: 45px;
    height: 45px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(3, 54, 146, 0.1);

    color: #033692;
    font-size: 25px;
}

.cnc-badge-content h6 {
    margin: 0;
    color: #033692;
    font-size: 15px;
    font-weight: 700;
}

.cnc-badge-content span {
    display: block;
    margin-top: 3px;
    color: #777777;
    font-size: 12px;
    font-weight: 600;
}

.cnc-content-column {
    width: 50%;
}

.cnc-specialty-badge {
    display: inline-block;

    padding: 9px 18px;
    margin-bottom: 20px;

    border: 1px solid #033692 ;
    border-radius: 30px;

    background: rgba(255, 255, 255, 0.08);

    color: #033692;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
}
.cnc-title {
    margin: 0 0 25px;
    color: #000;
    font-size: 48px;
    line-height: 1.2;
    font-weight: 700;
}

.cnc-title span {
    color: #033692;
}
.cnc-description {
    max-width: 600px;
    margin: 0 0 35px;
    color: #222;
    font-size: 17px;
    line-height: 1.8;
    font-weight: 300;
}

.cnc-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 10px;
    margin-bottom: 40px;
}

.cnc-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #111;
    font-size: 15px;
    font-weight: 500;
}

.cnc-check {
    width: 44px;
    height: 44px;
    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    border: 1px solid rgba(7, 159, 17, 0.4);

    background: rgba(7, 159, 17, 0.2);

    color: #0cf120;
    font-size: 18px;
    font-weight: 700;
}

@keyframes cncFloatBadge {

    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }

}

@media (max-width: 991px) {

    .cnc-row {
        gap: 45px;
    }

    .cnc-title {
        font-size: 40px;
    }

    /* .cnc-main-image {
        height: 420px;
    } */

    .cnc-description {
        font-size: 15px;
    }

}

@media (max-width: 767px) {

    .cnc-highlight-section {
        padding: 65px 0;
    }

    .cnc-container {
        width: 90%;
    }

    .cnc-row {
        flex-direction: column;
        gap: 60px;
    }

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

    /* .cnc-main-image {
        height: 350px;
    } */

    .cnc-floating-badge {
        left: 25px;
        bottom: -25px;
    }

    .cnc-title {
        font-size: 34px;
    }

    .cnc-description {
        font-size: 15px;
        line-height: 1.7;
    }

    .cnc-features {
        grid-template-columns: 1fr;
        gap: 18px;
    }

}
@media (max-width: 480px) {

    /* .cnc-main-image {
        height: 280px;
    } */

    .cnc-title {
        font-size: 30px;
    }

    .cnc-floating-badge {
        left: 15px;
        padding: 12px 15px;
    }

    .cnc-badge-icon {
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

}

/* SERVICES SECTION--- HOME PAGE */
/* .help-section {
    width: 100%;
    padding: 70px 20px;
    background: #ffffff;
}

.help-container {
    max-width: 1000px;
    margin: 0 auto;
}
.help-section .section-heading {
    text-align: center;
    margin-bottom: 55px;
}

.help-section .section-heading h2 {
    margin: 0 0 8px;
    font-size: 40px;
    font-weight: 700;
    color: #111111;
}

.help-section .section-heading p {
    margin: 0;
    font-size: 16px;
    color: #777777;
}

.help-item {
    display: flex;
    align-items: center;
    gap: 55px;
    margin-bottom: 35px;
}

.help-item.reverse {
    flex-direction: row-reverse;
}

.help-image {
    flex: 0 0 40%;
    display: flex;
    justify-content: center;
}

.image-circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.image-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.help-content {
    flex: 1;
}

.help-content h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.4;
    font-weight: 700;
    color: #111111;
}

.help-content p {
    max-width: 470px;
    margin: 0 0 18px;
    font-size: 16px;
    line-height: 1.7;
    color: #777777;
}
@media (max-width: 768px) {

    .help-section {
        padding: 55px 20px;
    }

    .help-section .section-heading {
        margin-bottom: 40px;
    }

    .help-section .section-heading h2 {
        font-size: 25px;
    }

    .help-item,
    .help-item.reverse {
        gap: 30px;
        margin-bottom: 45px;
    }

    .image-circle {
        width: 200px;
        height: 200px;
    }

    .help-content h3 {
        font-size: 15px;
    }

    .help-content p {
        font-size: 11px;
    }
}

@media (max-width: 576px) {

    .help-section {
        padding: 45px 18px;
    }

    .help-section .section-heading {
        margin-bottom: 35px;
    }

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

    .help-section .section-heading p {
        font-size: 14px;
    }

    .help-item,
    .help-item.reverse {
        flex-direction: column;
        text-align: center;
        gap: 22px;
        margin-bottom: 50px;
    }

    .help-image {
        flex: none;
        width: 100%;
    }

    .image-circle {
        width: 180px;
        height: 180px;
    }

    .help-content {
        width: 100%;
    }

    .help-content h3 {
        font-size: 22px;
    }

    .help-content p {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        font-size: 15px;
    }

    .help-btn {
        padding: 9px 20px;
        font-size: 11px;
    }
}

@media (max-width: 380px) {

    .help-section .section-heading h2 {
        font-size: 21px;
    }

    .help-content h3 {
        font-size: 15px;
    }
} */