/* =====================================================
   MARINECAST INFRA PVT LTD — Main Stylesheet
   Industrial Corporate | Indian Tricolor Theme
   ===================================================== */

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

/* ── CSS Variables ── */
:root {
  --navy:          #000080;
  --navy-dark:     #00004d;
  --navy-mid:      #00006b;
  --navy-light:    #e8e8f5;
  --saffron:       #FF9933;
  --saffron-dark:  #E07B00;
  --saffron-light: #FFF3E0;
  --green:         #138808;
  --green-dark:    #0a5c04;
  --green-light:   #E8F5E9;
  --steel:         #4A5568;
  --steel-light:   #718096;
  --white:         #FFFFFF;
  --off-white:     #F8F9FC;
  --gray-100:      #F5F5F5;
  --gray-200:      #E2E8F0;
  --gray-300:      #CBD5E0;
  --gray-800:      #1A202C;
  --text-dark:     #0D1117;
  --text-body:     #374151;
  --text-muted:    #6B7280;
  --border:        #E2E8F0;

  --font-head:  'Poppins', sans-serif;
  --font-sub:   'Poppins', sans-serif;
  --font-body:  'Inter', sans-serif;

  --radius:     8px;
  --radius-lg:  16px;
  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg:  0 10px 40px rgba(0,0,0,0.12);
  --shadow-xl:  0 20px 60px rgba(0,0,0,0.15);
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

  --header-h: 80px;
}

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color:rgba(255, 255, 255, 0.75);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

/* ── Section Layout ── */
section { position: relative; }
.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sub);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}
.section-tag::before {
  content: '';
  display: block;
  width: 24px; height: 2px;
  background: var(--saffron);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.2;
}
.section-title span { color: var(--saffron); }
.section-title .accent-green { color: var(--green); }
.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.8;
}
.divider {
  width: 50px; height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  border-radius: 2px;
  margin: 16px 0 28px;
}
.divider-center { margin: 16px auto 28px; }

/* ── Tricolor Bar ── */
.tricolor-bar {
  height: 4px;
  background: linear-gradient(90deg,
    var(--saffron) 33.33%,
    var(--white)   33.33% 66.66%,
    var(--green)   66.66%);
}
.tricolor-accent {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--saffron) 33%, #fff 33% 66%, var(--green) 66%);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 100%);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-primary-custom:hover {
  background: linear-gradient(135deg, var(--saffron-dark) 0%, #c86800 100%);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(255,153,51,0.4);
  transform: translateY(-2px);
}
.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border: 2px solid var(--white);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
  background: transparent;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--navy);
}
.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-sub);
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-navy:hover {
  background: var(--navy-mid);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,128,0.35);
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVBAR
   ============================================ */
#mainHeader {
   position: sticky; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--white) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(12px);
}
#mainHeader.scrolled {
  background: rgba(0, 0, 80, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  backdrop-filter: blur(12px);
}
.top-bar {
  background: var(--navy-dark);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-size: 12px;
}
.top-bar a { color: rgba(255,255,255,0.75); }
.top-bar a:hover { color: var(--saffron); }
.top-bar .sep { color: rgba(255,255,255,0.25); margin: 0 12px; }
.navbar-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  padding: 0 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}
.brand-logo {
  width: 264px; height: 67px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 18px; font-weight: 900;
  color: #fff;
  letter-spacing: -1px;
  position: relative;
  overflow: hidden;
}
.brand-logo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green), var(--saffron));
}
.brand-text .name {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: 0.5px;
  line-height: 1.1;
  display: block;
}
.brand-text .tagline {
  font-size: 9px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  font-family: var(--font-sub);
  font-size: 13px;
  font-weight: 500;
  color: #080855;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  letter-spacing: 0.3px;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: 4px; left: 14px; right: 14px;
  height: 2px;
  background: var(--saffron);
  transform: scaleX(0);
  transition: transform 0.3s ease;
  border-radius: 1px;
}
.nav-links a:hover, .nav-links a.active {
  color: #080855;
  background: rgba(255,255,255,0.08);
}
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

.nav-cta {
  background: var(--saffron);
  color: var(--white) !important;
  border-radius: var(--radius) !important;
  padding: 10px 20px !important;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--saffron-dark) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
/* Hamburger Menu */
.hamburger {
    display: none; /* Hidden on desktop */
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    position: relative;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background: #000; /* Change to #000 if navbar is light */
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Animated Hamburger */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Show on Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
}
/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed; top: 0; right: -100%; bottom: 0;
  width: 280px;
  background: var(--navy-dark);
  z-index: 1100;
  padding: 80px 24px 32px;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 1090;
  backdrop-filter: blur(2px);
}
.mobile-overlay.open { display: block; }
.mobile-nav a {
  display: block;
  font-family: var(--font-sub);
  font-size: 15px; font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 13px 16px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
}
.mobile-nav a:hover { color: var(--saffron); background: rgba(255,255,255,0.05); }
.mobile-close {
  position: absolute; top: 20px; right: 20px;
  background: none; border: none; cursor: pointer;
  color: rgba(255,255,255,0.7); font-size: 24px;
}

@media (max-width: 768px) {

    /* Hide desktop menu */
    .nav-links {
        display: none !important;
    }

    /* Show hamburger */
    .hamburger {
        display: flex !important;
        flex-direction: column;
        gap: 5px;
        margin-left: auto;
    }

    /* Reduce logo size */
    .brand-logo {
        width: 180px;
        height: auto;
    }

    .navbar-wrap {
        padding: 0 15px;
    }
}
/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(
      135deg,
      rgba(0, 0, 77, 0.93) 0%,
      rgba(0, 0, 100, 0.88) 40%,
      rgba(0, 0, 60, 0.92) 100%
    ),
    url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?w=1800&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 70% 50%, rgba(255,153,51,0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(19,136,8,0.06) 0%, transparent 50%);
}
/* Geometric grid overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; padding-top: 100px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,153,51,0.15);
  border: 1px solid rgba(255,153,51,0.35);
  border-radius: 50px;
  padding: 8px 18px;
  font-family: var(--font-sub);
  font-size: 12px;
  font-weight: 600;
  color: var(--saffron);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge .dot {
  width: 6px; height: 6px;
  background: var(--saffron);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 8px;
}
.hero h1 .line-accent {
  color: var(--saffron);
  display: block;
}
.hero h1 .line-green { color: #4ade80; }
.hero-subtitle {
  font-family: var(--font-sub);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.75);
  font-weight: 300;
  margin-bottom: 32px;
  max-width: 540px;
  line-height: 1.7;
}
.hero-subtitle strong { color: rgba(255,255,255,0.95); font-weight: 600; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-stat {
  position: relative;
  padding-left: 16px;
}
.hero-stat::before {
  content: '';
  position: absolute; left: 0; top: 4px; bottom: 4px;
  width: 3px;
  background: linear-gradient(180deg, var(--saffron), var(--green));
  border-radius: 2px;
}
.hero-stat .num {
  font-family: var(--font-head);
  font-size: 2rem; font-weight: 800;
  color: var(--white); line-height: 1;
}
.hero-stat .num span { color: var(--saffron); }
.hero-stat .lbl {
  font-size: 11px; color: rgba(255,255,255,0.55);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-family: var(--font-sub); margin-top: 2px;
}

/* Floating card on hero */
.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 28px;
  max-width: 380px;
}
.hero-card-title {
  font-family: var(--font-head);
  font-size: 16px; font-weight: 700;
  color: var(--white); margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.hero-service-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  font-family: var(--font-sub);
  transition: var(--transition);
}
.hero-service-pill:hover {
  background: rgba(255,153,51,0.15);
  border-color: rgba(255,153,51,0.3);
  color: var(--white);
}
.hero-service-pill .icon {
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; flex-shrink: 0;
}
.hero-service-pill .icon.green {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
}

/* Hero scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2; animation: bounce 2s infinite;
}
.scroll-down span { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; }
.scroll-arrow {
  width: 36px; height: 36px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   TICKER / MARQUEE
   ============================================ */
.ticker-wrap {
  background: var(--saffron);
  padding: 12px 0;
  overflow: hidden;
}
.ticker {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  width: max-content;
}
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-sub);
  font-size: 13px; font-weight: 600;
  color: var(--white);
  white-space: nowrap;
  padding: 0 40px;
}
.ticker-item .sep { color: rgba(255,255,255,0.5); }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section { background: var(--white); }
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  height: 565px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--navy);
  color: var(--white);
  border-radius: 12px;
  padding: 24px 28px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  min-width: 140px;
}
.about-img-badge .big { font-size: 3rem; font-weight: 900; color: var(--saffron); line-height: 1; font-family: var(--font-head); }
.about-img-badge .lbl { font-size: 11px; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-top: 4px; }
.about-cert-strip {
  display: flex; gap: 10px; flex-wrap: wrap; margin-top: 24px;
}
.cert-badge {
  display: flex; align-items: center; gap: 8px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12px; font-weight: 600;
  color: var(--text-dark);
  font-family: var(--font-sub);
}
.cert-badge i { color: var(--green); }

/* ============================================
   SERVICES
   ============================================ */
.services-section { background: var(--off-white); }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.service-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-6px);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 64px; height: 64px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-5deg); }
.si-orange { background: var(--saffron-light); color: var(--saffron-dark); }
.si-green  { background: var(--green-light);   color: var(--green-dark);   }
.si-navy   { background: var(--navy-light);     color: var(--navy);         }
.service-card h4 {
  font-size: 17px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 12px;
}
.service-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 20px;
}
.service-link {
  font-family: var(--font-sub);
  font-size: 13px; font-weight: 600;
  color: var(--saffron);
  display: inline-flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.service-link:hover { gap: 10px; color: var(--saffron-dark); }

/* ============================================
   PRODUCTS
   ============================================ */
.products-section { background: var(--white); }
.product-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  background: var(--white);
}
.product-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.product-img {
  height: 220px;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, #0d0d3a, #000060);
}
.product-img-placeholder i { font-size: 48px; color: rgba(255,153,51,0.6); }
.product-img-placeholder span { font-size: 12px; color: rgba(255,255,255,0.5); letter-spacing: 2px; text-transform: uppercase; font-family: var(--font-sub); }
.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--saffron);
  color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
  font-family: var(--font-sub);
}
.product-body { padding: 20px 22px 24px; }
.product-body h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text-dark); }
.product-body p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin-bottom: 14px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; }
.spec-chip {
  font-size: 11px; font-weight: 600;
  background: var(--off-white);
  border: 1px solid var(--border);
  color: var(--text-muted);
  padding: 3px 9px; border-radius: 50px;
  font-family: var(--font-sub);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, #000060 100%);
  position: relative; overflow: hidden;
}
.why-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 50px 50px;
}
.why-section .section-title { color: var(--white); }
.why-section .section-desc { color: rgba(255,255,255,0.65); }
.why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  height: 100%;
  transition: var(--transition);
}
.why-card:hover {
  background: rgba(255,153,51,0.08);
  border-color: rgba(255,153,51,0.25);
  transform: translateY(-4px);
}
.why-num {
  font-family: var(--font-head);
  font-size: 3.5rem; font-weight: 900;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  margin-bottom: -16px;
}
.why-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
  margin-bottom: 16px;
}
.why-card h4 { color: var(--white); font-size: 16px; margin-bottom: 10px; }
.why-card p { color: rgba(255,255,255,0.6); font-size: 13.5px; line-height: 1.7; }

/* ============================================
   INDUSTRIES
   ============================================ */
.industries-section { background: var(--off-white); }
.industry-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  cursor: pointer;
}
.industry-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}
.industry-visual {
  height: 160px;
  background: linear-gradient(135deg, #0d0d3a, var(--navy));
  display: flex; align-items: center; justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.industry-card:hover .industry-visual { background: linear-gradient(135deg, var(--navy), #0000a0); }
.industry-visual::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--saffron), var(--green));
}
.industry-info { padding: 18px 20px 22px; }
.industry-info h5 {
  font-size: 15px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 6px;
}
.industry-info p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ============================================
   INFRA / MANUFACTURING
   ============================================ */
.infra-section { background: var(--white); }
.infra-feature {
  display: flex; gap: 18px; align-items: flex-start;
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: var(--transition);
}
.infra-feature:hover {
  border-color: var(--saffron);
  background: var(--saffron-light);
}
.infra-feat-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: var(--navy-light);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--navy);
  transition: var(--transition);
}
.infra-feature:hover .infra-feat-icon {
  background: var(--saffron); color: var(--white);
}
.infra-feature h6 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--text-dark); }
.infra-feature p { font-size: 13px; color: var(--text-muted); line-height: 1.6; margin: 0; }

.counter-row {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px;
}
.counter-item { text-align: center; }
.counter-num {
  font-family: var(--font-head);
  font-size: 2.8rem; font-weight: 900;
  color: var(--saffron); line-height: 1;
  margin-bottom: 6px;
}
.counter-lbl {
  font-size: 12px; color: rgba(255,255,255,0.6);
  text-transform: uppercase; letter-spacing: 1.5px;
  font-family: var(--font-sub);
}

/* ============================================
   GALLERY
   ============================================ */
.gallery-section { background: var(--off-white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 12px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item.wide { grid-column: span 2; }
.gallery-item.tall { grid-row: span 2; }
.gallery-img {
  width: 100%; height: 200px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item.wide .gallery-img { height: 200px; }
.gallery-item.tall .gallery-img { height: 412px; }
.gallery-item:hover .gallery-img { transform: scale(1.05); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,64,0.75), transparent);
  opacity: 0; transition: opacity 0.3s ease;
  display: flex; align-items: flex-end;
  padding: 16px;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span {
  font-size: 12px; color: var(--white);
  font-family: var(--font-sub); font-weight: 600;
}
.gallery-placeholder {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #0d0d3a, var(--navy));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
}
.gallery-placeholder i { font-size: 32px; color: rgba(255,153,51,0.5); }
.gallery-placeholder span { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 1px; font-family: var(--font-sub); }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--saffron) 0%, var(--saffron-dark) 60%, #b85e00 100%);
  padding: 80px 0;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(rgba(255,255,255,0.08) 1px, transparent 1px);
  background-size: 24px 24px;
}
.cta-section h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-section p { color: rgba(255,255,255,0.85); font-size: 16px; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--white); }
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
}
.contact-info-card h4 {
  color: var(--white);
  font-family: var(--font-head); margin-bottom: 8px;
}
.contact-info-card > p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 32px; }
.contact-item {
  display: flex; gap: 14px; align-items: flex-start;
  margin-bottom: 22px;
}
.contact-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.08);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--saffron);
}
.contact-item h6 {
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: rgba(255,255,255,0.4); margin-bottom: 3px;
}
.contact-item p, .contact-item a {
  font-size: 14px; color: rgba(255,255,255,0.85);
  line-height: 1.5; margin: 0;
}
.contact-item a:hover { color: var(--saffron); }

.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 36px 32px;
}
.form-group-custom { margin-bottom: 20px; }
.form-label-custom {
  display: block;
  font-size: 12px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  color: var(--text-muted); margin-bottom: 7px;
  font-family: var(--font-sub);
}
.form-control-custom {
  width: 100%;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-size: 14px;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  transition: var(--transition);
}
.form-control-custom:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(255,153,51,0.12);
  outline: none;
  background: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.75);
}
.footer-top {
  padding: 70px 0 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .name { color: var(--white); font-size: 20px; font-weight: 800; display: block; font-family: var(--font-head); }
.footer-brand .tagline { font-size: 11px; color: rgba(255,255,255,0.4); letter-spacing: 2px; text-transform: uppercase; margin-top: 4px; display: block; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.55); line-height: 1.7; margin-top: 16px; max-width: 300px; }
.footer-title {
  font-family: var(--font-sub); font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: var(--saffron); margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-links li { margin-bottom: 9px; }
.footer-links a {
  font-size: 13.5px; color: rgba(255,255,255,0.55);
  display: flex; align-items: center; gap: 6px;
  transition: var(--transition);
}
.footer-links a::before {
  content: '›';
  color: var(--saffron); font-size: 14px;
}
.footer-links a:hover { color: var(--saffron); padding-left: 4px; }
.footer-contact-item {
  display: flex; gap: 10px; align-items: flex-start;
  margin-bottom: 12px; font-size: 13px; color: rgba(255,255,255,0.55);
}
.footer-contact-item i { color: var(--saffron); margin-top: 2px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.55); }
.footer-contact-item a:hover { color: var(--saffron); }
.footer-bottom {
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
  font-size: 12.5px; color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: rgba(255,255,255,0.35); }
.footer-bottom a:hover { color: var(--saffron); }

/* ============================================
   WHATSAPP BUTTON
   ============================================ */
.whatsapp-btn {
  position: fixed; bottom: 28px; right: 28px;
  z-index: 500;
  width: 56px; height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-btn:hover {
  background: #1da851;
  transform: scale(1.1);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}
.whatsapp-btn svg { width: 28px; height: 28px; fill: #fff; }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
}
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); }
.page-hero .breadcrumb { background: none; padding: 0; margin: 0; }
.page-hero .breadcrumb-item, .page-hero .breadcrumb-item a {
  color: rgba(255,255,255,0.55); font-size: 13px;
}
.page-hero .breadcrumb-item.active { color: var(--saffron); }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  height: 100%;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.testimonial-card::before {
  content: '"';
  position: absolute; top: 16px; right: 22px;
  font-size: 6rem; line-height: 1;
  color: var(--saffron); opacity: 0.12;
  font-family: Georgia, serif;
}
.testimonial-stars { color: var(--saffron); font-size: 14px; margin-bottom: 14px; }
.testimonial-card p { font-size: 14px; color: var(--text-body); line-height: 1.7; font-style: italic; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-size: 16px; font-weight: 700; color: var(--saffron);
}
.author-name { font-size: 14px; font-weight: 700; color: var(--text-dark); font-family: var(--font-sub); }
.author-co { font-size: 12px; color: var(--text-muted); }

/* ============================================
   ANIMATIONS (scroll-triggered)
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   UTILITIES
   ============================================ */
.bg-off-white { background: var(--off-white); }
.bg-navy { background: var(--navy); }
.text-saffron { color: var(--saffron); }
.text-green { color: var(--green); }
.text-navy { color: var(--navy); }
.fw-800 { font-weight: 800; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 991px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .about-img-badge { bottom: -16px; right: -8px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item.wide, .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .gallery-item.tall .gallery-img { height: 200px; }
}
@media (max-width: 767px) {
  :root { --header-h: 70px; }
  .section-pad { padding: 60px 0; }
  .hero-stats { gap: 24px; }
  .hero-card { display: none; }
  .about-img-main { height: 300px; }
  .counter-row { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-bottom { text-align: center; justify-content: center; }
  .top-bar { display: none; }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-primary-custom, .btn-outline-custom { width: 100%; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
}



.hero{
    position:relative;
    height:100vh;
    width:100%;
    overflow:hidden;
    display:flex;
    align-items:center;
}

.hero-video{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    object-fit:cover;
    z-index:1;
}

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

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

.hero-content{
    max-width:700px;
    color:#fff;
}

.hero-content h1{
    font-size:clamp(40px, 6vw, 80px);
    font-weight:800;
    line-height:1.1;
    margin-bottom:20px;
}

.hero-content h1 span{
    color:#f7941d;
}

.hero-content p{
    font-size:20px;
    line-height:1.7;
    margin-bottom:30px;
    max-width:600px;
}

.btn-primary{
    display:inline-block;
    padding:14px 32px;
    background:#f7941d;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
}

@media (max-width:768px){

    .hero{
        height:100vh;
        padding:100px 20px 60px;
    }

    .hero-content{
        text-align:center;
        max-width:100%;
    }

    .hero-content h1{
        font-size:38px;
        line-height:1.15;
    }

    .hero-content p{
       display: none;
    }

    .btn-primary{
        padding:12px 24px;
        font-size:15px;
    }
}
.gallery-item:hover img{
    transform: scale(1.08);
}

.gallery-item:hover .gallery-hover-overlay{
    opacity:1;
}