/* =========================================================
   JIC GLOBAL DESIGN SYSTEM
========================================================= */

:root {
  --jic-black: #0E0E0E;
  --jic-dark: #1A1A1A;
  --jic-navy: #0A1E3F;
  --jic-blue: #1FB6E9;
  --jic-white: #FFFFFF;
  --jic-grey: #E5E7EB;

  --jic-gradient: linear-gradient(
    135deg,
    #1FB6E9 0%,
    #0A1E3F 100%
  );
}

/* =========================================================
   RESET & BASE
========================================================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", Arial, Helvetica, sans-serif;
  background: var(--jic-black);
  color: var(--jic-white);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* =========================================================
   LAYOUT
========================================================= */

.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 40px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .container {
    padding: 0 24px;
  }
}

/* =========================================================
   BUTTONS
========================================================= */

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 38px;
  background: var(--jic-gradient);
  color: var(--jic-white);
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
  transition: all 0.35s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(31, 182, 233, 0.35);
}

/* =========================================================
   HERO SECTION (NIMMO-INSPIRED, JIC-BRANDED)
========================================================= */

.jic-hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--jic-black);
}

/* Background image */
.jic-hero__bg {
  position: absolute;
  inset: 0;
  background-image: url("../images/hero/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}


/* Overlay using JIC navy */
.jic-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(10, 30, 63, 0.88) 0%,
    rgba(10, 30, 63, 0.65) 45%,
    rgba(10, 30, 63, 0.30) 100%
  );
  z-index: 2;
}

.jic-hero__content-wrap {
  position: relative;
  z-index: 3;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;     /* vertical center */
  justify-content: center; /* horizontal center */
  text-align: center;
}


/* Hero content */
.jic-hero__content {
  position: relative;
  z-index: 3;
  max-width: 900px;
}

/* Tagline */
.jic-hero__tagline {
  display: inline-block;
  font-size: 13px;
  letter-spacing: 3px;
  text-align: center;
  text-transform: uppercase;
  color: var(--jic-blue);
  margin-bottom: 22px;
  font-weight: 600;
}

/* Heading */
.jic-hero h1 {
  font-size: 64px;
  line-height: 1.1;
  font-weight: 800;
  margin-bottom: 26px;
  text-align: center;
}

/* Description */
.jic-hero p {
  font-size: 19px;
  line-height: 1.7;
  max-width: 600px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  color: var(--jic-grey);
  margin-bottom: 38px;
}

/* =========================================================
   RESPONSIVE HERO
========================================================= */

@media (max-width: 1024px) {
  .jic-hero h1 {
    font-size: 52px;
  }
}

@media (max-width: 768px) {
  .jic-hero {
    height: auto;
    padding: 140px 0 120px;
  }

  .jic-hero h1 {
    font-size: 42px;
  }

  .jic-hero p {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .jic-hero h1 {
    font-size: 34px;
  }

  .container {
    padding: 0 20px;
  }
}
@media (max-width: 768px) {
  .jic-hero__bg {
    background-image: url("../images/hero/hero.jpg");
    background-position: center top;
  }

  .jic-hero {
    padding-top: 80px; /* space for mobile header */
  }
}

/* ===============================
   SIDEBAR (FINAL, STABLE)
================================ */

.jic-sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 260px;
  height: 100vh;
  background: #ffffff;
  padding: 40px 30px;
  z-index: 999;
}

/* Logo */
.jic-sidebar__logo a {
  font-size: 28px;
  font-weight: 800;
  color: var(--jic-navy);
  margin-bottom: 50px;
  display: inline-block;
}

/* Nav */
.jic-sidebar__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.jic-sidebar__nav li {
  margin-bottom: 18px;
}

/* Row for link + toggle */
.jic-sidebar__nav .nav-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Links */
.jic-sidebar__nav a {
  font-size: 16px;
  font-weight: 500;
  color: #111;
}

.jic-sidebar__nav a:hover {
  color: var(--jic-blue);
}

/* Toggle button */
.toggle-btn {
  background: none;
  border: none;
  font-size: 20px;
  font-weight: 600;
  color: #999;
  cursor: pointer;
  line-height: 1;
}

li.open .toggle-btn {
  color: var(--jic-blue);
}

/* Submenu */
/* ===============================
   SUBMENU – REFINED (NIMMO STYLE)
================================ */

.sub-menu {
  list-style: none;
  margin-top: 12px;
  margin-left: 10px;
  padding-left: 14px;
  display: none;
  border-left: 1px solid #e5e7eb; /* subtle divider */
}

li.open > .sub-menu {
  display: block;
}

/* Submenu items */
.sub-menu li {
  margin-bottom: 10px;
}

/* Submenu links */
.sub-menu a {
  font-size: 14px;
  font-weight: 400;
  color: #555;
  line-height: 1.4;
  transition: color 0.2s ease;
}

.sub-menu a:hover {
  color: var(--jic-blue);
}


/* Active indicator */
.jic-sidebar__nav li.active > .nav-row a {
  color: var(--jic-blue);
}

/* Layout offset */
.jic-main {
  margin-left: 260px;
}
/* ===============================
   ACTIVE STATE STYLING
================================ */

/* Main active link */
.jic-sidebar__nav li.active > .nav-row > a,
.jic-sidebar__nav li.active > a {
  color: var(--jic-blue);
  font-weight: 600;
}

/* Left indicator (main items) */
.jic-sidebar__nav li.active::before {
  content: "";
  position: absolute;
  left: -30px;
  top: 0;
  width: 4px;
  height: 100%;
  background: var(--jic-blue);
}

/* Submenu active */
.sub-menu li.active > a {
  color: var(--jic-blue);
  font-weight: 600;
  position: relative;
}

/* Submenu active dot (subtle, Nimmo-like) */
.sub-menu li.active > a::before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background: var(--jic-blue);
  border-radius: 50%;
}


@media (max-width: 1024px) {
  .jic-sidebar {
    display: none;
  }
  .jic-main {
    margin-left: 0;
  }
}
/* ================= ABOUT SECTION ================= */

.about-section {
  background: #f8fafc;
  padding: 100px 80px 80px;
}

/* MAIN GRID */
.about-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  align-items: center;
  gap: 40px;
}

/* LEFT : YEARS */
.about-years {
  text-align: center;
}



.years-svg text {
  font-size: 180px;
  font-weight: 900;
  fill: var(--jic-blue);
}

.years-label {
  margin-top: 12px;
  font-size: 14px;
  letter-spacing: 1px;
  color: #475569;
}

/* RIGHT : CONTENT */
.about-content {
  position: relative;
  max-width: 600px;
}

.about-vertical {
  position: absolute;
  left: -50px;
  top: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 3px;
  color: var(--jic-blue);
  font-weight: 600;
}

.about-content h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--jic-navy);
  margin-bottom: 16px;
}

.about-summary {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
}

/* READ MORE */
.about-more {
  display: none;
  margin-top: 14px;
}

.about-more p {
  font-size: 15px;
  line-height: 1.7;
  color: #475569;
}

.about-readmore {
  margin-top: 16px;
  background: none;
  border: none;
  color: var(--jic-blue);
  font-weight: 600;
  cursor: pointer;
  padding: 0;
}

/* STATS */
.about-stats {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  text-align: center;
}



.stat strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: var(--jic-navy);
}

.stat span {
  font-size: 14px;
  color: #64748b;
}

/* 25 SVG */
.years-svg {
  width: 320px;
  max-width: 100%;
}

/* STATS ICONS */
.stat-icon {
  width: 36px;
  height: 36px;
  margin-bottom: 10px;
  filter: invert(43%) sepia(93%) saturate(420%) hue-rotate(168deg);
}
html {
  scroll-behavior: smooth;
}
/* ===============================
   STATS ICON ALIGNMENT FIX
================================ */

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 60px;
}

/* Individual stat */
.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Icon container (this fixes alignment) */
.stat-icon-wrap {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

/* SVG itself */
.stat-icon {
  width: 34px;
  height: 34px;
  display: block;
  fill: #1fb6e9; /* JIC blue */
}

/* Number */
.stat strong {
  font-size: 34px;
  font-weight: 800;
  color: #0a1e3f;
  margin-bottom: 4px;
}

/* Label */
.stat span {
  font-size: 14px;
  color: #6b7280;
}
/* ================= MOBILE HEADER ================= */

.jic-mobile-header {
  display: none;
}

@media (max-width: 1024px) {
  .jic-mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #0a1e3f;
    color: #fff;
    z-index: 1000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 20px;
  }

  .jic-mobile-logo {
    font-size: 22px;
    font-weight: 800;
  }

  .jic-mobile-toggle {
    background: none;
    border: none;
    font-size: 26px;
    color: #fff;
    cursor: pointer;
  }
}
/* ================= MOBILE MENU ================= */

.jic-mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: #ffffff;
  z-index: 1100;
  transition: right 0.35s ease;
  padding: 80px 30px;
}

.jic-mobile-menu.active {
  right: 0;
}

.jic-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #1fb6e9;
  color: #fff;
  border: none;
  font-size: 22px;
  width: 36px;
  height: 36px;
  border-radius: 6px;
  cursor: pointer;
}

.jic-mobile-nav a {
  display: block;
  font-size: 18px;
  font-weight: 600;
  color: #0a1e3f;
  padding: 14px 0;
  border-bottom: 1px solid #e5e7eb;
}

/* ===============================
   MOBILE LAYOUT FIX (SAFE)
================================ */

@media (max-width: 1024px) {

  body {
    overflow-x: hidden;
  }

  .jic-main {
    margin-left: 0 !important;
    width: 100%;
    overflow-x: hidden;
  }

  .jic-hero,
  .about-section {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }
}
/* =====================================
   ABOUT SECTION – MOBILE UX FIX
===================================== */

@media (max-width: 768px) {

  /* Section spacing */
  .about-section {
    padding: 80px 24px 70px;
  }

  /* Stack layout */
  .about-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  /* 25 years block */
  .about-years {
    text-align: center;
  }

  .years-svg {
    width: 220px; /* balanced like Nimmo */
    margin: 0 auto;
  }

  .years-label {
    margin-top: 10px;
    font-size: 13px;
  }

  /* Content block */
  .about-content {
    max-width: 100%;
    text-align: center;
  }

  /* Hide vertical ABOUT US on mobile */
  .about-vertical {
    display: none;
  }

  .about-content h2 {
    font-size: 30px;
    line-height: 1.25;
    margin-bottom: 14px;
  }

  .about-summary,
  .about-more p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-readmore {
    margin-top: 14px;
    font-size: 15px;
  }

  /* Stats layout */
  .about-stats {
    margin-top: 50px;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .stat strong {
    font-size: 26px;
  }

  .stat span {
    font-size: 12px;
  }

  .stat-icon-wrap {
    width: 42px;
    height: 42px;
    margin-bottom: 10px;
  }

  .stat-icon {
    width: 28px;
    height: 28px;
  }
}
/* ===============================
   WHY CHOOSE JIC (NIMMO STYLE)
================================ */

.why-choose-section {
  background: #f1f5f9;
  padding: 100px 80px;
}

.why-choose-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 60px;
  align-items: center;
  position: relative;
}

/* Decorative left shape */
.why-choose-decor {
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(31,182,233,0.25),
    rgba(10,30,63,0.15)
  );
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%);
}

/* Content */
.why-choose-content {
  position: relative;
  max-width: 640px;
}

.why-choose-vertical {
  position: absolute;
  left: -55px;
  top: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--jic-blue);
}

.why-choose-content h2 {
  font-size: 42px;
  font-weight: 800;
  line-height: 1.2;
  color: var(--jic-navy);
  margin-bottom: 40px;
}

/* Grid */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px 50px;
}

/* Item */
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.why-icon {
  min-width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--jic-blue);
  color: #fff;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.why-item h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--jic-navy);
  margin-bottom: 6px;
}

.why-item p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

/* ===============================
   MOBILE WHY CHOOSE
================================ */

@media (max-width: 1024px) {
  .why-choose-section {
    padding: 80px 24px;
  }

  .why-choose-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .why-choose-decor {
    height: 140px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
  }

  .why-choose-vertical {
    display: none;
  }

  .why-choose-content h2 {
    font-size: 34px;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}
/* =====================================
   WHY CHOOSE – ALIGNMENT REFINEMENT
===================================== */

.why-choose-inner {
  margin-left: -40px; /* pull section left */
}

@media (max-width: 1024px) {
  .why-choose-inner {
    margin-left: 0; /* reset on mobile */
  }
}

/* =====================================
   WHY CHOOSE – ICON COLOR SYSTEM
===================================== */

.why-icon {
  background: linear-gradient(
    135deg,
    #0a1e3f 0%,
    #1fb6e9 100%
  );
  box-shadow: 0 8px 20px rgba(10, 30, 63, 0.25);
}
/* =====================================
   WHY CHOOSE – DECORATIVE SHAPE TONE
===================================== */

.why-choose-decor {
  background: linear-gradient(
    135deg,
    rgba(10, 30, 63, 0.18),
    rgba(31, 182, 233, 0.10)
  );
}
/* =====================================
   WHY CHOOSE – BACKGROUND VISUAL LAYER
===================================== */

.why-choose {
  position: relative;
  overflow: hidden;
}

/* =====================================
   WHY CHOOSE – BACKGROUND TECH VISUAL
===================================== */

.why-choose {
  position: relative;
  overflow: hidden;
}

/* Semiconductor + Gears */
.why-choose::before {
  content: "";
  position: absolute;
  left: 40px;              /* bring inside view */
  top: 50%;
  transform: translateY(-50%);
  width: 420px;
  height: 420px;

  background-image:
    url("../icons/semiconductor.svg"),
    url("../icons/gears.svg");

  background-repeat: no-repeat;
  background-size: 260px, 220px;
  background-position:
    left top,
    right bottom;

  opacity: 1;           /* visible but elegant */
  filter: none;
  z-index: 1;              /* ABOVE shape */
}

/* Content above everything */
.why-choose > * {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .why-choose::before {
    display: none;
  }
}
/* FIX stacking order */
.why-choose-decor {
  position: relative;
  z-index: 1;
}

.why-choose::before {
  z-index: 0;
}
/* Tablets */
@media (max-width: 1024px) {
  .why-choose::before {
    display: none;
  }
}
.why-choose-content {
  position: relative;
  z-index: 2;
}
/* ===============================
   SERVICES – NIMMO INSPIRED (JIC)
================================ */

.jic-services {
  background: #0a1e3f;
  padding: 120px 80px;
  color: #fff;
}

.jic-services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.jic-services-head {
  max-width: 640px;
  margin-bottom: 60px;
  position: relative;
}

.jic-services-vertical {
  position: absolute;
  left: -50px;
  top: 8px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 3px;
  color: #1fb6e9;
  font-weight: 600;
}

.jic-services-head h2 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 18px;
}

.jic-services-head p {
  font-size: 16px;
  line-height: 1.7;
  color: #d1d5db;
}

/* GRID */
.jic-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* CARD */
.service-card {
  background: #ffffff;
  color: #0a1e3f;
  padding: 36px 30px;
  border-radius: 18px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 15px;
  line-height: 1.6;
  color: #475569;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(31,182,233,0.25);
}

/* ===============================
   SERVICES – MOBILE
================================ */

@media (max-width: 1024px) {
  .jic-services {
    padding: 100px 24px;
  }

  .jic-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .jic-services-vertical {
    display: none;
  }
}

@media (max-width: 640px) {
  .jic-services-grid {
    grid-template-columns: 1fr;
  }

  .jic-services-head h2 {
    font-size: 34px;
  }
}
/* ===============================
   SERVICES – CAROUSEL (NIMMO)
================================ */

.jic-services-carousel {
  display: flex;
  gap: 36px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 20px;
  -webkit-overflow-scrolling: touch;
}

/* hide scrollbar (desktop) */
.jic-services-carousel::-webkit-scrollbar {
  height: 6px;
}
.jic-services-carousel::-webkit-scrollbar-thumb {
  background: #1fb6e9;
  border-radius: 10px;
}

/* card */
.service-card {
  min-width: 340px;
  max-width: 340px;
  scroll-snap-align: start;
  background: #ffffff;
  color: #0a1e3f;
  padding: 36px 30px;
  border-radius: 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

/* hover */
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(31,182,233,0.25);
}

/* service icon */
.service-icon {
  margin-bottom: 18px;
   width: 64px;        /* increase size */
  height: 64px;
  margin: 0 auto 20px;
  display: block;
}

/* text */
.service-card h4 {
  font-size: 22px;     /* bigger */
  font-weight: 700;
  text-align: center;
  margin-bottom: 12px;
  color: #0a1e3f;   
}

.service-card p {
  
  line-height: 1.6;
  color: #475569;
  font-size: 16px;
  text-align: center;
  max-width: 280px;
  margin: 0 auto;
}


/* ===============================
   MOBILE TUNING
================================ */

@media (max-width: 640px) {
  .service-card {
    min-width: 280px;
  }
}
@media (max-width: 768px) {
  .service-icon {
    width: 56px;
    height: 56px;
  }

  .service-card h4 {
    font-size: 20px;
  }

  .service-card p {
    font-size: 15px;
  }
}


/* ===============================
   CONTACT SECTION (NIMMO STYLE)
================================ */

.jic-contact {
  background: #f8fafc;
  padding: 120px 80px;
}

.jic-contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 80px;
  position: relative;
}

/* LEFT */
.jic-contact-left {
  position: relative;
}

.jic-contact-vertical {
  position: absolute;
  left: -60px;
  top: 10px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 12px;
  letter-spacing: 3px;
  font-weight: 600;
  color: var(--jic-blue);
}

.jic-contact-left h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--jic-navy);
  line-height: 1.2;
  margin-bottom: 20px;
}

.jic-contact-intro {
  font-size: 16px;
  line-height: 1.7;
  color: #475569;
  max-width: 420px;
  margin-bottom: 40px;
}

/* CONTACT INFO */
.jic-contact-info {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1e3f, #1fb6e9);
  color: #fff;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item strong {
  font-size: 15px;
  color: var(--jic-navy);
}

.contact-item p {
  font-size: 14px;
  color: #64748b;
}

/* RIGHT FORM */
.jic-contact-form {
  background: #ffffff;
  padding: 48px 48px;
  border-radius: 18px;
  box-shadow: 0 30px 60px rgba(10, 30, 63, 0.12);
  max-width: 100%;
}


.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.jic-contact-form input,
.jic-contact-form select,
.jic-contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  font-size: 14px;
  font-family: inherit;
}

.jic-contact-form textarea {
  resize: none;
  height: 140px;
  margin-bottom: 22px;
}

.jic-contact-form input:focus,
.jic-contact-form select:focus,
.jic-contact-form textarea:focus {
  outline: none;
  border-color: var(--jic-blue);
}

/* ===============================
   CONTACT – MOBILE
================================ */

@media (max-width: 1024px) {
  .jic-contact {
    padding: 80px 24px;
  }

  .jic-contact-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .jic-contact-vertical {
    display: none;
  }

  .jic-contact-left h2 {
    font-size: 34px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-icon {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0a1e3f, #1fb6e9);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1); /* makes SVG white */
}
.jic-contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 45% 55%; /* more space to form */
  gap: 60px;
  align-items: center;
}
.jic-contact-form input,
.jic-contact-form select,
.jic-contact-form textarea {
  width: 100%;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  font-size: 15px;
}

.jic-contact-form textarea {
  min-height: 140px;
  resize: none;
}
.jic-contact-form button {
  margin-top: 16px;
  padding: 14px 36px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 10px;
  background: linear-gradient(135deg, #1fb6e9, #0a1e3f);
  color: #fff;
  border: none;
  cursor: pointer;
}
@media (max-width: 1024px) {
  .jic-contact-inner {
    grid-template-columns: 1fr;
  }

  .jic-contact-form {
    padding: 36px 24px;
  }
}
/* ===============================
   FOOTER – JIC (NIMMO REFINED)
================================ */

.jic-footer {
  background: linear-gradient(180deg, #0a1e3f 0%, #08162f 100%);
  padding: 120px 0 0;
  color: #ffffff;
}

/* Brand */
.footer-logo {
  font-size: 42px;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.footer-address,
.footer-email {
  font-size: 15px;
  line-height: 1.8;
  color: #cbd5e1;
  max-width: 280px;
}

/* Headings */
.footer-links h4,
.footer-social h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* Links */
.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 14px;
}

.footer-links a {
  color: #cbd5e1;
  font-size: 15px;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #1fb6e9;
}

/* Social */
.footer-social-icons {
  display: flex;
  gap: 16px;
}

.footer-social-icons a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social-icons img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-social-icons a:hover {
  background: #1fb6e9;
  transform: translateY(-3px);
}

/* Bottom */
.jic-footer-bottom {
  margin-top: 80px;
  padding: 24px 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===============================
   MOBILE
================================ */

@media (max-width: 1024px) {
  .jic-footer-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 24px;
  }
}
.jic-footer {
  margin-left: 260px;
}

@media (max-width: 1024px) {
  .jic-footer {
    margin-left: 0;
  }
}


/* Right side stack */

.jic-footer {
  background: linear-gradient(180deg, #0a1e3f 0%, #07142b 100%);
  padding: 100px 0 0;
}
.footer-logo {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 18px;
}
@media (max-width: 1024px) {
  .jic-footer-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 24px;
  }

  .footer-right {
    flex-direction: column;
    gap: 32px;
  }
}

.jic-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.6fr;
  gap: 60px;
  align-items: start;
}
.footer-right {
  display: contents;
}
.footer-links ul {
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 12px;
}
.footer-social-icons {
  display: flex;
  gap: 14px;
  justify-content: flex-start;
}

/* ================= INDUSTRIES STATIC ================= */

.industries-static {
  background: #f7f9fc;
  padding: 120px 0;
}

.industries-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 50px;
  align-items: start;
}

/* LEFT */
.industries-content .section-label {
  color: #1f4fd8;
  font-weight: 600;
  letter-spacing: 1px;
  font-size: 13px;
  padding:10px;
}

.industries-content h2 {
  font-size: 52px;
  line-height: 1.15;
  margin: 20px 0;
  color: #0a1e3f;
  padding:10px;
}

.industries-content p {
  font-size: 16px;
  color: #6b7280;
  max-width: 420px;
  padding:10px;
}

.industries-cta {
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
  color: #0a1e3f;
  border-bottom: 2px solid #0a1e3f;
  text-decoration: none;
  padding:10px;
}

/* RIGHT */
.industries-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.industry-card {
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-radius: 6px;
  overflow: hidden;
}

.industry-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.industry-card h3 {
  font-size: 18px;
  margin: 20px;
  color: #0a1e3f;
}

.industry-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 0 20px 20px;
}

.industry-card a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  font-weight: 500;
  color: #0a1e3f;
  text-decoration: none;
  border-top: 1px solid #e5e7eb;
}
/* ======================================
   INDUSTRIES – MOBILE LAYOUT (STACKED)
====================================== */
@media (max-width: 768px) {

  /* Section wrapper */
  .industries-static {
    padding: 48px 20px;
    background: #f7f9fc; /* distinguish from sidebar */
  }

  /* Remove vertical label behavior */
  .industries-label {
    writing-mode: horizontal-tb;
    transform: none;
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 12px;
  }

  /* Heading */
  .industries-heading {
    font-size: 34px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #0a1e3f;
  }

  /* Description text */
  .industries-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
  }

  /* CTA */
  .industries-cta {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 32px;
  }

  /* Force single-column layout */
  .industries-container {
    display: block;
  }

  /* Cards wrapper */
  .industries-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-left: 0;
  }

  /* Individual card */
  .industry-card {
    width: 100%;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
  }

  /* Card image */
  .industry-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
  }

  /* Card content */
  .industry-card-content {
    padding: 16px;
  }

  /* Card title */
  .industry-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #0a1e3f;
  }

  /* Card description */
  .industry-card p {
    font-size: 14px;
    line-height: 1.5;
    color: #555;
  }
}


/* ===========================
   FOOTER – CLEAN MOBILE STACK
=========================== */
@media (max-width: 768px) {

  .jic-footer {
    padding: 40px 20px 24px;
  }

  .jic-footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 32px;
  }

  /* --- EACH FOOTER BLOCK --- */
  .jic-footer-col {
    width: 100%;
  }

  /* 1️⃣ LOGO + ADDRESS */
  .jic-footer-col.logo-col {
    order: 1;
  }

  /* 2️⃣ LINKS */
  .jic-footer-col.links-col {
    order: 2;
  }

  /* 3️⃣ SOCIAL */
  .jic-footer-col.social-col {
    order: 3;
  }

  /* LINKS STYLE */
  .jic-footer-links {
    padding-left: 0;
  }

  .jic-footer-links a {
    display: block;
    margin-bottom: 10px;
  }

  /* SOCIAL ICONS */
  .jic-footer-social {
    display: flex;
    gap: 14px;
    margin-top: 8px;
  }

  /* COPYRIGHT */
  .jic-footer-bottom {
    margin-top: 32px;
    padding-top: 16px;
    text-align: center;
    font-size: 13px;
  }
}
