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

:root {
  --navy: #0a1f3d;
  --navy-light: #122a52;
  --gold: #003bb3;
  --gold-light: #004de6;
  --white: #ffffff;
  --light-gray: #f4f6f9;
  --text-dark: #1a1a2e;
  --text-gray: #5a6a7e;
  --text-dark-gray: #485464;
  --border: #dde3ec;
  --light-blue: #b6d3ea;
  --blue-text: #43b4de;
}

html { scroll-behavior: smooth; }
body { font-family: 'Lato', sans-serif; color: var(--text-dark); line-height: 1.7; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 16px; }

/* TOP BAR */
.top-bar { background: var(--navy); color: rgba(255,255,255,0.8); font-size: 13px; padding: 10px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 6px; }
.top-bar-left { display: flex; gap: 20px; flex-wrap: wrap; font-size: 15px; }
.top-bar-left span { display: flex; align-items: center; gap: 6px; vertical-align: middle}
.top-bar-left i { color: var(--light-blue); vertical-align: middle}
.top-bar-right a { color: var(--light-blue); font-weight: 600; font-size: 15px; display: flex; align-items: center; gap: 6px; transition: color 0.2s; }
.top-bar-right a:hover { color: var(--gold-light); }

/* HEADER */
header { background: var(--white); box-shadow: 0 2px 20px rgba(10,31,61,0.08); position: sticky; top: 0; z-index: 1000; transition: box-shadow 0.3s; }
header.scrolled { box-shadow: 0 4px 30px rgba(10,31,61,0.15); }
nav { 
	display: flex; 
	align-items: center; 
	justify-content: space-between; 
	padding: 24px 24px; 
	max-width: 1200px; 
	margin: 0 auto; 
	}
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 14px; font-weight: 600; font-size: 14px; color: var(--navy); border-radius: 4px; transition: color 0.2s; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: 4px; left: 14px; right: 14px; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.25s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--gold); }
.nav-cta a { background: var(--navy); color: var(--white); padding: 9px 20px; border-radius: 4px; font-size: 14px; font-weight: 700; transition: background 0.25s; }
.nav-cta a:hover { background: var(--gold); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); transition: all 0.3s; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* SECTIONS */
.section { padding: 72px 0; }
.section-sm { padding: 52px 0; }
.section-small { padding: 42px 0; }
.section-label { font-size: 16px; font-weight: 800; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(1.7rem, 3.2vw, 2.6rem); font-weight: 700; color: var(--navy); line-height: 1.25; margin-bottom: 20px; }
.section-title span { color: var(--gold); }
.section-text { color: var(--text-dark-gray); font-size: 15.5px; line-height: 1.85; margin-bottom: 18px; font-weight: 400; text-align: justify; }

/* BUTTONS */
.btn { display: inline-block; padding: 13px 30px; font-weight: 700; font-size: 14px; letter-spacing: 0.4px; border-radius: 4px; transition: all 0.25s; cursor: pointer; border: 2px solid transparent; }
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.45); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-light); }

/* HERO */
.hero { min-height: 92vh; background: linear-gradient(135deg, var(--navy) 0%, #0d2b50 40%, #183a6e 100%); position: relative; display: flex; align-items: center; overflow: hidden; justify-content: space-between; padding: 50px 80px; }
.hero::before { content: ''; position: absolute; inset: 0; background: url('https://i0.wp.com/bullfrog.ae/wp-content/uploads/2024/04/Bullfrog%C2%B7E-2024-04-10-17.17.43-A-hyper-realistic-image-of-a-large-vessel-carrying-a-cargo-ship-in-the-middle-of-the-ocean-during-golden-hour.-The-scene-captures-the-warm-golden-lig-2.webp?fit=267%2C287&ssl=1') center/cover no-repeat; opacity: 0.1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(to right, rgba(10,31,61,0.97) 45%, rgba(10,31,61,0.45) 100%); }
.hero .container { position: relative; z-index: 2; padding: 0px; margin-left: 0; max-width: 1200px; width: 100%;}
.hero-content { max-width: 45%; }
.hero-badge { display: inline-block; background: rgba(182, 211, 234, 0.15); border: 1px solid var(--light-blue); color: var(--light-blue); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 5px 14px; border-radius: 2px; margin-bottom: 22px; }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4.8vw, 3.8rem); font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 22px; }
.hero h1 span { color: var(--blue-text); }
.hero p { color: rgba(255,255,255,0.78); font-size: 16px; margin-bottom: 36px; max-width: 520px; text-align: justify;}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-images { position: absolute; right: 80px; top: 0; bottom: 0; width: 44%; display: flex; flex-direction: column; gap: 14px; padding-top: 56px; padding-bottom: 56px; z-index: 1; }
.hero-images img { border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,0.4); object-fit: cover; }
.hero-images img:first-child { height: 60%; animation: float 6s ease-in-out infinite; }
.hero-images img:last-child { height: 36%; align-self: flex-end; animation: float 6s ease-in-out infinite 1s; }
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* OVERVIEW STRIP */
.overview-strip { background: var(--gold); padding: 20px 0; }
.overview-strip .container { display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap; gap: 16px; }
.overview-item { text-align: center; color: var(--white); }
.overview-item strong { display: block; font-size: 1.5rem; font-weight: 800; font-family: 'Playfair Display', serif; }
.overview-item span { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; opacity: 0.8; }

/* ABOUT */
.about-section { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.about-image-wrap img.main-img { border-radius: 8px; width: 100%; height: 460px; object-fit: cover; box-shadow: 0 20px 60px rgba(10,31,61,0.15); }

/* VALUES */
.values-section { background: var(--light-gray); }
.values-intro { text-align: center; max-width: 680px; margin: 0 auto 36px; }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.value-card { background: var(--white); border-radius: 8px; padding: 28px 22px; border-top: 3px solid var(--gold); box-shadow: 0 4px 16px rgba(10,31,61,0.06); transition: transform 0.3s, box-shadow 0.3s; }
.value-card:hover { transform: translateY(-5px); box-shadow: 0 12px 36px rgba(10,31,61,0.11); }
.value-icon { width: 48px; height: 48px; background: rgba(200,168,75,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
.value-icon i { font-size: 21px; color: var(--gold); }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 9px; }
.value-card p { color: var(--text-gray); font-size: 13.5px; line-height: 1.75; }

/* MISSION & VISION */
.mission-vision { background: var(--white); padding: 42px 0; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card { padding: 36px; border-radius: 8px; border: 1px solid rgba(0, 0, 0, 0.08);}
.mv-card.mission { background: var(--navy); }
.mv-card.vision { background: var(--light-gray); }
.mv-card-icon { font-size: 36px; color: var(--gold); margin-bottom: 16px; }
.mv-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; margin-bottom: 14px; }
.mv-card.mission h3 { color: var(--white); }
.mv-card.vision h3 { color: var(--navy); }
.mv-card p { font-size: 14.5px; line-height: 1.9; }
.mv-card.mission p { color: rgba(255,255,255,0.8); }
.mv-card.vision p { color: var(--text-gray); }
.mv-card ul { margin-top: 12px; }
.mv-card ul li { font-size: 14px; line-height: 1.8; color: var(--text-gray); padding-left: 18px; position: relative; margin-bottom: 8px; }
.mv-card.mission ul li { color: rgba(255,255,255,0.8); }
.mv-card ul li::before { content: '→'; position: absolute; left: 0; color: var(--gold); font-size: 12px; top: 3px; }

/* SERVICES */
.services-section { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, minmax(230px, 1fr)); gap: 20px; margin-top: 36px; }
.service-card { background: var(--white); border-radius: 8px; padding: 28px 22px; border-bottom: 3px solid transparent; box-shadow: 0 4px 18px rgba(10,31,61,0.06); transition: all 0.3s; }
.service-card:hover { border-bottom-color: var(--gold); transform: translateY(-5px); box-shadow: 0 12px 36px rgba(10,31,61,0.11); }
.service-icon { width: 50px; height: 50px; background: rgba(200,168,75,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.service-icon i { font-size: 21px; color: var(--gold); }
.service-card h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 9px; }
.service-card p { color: var(--text-gray); font-size: 14.5px; line-height: 1.75; text-align: justify; }
.service-card a { color: var(--gold); font-weight: 700; font-size: 13px; display: inline-block; margin-top: 12px; }
/* See All Services Button Styling */
.btn-see-all {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: var(--navy); /* Primary Navy */
    color: var(--white) !important;
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid var(--navy);
}

.btn-see-all i {
    font-size: 13px;
    transition: transform 0.3s ease;
}

.btn-see-all:hover {
    background-color: transparent;
    color: var(--navy) !important;
    transform: translateY(-2px);
}

.btn-see-all:hover i {
    transform: translateX(5px);
}

/* Ensure the grid doesn't feel cramped on small screens */
@media (max-width: 768px) {
    .services-cta-wrap {
        margin-top: 40px;
    }
}

/* WHAT WE DO */
.what-we-do { background: var(--light-gray); }
.wwd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.wwd-image img { border-radius: 8px; width: 100%; height: 460px; object-fit: cover; box-shadow: 0 20px 60px rgba(10,31,61,0.15); }
.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.stat-item { text-align: center; padding: 20px 12px; background: var(--light-gray); border-radius: 8px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: 1.9rem; font-weight: 700; color: var(--navy); }
.stat-label { font-size: 14px; color: var(--navy); margin-top: 3px; font-weight: 700; letter-spacing: 0.3px; }

/* ORG CHART */
.org-section { background: var(--light-gray); padding: 42px 0;}
.org-chart { display: flex; flex-direction: column; align-items: center; margin-top: 36px; }
.org-level { display: flex; justify-content: center; gap: 20px; flex-wrap: wrap; }
.org-connector { width: 2px; height: 28px; background: var(--gold); margin: 0 auto; }
.org-node { background: var(--white); border-radius: 8px; padding: 14px 20px; text-align: center; box-shadow: 0 4px 16px rgba(10,31,61,0.08); border-top: 3px solid var(--gold); min-width: 150px; }
.org-node.ceo-node { background: var(--navy); border-top-color: var(--gold); min-width: 210px; }
.org-node.ceo-node h4 { color: var(--white); }
.org-node.ceo-node p { color: rgba(255,255,255,0.65); }
.org-node h4 { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--navy); margin-bottom: 3px; }
.org-node p { font-size: 11.5px; color: var(--text-gray); }

/* CTA BAND */
.cta-band { background: linear-gradient(135deg, var(--navy) 0%, #183a6e 100%); padding: 56px 0; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ''; position: absolute; top: -50px; right: -50px; width: 260px; height: 260px; border-radius: 50%; border: 50px solid rgba(200,168,75,0.07); }
.cta-band h2 { font-family: 'Playfair Display', serif; font-size: clamp(1.5rem, 2.8vw, 2.1rem); color: var(--white); margin-bottom: 10px; }
.cta-band p { color: rgba(255,255,255,0.72); margin-bottom: 6px; }
.cta-band .phone { font-size: 1.35rem; font-weight: 700; color: var(--gold); margin-bottom: 24px; display: block; transition: color 0.2s; }
.cta-band .phone:hover { color: var(--gold-light); }

/* CONTACT */
.contact-section { background: var(--light-gray); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.contact-form { background: var(--white); border-radius: 8px; padding: 38px; box-shadow: 0 4px 24px rgba(10,31,61,0.07); }
.contact-form h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; color: var(--navy); margin-bottom: 6px; }
.contact-form > p { color: var(--text-gray); font-size: 14px; margin-bottom: 24px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group textarea { width: 100%; padding: 11px 14px; border: 1.5px solid var(--border); border-radius: 4px; font-size: 14px; font-family: 'Lato', sans-serif; color: var(--text-dark); transition: border-color 0.2s; background: var(--light-gray); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); background: var(--white); }
.form-group textarea { min-height: 108px; resize: vertical; }
.contact-info h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 14px; }
.contact-info > p { color: var(--text-gray); margin-bottom: 24px; }
.info-item { display: flex; gap: 14px; margin-bottom: 18px; }
.info-icon { width: 44px; height: 44px; min-width: 44px; background: rgba(200,168,75,0.1); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.info-icon i { color: var(--gold); font-size: 16px; }
.info-text strong { display: block; font-size: 11px; color: var(--navy); margin-bottom: 2px; font-weight: 700; letter-spacing: 0.5px; text-transform: uppercase; }
.info-text span, .info-text a { font-size: 14px; color: var(--text-gray); }
.info-text a:hover { color: var(--gold); }

/* FOOTER */
footer { background: var(--navy); color: rgba(255,255,255,0.8); position: relative;}
.footer::before { content: ""; position: absolute; inset: 0; z-index: 0; }
.footer-top { padding: 56px 0 36px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 36px; }
.footer-logo img { height: 46px; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-desc { font-size: 14px; line-height: 1.8; color: rgba(255,255,255,0.8); margin-bottom: 14px; }
.footer-address { font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.footer-address i { color: var(--blue-text); margin-right: 6px; }
.footer-col h4 { font-weight: 700; font-size: 14px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--blue-text); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.8); font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 8px; margin-top: 14px; }
.newsletter-form input { flex: 1; padding: 10px 12px; border: 1px solid rgba(255,255,255,0.2); border-radius: 4px; background: rgba(255,255,255,0.08); color: var(--white); font-size: 13px; font-family: 'Lato', sans-serif; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button { padding: 10px 16px; background: var(--gold); color: var(--navy); border: none; border-radius: 4px; font-weight: 700; font-size: 13px; cursor: pointer; transition: background 0.2s; white-space: nowrap; }
.newsletter-form button:hover { background: var(--gold-light); }
/* .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 18px 0; } */
/* .footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; } */
/* .footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); } */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 18px 0;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
}

.footer-links a:hover {
  color: #fff;
}


/* PAGE HERO */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 100%); padding: 10px 0 60px; text-align: center; position: relative; overflow: hidden; height:12rem;}
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: var(--white); clip-path: ellipse(60% 100% at 50% 100%); }
.blog-page .page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 48px; background: var(--light-gray); clip-path: ellipse(60% 100% at 50% 100%); }
.page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(1.8rem, 3.6vw, 2.7rem); color: var(--white); margin-bottom: 12px; }
.breadcrumb { color: rgba(255,255,255,0.6); font-size: 14px; }
.breadcrumb a { color: var(--blue-text); }

/* PRODUCTS PAGE */
.products-intro { background: var(--white); padding: 16px 0 40px; }
.products-intro p { color: var(--text-dark); font-size: 15.5px; line-height: 1.9; max-width: 880px; margin: 0 auto 20px; text-align: center; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.product-tag { background: var(--light-gray); color: var(--navy); padding: 5px 13px; border-radius: 50px; font-size: 12.5px; font-weight: 600; border: 1px solid var(--border); }
.products-grid-section { background: var(--light-gray); padding: 52px 0; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.product-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 18px rgba(10,31,61,0.07); transition: all 0.3s; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(10,31,61,0.13); }
.product-card img { width: 100%; height: 210px; object-fit: cover; }
.product-card-body { padding: 20px; }
.product-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 9px; }
.product-card-body p { color: var(--text-dark); font-size: 15px; }
.product-card-body li { color: var(--text-dark); font-size: 14px; }
.product-card-body a { display: inline-block; margin-top: 12px; color: var(--gold); font-weight: 700; font-size: 13px; }
/* PRODUCT GRID */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.steel-product-card { background: var(--light-gray); border-radius: 8px; padding: 20px 18px; border-left: 3px solid var(--gold); text-align: center; transition: transform .25s ease, box-shadow .25s ease; }
.steel-product-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.steel-product-card i { font-size: 18px; color: var(--gold); margin-bottom: 10px; display: block; }
.steel-product-card h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 6px; }
.steel-product-card p { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

.steel-product-card {
  background: var(--light-gray);
  border-radius: 8px;
  overflow: hidden;               /* clips image to rounded corners */
  border-left: 3px solid var(--gold);
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}

.steel-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

/* Image container — fixed aspect ratio so all cards stay uniform */
.card-img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}

.steel-product-card:hover .card-img-wrap img {
  transform: scale(1.05);         /* subtle zoom on hover */
}

/* Text area */
.steel-product-card h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--navy);
  margin: 14px 18px 6px;
}

.steel-product-card p {
  font-size: 13px;
  color: var(--text-gray);
  line-height: 1.6;
  margin: 0 18px 16px;
}

/* ── Responsive breakpoints ── */

/* Tablet: 2 columns */
@media (max-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* Mobile: 1 column */
@media (max-width: 480px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .card-img-wrap {
    aspect-ratio: 21 / 9;         /* wider/shorter crop on small screens */
  }
}


/* ── INDUSTRIAL METALS CATEGORY HEADER ── */
    .im-category-header {
      text-align: center;
      max-width: 820px;
      margin: 0 auto 48px;
    }
    .im-category-label {
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }
    .im-category-desc {
      color: var(--text-dark);
      font-size: 15.5px;
      line-height: 1.85;
      margin-top: 14px;
    }

    /* ── IM DETAIL GRID ── */
    .im-detail-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
      margin-bottom: 0;
    }
    @media (max-width: 1024px) { .im-detail-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px)  { .im-detail-grid { grid-template-columns: 1fr; } }

    /* ── IM DETAIL CARD ── */
    .im-detail-card {
      background: var(--white);
      border-radius: 10px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(10,31,61,0.08);
      border: 1px solid var(--border);
      display: flex;
      flex-direction: column;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .im-detail-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 48px rgba(10,31,61,0.13);
    }

    .im-detail-img-wrap {
      position: relative;
      height: 200px;
      overflow: hidden;
    }
    .im-detail-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.4s ease;
    }
    .im-detail-card:hover .im-detail-img-wrap img {
      transform: scale(1.05);
    }
    .im-detail-badge {
      position: absolute;
      top: 12px;
      right: 12px;
      background: rgba(10,31,61,0.85);
      color: var(--light-blue);
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 5px 11px;
      border-radius: 3px;
      backdrop-filter: blur(4px);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    /* ── IM DETAIL BODY ── */
    .im-detail-body {
      padding: 22px 22px 24px;
      display: flex;
      flex-direction: column;
      flex: 1;
    }
    .im-detail-tag {
      display: inline-block;
      background: rgba(0,59,179,0.08);
      color: var(--gold);
      font-size: 10px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 3px 10px;
      border-radius: 2px;
      margin-bottom: 10px;
      border-left: 3px solid var(--gold);
    }
    .im-detail-body h3 {
      font-family: 'Playfair Display', serif;
      font-size: 1.22rem;
      color: var(--navy);
      margin-bottom: 12px;
      line-height: 1.3;
    }
    .im-detail-body > p {
      color: var(--text-dark);
      font-size: 15px;
      line-height: 1.82;
      margin-bottom: 18px;
    }

    /* ── SPEC GRID ── */
    .im-spec-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 16px;
      margin-bottom: 18px;
      padding: 14px 16px;
      background: var(--light-gray);
      border-radius: 6px;
      border-left: 3px solid var(--gold);
    }
    .im-spec { display: flex; flex-direction: column; gap: 2px; }
    .im-spec-label {
      font-size: 9.5px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--text-gray);
    }
    .im-spec-value {
      font-size: 12.5px;
      font-weight: 700;
      color: var(--navy);
    }

    /* ── APPLICATION TAGS ── */
    .im-apps {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-bottom: 20px;
    }
    .im-app-tag {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: rgba(10,31,61,0.05);
      border: 1px solid var(--border);
      color: var(--text-dark-gray);
      font-size: 12px;
      font-weight: 600;
      padding: 4px 10px;
      border-radius: 20px;
      letter-spacing: 0.3px;
    }
    .im-app-tag i { color: var(--gold); font-size: 10px; }

    /* ── ENQUIRE BUTTON ── */
    .im-enquire-btn {
      display: inline-block;
      margin-top: auto;
      background: var(--navy);
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      padding: 10px 20px;
      border-radius: 4px;
      letter-spacing: 0.4px;
      transition: background 0.25s, box-shadow 0.25s;
      align-self: flex-start;
    }
    .im-enquire-btn:hover {
      background: var(--gold);
      box-shadow: 0 6px 20px rgba(0,59,179,0.25);
    }

    /* ── SECTION DIVIDER between IM and other products ── */
    .other-products-label {
      text-align: center;
      margin: 52px 0 32px;
    }
    .other-products-label h2 {
      font-family: 'Playfair Display', serif;
      font-size: clamp(1.4rem, 2.8vw, 2rem);
      color: var(--navy);
      margin-top: 8px;
    }
    .other-products-label h2 span { color: var(--gold); }

/* ABOUT PAGE */
.about-content { padding: 34px 0; }
.about-content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-content-grid img { border-radius: 8px; box-shadow: 0 20px 60px rgba(10,31,61,0.15); }
.ceo-section { background: var(--light-gray); padding: 60px 0; }
.ceo-card { background: var(--white); border-radius: 8px; padding: 44px; display: grid; grid-template-columns: auto 1fr; gap: 36px; align-items: start; box-shadow: 0 4px 24px rgba(10,31,61,0.08); }
.ceo-image img { width: 160px; height: 160px; border-radius: 50%; object-fit: cover; border: 4px solid var(--gold); }
.ceo-text h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--navy); margin-bottom: 3px; }
.ceo-text .ceo-title { color: var(--gold); font-weight: 700; font-size: 13px; margin-bottom: 6px; }
.ceo-text .ceo-qual { font-size: 13px; color: var(--text-gray); font-style: italic; margin-bottom: 16px; }
.ceo-text p { color: var(--text-gray); font-size: 14.5px; line-height: 1.9; margin-bottom: 12px; }
.ceo-text p:last-child { margin-bottom: 0; }

/* BLOG */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 22px; margin-top: 36px; }
.blog-card { background: var(--white); border-radius: 8px; overflow: hidden; box-shadow: 0 4px 18px rgba(10,31,61,0.07); transition: all 0.3s; }
.blog-card:hover { transform: translateY(-5px); box-shadow: 0 14px 44px rgba(10,31,61,0.13); }
.blog-card-img { width: 100%; height: 192px; object-fit: cover; }
.blog-card-body { padding: 22px; }
.blog-tag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; display: block; }
.blog-card-body h3 { font-family: 'Playfair Display', serif; font-size: 1.05rem; color: var(--navy); margin-bottom: 8px; line-height: 1.45; }
.blog-card-body p { color: var(--text-gray); font-size: 13.5px; }
.blog-meta { display: flex; gap: 12px; margin-top: 12px; font-size: 12px; color: var(--text-gray); flex-wrap: wrap; }
.blog-meta span { display: flex; align-items: center; gap: 4px; }
.blog-card-body a { display: inline-block; margin-top: 11px; color: var(--gold); font-weight: 700; font-size: 13px; }

/* DOCU VAULT */
.vault-card { background: var(--light-gray); border-radius: 8px; padding: 26px; border-left: 4px solid var(--gold); transition: all 0.3s; }
.vault-card:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(10,31,61,0.09); }
.vault-card i { font-size: 26px; color: var(--gold); margin-bottom: 12px; }
.vault-card h3 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 7px; }
.vault-card p { color: var(--text-gray); font-size: 13.5px; }
.login-box { background: var(--white); border-radius: 12px; padding: 48px; max-width: 440px; margin: 0 auto; box-shadow: 0 8px 40px rgba(10,31,61,0.1); text-align: center; }
.login-box i { font-size: 42px; color: var(--gold); margin-bottom: 18px; }
.login-box h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; color: var(--navy); margin-bottom: 9px; }
.login-box p { color: var(--text-gray); font-size: 14px; margin-bottom: 24px; }

/* PROSE */
.prose { max-width: 800px; margin: 0 auto; }
.prose h2 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--navy); margin: 32px 0 11px; }
.prose p { color: var(--text-gray); line-height: 1.9; margin-bottom: 13px; }
.prose ul { color: var(--text-gray); padding-left: 22px; margin-bottom: 13px; }
.prose ul li { margin-bottom: 7px; list-style: disc; }

/* ANIMATION */
.fade-up { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .wwd-grid { gap: 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .about-grid, .wwd-grid, .contact-grid, .about-content-grid, .mv-grid { grid-template-columns: 1fr; gap: 28px; }
  /* .hero-images { display: none; } */
  .ceo-card { grid-template-columns: 1fr; text-align: center; padding: 32px 24px; gap: 24px; }
  .ceo-image { display: flex; justify-content: center; }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-links.mobile-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 10px 16px; box-shadow: 0 8px 30px rgba(0,0,0,0.1); gap: 0; z-index: 999; }
  .nav-links.mobile-open a { padding: 12px 14px; border-bottom: 1px solid var(--border); width: 100%; }
  .hamburger { display: flex; }
  nav { position: relative; flex-wrap: wrap; }
  .section { padding: 48px 0; }
  .section-sm { padding: 36px 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { padding: 40px 0 28px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .overview-item strong { font-size: 1.2rem; }
  .top-bar-left span:last-child { display: none; }
  .about-image-wrap img.main-img { height: 300px; }
  /* .hero .container { padding: 72px 24px 56px; } */
  /* .hero { min-height: auto; } */
  .products-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .products-grid .product-card img { height: 150px; }
  .blog-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .cta-band { padding: 40px 0; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form button { width: 100%; }
  .page-hero { padding: 56px 0 44px; }
  .org-level { gap: 10px; }
  .org-node { min-width: 120px; padding: 11px 14px; }
  .org-connector { height: 22px; }
}

@media (max-width: 520px) {
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .mv-grid { grid-template-columns: 1fr; }
  /* .hero-buttons { flex-direction: column; } */
  /* .hero-buttons .btn { text-align: center; } */
  .contact-form { padding: 24px 18px; }
  .ceo-card { padding: 24px 18px; }
  .overview-strip .container { justify-content: center; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .login-box { padding: 36px 24px; }
}

/* ============================================================
   NEW SECTIONS — added below "What We Do"
   ============================================================ */

/* ── Shared helpers ── */
.two-col-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }

.check-list { list-style: none; margin-top: 4px; }
.check-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  color: var(--text-dark-gray); font-size: 15px; line-height: 1.6;
}
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--gold); font-size: 15px; margin-top: 3px; flex-shrink: 0; }

/* ── MARKET INTELLIGENCE ── */
.market-intel {
  background: var(--navy);
  position: relative; overflow: hidden;
}
.market-intel::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 420px; height: 420px; border-radius: 50%;
  border: 80px solid rgba(200,168,75,0.05);
  pointer-events: none;
}
.market-intel::after {
  content: ''; position: absolute;
  bottom: -80px; left: -60px;
  width: 300px; height: 300px; border-radius: 50%;
  border: 60px solid rgba(200,168,75,0.04);
  pointer-events: none;
}
.market-intel .two-col-grid { position: relative; z-index: 2; }
.market-intel .section-label { color: var(--gold); }
.market-intel .section-title { color: var(--white); }
.market-intel .section-text { color: rgba(255,255,255,0.72); }

.intel-points-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 6px;
}
.intel-point {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(200,168,75,0.2);
  border-radius: 8px; padding: 16px 14px;
  display: flex; align-items: flex-start; gap: 11px;
  transition: background 0.25s;
}
.intel-point:hover { background: rgba(255,255,255,0.1); }
.intel-point i { color: var(--gold); font-size: 15px; margin-top: 2px; flex-shrink: 0; }
.intel-point span { font-size: 13.5px; color: rgba(255,255,255,0.82); font-weight: 500; line-height: 1.5; }

/* chart visual */
.chart-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,168,75,0.18);
  border-radius: 12px; padding: 32px 26px;
}
.chart-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.chart-header h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--white); }
.chart-live-badge {
  background: rgba(200,168,75,0.15); border: 1px solid var(--gold);
  color: var(--gold); font-size: 10px; font-weight: 800;
  letter-spacing: 1.5px; padding: 3px 10px; border-radius: 50px;
}
.chart-bars { display: flex; align-items: flex-end; gap: 8px; height: 110px; margin-bottom: 20px; }
.chart-bar {
  flex: 1; border-radius: 4px 4px 0 0;
  position: relative; cursor: default; transition: opacity 0.2s;
}
.chart-bar:hover { opacity: 0.82; }
.chart-bar-label {
  position: absolute; bottom: -20px; left: 50%;
  transform: translateX(-50%);
  font-size: 9.5px; color: rgba(255,255,255,0.5);
  white-space: nowrap;
}
.chart-metrics {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 10px;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 18px;
  margin-top: 22px;
}
.chart-metric { text-align: center; }
.chart-metric strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--gold); }
.chart-metric span { font-size: 11px; color: rgba(255,255,255,0.5); }

/* ── LOGISTICS ── */
.logistics-section { background: var(--light-gray); }
.logistics-img-wrap { position: relative; }
.logistics-img-wrap img {
  border-radius: 10px; width: 100%; height: 420px;
  object-fit: cover;
  box-shadow: 0 24px 64px rgba(10,31,61,0.16);
}
.logistics-badge {
  position: absolute; bottom: -18px; right: 20px;
  background: var(--gold); color: var(--navy);
  padding: 18px 22px; border-radius: 10px; text-align: center;
  box-shadow: 0 8px 28px rgba(200,168,75,0.38); min-width: 124px;
}
.logistics-badge strong { display: block; font-family: 'Playfair Display', serif; font-size: 1.55rem; line-height: 1; }
.logistics-badge span { font-size: 10.5px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }

/* ── WHY CHOOSE US ── */
.why-choose { background: var(--white); }
.why-differentiators { margin-top: 6px; }
.why-item {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--border);
}
.why-item:last-child { border-bottom: none; }
.why-num {
  width: 36px; height: 36px; min-width: 36px; border-radius: 50%;
  background: rgba(200,168,75,0.1); border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.88rem;
  font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.why-content h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 3px; }
.why-content p { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; }

.why-stats-panel {
  background: linear-gradient(150deg, var(--navy) 0%, #1a3d72 100%);
  border-radius: 12px; padding: 36px 28px; position: relative; overflow: hidden;
}
.why-stats-panel::before {
  content: ''; position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px; border-radius: 50%;
  border: 44px solid rgba(200,168,75,0.08);
}
.why-stat {
  text-align: center; padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.why-stat:last-child { border-bottom: none; }
.why-stat strong { display: block; font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--blue-text); line-height: 1.1; }
.why-stat p { font-size: 13px; color: var(--blue-text); margin-top: 5px; }

/* ── INDUSTRIES ── */
.industries-section { background: var(--light-gray); }
.industries-intro { text-align: center; max-width: 640px; margin: 0 auto 36px; }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.industry-card {
  background: var(--white); border-radius: 10px;
  padding: 26px 16px; text-align: center;
  box-shadow: 0 4px 16px rgba(10,31,61,0.06);
  border-bottom: 3px solid transparent;
  transition: all 0.3s;
}
.industry-card:hover { transform: translateY(-6px); border-bottom-color: var(--gold); box-shadow: 0 14px 38px rgba(10,31,61,0.12); }
.industry-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: rgba(200,168,75,0.1);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px; transition: background 0.3s;
}
.industry-card:hover .industry-icon { background: rgba(200,168,75,0.18); }
.industry-icon i { font-size: 22px; color: var(--gold); }
.industry-card h4 { font-family: 'Playfair Display', serif; font-size: 0.92rem; color: var(--navy); margin-bottom: 5px; line-height: 1.35; }
.industry-card p { font-size: 12px; color: var(--text-gray); line-height: 1.55; }

/* ── SUSTAINABILITY ── */
.sustainability-section { background: var(--white); }
.sustain-visual {
  background: linear-gradient(145deg, #0e3b1d 0%, #1a5c2e 55%, #0b2f15 100%);
  border-radius: 12px; padding: 40px 30px;
  position: relative; overflow: hidden;
}
.sustain-visual::before {
  content: ''; position: absolute; top: -30px; right: -30px;
  width: 220px; height: 220px; border-radius: 50%;
  background: rgba(255,255,255,0.025);
}
.sustain-bg-icon {
  font-size: 80px; color: rgba(255,255,255,0.06);
  position: absolute; bottom: 16px; right: 24px;
}
.sustain-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; position: relative; z-index: 2; }
.sustain-pillar {
  background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 18px 14px; text-align: center;
}
.sustain-pillar i { font-size: 20px; color: #6fcf97; margin-bottom: 9px; display: block; }
.sustain-pillar h5 { font-family: 'Playfair Display', serif; font-size: 0.88rem; color: var(--white); margin-bottom: 4px; }
.sustain-pillar p { font-size: 11.5px; color: rgba(255,255,255,0.6); }

/* ── FUTURE GROWTH ── */
.future-growth-section { background: var(--light-gray); }
.growth-map-panel {
  background: var(--white); border-radius: 12px;
  padding: 32px 26px;
  box-shadow: 0 6px 28px rgba(10,31,61,0.07);
}
.growth-map-title {
  font-family: 'Playfair Display', serif; font-size: 1rem;
  color: var(--navy); margin-bottom: 20px;
  display: flex; align-items: center; gap: 8px;
}
.growth-map-title i { color: var(--gold); }
.growth-regions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.growth-region {
  background: var(--light-gray); border-radius: 8px;
  padding: 12px 14px; display: flex; align-items: center; gap: 10px;
  border-left: 3px solid var(--gold);
}
.growth-region i { color: var(--gold); font-size: 14px; flex-shrink: 0; }
.growth-region div strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
.growth-region div span { font-size: 11px; color: var(--text-gray); }

/* ── QUALITY ASSURANCE ── */
.quality-section { background: var(--white); }
.quality-steps { margin-top: 6px; }
.quality-step {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--border);
}
.quality-step:last-child { border-bottom: none; }
.step-num {
  width: 38px; height: 38px; min-width: 38px; border-radius: 50%;
  background: var(--navy); display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 0.88rem;
  font-weight: 700; color: var(--gold); flex-shrink: 0;
}
.step-content h4 { font-family: 'Playfair Display', serif; font-size: 1rem; color: var(--navy); margin-bottom: 3px; }
.step-content p { font-size: 13.5px; color: var(--text-gray); line-height: 1.65; }

.quality-certs-panel {
  background: var(--light-gray); border-radius: 12px;
  padding: 32px 26px;
}
.quality-certs-panel h4 { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--navy); margin-bottom: 20px; text-align: center; }
.cert-badges { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.cert-badge {
  background: var(--white); border-radius: 8px;
  padding: 18px 14px; text-align: center;
  border: 1px solid var(--border); transition: all 0.3s;
}
.cert-badge:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 24px rgba(10,31,61,0.09); }
.cert-badge i { font-size: 22px; color: var(--gold); margin-bottom: 8px; display: block; }
.cert-badge span { font-size: 12.5px; font-weight: 700; color: var(--navy); display: block; }
.cert-badge small { font-size: 11px; color: var(--text-gray); margin-top: 2px; display: block; }
.quality-promise {
  margin-top: 14px; background: var(--navy);
  border-radius: 8px; padding: 16px 18px; text-align: center;
}
.quality-promise p { color: rgba(255,255,255,0.82); font-size: 13.5px; line-height: 1.7; }
.quality-promise strong { color: var(--gold); }

/* ── REQUEST A QUOTE CTA ── */
.quote-cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a6c 50%, var(--navy) 100%);
  padding: 46px 0; position: relative; overflow: hidden;
}
.quote-cta::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://i0.wp.com/bullfrog.ae/wp-content/uploads/2024/04/Bullfrog%C2%B7E-2024-04-10-17.17.47-A-hyper-realistic-drone-shot-of-a-large-vessel-carrying-a-cargo-ship-in-the-middle-of-the-ocean-on-a-bright-sunny-day.-This-image-showcases-the-clear.webp?fit=1024%2C1024&ssl=1') center/cover no-repeat;
  opacity: 0.06;
}
.quote-cta::after {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 64px solid rgba(200,168,75,0.07);
}
.quote-cta-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 700px; margin: 0 auto;
}
.quote-cta-inner .section-label { color: var(--gold); }
.quote-cta-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  color: var(--white); margin-bottom: 16px;
}
.quote-cta-inner p { color: rgba(255,255,255,0.72); font-size: 15.5px; line-height: 1.8; margin-bottom: 36px; }
.quote-cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.quote-cta-buttons .btn { padding: 15px 36px; font-size: 15px; }

/* Modal Background */
.blog-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  justify-content: center;
  align-items: center;
}

/* Modal Content */
.blog-modal-content {
  background: #fff;
  width: 90%;
  max-width: 800px;
  max-height: 85vh;
  overflow-y: auto;
  border-radius: 12px;
  padding: 30px;
  position: relative;
  animation: fadeInUp 0.4s ease;
}

/* Close Button */
.blog-close {
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  cursor: pointer;
}

/* Content Styling */
.blog-modal-content h2 {
  margin-bottom: 15px;
}

.blog-modal-content p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #444;
}

.breadcrumb { justify-content: center;  }

/* Animation */
@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}


.section-privacy {
      padding-top: 2rem;
      padding-bottom: 3rem;
}
    .privacy-container {
      width: 100%;
      max-width: 1200px;
      margin-right: auto;
      margin-left: auto;
      padding-right: 0.75rem;
      padding-left: 0.75rem;
    }
	.privacy-row {
      display: flex;
      flex-wrap: wrap;
      margin-right: -0.75rem;
      margin-left: -0.75rem;
    }
    .privacy-col {
      width: 100%;
      padding-right: 0.75rem;
      padding-left: 0.75rem;
      margin-right: auto;
      margin-left: auto;
    }
    @media (min-width: 992px) {
      .privacy-col {
        flex: 0 0 83.3333%;
        max-width: 83.3333%;
      }
    }
	
	.privacy-lead {
      font-size: 1rem;
      font-weight: 300;
      line-height: 1.7;
      /* Replacing: .mb-4  → margin-bottom:1.5rem */
      margin-bottom: 1.5rem;
    }
	
	.privacy-lead strong { font-size: 15px; color: #234f7b; font-weight: 800; }
	
	.privacy-section-block {
      margin-bottom: 3rem;
    }
	
	.privacy-section-block strong {
       color: #234f7b;
    }
	
	.privacy-section-block a { color: #234f7b; }

    .privacy-section-block h3 {
      margin-bottom: 1rem;
      font-size: 1.4rem;
      color: #234f7b;
      border-bottom: 2px solid #e8e8e8;
      padding-bottom: 0.5rem;
    }
	.icon-primary {
      color: #234f7b;
    }
	.icon-mr {
      margin-right: 0.5rem;
    }
	.privacy-list {
      list-style: none;
      padding-left: 0;
      margin-top: 0.5rem;
      margin-bottom: 1rem;
    }
    .privacy-list li {
      position: relative;
      padding: 0.55rem 0 0.55rem 1.4rem;
      border-bottom: 1px solid #e8e8e8;
      color: #404040;
      line-height: 1.75;
    }
    .privacy-list li:last-child { border-bottom: none; }
    .privacy-list li::before {
      content: '›';
      position: absolute;
      left: 0;
      top: 0.55rem;
      color: #234f7b;
      font-weight: 700;
      font-size: 1.1rem;
      line-height: 1.75;
    }
    .privacy-list strong { color: #234f7b; }
	.text-subdued { color: #5B6063; margin-top: 25px; }
	
	    .contact-box {
      padding: 1.5rem;
      background-color: #f8f9fa;
      border-radius: 0.375rem;
      border: 1px solid #e8e8e8;
    }

    .contact-box .contact-row {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
	
	.contact-box .contact-row-last {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }

    .contact-box a { color: #234f7b; text-decoration: none; }
    .contact-box a:hover { color: #d4af37; text-decoration: underline; }

.policy-content {
    font-size: 1rem;
    line-height: 1.75;
    color: var(--dark);
}

/* .policy-section { */
    /* background: var(--light); */
    /* border-radius: 4px; */
/* } */

.policy-section h3 {
    font-size: 1.4rem;
    color: var(--primary);
    border-bottom: 2px solid var(--gray-200);
    padding-bottom: 0.75rem;
}

.policy-section p {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.policy-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}

/* .policy-list li { */
    /* position: relative; */
    /* padding: 0.6rem 0 0.6rem 1.5rem; */
    /* border-bottom: 1px solid var(--gray-200); */
    /* color: var(--gray-700); */
    /* line-height: 1.75; */
/* } */

.policy-list li:last-child {
    border-bottom: none;
}

.policy-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0.6rem;
    color: var(--primary);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.75;
}

.policy-list strong {
    color: var(--primary);
}

.policy-content a {
    color: var(--primary);
    text-decoration: underline;
}

.policy-content a:hover {
    color: var(--accent);
}

.policy-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 16px;
    flex-wrap: wrap;
  }

.policy-meta-tag {
    background: var(--light-blue);
	color: var(--text-dark);
    font-size: 0.85rem;
    padding: 5px 14px;
    border-radius: 20px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.policy-meta-tag.highlight {
    background: var(--light-blue);
    color: var(--primary-color);
}

.section-terms {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.terms-container {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
}
.terms-row {
    display: flex;
    flex-wrap: wrap;
    margin-right: -0.75rem;
    margin-left: -0.75rem;
}
.terms-col {
    width: 100%;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-right: auto;
    margin-left: auto;
}
@media (min-width: 992px) {
    .terms-col {
      flex: 0 0 83.3333%;
      max-width: 83.3333%;
    }
}
.terms-lead {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
}
    /* .terms-lead { */
      /* margin-bottom: 1.5rem; */
    /* } */
.terms-section-block {
    margin-bottom: 3rem;
}
.terms-section-block h3 {  
    margin-top: 1rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
    color: #234f7b;
    border-bottom: 2px solid #e8e8e8;
    padding-bottom: 0.5rem;
}
.icon-primary {
    color: #234f7b;
}
.icon-mr {
      margin-right: 0.5rem;
}
.terms-list {
    list-style: none;
    padding-left: 0;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
}
.terms-list li {
    position: relative;
    padding: 0.55rem 0 0.55rem 1.4rem;
    border-bottom: 1px solid #e8e8e8;
    color: #404040;
    line-height: 1.75;
}
.terms-list li:last-child { border-bottom: none; }
.terms-list li::before {
    content: '›';
    position: absolute;
    left: 0;
    top: 0.55rem;
    color: #234f7b;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.75;
}
.terms-list strong { color: #234f7b; }
.contact-box {
      padding: 1.5rem;
      background-color: #f8f9fa;
      border-radius: 0.375rem;
      border: 1px solid #e8e8e8;
    }
.contact-box-mb {
      margin-bottom: 1rem;
    }
.contact-row {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0.5rem;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
.contact-row-last {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }
.contact-row-only {
      display: flex;
      align-items: flex-start;
      gap: 0.4rem;
      margin-bottom: 0;
      color: #404040;
      font-size: 0.975rem;
      line-height: 1.6;
    }

    .contact-box a { color: #234f7b; text-decoration: none; }
    .contact-box a:hover { color: #d4af37; text-decoration: underline; }
.policy-content {
      font-size: 1rem;
      line-height: 1.75;
      color: #1a1a1a;
    }
    .policy-content p { color: #404040; }

/* ============================================================
   NEW SECTIONS RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .two-col-grid { grid-template-columns: 1fr; gap: 32px; }
  .intel-points-grid { grid-template-columns: 1fr 1fr; }
  .logistics-img-wrap img { height: 300px; }
  .logistics-badge { bottom: -14px; right: 14px; }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .sustain-pillars { grid-template-columns: 1fr 1fr; }
  .growth-regions { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .intel-points-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .sustain-pillars { gap: 10px; }
  .growth-regions { gap: 8px; }
  .cert-badges { grid-template-columns: 1fr 1fr; gap: 10px; }
  .chart-bars { height: 86px; }
  .why-stats-panel { padding: 26px 20px; }
  .quote-cta { padding: 52px 0; }
  .quote-cta-buttons { flex-direction: column; align-items: center; }
  .quote-cta-buttons .btn { width: 100%; max-width: 300px; text-align: center; }
}

@media (max-width: 520px) {
  .intel-points-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .industry-card { padding: 20px 12px; }
  .sustain-pillars { grid-template-columns: 1fr 1fr; }
  .growth-regions { grid-template-columns: 1fr; }
  .cert-badges { grid-template-columns: 1fr 1fr; gap: 8px; }
  .chart-metrics { grid-template-columns: repeat(3,1fr); gap: 6px; }
}


/* HERO — RESPONSIVE */

/* Large tablet / small desktop: tighten padding so images don't encroach */
@media (max-width: 1200px) {
  .hero {
    padding: 50px 48px;
  }
  .hero-images {
    right: 48px;
    width: 42%;
  }
}

/* Medium breakpoint: reduce image width and content max-width to prevent overlap */
@media (max-width: 1024px) {
  .hero {
    padding: 50px 36px;
  }
  .hero-content {
    max-width: 520px;
  }
  .hero-images {
    right: 36px;
    width: 40%;
  }
}

/* Tablet: switch to stacked layout to fully eliminate overlap */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    min-height: 100svh;
    padding: 80px 24px 48px;
    overflow: hidden;
  }

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

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

  .hero p {
    max-width: 100%;
  }

  .hero-images {
    position: relative;
    right: auto;
    top: auto;
    bottom: auto;
    width: calc(100% + 48px);
    margin-left: -24px;
    flex-direction: row;
    height: 220px;
    padding: 0 24px;
    gap: 12px;
    z-index: 1;
    margin-top: 36px;
  }

  .hero-images img {
    flex: 1;
    height: 100% !important;
    width: 0;
    align-self: unset !important;
  }
}

/* Large phone */
@media (max-width: 600px) {
  .hero {
    padding: 72px 20px 40px;
  }

  .hero-images {
    width: calc(100% + 40px);
    margin-left: -20px;
    padding: 0 20px;
    height: 200px;
  }
}

/* Small phone */
@media (max-width: 480px) {
  .hero {
    padding: 72px 16px 36px;
  }

  .hero h1 {
    font-size: clamp(1.9rem, 8vw, 2.4rem);
  }

  .hero-badge {
    font-size: 10px;
    letter-spacing: 1.5px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    text-align: center;
  }

  .hero-images {
    width: calc(100% + 32px);
    margin-left: -16px;
    padding: 0 16px;
    height: 180px;
  }
}
/* ============================================================
   ENHANCED ANIMATIONS & VISUAL UPGRADES
   ============================================================ */

/* ── Keyframes ── */
@keyframes heroFadeIn   { from { opacity:0; transform:translateY(30px); } to { opacity:1; transform:translateY(0); } }
@keyframes heroSlideIn  { from { opacity:0; transform:translateX(40px); } to { opacity:1; transform:translateX(0); } }
@keyframes float        { 0%,100% { transform:translateY(0); } 50% { transform:translateY(-10px); } }
@keyframes shimmer      { 0% { background-position:-200% 0; } 100% { background-position:200% 0; } }
@keyframes pulseRing    { 0%,100% { transform:scale(1); opacity:.6; } 50% { transform:scale(1.08); opacity:1; } }
@keyframes rotateSlow   { from { transform:rotate(0deg); } to { transform:rotate(360deg); } }
@keyframes slideInLeft  { from { opacity:0; transform:translateX(-28px); } to { opacity:1; transform:translateX(0); } }
@keyframes countUp      { from { opacity:0; } to { opacity:1; } }
@keyframes marquee      { 0% { transform:translateX(0); } 100% { transform:translateX(-50%); } }
@keyframes borderFlow   { 0%,100% { border-color:rgba(0,59,179,.18); } 50% { border-color:rgba(0,59,179,.55); } }
@keyframes fadeInScale  { from { opacity:0; transform:scale(.94); } to { opacity:1; transform:scale(1); } }
@keyframes glowPulse    { 0%,100% { box-shadow:0 0 0 0 rgba(0,77,230,.22); } 50% { box-shadow:0 0 0 12px rgba(0,77,230,0); } }

/* ── Global link hover ── */
a { transition:color .22s ease; }

/* ── TOP BAR: subtle gradient ── */
.top-bar {
  background: linear-gradient(90deg, #071527 0%, #0a1f3d 60%, #0d2748 100%);
  border-bottom: 1px solid rgba(0,59,179,.25);
}

/* ── HEADER: glassmorphism ── */
header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,59,179,.08);
  box-shadow: 0 2px 24px rgba(10,31,61,.07);
  transition: box-shadow .3s, background .3s;
}
header.scrolled {
  background: rgba(255,255,255,.99);
  box-shadow: 0 4px 36px rgba(10,31,61,.13);
}

/* Nav link underline color fix */
.nav-links a::after { background: var(--gold); }

/* CTA button glow */
.nav-cta a {
  position: relative;
  overflow: hidden;
  transition: background .25s, box-shadow .25s, transform .18s;
}
.nav-cta a:hover {
  background: var(--gold);
  box-shadow: 0 6px 20px rgba(0,59,179,.32);
  transform: translateY(-1px);
}

/* ── HERO: cinematic overhaul ── */
.hero {
  min-height: 100svh;
  background: linear-gradient(125deg, #040e1e 0%, #071a38 35%, #0d2748 65%, #122d55 100%);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 50px 80px;
}

/* Animated mesh background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 15% 50%, rgba(0,59,179,.22) 0%, transparent 45%),
    radial-gradient(ellipse at 80% 20%, rgba(0,77,230,.16) 0%, transparent 38%),
    radial-gradient(ellipse at 90% 80%, rgba(182,211,234,.08) 0%, transparent 35%),
    url('https://images.unsplash.com/photo-1578575437130-527eed3abbec?w=1400&q=70') center/cover no-repeat;
  opacity: .12;
  z-index: 0;
}

/* Animated grid overlay */
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,77,230,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,77,230,.06) 1px, transparent 1px);
  background-size: 64px 64px;
  z-index: 0;
  animation: none;
}

.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, rgba(4,14,30,.96) 38%, rgba(4,14,30,.55) 70%, rgba(4,14,30,.18) 100%);
}

/* Floating orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 1;
}
.hero-orb-1 {
  width: 520px; height: 520px;
  top: -120px; right: -80px;
  background: radial-gradient(circle, rgba(0,77,230,.18) 0%, transparent 65%);
  animation: pulseRing 7s ease-in-out infinite;
}
.hero-orb-2 {
  width: 320px; height: 320px;
  bottom: -60px; left: 38%;
  background: radial-gradient(circle, rgba(0,59,179,.12) 0%, transparent 65%);
  animation: pulseRing 9s ease-in-out infinite 2s;
}

/* Hero content enter */
.hero .container { position: relative; z-index: 3; }
.hero-content { max-width: 48%; }
.hero-content > * { animation: heroFadeIn .8s ease both; }
.hero-badge      { animation-delay: .1s; }
.hero h1         { animation-delay: .25s; }
.hero p          { animation-delay: .4s; }
.hero-buttons    { animation-delay: .55s; }
.hero-stat-strip { animation-delay: .7s; }

/* Badge shimmer */
.hero-badge {
  background: linear-gradient(90deg, rgba(182,211,234,.12) 0%, rgba(182,211,234,.22) 50%, rgba(182,211,234,.12) 100%);
  background-size: 200% auto;
  animation: heroFadeIn .8s ease .1s both, shimmer 3.5s linear 1s infinite;
  border: 1px solid rgba(182,211,234,.4);
}

.hero h1 { letter-spacing: -.01em; }
.hero h1 em { font-style: normal; color: var(--blue-text); }

/* Inline stat strip inside hero */
.hero-stat-strip {
  display: flex; gap: 28px; flex-wrap: wrap;
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero-stat-item { text-align: left; }
.hero-stat-item strong { display: block; font-family:'Playfair Display',serif; font-size:1.5rem; color:#fff; line-height:1; }
.hero-stat-item span  { font-size:11px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:rgba(255,255,255,.5); margin-top:3px; display:block; }

/* Hero images — animated stagger */
.hero-images { animation: heroSlideIn .9s ease .35s both; }
.hero-images img:first-child { animation: float 6s ease-in-out infinite .2s; }
.hero-images img:last-child  { animation: float 6s ease-in-out infinite 1.2s; }

/* Scroll indicator */
.hero-scroll-hint {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5; display: flex; flex-direction: column; align-items: center; gap: 6px;
  opacity: .55; animation: heroFadeIn 1s ease 1.2s both;
}
.hero-scroll-hint span { font-size: 10px; font-weight:700; letter-spacing:2px; text-transform:uppercase; color:#fff; }
.hero-scroll-mouse {
  width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.5); border-radius: 11px;
  display: flex; justify-content: center; padding-top: 5px;
}
.hero-scroll-mouse::after {
  content: ''; display: block; width: 4px; height: 7px;
  background: #fff; border-radius: 2px;
  animation: float 1.8s ease-in-out infinite;
}

/* ── OVERVIEW STRIP: animated counter & marquee ── */
.overview-strip {
  background: linear-gradient(90deg, var(--navy) 0%, #122d55 50%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.overview-strip::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(90deg, transparent, rgba(0,77,230,.08), transparent);
  animation: shimmer 4s linear infinite;
  background-size: 200% auto;
}
.overview-item strong {
  background: linear-gradient(135deg, #fff 30%, var(--light-blue));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── SECTION LABELS: animated line ── */
.section-label {
  position: relative; display: inline-block;
  padding-bottom: 8px;
}
.section-label::after {
  content: ''; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ── SECTION TITLES ── */
.section-title { position: relative; }

/* ── VALUE CARDS: glass hover ── */
.value-card {
  position: relative; overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.value-card::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(0,59,179,.04) 0%, transparent 60%);
  opacity: 0; transition: opacity .35s;
}
.value-card:hover::before { opacity: 1; }
.value-card:hover { transform: translateY(-7px); box-shadow: 0 18px 44px rgba(10,31,61,.14); }
.value-icon {
  background: linear-gradient(135deg, rgba(0,59,179,.12), rgba(0,77,230,.06));
  transition: background .3s, transform .3s;
}
.value-card:hover .value-icon { transform: scale(1.08) rotate(-3deg); background: rgba(0,59,179,.18); }
.value-icon i { color: var(--gold); }

/* ── SERVICE CARDS: border animation ── */
.service-card {
  position: relative; overflow: hidden;
  border: 1px solid transparent;
  transition: all .3s;
}
.service-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s ease;
}
.service-card:hover::after { transform: scaleX(1); }
.service-card:hover {
  border-color: rgba(0,59,179,.1);
  box-shadow: 0 16px 48px rgba(10,31,61,.14);
  transform: translateY(-6px);
}
.service-icon {
  background: linear-gradient(135deg, rgba(0,59,179,.1), rgba(0,77,230,.06));
  transition: transform .3s, background .3s;
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }

/* ── PRODUCT CARDS: image zoom ── */
.product-card { transition: transform .32s, box-shadow .32s; }
.product-card img { transition: transform .5s ease; }
.product-card:hover img { transform: scale(1.06); }
.product-card:hover { box-shadow: 0 18px 54px rgba(10,31,61,.16); transform: translateY(-6px); }

/* ── BLOG CARDS: image zoom + slide ── */
.blog-card { transition: transform .3s, box-shadow .3s; }
.blog-card-img { transition: transform .5s ease; }
.blog-card:hover .blog-card-img { transform: scale(1.06); }
.blog-card:hover { box-shadow: 0 18px 48px rgba(10,31,61,.14); transform: translateY(-6px); }
.read-more {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold); font-weight:700; font-size:13px;
  transition: gap .25s, color .25s; position: relative; 
  z-index: 3; cursor: pointer;
}
.read-more:hover { gap: 10px; color: var(--gold-light); }

.reed-more {
  display: inline-flex; align-items: center; gap: 5px;
  color: var(--gold); font-weight:700; font-size:13px;
  transition: gap .25s, color .25s; position: relative; 
  z-index: 3; cursor: pointer;
}
.reed-more:hover { gap: 10px; color: var(--gold-light); }

/* ── CTA BAND: animated background ── */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #0f2d5e 50%, #183a6e 100%);
  position: relative; overflow: hidden;
}
.cta-band::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(0,77,230,.18) 0%, transparent 55%);
}

/* ── QUOTE CTA: parallax feel ── */
.quote-cta { position: relative; overflow: hidden; }
.quote-cta::before {
  background: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1400&q=70') center/cover no-repeat;
  opacity: .06;
  transition: transform 8s ease;
}

/* ── FOOTER: hover links ── */
.footer-col ul li a {
  position: relative; padding-left: 0;
  transition: color .22s, padding-left .22s;
}
.footer-col ul li a:hover { color: #fff; padding-left: 6px; }
.footer-col ul li a::before {
  content: '›'; position: absolute; left: -10px; opacity: 0;
  color: var(--gold); transition: opacity .22s, left .22s;
}
.footer-col ul li a:hover::before { opacity: 1; left: -6px; }

/* ── ABOUT IMAGE: floating frame ── */
.about-image-wrap { position: relative; }
.about-image-wrap::before {
  content: ''; position: absolute;
  inset: -12px -12px 12px 12px; border-radius: 12px;
  border: 2px solid rgba(0,59,179,.18);
  animation: borderFlow 4s ease-in-out infinite;
  pointer-events: none; z-index: 0;
}
.about-image-wrap .main-img { position: relative; z-index: 1; transition: transform .4s ease; }
.about-image-wrap:hover .main-img { transform: scale(1.02); }

/* ── INFO ITEMS in contact: hover ── */
.info-item {
  padding: 12px 14px; border-radius: 8px;
  transition: background .25s, transform .25s;
}
.info-item:hover { background: rgba(0,59,179,.04); transform: translateX(5px); }
.info-icon { transition: transform .3s, background .3s; }
.info-item:hover .info-icon { transform: scale(1.12) rotate(-5deg); background: rgba(0,59,179,.14); }

/* ── PAGE HERO: depth ── */
.page-hero {
  background: linear-gradient(135deg, #040e1e 0%, #071a38 40%, #122d55 100%);
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 50%, rgba(0,77,230,.18) 0%, transparent 45%),
    radial-gradient(ellipse at 15% 80%, rgba(182,211,234,.08) 0%, transparent 40%);
}
.page-hero h1 { animation: heroFadeIn .7s ease .1s both; }
.page-hero .breadcrumb { animation: heroFadeIn .7s ease .25s both; }

/* ── MARQUEE TICKER ── */
.marquee-section {
  background: var(--gold);
  overflow: hidden; white-space: nowrap; padding: 12px 0;
}
.marquee-inner {
  display: inline-flex; gap: 0;
  animation: marquee 22s linear infinite;
}
.marquee-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(255,255,255,.9);
  padding: 0 36px;
}
.marquee-item i { color: rgba(255,255,255,.65); font-size: 11px; }

/* ── INDUSTRY CARDS ── */
.industry-card {
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(10,31,61,.13);
}
.industry-icon { transition: transform .3s, background .3s; }
.industry-card:hover .industry-icon { transform: scale(1.14) rotate(-6deg); }

/* ── WHY CHOOSE stats panel ── */
.why-stat strong { animation: countUp .6s ease both; }

/* ── FADE-UP ENHANCED ── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* Slide from left variant */
.fade-left {
  opacity: 0; transform: translateX(-28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.fade-left.visible { opacity: 1; transform: translateX(0); }

/* Slide from right variant */
.fade-right {
  opacity: 0; transform: translateX(28px);
  transition: opacity .6s cubic-bezier(.22,1,.36,1), transform .6s cubic-bezier(.22,1,.36,1);
}
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* Scale in variant */
.fade-scale {
  opacity: 0; transform: scale(.92);
  transition: opacity .55s cubic-bezier(.22,1,.36,1), transform .55s cubic-bezier(.22,1,.36,1);
}
.fade-scale.visible { opacity: 1; transform: scale(1); }

/* ── BUTTON ENHANCEMENTS ── */
.btn {
  position: relative; overflow: hidden;
  transition: all .28s cubic-bezier(.22,1,.36,1);
}
.btn::after {
  content: ''; position: absolute;
  top: 50%; left: 50%; width: 0; height: 0;
  background: rgba(255,255,255,.15);
  border-radius: 50%; transform: translate(-50%,-50%);
  transition: width .5s ease, height .5s ease, opacity .5s ease;
  opacity: 0;
}
.btn:hover::after { width: 200px; height: 200px; opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { box-shadow: 0 6px 20px rgba(0,59,179,.3); }
.btn-primary:hover { box-shadow: 0 12px 32px rgba(0,59,179,.42); background: var(--gold-light); }

/* ── NEWSLETTER FORM ── */
.newsletter-form input:focus { box-shadow: 0 0 0 3px rgba(0,77,230,.22); }
.newsletter-form button { animation: glowPulse 2.5s ease-in-out infinite; }

/* ── STAT ITEMS: hover glow ── */
.stat-item { transition: transform .25s, box-shadow .25s; }
.stat-item:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(10,31,61,.1); }

/* ── OVERVIEW ITEMS: stagger ── */
.overview-item { transition: transform .25s; }
.overview-item:hover { transform: translateY(-3px); }

/* ── LOGISTICS BADGE: pulse ── */
.logistics-badge { animation: glowPulse 3s ease-in-out infinite; }

/* ── QUALITY CERT badges ── */
.cert-badge { transition: transform .25s, border-color .25s, box-shadow .25s; }
.cert-badge:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 10px 28px rgba(0,59,179,.1); }

/* ── INTEL POINTS ── */
.intel-point { transition: background .25s, transform .25s; }
.intel-point:hover { background: rgba(255,255,255,.13); transform: translateY(-2px); }

/* ── REGION BOXES ── */
.growth-region { transition: transform .25s, box-shadow .25s; }
.growth-region:hover { transform: translateX(4px); box-shadow: 0 6px 18px rgba(10,31,61,.08); }

/* ── SUSTAIN PILLARS ── */
.sustain-pillar { transition: background .25s, transform .25s; }
.sustain-pillar:hover { background: rgba(255,255,255,.12); transform: translateY(-3px); }

/* ── ORG CHART nodes ── */
.org-node { transition: transform .25s, box-shadow .25s; }
.org-node:hover { transform: translateY(-4px); box-shadow: 0 12px 30px rgba(10,31,61,.12); }

/* ── FOOTER newsletter glow ── */
.newsletter-form button:hover { background: var(--gold-light); box-shadow: 0 6px 20px rgba(0,77,230,.28); }

/* ── Scroll-triggered number counter ── */
.counter-value { transition: all .1s; }

/* ── HERO VIDEO-STYLE BACKGROUND PARTICLE DOTS ── */
.hero-particles {
  position: absolute; inset: 0; z-index: 1; pointer-events: none; overflow: hidden;
}
.hero-particles span {
  position: absolute; border-radius: 50%;
  background: rgba(182,211,234,.35);
  animation: float var(--d,6s) ease-in-out infinite var(--delay,0s);
}

/* ── TICKER / MOVING STRIP between sections ── */
.ticker-strip {
  background: linear-gradient(90deg, var(--navy) 0%, #0f2d5e 100%);
  border-top: 1px solid rgba(0,59,179,.25);
  border-bottom: 1px solid rgba(0,59,179,.25);
  overflow: hidden; white-space: nowrap; padding: 13px 0;
}
.ticker-inner {
  display: inline-flex; animation: marquee 30s linear infinite;
}
.ticker-item {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 0 40px; font-size: 12.5px; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.7);
}
.ticker-dot { width:5px; height:5px; border-radius:50%; background:var(--gold); flex-shrink:0; }

/* ── Glowing section dividers ── */
.glow-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,77,230,.35), rgba(182,211,234,.3), rgba(0,77,230,.35), transparent);
}

/* ── HERO: image overlay gradient ── */
.hero-images img {
  border-radius: 12px;
  border: 1px solid rgba(182,211,234,.18);
}

/* ── About section: image floating accent box ── */
.img-accent-badge {
  position: absolute; bottom: -16px; right: -16px; z-index: 2;
  background: var(--navy); border: 2px solid var(--gold);
  border-radius: 10px; padding: 16px 20px; text-align: center;
  box-shadow: 0 8px 28px rgba(10,31,61,.22);
  min-width: 130px;
}
.img-accent-badge strong { display:block; font-family:'Playfair Display',serif; font-size:1.6rem; color:#fff; line-height:1; }
.img-accent-badge span  { font-size:10px; font-weight:700; letter-spacing:1.5px; text-transform:uppercase; color:var(--light-blue); }

/* ── Check items hover ── */
.check-list li { transition: padding-left .22s, color .22s; }
.check-list li:hover { padding-left: 6px; color: var(--text-dark); }

/* ── FORM inputs ── */
.form-group input:focus, .form-group textarea:focus {
  box-shadow: 0 0 0 3px rgba(0,59,179,.12);
}

/* ── WHY items ── */
.why-item { transition: padding-left .22s; }
.why-item:hover { padding-left: 8px; }
.why-num { transition: background .25s, transform .25s; }
.why-item:hover .why-num { background: rgba(0,59,179,.18); transform: scale(1.1); }

/* ── Quality steps ── */
.quality-step { transition: padding-left .22s; }
.quality-step:hover { padding-left: 8px; }

/* ── p-row (principle) ── */
.p-row { transition: background .25s, transform .22s; }
.p-row:hover { background: rgba(0,59,179,.04); transform: translateX(5px); }

/* ── Back-to-top button ── */
#backToTop {
  position: fixed; bottom: 28px; right: 28px; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); border: 2px solid var(--gold);
  color: var(--gold); font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s, box-shadow .3s;
  box-shadow: 0 4px 16px rgba(10,31,61,.18);
}
#backToTop.visible { opacity: 1; pointer-events: auto; }
#backToTop:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,59,179,.32); }

/* ── Mobile responsive extras ── */
@media (max-width: 900px) {
  .hero-stat-strip { gap: 16px; }
  .hero-scroll-hint { display: none; }
  .img-accent-badge { right: 0; bottom: 0; padding: 12px 14px; }
}
@media (max-width: 520px) {
  .hero-stat-strip { gap: 12px; }
  .hero-stat-item strong { font-size: 1.2rem; }
  .marquee-item { padding: 0 22px; font-size: 11px; }
}
