:root {
    --brand: #e79b03f0;
    --dark: #0b1c2d;
    --text: #1f2933;
    --light-bg: #f4f6f9;
    --white: #ffffff;
}

/* RESET & FONT SYSTEM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

/* PAGE TRANSITION */
body {
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.7;
}
/* ===== SUBTLE DEPTH SEPARATION ===== */
.section.overlap {
    background: #63e00f00;
    position: relative;
    z-index: 2;
}
p {
    color: #238d24; /* darker than default, better contrast */
}
/* Executive Intro Enhancements */

.exec-capabilities {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.exec-capabilities span {
  padding: 8px 16px;
  background: rgba(11, 28, 45, 0.08);
  border: 1px solid rgba(11, 28, 45, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #0b1c2d;
}

.exec-industries {
  margin-top: 22px;
  font-size: 14px;
  color: #060606;
  letter-spacing: 0.3px;
}

.exec-focus {
  margin-top: 18px;
  font-size: 14px;
  color: #030303;
}

/* Subtle reveal animation */
.section.overlap .text-content {
  animation: execReveal 0.9s ease-out;
}

@keyframes execReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COMMON */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    max-width: 820px;
    margin: auto;
}

.text-center {
    text-align: center;
}

/* HEADER */
header {
    background: rgba(74, 74, 116, 0.84);
    position: sticky;
    height: 60px; 
    padding: 0 24px;
    top: 0;
    z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* move everything left */
  gap: 40px;                   /* space between logo & menu */
}


.logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  width: auto;
}
nav {
  margin-left: auto;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav a {
    color: #fff;
    text-decoration: rgb(199, 20, 20);
    font-size: 15px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}
/* HOME PAGE HERO FULLSCREEN */
.home-page .hero {
  height: 100vh;
  min-height: 100vh;
}
/* Hide header on load (home only) */
.home-page header {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}
.home-page header.show-header {
  transform: translateY(0);
}

/* HERO – LOCKED BACKGROUND */
/* ===== HERO WITH LOCKED BACKGROUND ===== */
/* ===== PROFESSIONAL HERO SIZE ===== */
.hero {
  position: relative;
  height: 70vh;              /* SAME SIZE EVERYWHERE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 820px;
    color: white;
    margin: 0 auto 12px;
    letter-spacing: 0.5px;
}

.hero p {
    margin-top: 14px;
    font-size: 17px;
    max-width: 780px;
    color: white;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.6;
}



/* Fixed background layer */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    filter: brightness(1.00) saturate(0.50);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
}
/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    max-width: 450px;   /* CONTROL SIZE HERE */
    height: auto;
    opacity: 0.95;
}
:root {
    --brand: #e79b03f0;
    --dark: #0b1c2d;
    --text: #1f2933;
    --light-bg: #f4f6f9;
    --white: #ffffff;
}

/* RESET & FONT SYSTEM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

/* PAGE TRANSITION */
body {
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.7;
}
/* ===== SUBTLE DEPTH SEPARATION ===== */
.section.overlap {
    background: #63e00f00;
    position: relative;
    z-index: 2;
}
p {
    color: #238d24; /* darker than default, better contrast */
}
/* Executive Intro Enhancements */

.exec-capabilities {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.exec-capabilities span {
  padding: 8px 16px;
  background: rgba(11, 28, 45, 0.08);
  border: 1px solid rgba(11, 28, 45, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #0b1c2d;
}

.exec-industries {
  margin-top: 22px;
  font-size: 14px;
  color: #060606;
  letter-spacing: 0.3px;
}

.exec-focus {
  margin-top: 18px;
  font-size: 14px;
  color: #030303;
}

/* Subtle reveal animation */
.section.overlap .text-content {
  animation: execReveal 0.9s ease-out;
}

@keyframes execReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COMMON */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    max-width: 820px;
    margin: auto;
}

.text-center {
    text-align: center;
}

/* HEADER */
header {
    background: rgba(74, 74, 116, 0.84);
    position: sticky;
    height: 60px; 
    padding: 0 24px;
    top: 0;
    z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* move everything left */
  gap: 40px;                   /* space between logo & menu */
}


.logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  width: auto;
}
nav {
  margin-left: auto;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav a {
    color: #fff;
    text-decoration: rgb(199, 20, 20);
    font-size: 15px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}
/* HOME PAGE HERO FULLSCREEN */
.home-page .hero {
  height: 100vh;
  min-height: 100vh;
}
/* Hide header on load (home only) */
.home-page header {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}
.home-page header.show-header {
  transform: translateY(0);
}

/* HERO – LOCKED BACKGROUND */
/* ===== HERO WITH LOCKED BACKGROUND ===== */
/* ===== PROFESSIONAL HERO SIZE ===== */
.hero {
  position: relative;
  height: 70vh;              /* SAME SIZE EVERYWHERE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 820px;
    color: white;
    margin: 0 auto 12px;
    letter-spacing: 0.5px;
}

.hero p {
    margin-top: 14px;
    font-size: 17px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.6;
}



/* Fixed background layer */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    filter: brightness(1.00) saturate(0.50);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
}
/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    max-width: 450px;   /* CONTROL SIZE HERE */
    height: auto;
    opacity: 0.95;
}

/* Page-specific backgrounds */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(24, 122, 219, 0.55) 0%,
      rgba(24, 122, 219, 0.55) 60%,
      rgba(24, 122, 219, 0.25) 80%,
      rgba(24, 122, 219, 0.0) 100%
    ),
    url("../images/worker.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}


.about-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

.services-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

.clients-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

.contact-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

/* ===== HERO OVERLAP BASE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== PROFESSIONAL HERO REFINEMENT ===== */

.hero {
    min-height: 55vh;
    max-height: 520px;
    padding: 100px 0 80px;
}

/* Darken image more */
.hero::before {
    filter: brightness(0.55) saturate(0.85);
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Optical correction */
    padding-bottom: 80px;   /* pushes content away from bottom */
    
}


/* Content panel */
.hero-panel {
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
  box-sizing: border-box;
  text-align: center;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-panel h1 {
  max-width: 100%;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  word-break: break-word;
}


.home-hero .hero-founder {
    font-size: 20px;
    margin-top: 4px;
    opacity: 0.85;
}
.hero-panel p {
    margin-top: 5px;
    color: white;
    font-size: 16.5px;
    line-height: 1.6;
    opacity: 0.95;
}
/* HOME HERO SECTION */
.home-hero {
  min-height: calc(110vh - 80px); /* subtract header height */
  display: flex;
  align-items: center;            /* vertical center */
  justify-content: center;        /* horizontal center */
  position: relative;
}



/* SECTIONS */
.section {
    padding: 50px 0;
    background: var(--white);
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.section {
  background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

/* First section after hero overlaps image */
.section.overlap {
    position: relative;
    margin-top: -100px;     /* controls overlap depth */
    padding-top: 150px;     /* compensates for overlap */
    z-index: 2;    
}
.section.alt {
    background: #c8d3ddab;
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
    
}
/* ===== INDUSTRIAL BRAND TEXT LOGO ===== */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Main brand name */
.brand-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--brand);
    position: relative;
}

/* Industrial underline bar */
.brand-main::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 2px;
    width: 4px;
    height: 100%;
    background: var(--brand);
}

/* Sub brand */
.brand-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #ffffff;
    margin-top: 6px;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
/* ===== FOUNDER PROFILE BLOCK ===== */
.founder-box {
    border-top: 1px solid #ddd;
    padding-top: 16px;
}

.founder-box strong {
    font-size: 17px;
    color: var(--brand);
}

.founder-box span {
    color:#55555500
}

/* CARDS */
.card {
    background: rgba(171, 138, 206, 0.84);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.card h4 {
    color: rgb(3, 3, 3);
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    line-height: 1.65;
}
.card {
  position: relative;
  background: linear-gradient(
      rgba(148, 140, 220, 0.96),
      rgba(132, 219, 187, 0.96));
  background-size: cover;
  background-position: center;
  border-radius: 16px;

  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 40px);
  width: 4px;
  background: linear-gradient(#e79b03, #0b1c2d);
  border-radius: 4px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* CLIENTS */
.client-box {
    background: linear-gradient(
        to bottom,
        rgba(211, 174, 109, 0.795),
        #9c9696 35%
    );
    padding: 24px 20px;
    border-radius: 28px;          /* more professional */
    text-align: center;
    font-size: 16px;              /* slightly reduced */
    font-weight: 600;
    border: 1px solid #000000;

    height: 200px;                /* KEY FIX */
    display: flex;                /* KEY FIX */
    flex-direction: column;
    justify-content: center;      /* vertical centering */
    align-items: center;
}

/* LOGO */
.client-box img {
    max-width: 80px;             /* better visual balance */
    max-height: 80px;             /* avoid tall logo stretch */
    object-fit: contain;
    margin-bottom: 14px;
    background: transparent;      /* ensure no white patch */
}

/* FORM */
.form {
    max-width: 600px;
    margin: 40px auto 0;   /* THIS centers it */
    margin: auto;
    color: #0dc8f2;
  text-align: center;
}

.form input,
.form textarea {
    margin: auto;
    width: 60%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #0caffa;
    font-size: 14px;
    margin: 20px auto 0;
  display: block;
}

.form button {
    width: 60%;
    padding: 14px;
    border: 1px transparent black;
    background: var(--brand);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto 0;
  display: block;
}

/* WHATSAPP */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #519c02;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* FOOTER */
.site-footer {
  background: #0d213b; /* deep corporate blue */
  color: #0e4dcc;
  padding: 60px 0 20px;
  font-size: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-tagline {
    position: absolute;
  color: #cbd5e1;
  max-width: 320px;
}

.footer-col p {
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #0d8fd6;        /* your blue */
    color: #5fa1e2;
    text-align: center;
    padding: 15px 80px;
    border-radius: 45px;        /* ROUND CORNERS */
}

/* ===== ACCESSIBILITY & READABILITY ===== */

/* Better paragraph contrast */
p {
    color: #151614;
}

/* ===== ACCESSIBLE WATER-DROP / SOFT GLOW FOCUS ===== */
a:focus {
    outline: none; /* remove default outline */
    position: relative;
    border-radius: 25px;

    /* Water-drop glow */
    box-shadow:
        0 0 0 1px rgba(101, 90, 87, 0.45),
        0 0 30px rgba(143, 114, 135, 0.55),
        inset 0 0 14px rgba(255, 255, 255, 0.35);

    transition: box-shadow 0.25s ease;
}
@keyframes focusPulse {
    0% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(223, 144, 7, 0.66);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(159, 123, 4, 0.82),
            0 0 14px rgba(73, 152, 3, 0.7);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(73, 152, 3, 0.4);
    }
}
/* ===== WHY SHRIHARI ENTERPRISES – FIXED 4 + 1 LAYOUT ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 5th card goes centered below */
.why-grid .card:nth-child(5) {
    grid-column: 2 / span 2;
}

/* MISSION & CORE VALUES – SAME SYSTEM */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(
        to bottom,
        rgba(157, 201, 197, 0.55),
        #ffffff 40%
    );
}
/* IMAGE – SAME CARD LOOK */
.mission-section .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.mission-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL ACCENT */
.mission-section .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}

.mission-section .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* VISION / MISSION BLOCKS */
.mission-block {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.mission-block strong {
  color: #0b1c2d;
  font-weight: 600;
}

/* BULLETS – CLEAN EXECUTIVE STYLE */
.mission-section .about-points {
  margin-top: 24px;
  padding-left: 20px;
}

.mission-section .about-points li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #0b1c2d;
}


/* Workforce capabilities grid refinement */
.workforce-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* ===== OPERATIONAL STRENGTH – BOXED STYLE ===== */

.strength-section {
   background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
}

.strength-card {
  width: 100%;
  max-width: 260px;          /* prevents full stretch */
  background: #ffffff;
  border: 1.5px solid #0dc8f2;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
   display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
    background: linear-gradient(
    to bottom,
    rgba(214, 191, 225, 0.795),
    #ffffff 35%
  );
}
.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.strength-card span {
  font-size: 14.5px;
  font-weight: 500;
  color: #475569;
}
.strength-icon {
  font-size: 28px;
  color: #e79b03;
  margin-bottom: 10px;
  display: block;
}

.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.site-footer {
  background: rgba(87, 87, 91, 0.966); /* dark industrial blue */
  color: #fcfbfc;
  padding: 5px 0 0px;
  font-size: 16px;
    border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 400px;
  margin-bottom: 10px;
  margin-right: 90px;
  margin-left: -90px;
  transform: translateY(25px);
}


.site-footer h4 {
  color: #fdfdfd;
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer ul li a:hover {
  color: #1408ee;
}

.footer-contact p {
    color: rgb(255, 255, 255)    ;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  background: #aeace0;
  color: #010101;
  font-size: 15px;
}


/* ABOUT PAGE IMAGE LAYOUT */

.about-section {
  padding: 80px 0;
}

.about-row {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}
/* EXECUTIVE STYLE OVERVIEW */
.company-overview-exec {
  padding: 110px 0;
  background: #ffffff;
}

.company-overview-exec .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* TEXT */
.company-overview-exec h2 {
  font-size: 42px;
  color: #0b1c2d;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

/* Vertical accent bar */
.company-overview-exec h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  background: #c9a24d;
}

.overview-intro {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: #111;
  margin-bottom: 22px;
}

.company-overview-exec p {
  font-size: 16px;
  line-height: 1.8;
  color: #3b3b3b;
}

/* FOCUS BLOCK */
.overview-focus {
  margin-top: 35px;
  border-left: 3px solid #e1e5ec;
  padding-left: 20px;
}

.overview-focus div {
  font-size: 15.5px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 14px;
}

/* IMAGE */
.company-overview-exec .about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.company-overview-exec .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* SAME BASE STYLE AS COMPANY OVERVIEW */
.about-style {
  padding: 100px 0;
  background: #f7f9fc;
}

.about-style .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE – SAME CARD LOOK */
.about-style .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.about-style .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL BAR */
.about-style .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}

.about-style .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* FOUNDER NAME BOX */
.founder-name-box {
  display: inline-block;
  margin: 12px 0 22px;
  padding: 8px 18px;
  background: #0b1c2d;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
}

/* PARAGRAPHS */
.about-style .about-text p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

/* BULLET POINTS – SAME FEEL */
.about-points {
  margin-top: 20px;
  padding-left: 18px;
}

.about-points li {
  font-size: 15.5px;
  margin-bottom: 10px;
  color: #0b1c2d;
}

/* =====================================================
   FINAL MOBILE + TABLET RESPONSIVE OVERRIDES
   ===================================================== */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}
/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {

  /* ---------- CONTAINER ---------- */
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ---------- HEADER ---------- */
  header {
    height: 60px;
  }

  .header-wrap {
    gap: 20px;
  }

  nav ul {
    gap: 14px;
    font-size: 14px;
  }

  /* ---------- HERO (FIX MAIN ISSUE) ---------- */
  .hero {
    min-height: auto;
    max-height: none;
    height: calc(100vh - 60px);
    padding: 70px 20px 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-logo img {
    max-width: 280px;
  }

  /* ---------- EXECUTIVE INTRO ---------- */
  .text-content {
    padding: 0 10px;
  }

  .exec-capabilities {
    justify-content: center;
  }

  .exec-industries,
  .exec-focus {
    font-size: 13px;
  }

  /* ---------- WHY SHRIHARI ---------- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .why-grid .card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .card {
    padding: 22px 20px;
  }

  /* ---------- OPERATIONAL STRENGTH ---------- */
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .strength-card {
    max-width: 100%;
  }

  .strength-card strong {
    font-size: 26px;
  }
  
  /* ---------- responsive mobile and tablet---------- */
@media (max-width: 768px) {

  .site-footer {
    padding: 30px 0 0 !important;
  }

  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 40px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-col,
  .footer-contact {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo {
    width: 200px !important;
    margin: 0 auto 12px !important;
    transform: none !important;
  }

  .site-footer h4 {
    margin-top: 12px !important;
    font-size: 15px !important;
  }

  .site-footer ul li {
    margin-bottom: 6px !important;
  }

  .footer-contact p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .footer-bottom {
    padding: 12px !important;
    font-size: 13px !important;
  }}}

/* ===== WORKFORCE SHOWCASE SECTION ===== */
.workforce-showcase {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 90px 0;
}

.workforce-showcase h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 12px;
  color: #1f2933;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
}

/* Blocks */
.wf-block {
  margin-bottom: 80px;
}

/* Images Row */
.wf-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 24px;
}

.wf-images img,video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease;
}

.wf-images img:hover {
  transform: scale(1.04);
}

/* Content */
.wf-content {
  text-align: center;
}

.wf-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1f2933;
}

.wf-content p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3b332f;
}

/* Mobile */
@media (max-width: 768px) {
  .wf-images {
    grid-template-columns: 1fr;
  }

  .wf-images img, video{
    height: 220px;
  }

  .workforce-showcase {
    padding: 70px 0;
  }
}
/* ===== EOT CRANE VIDEO (SEPARATE CONTROL) ===== */
.eot-video video {
  width: 50%;
  height: 500px;           /* keep your height */
  object-fit: cover;

  display: block;          /* REQUIRED */
  margin: 0 auto;          /* CENTERS THE VIDEO */

  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}


/* Tablet */
@media (max-width: 1024px) {
  .eot-video video {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .eot-video video {
    height: 260px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(111, 171, 231, 0.237) 0%,
      rgba(150, 176, 201, 0.231) 60%,
      rgba(165, 179, 193, 0.087) 80%,
      rgba(24, 122, 219, 0.0) 100%
    ),
    url("../images/worker.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
/* ===== HERO OVERLAP BASE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== PROFESSIONAL HERO REFINEMENT ===== */

.hero {
    min-height: 55vh;
    max-height: 520px;
    padding: 100px 0 80px;
}

/* Darken image more */
.hero::before {
    filter: brightness(0.55) saturate(0.85);
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Optical correction */
    padding-bottom: 80px;   /* pushes content away from bottom */
    
}


/* Content panel */
.hero-panel {
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
  box-sizing: border-box;
  text-align: center;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-panel h1 {
  max-width: 100%;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  word-break: break-word;
}


.home-hero .hero-founder {
    font-size: 20px;
    margin-top: 4px;
    opacity: 0.85;
}
.hero-panel p {
    margin-top: 5px;
    color: white;
    font-size: 16.5px;
    line-height: 1.6;
    opacity: 0.95;
}
/* HOME HERO SECTION */
.home-hero {
  min-height: calc(110vh - 80px); /* subtract header height */
  display: flex;
  align-items: center;            /* vertical center */
  justify-content: center;        /* horizontal center */
  position: relative;
}



/* SECTIONS */
.section {
    padding: 50px 0;
    background: var(--white);
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.section {
  background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

/* First section after hero overlaps image */
.section.overlap {
    position: relative;
    margin-top: -100px;     /* controls overlap depth */
    padding-top: 150px;     /* compensates for overlap */
    z-index: 2;    
}
.section.alt {
  background: #c8d3ddab;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
    
}
/* ===== INDUSTRIAL BRAND TEXT LOGO ===== */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Main brand name */
.brand-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--brand);
    position: relative;
}

/* Industrial underline bar */
.brand-main::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 2px;
    width: 4px;
    height: 100%;
    background: var(--brand);
}

/* Sub brand */
.brand-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #ffffff;
    margin-top: 6px;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
/* ===== FOUNDER PROFILE BLOCK ===== */
.founder-box {
    border-top: 1px solid #ddd;
    padding-top: 16px;
}

.founder-box strong {
    font-size: 17px;
    color: var(--brand);
}

.founder-box span {
    color:#55555500
}

/* CARDS */
.card {
    background: rgba(171, 138, 206, 0.84);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.card h4 {
    color: rgb(3, 3, 3);
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    line-height: 1.65;
}
.card {
  position: relative;
  background: linear-gradient(
      rgba(148, 140, 220, 0.96),
      rgba(132, 219, 187, 0.96));
  background-size: cover;
  background-position: center;
  border-radius: 16px;

  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 40px);
  width: 4px;
  background: linear-gradient(#e79b03, #0b1c2d);
  border-radius: 4px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* CLIENTS */
.client-box {
    background: linear-gradient(
        to bottom,
        rgba(211, 174, 109, 0.795),
        #9c9696 35%
    );
    padding: 24px 20px;
    border-radius: 28px;          /* more professional */
    text-align: center;
    font-size: 16px;              /* slightly reduced */
    font-weight: 600;
    border: 1px solid #000000;

    height: 200px;                /* KEY FIX */
    display: flex;                /* KEY FIX */
    flex-direction: column;
    justify-content: center;      /* vertical centering */
    align-items: center;
}

/* LOGO */
.client-box img {
    max-width: 120px;        /* better visual balance */
    max-height:120px;      /* avoid tall logo stretch *
    margin-bottom: 14px;
    background: transparent;      /* ensure no white patch */
}

/* FORM */
.form {
    max-width: 600px;
    margin: 40px auto 0;   /* THIS centers it */
    margin: auto;
    color: #0dc8f2;
  text-align: center;
}

.form input,
.form textarea {
    margin: auto;
    width: 60%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #0caffa;
    font-size: 14px;
    margin: 20px auto 0;
  display: block;
}

.form button {
    width: 60%;
    padding: 14px;
    border: 1px transparent black;
    background: var(--brand);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto 0;
  display: block;
}

/* WHATSAPP */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #519c02;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* FOOTER */
.site-footer {
  background: #0d213b; /* deep corporate blue */
  color: #0e4dcc;
  padding: 60px 0 20px;
  font-size: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-tagline {
    position: absolute;
  color: #cbd5e1;
  max-width: 320px;
}

.footer-col p {
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #0d8fd6;        /* your blue */
    color: #5fa1e2;
    text-align: center;
    padding: 15px 80px;
    border-radius: 45px;        /* ROUND CORNERS */
}

/* ===== ACCESSIBILITY & READABILITY ===== */

/* Better paragraph contrast */
p {
    color: #151614;
}

/* ===== ACCESSIBLE WATER-DROP / SOFT GLOW FOCUS ===== */
a:focus {
    outline: none; /* remove default outline */
    position: relative;
    border-radius: 25px;

    /* Water-drop glow */
    box-shadow:
        0 0 0 1px rgba(101, 90, 87, 0.45),
        0 0 30px rgba(143, 114, 135, 0.55),
        inset 0 0 14px rgba(255, 255, 255, 0.35);

    transition: box-shadow 0.25s ease;
}
@keyframes focusPulse {
    0% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(223, 144, 7, 0.66);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(159, 123, 4, 0.82),
            0 0 14px rgba(73, 152, 3, 0.7);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(73, 152, 3, 0.4);
    }
}
/* ===== WHY SHRIHARI ENTERPRISES – FIXED 4 + 1 LAYOUT ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 5th card goes centered below */
.why-grid .card:nth-child(5) {
    grid-column: 2 / span 2;
}

/* MISSION & CORE VALUES – SAME SYSTEM */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(
        to bottom,
        rgba(157, 201, 197, 0.55),
        #ffffff 40%
    );
}
/* IMAGE – SAME CARD LOOK */
.mission-section .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.mission-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL ACCENT */
.mission-section .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}

.mission-section .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* VISION / MISSION BLOCKS */
.mission-block {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.mission-block strong {
  color: #0b1c2d;
  font-weight: 600;
}

/* BULLETS – CLEAN EXECUTIVE STYLE */
.mission-section .about-points {
  margin-top: 24px;
  padding-left: 20px;
}

.mission-section .about-points li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #0b1c2d;
}


/* Workforce capabilities grid refinement */
.workforce-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* ===== OPERATIONAL STRENGTH – BOXED STYLE ===== */

.strength-section {
   background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
}

.strength-card {
  width: 100%;
  max-width: 260px;          /* prevents full stretch */
  background: #ffffff;
  border: 1.5px solid #0dc8f2;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
   display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
    background: linear-gradient(
    to bottom,
    rgba(214, 191, 225, 0.795),
    #ffffff 35%
  );
}
.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.strength-card span {
  font-size: 14.5px;
  font-weight: 500;
  color: #475569;
}
.strength-icon {
  font-size: 28px;
  color: #e79b03;
  margin-bottom: 10px;
  display: block;
}

.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.site-footer {
  background: rgba(87, 87, 91, 0.966); /* dark industrial blue */
  color: #fcfbfc;
  padding: 5px 0 0px;
  font-size: 16px;
    border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 400px;
  margin-bottom: 10px;
  margin-right: 90px;
  margin-left: -90px;
  transform: translateY(25px);
}


.site-footer h4 {
  color: #fdfdfd;
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer ul li a:hover {
  color: #1408ee;
}

.footer-contact p {
    color: rgb(255, 255, 255)    ;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  background: #aeace0;
  color: #010101;
  font-size: 15px;
}


/* ABOUT PAGE IMAGE LAYOUT */

.about-section {
  padding: 80px 0;
}

.about-row {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}
/* EXECUTIVE STYLE OVERVIEW */
.company-overview-exec {
  padding: 110px 0;
  background: #ffffff;
}

.company-overview-exec .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* TEXT */
.company-overview-exec h2 {
  font-size: 42px;
  color: #0b1c2d;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

/* Vertical accent bar */
.company-overview-exec h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  background: #c9a24d;
}

.overview-intro {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: #111;
  margin-bottom: 22px;
}

.company-overview-exec p {
  font-size: 16px;
  line-height: 1.8;
  color: #3b3b3b;
}

/* FOCUS BLOCK */
.overview-focus {
  margin-top: 35px;
  border-left: 3px solid #e1e5ec;
  padding-left: 20px;
}

.overview-focus div {
  font-size: 15.5px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 14px;
}

/* IMAGE */
.company-overview-exec .about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.company-overview-exec .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* SAME BASE STYLE AS COMPANY OVERVIEW */
.about-style {
  padding: 100px 0;
  background: #f7f9fc;
}

.about-style .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE – SAME CARD LOOK */
.about-style .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.about-style .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL BAR */
.about-style .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}

.about-style .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* FOUNDER NAME BOX */
.founder-name-box {
  display: inline-block;
  margin: 12px 0 22px;
  padding: 8px 18px;
  background: #0b1c2d;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
}

/* PARAGRAPHS */
.about-style .about-text p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

/* BULLET POINTS – SAME FEEL */
.about-points {
  margin-top: 20px;
  padding-left: 18px;
}

.about-points li {
  font-size: 15.5px;
  margin-bottom: 10px;
  color: #0b1c2d;
}

/* =====================================================
   FINAL MOBILE + TABLET RESPONSIVE OVERRIDES
   ===================================================== */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}
/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {

  /* ---------- CONTAINER ---------- */
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ---------- HEADER ---------- */
  header {
    height: 60px;
  }

  .header-wrap {
    gap: 20px;
  }

  nav ul {
    gap: 14px;
    font-size: 14px;
  }

  /* ---------- HERO (FIX MAIN ISSUE) ---------- */
  .hero {
    min-height: auto;
    max-height: none;
    height: calc(100vh - 60px);
    padding: 70px 20px 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-logo img {
    max-width: 280px;
  }

  /* ---------- EXECUTIVE INTRO ---------- */
  .text-content {
    padding: 0 10px;
  }

  .exec-capabilities {
    justify-content: center;
  }

  .exec-industries,
  .exec-focus {
    font-size: 13px;
  }

  /* ---------- WHY SHRIHARI ---------- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .why-grid .card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .card {
    padding: 22px 20px;
  }

  /* ---------- OPERATIONAL STRENGTH ---------- */
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .strength-card {
    max-width: 100%;
  }

  .strength-card strong {
    font-size: 26px;
  }
  
  /* ---------- responsive mobile and tablet---------- */
@media (max-width: 768px) {

  .site-footer {
    padding: 30px 0 0 !important;
  }

  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 40px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-col,
  .footer-contact {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo {
    width: 200px !important;
    margin: 0 auto 12px !important;
    transform: none !important;
  }

  .site-footer h4 {
    margin-top: 12px !important;
    font-size: 15px !important;
  }

  .site-footer ul li {
    margin-bottom: 6px !important;
  }

  .footer-contact p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .footer-bottom {
    padding: 12px !important;
    font-size: 13px !important;
  }}}

/* ===== WORKFORCE SHOWCASE SECTION ===== */
.workforce-showcase {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 90px 0;
}

.workforce-showcase h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 12px;
  color: #1f2933;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
}

/* Blocks */
.wf-block {
  margin-bottom: 80px;
}

/* Images Row */
.wf-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 24px;
}

.wf-images img,video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease;
}

.wf-images img:hover {
  transform: scale(1.04);
}

/* Content */
.wf-content {
  text-align: center;
}

.wf-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1f2933;
}

.wf-content p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3b332f;
}

/* Mobile */
@media (max-width: 768px) {
  .wf-images {
    grid-template-columns: 1fr;
  }

  .wf-images img, video{
    height: 220px;
  }

  .workforce-showcase {
    padding: 70px 0;
  }
}
/* ===== EOT CRANE VIDEO (SEPARATE CONTROL) ===== */
.eot-video video {
  width: 50%;
  height: 500px;           /* keep your height */
  object-fit: cover;

  display: block;          /* REQUIRED */
  margin: 0 auto;          /* CENTERS THE VIDEO */

  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}


/* Tablet */
@media (max-width: 1024px) {
  .eot-video video {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .eot-video video {
    height: 260px;
  }
}.careers-section {
  padding: 60px 0;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.job-card h3 {
  margin-bottom: 10px;
  color: #0b1c2d;
}

.apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #f4a300;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.apply-btn:hover {
  background: #d88f00;
}



:root {
    --brand: #e79b03f0;
    --dark: #0b1c2d;
    --text: #1f2933;
    --light-bg: #f4f6f9;
    --white: #ffffff;
}

/* RESET & FONT SYSTEM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

/* PAGE TRANSITION */
body {
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.7;
}
/* ===== SUBTLE DEPTH SEPARATION ===== */
.section.overlap {
    background: #63e00f00;
    position: relative;
    z-index: 2;
}
p {
    color: #238d24; /* darker than default, better contrast */
}
/* Executive Intro Enhancements */

.exec-capabilities {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.exec-capabilities span {
  padding: 8px 16px;
  background: rgba(11, 28, 45, 0.08);
  border: 1px solid rgba(11, 28, 45, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #0b1c2d;
}

.exec-industries {
  margin-top: 22px;
  font-size: 14px;
  color: #060606;
  letter-spacing: 0.3px;
}

.exec-focus {
  margin-top: 18px;
  font-size: 14px;
  color: #030303;
}

/* Subtle reveal animation */
.section.overlap .text-content {
  animation: execReveal 0.9s ease-out;
}

@keyframes execReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COMMON */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    max-width: 820px;
    margin: auto;
}

.text-center {
    text-align: center;
}

/* HEADER */
header {
    background: rgba(74, 74, 116, 0.84);
    position: sticky;
    height: 60px; 
    padding: 0 24px;
    top: 0;
    z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* move everything left */
  gap: 40px;                   /* space between logo & menu */
}


.logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  width: auto;
}
nav {
  margin-left: auto;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav a {
    color: #fff;
    text-decoration: rgb(199, 20, 20);
    font-size: 15px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}
/* HOME PAGE HERO FULLSCREEN */
.home-page .hero {
  height: 100vh;
  min-height: 100vh;
}
/* Hide header on load (home only) */
.home-page header {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}
.home-page header.show-header {
  transform: translateY(0);
}

/* HERO – LOCKED BACKGROUND */
/* ===== HERO WITH LOCKED BACKGROUND ===== */
/* ===== PROFESSIONAL HERO SIZE ===== */
.hero {
  position: relative;
  height: 70vh;              /* SAME SIZE EVERYWHERE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 820px;
    color: white;
    margin: 0 auto 12px;
    letter-spacing: 0.5px;
}

.hero p {
    margin-top: 14px;
    font-size: 17px;
    max-width: 780px;
    color: white;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.6;
}



/* Fixed background layer */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    filter: brightness(1.00) saturate(0.50);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
}
/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    max-width: 450px;   /* CONTROL SIZE HERE */
    height: auto;
    opacity: 0.95;
}
:root {
    --brand: #e79b03f0;
    --dark: #0b1c2d;
    --text: #1f2933;
    --light-bg: #f4f6f9;
    --white: #ffffff;
}

/* RESET & FONT SYSTEM */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Arial,
        sans-serif;
}

/* PAGE TRANSITION */
body {
    background: var(--light-bg);
    color: var(--text);
    line-height: 1.7;
}
/* ===== SUBTLE DEPTH SEPARATION ===== */
.section.overlap {
    background: #63e00f00;
    position: relative;
    z-index: 2;
}
p {
    color: #238d24; /* darker than default, better contrast */
}
/* Executive Intro Enhancements */

.exec-capabilities {
  margin-top: 30px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
}

.exec-capabilities span {
  padding: 8px 16px;
  background: rgba(11, 28, 45, 0.08);
  border: 1px solid rgba(11, 28, 45, 0.2);
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: #0b1c2d;
}

.exec-industries {
  margin-top: 22px;
  font-size: 14px;
  color: #060606;
  letter-spacing: 0.3px;
}

.exec-focus {
  margin-top: 18px;
  font-size: 14px;
  color: #030303;
}

/* Subtle reveal animation */
.section.overlap .text-content {
  animation: execReveal 0.9s ease-out;
}

@keyframes execReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* COMMON */
.container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

.text-content {
    max-width: 820px;
    margin: auto;
}

.text-center {
    text-align: center;
}

/* HEADER */
header {
    background: rgba(74, 74, 116, 0.84);
    position: sticky;
    height: 60px; 
    padding: 0 24px;
    top: 0;
    z-index: 1000;
}
.logo {
  display: flex;
  align-items: center;
}

.header-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* move everything left */
  gap: 40px;                   /* space between logo & menu */
}


.logo {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 70px;
  width: auto;
}
nav {
  margin-left: auto;
}


nav ul {
    display: flex;
    list-style: none;
    gap: 24px;
}

nav a {
    color: #fff;
    text-decoration: rgb(199, 20, 20);
    font-size: 15px;
    position: relative;
}

nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--brand);
    transition: 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}
/* HOME PAGE HERO FULLSCREEN */
.home-page .hero {
  height: 100vh;
  min-height: 100vh;
}
/* Hide header on load (home only) */
.home-page header {
  position: fixed;
  top: 0;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.4s ease;
  z-index: 1000;
}
.home-page header.show-header {
  transform: translateY(0);
}

/* HERO – LOCKED BACKGROUND */
/* ===== HERO WITH LOCKED BACKGROUND ===== */
/* ===== PROFESSIONAL HERO SIZE ===== */
.hero {
  position: relative;
  height: 70vh;              /* SAME SIZE EVERYWHERE */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}
.hero h1 {
    font-size: 42px;
    font-weight: 700;
    max-width: 820px;
    color: white;
    margin: 0 auto 12px;
    letter-spacing: 0.5px;
}

.hero p {
    margin-top: 14px;
    font-size: 17px;
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.92;
    line-height: 1.6;
}



/* Fixed background layer */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;

    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;

    filter: brightness(1.00) saturate(0.50);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 140px;
}
/* ===== HERO LOGO ===== */
.hero-logo {
    margin-bottom: -40px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    max-width: 450px;   /* CONTROL SIZE HERE */
    height: auto;
    opacity: 0.95;
}

/* Page-specific backgrounds */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(24, 122, 219, 0.55) 0%,
      rgba(24, 122, 219, 0.55) 60%,
      rgba(24, 122, 219, 0.25) 80%,
      rgba(24, 122, 219, 0.0) 100%
    ),
    url("../images/worker.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}


.about-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

.services-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

.clients-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

.contact-hero::before {
    background-image:
        linear-gradient(rgba(24, 122, 219, 0.543), rgba(156, 202, 49, 0.466)),
        url("../images/worker.jpg");
}

/* ===== HERO OVERLAP BASE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== PROFESSIONAL HERO REFINEMENT ===== */

.hero {
    min-height: 55vh;
    max-height: 520px;
    padding: 100px 0 80px;
}

/* Darken image more */
.hero::before {
    filter: brightness(0.55) saturate(0.85);
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Optical correction */
    padding-bottom: 80px;   /* pushes content away from bottom */
    
}


/* Content panel */
.hero-panel {
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
  box-sizing: border-box;
  text-align: center;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-panel h1 {
  max-width: 100%;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  word-break: break-word;
}


.home-hero .hero-founder {
    font-size: 20px;
    margin-top: 4px;
    opacity: 0.85;
}
.hero-panel p {
    margin-top: 5px;
    color: white;
    font-size: 16.5px;
    line-height: 1.6;
    opacity: 0.95;
}
/* HOME HERO SECTION */
.home-hero {
  min-height: calc(110vh - 80px); /* subtract header height */
  display: flex;
  align-items: center;            /* vertical center */
  justify-content: center;        /* horizontal center */
  position: relative;
}



/* SECTIONS */
.section {
    padding: 50px 0;
    background: var(--white);
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.section {
  background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

/* First section after hero overlaps image */
.section.overlap {
    position: relative;
    margin-top: -100px;     /* controls overlap depth */
    padding-top: 150px;     /* compensates for overlap */
    z-index: 2;    
}
.section.alt {
    background: #c8d3ddab;
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
    
}
/* ===== INDUSTRIAL BRAND TEXT LOGO ===== */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Main brand name */
.brand-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--brand);
    position: relative;
}

/* Industrial underline bar */
.brand-main::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 2px;
    width: 4px;
    height: 100%;
    background: var(--brand);
}

/* Sub brand */
.brand-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #ffffff;
    margin-top: 6px;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}
/* ===== FOUNDER PROFILE BLOCK ===== */
.founder-box {
    border-top: 1px solid #ddd;
    padding-top: 16px;
}

.founder-box strong {
    font-size: 17px;
    color: var(--brand);
}

.founder-box span {
    color:#55555500
}

/* CARDS */
.card {
    background: rgba(171, 138, 206, 0.84);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.card h4 {
    color: rgb(3, 3, 3);
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    line-height: 1.65;
}
.card {
  position: relative;
  background: linear-gradient(
      rgba(148, 140, 220, 0.96),
      rgba(132, 219, 187, 0.96));
  background-size: cover;
  background-position: center;
  border-radius: 16px;

  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 40px);
  width: 4px;
  background: linear-gradient(#e79b03, #0b1c2d);
  border-radius: 4px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* CLIENTS */
.client-box {
    background: linear-gradient(
        to bottom,
        rgba(211, 174, 109, 0.795),
        #9c9696 35%
    );
    padding: 24px 20px;
    border-radius: 28px;          /* more professional */
    text-align: center;
    font-size: 16px;              /* slightly reduced */
    font-weight: 600;
    border: 1px solid #000000;

    height: 200px;                /* KEY FIX */
    display: flex;                /* KEY FIX */
    flex-direction: column;
    justify-content: center;      /* vertical centering */
    align-items: center;
}

/* LOGO */
.client-box img {
    max-width: 80px;             /* better visual balance */
    max-height: 80px;             /* avoid tall logo stretch */
    object-fit: contain;
    margin-bottom: 14px;
    background: transparent;      /* ensure no white patch */
}

/* FORM */
.form {
    max-width: 600px;
    margin: 40px auto 0;   /* THIS centers it */
    margin: auto;
    color: #0dc8f2;
  text-align: center;
}

.form input,
.form textarea {
    margin: auto;
    width: 60%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #0caffa;
    font-size: 14px;
    margin: 20px auto 0;
  display: block;
}

.form button {
    width: 60%;
    padding: 14px;
    border: 1px transparent black;
    background: var(--brand);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto 0;
  display: block;
}

/* WHATSAPP */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #519c02;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* FOOTER */
.site-footer {
  background: #0d213b; /* deep corporate blue */
  color: #0e4dcc;
  padding: 60px 0 20px;
  font-size: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-tagline {
    position: absolute;
  color: #cbd5e1;
  max-width: 320px;
}

.footer-col p {
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #0d8fd6;        /* your blue */
    color: #5fa1e2;
    text-align: center;
    padding: 15px 80px;
    border-radius: 45px;        /* ROUND CORNERS */
}

/* ===== ACCESSIBILITY & READABILITY ===== */

/* Better paragraph contrast */
p {
    color: #151614;
}

/* ===== ACCESSIBLE WATER-DROP / SOFT GLOW FOCUS ===== */
a:focus {
    outline: none; /* remove default outline */
    position: relative;
    border-radius: 25px;

    /* Water-drop glow */
    box-shadow:
        0 0 0 1px rgba(101, 90, 87, 0.45),
        0 0 30px rgba(143, 114, 135, 0.55),
        inset 0 0 14px rgba(255, 255, 255, 0.35);

    transition: box-shadow 0.25s ease;
}
@keyframes focusPulse {
    0% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(223, 144, 7, 0.66);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(159, 123, 4, 0.82),
            0 0 14px rgba(73, 152, 3, 0.7);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(73, 152, 3, 0.4);
    }
}
/* ===== WHY SHRIHARI ENTERPRISES – FIXED 4 + 1 LAYOUT ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 5th card goes centered below */
.why-grid .card:nth-child(5) {
    grid-column: 2 / span 2;
}

/* MISSION & CORE VALUES – SAME SYSTEM */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(
        to bottom,
        rgba(157, 201, 197, 0.55),
        #ffffff 40%
    );
}
/* IMAGE – SAME CARD LOOK */
.mission-section .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.mission-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL ACCENT */
.mission-section .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}

.mission-section .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* VISION / MISSION BLOCKS */
.mission-block {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.mission-block strong {
  color: #0b1c2d;
  font-weight: 600;
}

/* BULLETS – CLEAN EXECUTIVE STYLE */
.mission-section .about-points {
  margin-top: 24px;
  padding-left: 20px;
}

.mission-section .about-points li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #0b1c2d;
}


/* Workforce capabilities grid refinement */
.workforce-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* ===== OPERATIONAL STRENGTH – BOXED STYLE ===== */

.strength-section {
   background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
}

.strength-card {
  width: 100%;
  max-width: 260px;          /* prevents full stretch */
  background: #ffffff;
  border: 1.5px solid #0dc8f2;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
   display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
    background: linear-gradient(
    to bottom,
    rgba(214, 191, 225, 0.795),
    #ffffff 35%
  );
}
.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.strength-card span {
  font-size: 14.5px;
  font-weight: 500;
  color: #475569;
}
.strength-icon {
  font-size: 28px;
  color: #e79b03;
  margin-bottom: 10px;
  display: block;
}

.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.site-footer {
  background: rgba(87, 87, 91, 0.966); /* dark industrial blue */
  color: #fcfbfc;
  padding: 5px 0 0px;
  font-size: 16px;
    border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 400px;
  margin-bottom: 10px;
  margin-right: 90px;
  margin-left: -90px;
  transform: translateY(25px);
}


.site-footer h4 {
  color: #fdfdfd;
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer ul li a:hover {
  color: #1408ee;
}

.footer-contact p {
    color: rgb(255, 255, 255)    ;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  background: #aeace0;
  color: #010101;
  font-size: 15px;
}


/* ABOUT PAGE IMAGE LAYOUT */

.about-section {
  padding: 80px 0;
}

.about-row {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}
/* EXECUTIVE STYLE OVERVIEW */
.company-overview-exec {
  padding: 110px 0;
  background: #ffffff;
}

.company-overview-exec .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* TEXT */
.company-overview-exec h2 {
  font-size: 42px;
  color: #0b1c2d;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

/* Vertical accent bar */
.company-overview-exec h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  background: #c9a24d;
}

.overview-intro {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: #111;
  margin-bottom: 22px;
}

.company-overview-exec p {
  font-size: 16px;
  line-height: 1.8;
  color: #3b3b3b;
}

/* FOCUS BLOCK */
.overview-focus {
  margin-top: 35px;
  border-left: 3px solid #e1e5ec;
  padding-left: 20px;
}

.overview-focus div {
  font-size: 15.5px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 14px;
}

/* IMAGE */
.company-overview-exec .about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.company-overview-exec .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* SAME BASE STYLE AS COMPANY OVERVIEW */
.about-style {
  padding: 100px 0;
  background: #f7f9fc;
}

.about-style .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE – SAME CARD LOOK */
.about-style .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.about-style .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL BAR */
.about-style .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}

.about-style .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* FOUNDER NAME BOX */
.founder-name-box {
  display: inline-block;
  margin: 12px 0 22px;
  padding: 8px 18px;
  background: #0b1c2d;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
}

/* PARAGRAPHS */
.about-style .about-text p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

/* BULLET POINTS – SAME FEEL */
.about-points {
  margin-top: 20px;
  padding-left: 18px;
}

.about-points li {
  font-size: 15.5px;
  margin-bottom: 10px;
  color: #0b1c2d;
}

/* =====================================================
   FINAL MOBILE + TABLET RESPONSIVE OVERRIDES
   ===================================================== */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}
/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {

  /* ---------- CONTAINER ---------- */
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ---------- HEADER ---------- */
  header {
    height: 60px;
  }

  .header-wrap {
    gap: 20px;
  }

  nav ul {
    gap: 14px;
    font-size: 14px;
  }

  /* ---------- HERO (FIX MAIN ISSUE) ---------- */
  .hero {
    min-height: auto;
    max-height: none;
    height: calc(100vh - 60px);
    padding: 70px 20px 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-logo img {
    max-width: 280px;
  }

  /* ---------- EXECUTIVE INTRO ---------- */
  .text-content {
    padding: 0 10px;
  }

  .exec-capabilities {
    justify-content: center;
  }

  .exec-industries,
  .exec-focus {
    font-size: 13px;
  }

  /* ---------- WHY SHRIHARI ---------- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .why-grid .card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .card {
    padding: 22px 20px;
  }

  /* ---------- OPERATIONAL STRENGTH ---------- */
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .strength-card {
    max-width: 100%;
  }

  .strength-card strong {
    font-size: 26px;
  }
  
  /* ---------- responsive mobile and tablet---------- */
@media (max-width: 768px) {

  .site-footer {
    padding: 30px 0 0 !important;
  }

  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 40px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-col,
  .footer-contact {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo {
    width: 200px !important;
    margin: 0 auto 12px !important;
    transform: none !important;
  }

  .site-footer h4 {
    margin-top: 12px !important;
    font-size: 15px !important;
  }

  .site-footer ul li {
    margin-bottom: 6px !important;
  }

  .footer-contact p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .footer-bottom {
    padding: 12px !important;
    font-size: 13px !important;
  }}}

/* ===== WORKFORCE SHOWCASE SECTION ===== */
.workforce-showcase {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 90px 0;
}

.workforce-showcase h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 12px;
  color: #1f2933;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
}

/* Blocks */
.wf-block {
  margin-bottom: 80px;
}

/* Images Row */
.wf-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 24px;
}

.wf-images img,video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease;
}

.wf-images img:hover {
  transform: scale(1.04);
}

/* Content */
.wf-content {
  text-align: center;
}

.wf-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1f2933;
}

.wf-content p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3b332f;
}

/* Mobile */
@media (max-width: 768px) {
  .wf-images {
    grid-template-columns: 1fr;
  }

  .wf-images img, video{
    height: 220px;
  }

  .workforce-showcase {
    padding: 70px 0;
  }
}
/* ===== EOT CRANE VIDEO (SEPARATE CONTROL) ===== */
.eot-video video {
  width: 50%;
  height: 500px;           /* keep your height */
  object-fit: cover;

  display: block;          /* REQUIRED */
  margin: 0 auto;          /* CENTERS THE VIDEO */

  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}


/* Tablet */
@media (max-width: 1024px) {
  .eot-video video {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .eot-video video {
    height: 260px;
  }
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      rgba(111, 171, 231, 0.237) 0%,
      rgba(150, 176, 201, 0.231) 60%,
      rgba(165, 179, 193, 0.087) 80%,
      rgba(24, 122, 219, 0.0) 100%
    ),
    url("../images/worker.jpg");
  background-size: cover;
  background-position: center;
  z-index: -1;
}
/* ===== HERO OVERLAP BASE ===== */
.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== PROFESSIONAL HERO REFINEMENT ===== */

.hero {
    min-height: 55vh;
    max-height: 520px;
    padding: 100px 0 80px;
}

/* Darken image more */
.hero::before {
    filter: brightness(0.55) saturate(0.85);
}

/* Content wrapper */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;

    /* Optical correction */
    padding-bottom: 80px;   /* pushes content away from bottom */
    
}


/* Content panel */
.hero-panel {
  width: 100%;
  padding: clamp(24px, 4vw, 40px);
  box-sizing: border-box;
  text-align: center;
  border-radius: 18px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-panel h1 {
  max-width: 100%;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.3;
  word-break: break-word;
}


.home-hero .hero-founder {
    font-size: 20px;
    margin-top: 4px;
    opacity: 0.85;
}
.hero-panel p {
    margin-top: 5px;
    color: white;
    font-size: 16.5px;
    line-height: 1.6;
    opacity: 0.95;
}
/* HOME HERO SECTION */
.home-hero {
  min-height: calc(110vh - 80px); /* subtract header height */
  display: flex;
  align-items: center;            /* vertical center */
  justify-content: center;        /* horizontal center */
  position: relative;
}



/* SECTIONS */
.section {
    padding: 50px 0;
    background: var(--white);
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}
.section {
  background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

/* First section after hero overlaps image */
.section.overlap {
    position: relative;
    margin-top: -100px;     /* controls overlap depth */
    padding-top: 150px;     /* compensates for overlap */
    z-index: 2;    
}
.section.alt {
    background: #c8d3ddab;
      border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
    
}
/* ===== INDUSTRIAL BRAND TEXT LOGO ===== */
.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

/* Main brand name */
.brand-main {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1.8px;
    color: var(--brand);
    position: relative;
}

/* Industrial underline bar */
.brand-main::after {
    content: "";
    position: absolute;
    left: -10px;
    top: 2px;
    width: 4px;
    height: 100%;
    background: var(--brand);
}

/* Sub brand */
.brand-sub {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2.5px;
    color: #ffffff;
    margin-top: 6px;
}

.section h2 {
    text-align: center;
    font-size: 30px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--dark);
}

/* GRID */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 4fr));
    gap: 30px;
}
/* ===== FOUNDER PROFILE BLOCK ===== */
.founder-box {
    border-top: 1px solid #ddd;
    padding-top: 16px;
}

.founder-box strong {
    font-size: 17px;
    color: var(--brand);
}

.founder-box span {
    color:#55555500
}

/* CARDS */
.card {
    background: rgba(171, 138, 206, 0.84);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
}

.card h4 {
    color: rgb(3, 3, 3);
    font-size: 18px;
    margin-bottom: 10px;
}

.card p {
    font-size: 15px;
    line-height: 1.65;
}
.card {
  position: relative;
  background: linear-gradient(
      rgba(148, 140, 220, 0.96),
      rgba(132, 219, 187, 0.96));
  background-size: cover;
  background-position: center;
  border-radius: 16px;

  padding: 32px 28px;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  height: calc(100% - 40px);
  width: 4px;
  background: linear-gradient(#e79b03, #0b1c2d);
  border-radius: 4px;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

/* CLIENTS */
.client-box {
    background: linear-gradient(
        to bottom,
        rgba(211, 174, 109, 0.795),
        #9c9696 35%
    );
    padding: 24px 20px;
    border-radius: 28px;          /* more professional */
    text-align: center;
    font-size: 16px;              /* slightly reduced */
    font-weight: 600;
    border: 1px solid #000000;

    height: 200px;                /* KEY FIX */
    display: flex;                /* KEY FIX */
    flex-direction: column;
    justify-content: center;      /* vertical centering */
    align-items: center;
}

/* LOGO */
.client-box img {
    max-width:120px;             /* better visual balance */
    max-height:120px;             /* avoid tall logo stretch */
    object-fit: contain;
    margin-bottom: 14px;
    background: transparent;      /* ensure no white patch */
}

/* FORM */
.form {
    max-width: 600px;
    margin: 40px auto 0;   /* THIS centers it */
    margin: auto;
    color: #0dc8f2;
  text-align: center;
}

.form input,
.form textarea {
    margin: auto;
    width: 60%;
    padding: 14px;
    margin-bottom: 14px;
    border-radius: 8px;
    border: 1px solid #0caffa;
    font-size: 14px;
    margin: 20px auto 0;
  display: block;
}

.form button {
    width: 60%;
    padding: 14px;
    border: 1px transparent black;
    background: var(--brand);
    color: #000;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    margin: 20px auto 0;
  display: block;
}

/* WHATSAPP */
.whatsapp-btn {
    display: inline-block;
    margin-top: 20px;
    padding: 14px 28px;
    background: #519c02;
    color: #fff;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
}

/* FOOTER */
.site-footer {
  background: #0d213b; /* deep corporate blue */
  color: #0e4dcc;
  padding: 60px 0 20px;
  font-size: 18px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 40px;
}
.footer-col h3,
.footer-col h4 {
  color: #ffffff;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-tagline {
    position: absolute;
  color: #cbd5e1;
  max-width: 320px;
}

.footer-col p {
  line-height: 1.6;
  color: #cbd5e1;
}

.footer-bottom {
  margin-top: 40px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  text-align: center;
  font-size: 13px;
  color: #94a3b8;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    background: #0d8fd6;        /* your blue */
    color: #5fa1e2;
    text-align: center;
    padding: 15px 80px;
    border-radius: 45px;        /* ROUND CORNERS */
}

/* ===== ACCESSIBILITY & READABILITY ===== */

/* Better paragraph contrast */
p {
    color: #151614;
}

/* ===== ACCESSIBLE WATER-DROP / SOFT GLOW FOCUS ===== */
a:focus {
    outline: none; /* remove default outline */
    position: relative;
    border-radius: 25px;

    /* Water-drop glow */
    box-shadow:
        0 0 0 1px rgba(101, 90, 87, 0.45),
        0 0 30px rgba(143, 114, 135, 0.55),
        inset 0 0 14px rgba(255, 255, 255, 0.35);

    transition: box-shadow 0.25s ease;
}
@keyframes focusPulse {
    0% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(223, 144, 7, 0.66);
    }
    50% {
        box-shadow:
            0 0 0 3px rgba(159, 123, 4, 0.82),
            0 0 14px rgba(73, 152, 3, 0.7);
    }
    100% {
        box-shadow:
            0 0 0 3px rgba(73, 152, 3, 0.35),
            0 0 8px rgba(73, 152, 3, 0.4);
    }
}
/* ===== WHY SHRIHARI ENTERPRISES – FIXED 4 + 1 LAYOUT ===== */

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* 5th card goes centered below */
.why-grid .card:nth-child(5) {
    grid-column: 2 / span 2;
}

/* MISSION & CORE VALUES – SAME SYSTEM */
.mission-section {
  padding: 100px 0;
  background: linear-gradient(
        to bottom,
        rgba(157, 201, 197, 0.55),
        #ffffff 40%
    );
}
/* IMAGE – SAME CARD LOOK */
.mission-section .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.mission-section .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL ACCENT */
.mission-section .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 24px;
  position: relative;
  padding-left: 22px;
}

.mission-section .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* VISION / MISSION BLOCKS */
.mission-block {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 20px;
}

.mission-block strong {
  color: #0b1c2d;
  font-weight: 600;
}

/* BULLETS – CLEAN EXECUTIVE STYLE */
.mission-section .about-points {
  margin-top: 24px;
  padding-left: 20px;
}

.mission-section .about-points li {
  font-size: 15.5px;
  line-height: 1.7;
  margin-bottom: 14px;
  color: #0b1c2d;
}


/* Workforce capabilities grid refinement */
.workforce-grid {
    grid-template-columns: repeat(4, 1fr);
}


/* ===== OPERATIONAL STRENGTH – BOXED STYLE ===== */

.strength-section {
   background: linear-gradient(
    to bottom,
    rgba(157, 201, 197, 0.795),
    #ffffff 35%
  );
}

.strength-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  margin-top: 40px;
  justify-items: center;
}

.strength-card {
  width: 100%;
  max-width: 260px;          /* prevents full stretch */
  background: #ffffff;
  border: 1.5px solid #0dc8f2;
  border-radius: 14px;
  padding: 26px 20px;
  text-align: center;
   display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
    background: linear-gradient(
    to bottom,
    rgba(214, 191, 225, 0.795),
    #ffffff 35%
  );
}
.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.strength-card span {
  font-size: 14.5px;
  font-weight: 500;
  color: #475569;
}
.strength-icon {
  font-size: 28px;
  color: #e79b03;
  margin-bottom: 10px;
  display: block;
}

.strength-card strong {
  font-size: 32px;
  font-weight: 700;
  color: #0b1c2d;
}

.site-footer {
  background: rgba(87, 87, 91, 0.966); /* dark industrial blue */
  color: #fcfbfc;
  padding: 5px 0 0px;
  font-size: 16px;
    border-top-left-radius: 20px;
  border-top-right-radius: 20px;
}

.footer-container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 40px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-logo {
  width: 400px;
  margin-bottom: 10px;
  margin-right: 90px;
  margin-left: -90px;
  transform: translateY(25px);
}


.site-footer h4 {
  color: #fdfdfd;
  margin-bottom: 10px;
  margin-top: 40px;
  font-size: 16px;
}

.site-footer ul {
  list-style: none;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 10px;
}

.site-footer ul li a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer ul li a:hover {
  color: #1408ee;
}

.footer-contact p {
    color: rgb(255, 255, 255)    ;
  margin-bottom: 10px;
}

.footer-bottom {
  margin-top: 50px;
  padding: 20px 0;
  text-align: center;
  background: #aeace0;
  color: #010101;
  font-size: 15px;
}


/* ABOUT PAGE IMAGE LAYOUT */

.about-section {
  padding: 80px 0;
}

.about-row {
  width: 90%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.about-row.reverse {
  flex-direction: row-reverse;
}

.about-text {
  flex: 1;
}

.about-text h2 {
  margin-bottom: 15px;
}

.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
  object-fit: cover;
}
/* EXECUTIVE STYLE OVERVIEW */
.company-overview-exec {
  padding: 110px 0;
  background: #ffffff;
}

.company-overview-exec .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* TEXT */
.company-overview-exec h2 {
  font-size: 42px;
  color: #0b1c2d;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

/* Vertical accent bar */
.company-overview-exec h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 6px;
  height: 80%;
  background: #c9a24d;
}

.overview-intro {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.9;
  color: #111;
  margin-bottom: 22px;
}

.company-overview-exec p {
  font-size: 16px;
  line-height: 1.8;
  color: #3b3b3b;
}

/* FOCUS BLOCK */
.overview-focus {
  margin-top: 35px;
  border-left: 3px solid #e1e5ec;
  padding-left: 20px;
}

.overview-focus div {
  font-size: 15.5px;
  font-weight: 600;
  color: #0b1c2d;
  margin-bottom: 14px;
}

/* IMAGE */
.company-overview-exec .about-image {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

.company-overview-exec .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* SAME BASE STYLE AS COMPANY OVERVIEW */
.about-style {
  padding: 100px 0;
  background: #f7f9fc;
}

.about-style .about-row {
  display: flex;
  align-items: center;
  gap: 70px;
}

/* IMAGE – SAME CARD LOOK */
.about-style .about-image {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.18);
}

.about-style .about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* HEADING – SAME VERTICAL BAR */
.about-style .about-text h2 {
  font-size: 38px;
  color: #0b1c2d;
  margin-bottom: 16px;
  position: relative;
  padding-left: 22px;
}

.about-style .about-text h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 4px;
  height: 80%;
  background: #c9a24d;
}

/* FOUNDER NAME BOX */
.founder-name-box {
  display: inline-block;
  margin: 12px 0 22px;
  padding: 8px 18px;
  background: #0b1c2d;
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  border-radius: 6px;
}

/* PARAGRAPHS */
.about-style .about-text p {
  font-size: 16.5px;
  line-height: 1.9;
  color: #333;
  margin-bottom: 18px;
}

/* BULLET POINTS – SAME FEEL */
.about-points {
  margin-top: 20px;
  padding-left: 18px;
}

.about-points li {
  font-size: 15.5px;
  margin-bottom: 10px;
  color: #0b1c2d;
}

/* =====================================================
   FINAL MOBILE + TABLET RESPONSIVE OVERRIDES
   ===================================================== */

/* Prevent horizontal scroll */
html, body {
  overflow-x: hidden;
}
/* Hide hamburger on desktop */
.menu-toggle {
  display: none;
}

/* Show hamburger only on mobile */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }
}

/* ================= TABLET & MOBILE ================= */
@media (max-width: 1024px) {

  /* ---------- CONTAINER ---------- */
  .container {
    max-width: 100%;
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ---------- HEADER ---------- */
  header {
    height: 60px;
  }

  .header-wrap {
    gap: 20px;
  }

  nav ul {
    gap: 14px;
    font-size: 14px;
  }

  /* ---------- HERO (FIX MAIN ISSUE) ---------- */
  .hero {
    min-height: auto;
    max-height: none;
    height: calc(100vh - 60px);
    padding: 70px 20px 40px;
  }

  .hero h1 {
    font-size: 28px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-logo img {
    max-width: 280px;
  }

  /* ---------- EXECUTIVE INTRO ---------- */
  .text-content {
    padding: 0 10px;
  }

  .exec-capabilities {
    justify-content: center;
  }

  .exec-industries,
  .exec-focus {
    font-size: 13px;
  }

  /* ---------- WHY SHRIHARI ---------- */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .why-grid .card:nth-child(5) {
    grid-column: 1 / -1;
  }

  .card {
    padding: 22px 20px;
  }

  /* ---------- OPERATIONAL STRENGTH ---------- */
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .strength-card {
    max-width: 100%;
  }

  .strength-card strong {
    font-size: 26px;
  }
  
  /* ---------- responsive mobile and tablet---------- */
@media (max-width: 768px) {

  .site-footer {
    padding: 30px 0 0 !important;
  }

  .footer-container {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 40px !important;
    text-align: center !important;
  }

  .footer-brand,
  .footer-col,
  .footer-contact {
    align-items: center !important;
    text-align: center !important;
  }

  .footer-logo {
    width: 200px !important;
    margin: 0 auto 12px !important;
    transform: none !important;
  }

  .site-footer h4 {
    margin-top: 12px !important;
    font-size: 15px !important;
  }

  .site-footer ul li {
    margin-bottom: 6px !important;
  }

  .footer-contact p {
    font-size: 14px !important;
    line-height: 1.5 !important;
  }

  .footer-bottom {
    padding: 12px !important;
    font-size: 13px !important;
  }}}

/* ===== WORKFORCE SHOWCASE SECTION ===== */
.workforce-showcase {
  background: linear-gradient(180deg, #f8f9fb, #ffffff);
  padding: 90px 0;
}

.workforce-showcase h2 {
  text-align: center;
  font-size: 34px;
  margin-bottom: 12px;
  color: #1f2933;
}

.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 17px;
  color: #555;
}

/* Blocks */
.wf-block {
  margin-bottom: 80px;
}

/* Images Row */
.wf-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  margin-bottom: 24px;
}

.wf-images img,video {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.14);
  transition: transform 0.4s ease;
}

.wf-images img:hover {
  transform: scale(1.04);
}

/* Content */
.wf-content {
  text-align: center;
}

.wf-content h3 {
  font-size: 24px;
  margin-bottom: 20px;
  color: #1f2933;
}

.wf-content p {
  max-width: 880px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.8;
  color: #3b332f;
}

/* Mobile */
@media (max-width: 768px) {
  .wf-images {
    grid-template-columns: 1fr;
  }

  .wf-images img, video{
    height: 220px;
  }

  .workforce-showcase {
    padding: 70px 0;
  }
}

/* ===== EOT CRANE VIDEO (SEPARATE CONTROL) ===== */
.eot-video video {
  width: 50%;
  height: 500px;           /* keep your height */
  object-fit: cover;

  display: block;          /* REQUIRED */
  margin: 0 auto;          /* CENTERS THE VIDEO */

  border-radius: 28px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

  /* ================= CAREERS – JOB OPENINGS ================= */

  .careers-section {
    background: #ffffff;
  }

  .section-title {
    text-align: center;
    margin-bottom: 20px;
    font-size: 32px;
    font-weight: 700;
    color: var(--dark);
  }

  .jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 26px;
    text-align: center;
  }

  .job-card {
    background: hsl(210, 60%, 63%);
    width: 100%;
    max-width: 300px;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    margin: 0 auto; /* ✅ THIS CENTERS THE CARD */
  }


  .job-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.08);
  }

  .job-role {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 12px;
  }

  .job-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 14px;
  }

  .job-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 20px;
  }

  .job-apply-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 30px;
    background: var(--brand);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.3s ease;
  }

  .job-apply-btn:hover {
    background: #c88402;
  }

  .no-jobs {
    text-align: center;
    font-size: 16px;
    color: #6b7280;
  }
  /* ================= JOB CAROUSEL LAYOUT ================= */

  .careers-section .container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .jobs-carousel {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 40px;
  }

  /* Window that shows ONE card */
  .carousel-window {
    width: 520px;
    overflow: hidden;
  }

  /* Horizontal track */
  .jobs-track {
    display: flex;
    transition: transform 0.45s ease;
  }

  /* Job card */
  .job-card {
    min-width: 520px;
    background: #92c1ea; /* blue like your image */
    color: #000;
    border-radius: 18px;
    padding: 32px;
    text-align: center;
    flex-shrink: 0;
  }

  /* Text spacing */
  .job-role {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
  }

  .job-desc {
    margin: 16px 0 22px;
  }

  /* Apply button */
  .job-apply-btn {
    display: inline-block;
    padding: 10px 26px;
    background: #f0a500;
    color: #fff;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
  }

  /* Arrows */
  .carousel-arrow {
    background: transparent;
    border: none;
    font-size: 42px;
    cursor: pointer;
    color: #000;
    padding: 10px 20px;
  }

  .carousel-arrow:hover {
    color: var(--brand);
  }

  /* Arrow positions */
  .carousel-arrow.left {
    margin-right: 30px;
  }

  .carousel-arrow.right {
    margin-left: 30px;
  }
  .admin-alert {
    max-width: 600px;
    margin: 20px auto;        /* centers horizontally */
    padding: 14px 18px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
  }

  .admin-alert.success {
    background: #e6f6ea;
    color: #166534;
    border: 1px solid #22c55e;
  }

  .admin-alert.error {
    background: #fdecea;
    color: #991b1b;
    border: 1px solid #ef4444;
  }
/* ================= CERTIFICATION DOCUMENT IMAGE ================= */
  .cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 4fr));
    column-gap: 100px;
    row-gap: 30px;
    margin-top: 40px;
    justify-items: center;
  }
  .cert-card {
    width: 120%;
    height: 100%;        /* prevents full stretch */
    background: #ffffff;
    border: 1.5px solid #0dc8f2;
    border-radius: 14px;
    padding: 30px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0px;
      background: linear-gradient(
      to bottom,
      rgba(140, 139, 141, 0.795),
      #ffffff 35%
    );
  }
  .cert-card strong {
    font-size: 15px;
    font-weight: 700;
    color: #0b1c2d;
  }

  .cert-card span {
    font-size: 14.5px;
    font-weight: 500;
    color: #475569;
  }
  .cert-icon {
    font-size: 28px;
    color: #e79b03;
    margin-bottom: 10px;
    display: block;
  }

  .cert-card img {
    width: 100%;
    max-width: 180px;      /* CONTROL IMAGE WIDTH */
    height: 240px;         /* CONTROL IMAGE HEIGHT */
    object-fit: contain;   /* prevents cropping */
    margin: 0 auto 14px;
    display: block;
  }
/* Tablet */
@media (max-width: 1024px) {
  .eot-video video {
    height: 420px;
  }
}

/* Mobile */
@media (max-width: 768px) {
  .eot-video video {
    height: 260px;
  }
}.careers-section {
  padding: 60px 0;
}

.job-card {
  background: #fff;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.job-card h3 {
  margin-bottom: 10px;
  color: #0b1c2d;
}

.apply-btn {
  display: inline-block;
  margin-top: 15px;
  padding: 10px 18px;
  background: #f4a300;
  color: #000;
  font-weight: 600;
  border-radius: 6px;
  text-decoration: none;
}

.apply-btn:hover {
  background: #d88f00;
}
/* ===== GALLERY LAYOUT ===== */

.gl-media {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 16px;
  align-items: stretch;
}

.gl-reverse .gl-media {
  grid-template-columns: 1fr 1.2fr;
}

.gl-photo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gl-media video {
  width: 98%;
  height: 350px;
  object-fit: fill;
  border-radius: 20px;
  background: #000;
}

.gl-media img {
  width: 90%;
  height: 170px;
  object-fit: fill;
  border-radius: 10px;
}
/* Content */
.gl-content {
  text-align: center;
}

.gl-content h3 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
  color: #1f2933;
}
/* =========================
   GALLERY SINGLE MEDIA
========================= */

.gl-media-single   
{
  width: 98%;
  height: 350px;
  overflow: hidden;
  border-radius: 20px;
  background: #000;
}

/* THIS IS THE REAL FIX */
.gl-media-single img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* crop properly */
  display: block;
}


