/* =============================================
   GREEN VERTEX - Premium Corporate CSS
   ============================================= */

@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');

/* === ROOT VARIABLES === */
:root {
  --primary: #1a7a3c;
  --primary-dark: #0f5228;
  --primary-light: #2da854;
  --accent: #4caf50;
  --accent-lime: #8bc34a;
  --dark: #111827;
  --charcoal: #1f2937;
  --gray-dark: #374151;
  --gray-mid: #6b7280;
  --gray-light: #f3f4f6;
  --gray-border: #e5e7eb;
  --white: #ffffff;
  --text-main: #1f2937;
  --text-sub: #4b5563;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.07);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-green: 0 8px 30px rgba(26,122,60,0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  width: 100%;
}
body {
  margin: 0;
  padding: 0;
  width: 100%;
  max-width: 100vw;
  font-family: 'Poppins', sans-serif;
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.7;
}
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.25;
}
p { color: var(--text-sub); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--gray-light); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* Global horizontal-overflow safety net */
.navbar-gv, .hero-section, .page-hero, .footer, .stats-section, .cta-section, .section-pad, .section-pad-sm {
  width: 100%;
  max-width: 100%;
}
h1, h2, h3, h4, h5, h6, p, span, a, li { overflow-wrap: break-word; word-break: break-word; }


/*Custom css*/



.logo img{
  width: 85px;
  height: 70px;
  border-radius: 16px;
}





.section-label {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(26,122,60,0.08);
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
  border-left: 3px solid var(--primary);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.7rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title span { color: var(--primary); }
.section-subtitle {
  font-size: 1rem;
  color: var(--text-sub);
  max-width: 600px;
  margin: 0 auto 48px;
}
.section-divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--accent-lime));
  border-radius: 2px;
  margin: 16px 0 24px;
}
.section-divider.mx-auto { margin-left: auto; margin-right: auto; }

.btn-gv-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-gv-primary:hover { color: white; transform: translateY(-2px); box-shadow: var(--shadow-green); background: linear-gradient(135deg, var(--primary-light), var(--primary)); }

.btn-gv-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 12px 30px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gv-outline:hover { background: var(--primary); color: white; transform: translateY(-2px); box-shadow: var(--shadow-green); }

.btn-gv-white {
  background: white;
  color: var(--primary);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-gv-white:hover { background: var(--gray-light); color: var(--primary-dark); transform: translateY(-2px); }

/* NAVBAR */
.navbar-gv {
  background: rgba(17,24,39,0.97);
  backdrop-filter: blur(20px);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1050;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}
.navbar-gv.scrolled { background: rgba(17,24,39,0.99); box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.navbar-gv .navbar-brand { display: flex; align-items: center; gap: 10px; padding: 14px 0; }
.navbar-gv .brand-logo {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; color: white; font-weight: 900;
  font-family: 'Montserrat', sans-serif;
}
.navbar-gv .brand-name { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.25rem; color: white; }
.navbar-gv .brand-name span { color: var(--accent); }
.navbar-gv .nav-link {
  color: rgba(255,255,255,0.82) !important;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 0.85rem;
  padding: 8px 14px !important;
  border-radius: 6px;
  transition: var(--transition);
}
.navbar-gv .nav-link:hover, .navbar-gv .nav-link.active { color: white !important; background: rgba(255,255,255,0.08); }
.navbar-gv .dropdown-menu {
  background: var(--charcoal);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 240px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  margin-top: 8px;
  animation: dropDown 0.2s ease;
}
@keyframes dropDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }
.navbar-gv .dropdown-item {
  color: rgba(255,255,255,0.8);
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  padding: 9px 14px;
  border-radius: 6px;
  transition: var(--transition);
  display: flex; align-items: center; gap: 10px;
}
.navbar-gv .dropdown-item i { color: var(--accent); width: 18px; font-size: 0.9rem; }
.navbar-gv .dropdown-item:hover { background: rgba(76,175,80,0.15); color: white; }
.navbar-gv .navbar-toggler { border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; padding: 6px 10px; }
.navbar-gv .navbar-toggler-icon { background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e"); }

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 50%, var(--primary-dark) 100%);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234caf50' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.4;
}
.page-hero .breadcrumb-item a { color: var(--accent); }
.page-hero .breadcrumb-item.active, .page-hero .breadcrumb-item { color: rgba(255,255,255,0.7); font-size: 0.85rem; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.3); }
.page-hero h1 { color: white; font-size: clamp(1.8rem, 4vw, 3rem); }
.page-hero p { color: rgba(255,255,255,0.72); font-size: 1.05rem; }
.page-hero-icon {
  width: 80px; height: 80px;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem; color: var(--accent);
  margin-bottom: 24px;
}

.section-pad { padding: 90px 0; }
.section-pad-sm { padding: 60px 0; }
.section-bg-light { background: var(--gray-light); }
.section-bg-dark { background: var(--dark); }
.section-bg-green { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }

/* CARDS */
.gv-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.gv-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-lime));
  transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease;
}
.gv-card:hover::before { transform: scaleX(1); }
.gv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(26,122,60,0.2); }
.gv-card .card-icon {
  width: 60px; height: 60px; background: rgba(26,122,60,0.1); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
  color: var(--primary); margin-bottom: 20px; transition: var(--transition);
}
.gv-card:hover .card-icon { background: var(--primary); color: white; }
.gv-card h4 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }
.gv-card p { font-size: 0.9rem; color: var(--text-sub); margin-bottom: 0; }

/* SERVICE CARDS */
.service-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-border); transition: var(--transition); height: 100%;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card .card-img-wrapper {
  height: 200px; background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.service-card .card-img-wrapper i { font-size: 4rem; color: rgba(255,255,255,0.3); }
.service-card .card-badge {
  position: absolute; top: 16px; right: 16px;
  background: rgba(76,175,80,0.9); color: white; font-size: 0.72rem; font-weight: 600;
  padding: 4px 10px; border-radius: 20px; font-family: 'Montserrat', sans-serif;
}
.service-card .card-body { padding: 24px; }
.service-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.88rem; color: var(--text-sub); margin-bottom: 16px; }
.service-card .learn-more {
  color: var(--primary); font-size: 0.85rem; font-weight: 600;
  font-family: 'Montserrat', sans-serif; display: flex; align-items: center; gap: 6px; transition: var(--transition);
}
.service-card .learn-more:hover { gap: 10px; color: var(--primary-dark); }

/* STATS */
.stat-card { text-align: center; padding: 32px 20px; }
.stat-number { font-family: 'Montserrat', sans-serif; font-size: 3rem; font-weight: 900; color: white; line-height: 1; margin-bottom: 8px; }
.stat-number span { color: var(--accent-lime); }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.7); font-weight: 500; }

/* HERO */
.hero-section {
  min-height: 100vh;
  background: linear-gradient(135deg, #0a1a0f 0%, #111827 40%, #0f3d1e 70%, #1a7a3c 100%);
  display: flex; align-items: center; position: relative; overflow: hidden;
}
.hero-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234caf50' fill-opacity='0.04'%3E%3Cpath d='M50 50c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10s-10-4.477-10-10 4.477-10 10-10zM10 10c0-5.523 4.477-10 10-10s10 4.477 10 10-4.477 10-10 10c0 5.523-4.477 10-10 10S0 25.523 0 20s4.477-10 10-10z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-section::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: white; clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(76,175,80,0.12); border: 1px solid rgba(76,175,80,0.3); color: var(--accent);
  font-size: 0.78rem; font-weight: 600; font-family: 'Montserrat', sans-serif;
  letter-spacing: 1.5px; text-transform: uppercase; padding: 8px 18px;
  border-radius: 30px; margin-bottom: 28px;
}
.hero-title {
  font-family: 'Montserrat', sans-serif; font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900; color: white; line-height: 1.15; margin-bottom: 20px; letter-spacing: -1px;
}
.hero-title .highlight {
  color: transparent;
  background: linear-gradient(135deg, var(--accent), var(--accent-lime));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.hero-desc { font-size: 1.05rem; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 36px; max-width: 520px; }
.hero-features { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 36px; }
.hero-feature-tag { display: flex; align-items: center; gap: 6px; color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 500; }
.hero-feature-tag i { color: var(--accent); }
.hero-visual-card {
  background: rgba(255,255,255,0.06); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1); border-radius: 24px; padding: 40px; text-align: center; position: relative;
}
.hero-visual-icon { font-size: 6rem; color: rgba(76,175,80,0.4); display: block; margin-bottom: 20px; }
.hero-visual-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 20px; }
.hero-visual-stat { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 16px; text-align: center; }
.hero-visual-stat .num { font-family: 'Montserrat', sans-serif; font-size: 0.95rem; font-weight: 900; color: var(--accent); }
.hero-visual-stat .lbl { font-size: 0.72rem; color: rgba(255,255,255,0.6); }
.hero-float-1 {
  position: absolute; top: -30px; right: -30px; width: 120px; height: 120px;
  background: rgba(76,175,80,0.08); border-radius: 50%; animation: pulse 3s infinite;
}
.hero-float-2 {
  position: absolute; bottom: -20px; left: -20px; width: 80px; height: 80px;
  background: rgba(139,195,74,0.08); border-radius: 50%; animation: pulse 3s infinite 1s;
}
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.6; } 50% { transform: scale(1.1); opacity: 1; } }

/* ABOUT */
.about-preview-img { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-preview-img .img-placeholder {
  height: 480px; background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--accent-lime) 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 16px;
}
.about-preview-img .img-placeholder i { font-size: 5rem; color: rgba(255,255,255,0.25); }
.about-badge {
  position: absolute; bottom: 24px; left: 24px; background: white;
  border-radius: var(--radius); padding: 16px 22px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 12px;
}
.about-badge .badge-icon {
  width: 44px; height: 44px; background: var(--primary); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: white; font-size: 1.1rem;
}
.about-badge .badge-num { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.3rem; color: var(--primary); line-height: 1; }
.about-badge .badge-lbl { font-size: 0.78rem; color: var(--text-sub); }
.check-list { list-style: none; padding: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; padding: 10px 0; border-bottom: 1px solid var(--gray-border); font-size: 0.92rem; color: var(--text-sub); }
.check-list li:last-child { border-bottom: none; }
.check-list li i { color: var(--primary); margin-top: 3px; flex-shrink: 0; }

/* WHY CHOOSE */
.why-item {
  display: flex; gap: 20px; padding: 24px; border-radius: var(--radius);
  background: white; border: 1px solid var(--gray-border); transition: var(--transition); height: 100%;
}
.why-item:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-4px); }
.why-icon {
  width: 52px; height: 52px; background: rgba(26,122,60,0.1); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
  color: var(--primary); flex-shrink: 0; transition: var(--transition);
}
.why-item:hover .why-icon { background: var(--primary); color: white; }
.why-text h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.why-text p { font-size: 0.85rem; color: var(--text-sub); margin: 0; }

/* STATS SECTION */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--charcoal) 50%, var(--primary-dark) 100%);
  padding: 70px 0; position: relative;
}
.stats-section::before {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%234caf50' fill-opacity='0.05'%3E%3Cpath d='M0 38.59l2.83-2.83 1.41 1.41L1.41 40H0v-1.41zM0 1.4l2.83 2.83 1.41-1.41L1.41 0H0v1.41zM38.59 40l-2.83-2.83 1.41-1.41L40 38.59V40h-1.41zM40 1.41l-2.83 2.83-1.41-1.41L38.59 0H40v1.41zM20 18.6l2.83-2.83 1.41 1.41L21.41 20l2.83 2.83-1.41 1.41L20 21.41l-2.83 2.83-1.41-1.41L18.59 20l-2.83-2.83 1.41-1.41L20 18.59z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-divider { width: 1px; height: 80px; background: rgba(255,255,255,0.1); margin: auto; }

/* TESTIMONIALS */
.testimonial-card {
  background: white; border-radius: var(--radius-lg); padding: 32px;
  border: 1px solid var(--gray-border); transition: var(--transition); height: 100%; position: relative;
}
.testimonial-card::before {
  content: '"'; position: absolute; top: 20px; right: 28px; font-size: 5rem; color: var(--primary);
  opacity: 0.1; font-family: Georgia, serif; line-height: 1;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.testimonial-stars { color: #f59e0b; margin-bottom: 16px; }
.testimonial-text { font-size: 0.92rem; color: var(--text-sub); font-style: italic; margin-bottom: 20px; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-family: 'Montserrat', sans-serif; font-size: 1rem;
}
.testimonial-name { font-size: 0.92rem; font-weight: 700; color: var(--dark); }
.testimonial-role { font-size: 0.78rem; color: var(--text-sub); }

/* CTA */
.cta-section {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--accent));
  padding: 80px 0; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%; width: 600px; height: 600px;
  background: rgba(255,255,255,0.05); border-radius: 50%;
}
.cta-section h2 { color: white; font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.cta-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; }

/* PRODUCTS */
.product-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-border); transition: var(--transition); height: 100%;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.product-card .product-img {
  height: 220px; background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.product-card .product-img i { font-size: 5rem; color: var(--primary); opacity: 0.25; }
.product-card .product-body { padding: 24px; }
.product-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.product-tag {
  display: inline-block; background: rgba(26,122,60,0.1); color: var(--primary);
  font-size: 0.72rem; font-weight: 600; padding: 3px 10px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; margin-bottom: 10px;
}
.product-spec-list { list-style: none; padding: 0; margin-bottom: 16px; }
.product-spec-list li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--text-sub); padding: 4px 0; }
.product-spec-list li i { color: var(--primary); font-size: 0.7rem; }

/* BLOG */
.blog-card {
  background: white; border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--gray-border); transition: var(--transition); height: 100%;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card .blog-img {
  height: 200px; background: linear-gradient(135deg, var(--primary-dark), var(--accent));
  display: flex; align-items: center; justify-content: center; position: relative;
}
.blog-card .blog-img i { font-size: 3.5rem; color: rgba(255,255,255,0.2); }
.blog-card .blog-cat {
  position: absolute; bottom: 12px; left: 12px; background: var(--primary);
  color: white; font-size: 0.7rem; font-weight: 700; padding: 4px 12px; border-radius: 20px;
  font-family: 'Montserrat', sans-serif; letter-spacing: 0.5px; text-transform: uppercase;
}
.blog-card .blog-body { padding: 22px; }
.blog-card .blog-date { font-size: 0.78rem; color: var(--text-sub); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; }
.blog-card h5 { font-size: 0.98rem; font-weight: 700; margin-bottom: 8px; line-height: 1.4; }
.blog-card p { font-size: 0.85rem; color: var(--text-sub); margin-bottom: 16px; }

/* CONTACT */
.contact-form-wrapper { background: white; border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-md); border: 1px solid var(--gray-border); }
.form-control-gv {
  border: 1.5px solid var(--gray-border); border-radius: 8px; padding: 12px 16px;
  font-family: 'Poppins', sans-serif; font-size: 0.9rem; color: var(--text-main);
  transition: var(--transition); background: var(--gray-light); width: 100%;
}
.form-control-gv:focus { border-color: var(--primary); background: white; box-shadow: 0 0 0 3px rgba(26,122,60,0.1); outline: none; }
.form-label-gv { font-family: 'Montserrat', sans-serif; font-size: 0.82rem; font-weight: 600; color: var(--dark); margin-bottom: 6px; display: block; }
.contact-info-card {
  background: white; border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--gray-border); display: flex; align-items: flex-start; gap: 16px; transition: var(--transition);
}
.contact-info-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); }
.contact-info-card .info-icon {
  width: 48px; height: 48px; background: rgba(26,122,60,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--primary); flex-shrink: 0;
}
.contact-info-card h6 { font-size: 0.85rem; font-weight: 700; margin-bottom: 4px; }
.contact-info-card p { font-size: 0.88rem; color: var(--text-sub); margin: 0; }
.map-placeholder {
  height: 320px; background: linear-gradient(135deg, var(--gray-light), #e9ecef);
  border-radius: var(--radius-lg); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px; border: 2px dashed var(--gray-border);
}
.map-placeholder i { font-size: 3rem; color: var(--primary); opacity: 0.4; }
.map-placeholder p { color: var(--text-sub); font-size: 0.9rem; }

/* ISO */
.cert-badge {
  width: 140px; height: 140px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: var(--shadow-green); position: relative;
}
.cert-badge::after {
  content: ''; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px dashed rgba(76,175,80,0.4); animation: spin 12s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.cert-badge i { font-size: 2.5rem; color: rgba(255,255,255,0.8); }
.cert-badge span { font-family: 'Montserrat', sans-serif; font-size: 0.75rem; font-weight: 700; color: rgba(255,255,255,0.9); letter-spacing: 1px; margin-top: 4px; }
.cert-card {
  text-align: center; padding: 32px 24px; border-radius: var(--radius-lg);
  background: white; border: 1px solid var(--gray-border); transition: var(--transition);
}
.cert-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--primary); }
.cert-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.cert-card p { font-size: 0.88rem; color: var(--text-sub); }

/* TEAM */
.team-card {
  text-align: center; padding: 32px 24px; border-radius: var(--radius-lg);
  background: white; border: 1px solid var(--gray-border); transition: var(--transition);
}
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 1.5rem;
  color: white; margin: 0 auto 16px;
}
.team-card h5 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.team-card .team-role { font-size: 0.82rem; color: var(--primary); font-weight: 600; margin-bottom: 10px; }
.team-card p { font-size: 0.85rem; color: var(--text-sub); }

/* TIMELINE */
.timeline { position: relative; padding-left: 40px; }
.timeline::before { content: ''; position: absolute; left: 16px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--accent-lime)); }
.timeline-item { position: relative; margin-bottom: 40px; }
.timeline-dot { position: absolute; left: -32px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--primary); border: 3px solid white; box-shadow: 0 0 0 3px var(--primary); }
.timeline-year { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1.1rem; color: var(--primary); margin-bottom: 6px; }
.timeline-item h5 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; }
.timeline-item p { font-size: 0.88rem; color: var(--text-sub); margin: 0; }

/* FAQ */
.faq-accordion .accordion-item { border: 1px solid var(--gray-border); border-radius: var(--radius) !important; margin-bottom: 12px; overflow: hidden; }
.faq-accordion .accordion-button { font-family: 'Montserrat', sans-serif; font-weight: 600; font-size: 0.92rem; color: var(--dark); background: white; padding: 18px 22px; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--primary); background: rgba(26,122,60,0.04); box-shadow: none; }
.faq-accordion .accordion-body { font-size: 0.9rem; color: var(--text-sub); padding: 0 22px 20px; line-height: 1.7; }

/* PROCESS */
.process-step { text-align: center; padding: 24px 16px; position: relative; }
.process-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent)); color: white;
  font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 1.1rem;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; box-shadow: var(--shadow-green);
}
.process-step h5 { font-size: 0.92rem; font-weight: 700; margin-bottom: 8px; }
.process-step p { font-size: 0.84rem; color: var(--text-sub); }

/* FOOTER */
.footer { background: var(--dark); color: rgba(255,255,255,0.75); padding: 70px 0 0; }
.footer h6 {
  font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem;
  color: white; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
  padding-bottom: 12px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { /*color: rgba(255,255,255,0.6);*/ font-size: 0.87rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-links a i { color: var(--accent); font-size: 0.7rem; }
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.87rem; color: rgba(255,255,255,0.6); }
.footer-contact-item i { color: var(--accent); margin-top: 3px; width: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 8px; background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-3px); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px; padding: 10px 14px; color: white; font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form input:focus { outline: none; border-color: var(--primary); }
.newsletter-form button { background: var(--primary); border: none; padding: 10px 16px; border-radius: 8px; color: white; font-size: 0.9rem; cursor: pointer; transition: var(--transition); }
.newsletter-form button:hover { background: var(--primary-dark); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07); margin-top: 50px; padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom a { color: var(--accent); }

/* MISC */
.green-text { color: var(--primary); }
.badge-iso {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(26,122,60,0.12); border: 1px solid rgba(26,122,60,0.25); color: var(--primary);
  font-size: 0.78rem; font-weight: 700; padding: 5px 14px; border-radius: 30px; font-family: 'Montserrat', sans-serif;
}
.industries-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.industry-tag {
  display: flex; align-items: center; gap: 6px; background: var(--gray-light);
  border: 1px solid var(--gray-border); padding: 8px 16px; border-radius: 30px;
  font-size: 0.84rem; font-weight: 500; color: var(--text-sub); transition: var(--transition);
}
.industry-tag:hover { background: var(--primary); color: white; border-color: var(--primary); }
.industry-tag i { color: var(--primary); font-size: 0.8rem; }
.industry-tag:hover i { color: white; }
.tech-badge {
  display: inline-flex; align-items: center; gap: 8px; background: white;
  border: 1px solid var(--gray-border); padding: 10px 18px; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; color: var(--dark); box-shadow: var(--shadow-sm); transition: var(--transition);
}
.tech-badge:hover { border-color: var(--primary); color: var(--primary); }
.tech-badge i { color: var(--primary); }
.related-service-card {
  background: white; border: 1px solid var(--gray-border); border-radius: var(--radius);
  padding: 20px; display: flex; align-items: center; gap: 14px; transition: var(--transition); text-decoration: none;
}
.related-service-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.related-service-card .rsc-icon {
  width: 44px; height: 44px; background: rgba(26,122,60,0.1); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 1.1rem;
}
.related-service-card h6 { font-size: 0.88rem; font-weight: 700; margin: 0; color: var(--dark); }
.related-service-card p { font-size: 0.78rem; color: var(--text-sub); margin: 2px 0 0; }
.back-to-top {
  position: fixed; bottom: 30px; right: 30px; width: 44px; height: 44px;
  background: var(--primary); color: white; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition); z-index: 1000;
  opacity: 0; transform: translateY(20px); border: none;
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-3px); }
.blog-sidebar .sidebar-widget {
  background: white; border: 1px solid var(--gray-border); border-radius: var(--radius); padding: 24px; margin-bottom: 24px;
}
.blog-sidebar .sidebar-widget h6 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 0.88rem; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--gray-border); color: var(--dark); }
.category-item { display: flex; justify-content: space-between; align-items: center; padding: 8px 0; border-bottom: 1px solid var(--gray-border); font-size: 0.87rem; cursor: pointer; transition: var(--transition); }
.category-item:last-child { border-bottom: none; }
.category-item:hover { color: var(--primary); }
.category-item .cat-count { background: var(--gray-light); font-size: 0.75rem; padding: 2px 8px; border-radius: 12px; color: var(--text-sub); }
.recent-post-item { display: flex; gap: 12px; margin-bottom: 14px; }
.recent-post-item .rp-img {
  width: 60px; height: 60px; border-radius: 8px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
}
.recent-post-item .rp-img i { color: rgba(255,255,255,0.4); }
.recent-post-item h6 { font-size: 0.82rem; font-weight: 600; line-height: 1.4; margin-bottom: 4px; }
.recent-post-item small { color: var(--text-sub); font-size: 0.75rem; }

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-left.visible { opacity: 1; transform: translateX(0); }
.fade-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-right.visible { opacity: 1; transform: translateX(0); }

/* =============================================
   RESPONSIVE — LARGE MONITORS / WIDE DESKTOPS
   ============================================= */
@media (min-width: 1400px) {
  .container { max-width: 1260px; }
}

/* =============================================
   RESPONSIVE — LAPTOPS / SMALL DESKTOPS
   ============================================= */
@media (max-width: 1199.98px) {
  .hero-visual-icon { font-size: 5rem; }
  .about-preview-img .img-placeholder { height: 420px; }
  .stat-number { font-size: 2.5rem; }
}

/* =============================================
   RESPONSIVE — TABLETS (portrait & landscape)
   ============================================= */
@media (max-width: 991.98px) {
  .navbar-gv .navbar-collapse {
    background: rgba(17,24,39,0.98); padding: 16px; border-radius: 12px;
    margin-top: 10px; border: 1px solid rgba(255,255,255,0.08);
  }
  .navbar-gv .navbar-nav { gap: 2px; }
  .navbar-gv .navbar-cta { margin-top: 14px; }
  .navbar-gv .navbar-cta .btn-gv-primary { width: 100%; justify-content: center; }

  .hero-section { min-height: auto; padding: 60px 0; }
  .hero-section .container { padding-top: 40px !important; padding-bottom: 90px !important; }
  .hero-visual-card { max-width: 460px; padding: 32px; }
  .stats-divider { display: none; }

  .page-hero { padding: 70px 0 50px; }
  .page-hero-icon { width: 64px; height: 64px; font-size: 1.6rem; margin-bottom: 18px; }

  .section-pad { padding: 70px 0; }
  .section-pad-sm { padding: 45px 0; }

  .about-preview-img .img-placeholder { height: 360px; }

  .gv-card, .why-item, .testimonial-card { padding: 26px; }
  .contact-form-wrapper { padding: 32px; }

  .stat-number { font-size: 2.3rem; }
}

/* =============================================
   RESPONSIVE — LARGE PHONES / SMALL TABLETS
   ============================================= */
@media (max-width: 767.98px) {
  .section-pad { padding: 56px 0; }
  .section-pad-sm { padding: 40px 0; }
  .section-subtitle { margin-bottom: 32px; }

  .contact-form-wrapper { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .timeline { padding-left: 30px; }

  .hero-section .container { padding: 0 25px 80px !important; }
  .hero-title { letter-spacing: -0.5px; }
  .hero-desc { max-width: 100%; }
  .hero-visual-card { padding: 26px; max-width: 100%; }
  .hero-visual-icon { font-size: 4rem; margin-bottom: 14px; }
  .hero-visual-stats { gap: 10px; }
  .hero-visual-stat { padding: 12px; }
  .hero-visual-stat .num { font-size: 0.85rem; }

  .page-hero { padding: 60px 0 40px; text-align: center; }
  .page-hero .d-flex { justify-content: center; }

  .about-preview-img .img-placeholder { height: 280px; }
  .about-badge { position: static; margin-top: 16px; display: inline-flex; }

  .footer { padding: 50px 0 0; text-align: center; }
  .footer h6 { margin-top: 20px; }
  .footer-links a, .footer-contact-item { justify-content: center; }
  .footer-social { justify-content: center; }
  .newsletter-form { flex-direction: column; }

  .why-item { flex-direction: column; text-align: center; }
  .why-icon { margin: 0 auto; }

  .cert-badge { width: 116px; height: 116px; }
  .cert-badge i { font-size: 2rem; }

  .team-avatar { width: 68px; height: 68px; font-size: 1.25rem; }

  .stat-number { font-size: 2rem; }
  .stat-card { padding: 20px 12px; }

  .process-num { width: 48px; height: 48px; font-size: 1rem; }

  .back-to-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }

  .cta-section { padding: 56px 0; text-align: center; }
  .cta-section .d-flex { justify-content: center; }
}

/* =============================================
   RESPONSIVE — SMALL PHONES
   ============================================= */
@media (max-width: 575.98px) {
  .logo img { width: 60px; height: 50px; border-radius: 12px; }
  .navbar-gv .navbar-brand { padding: 10px 0; }

  .hero-title { font-size: 2rem; letter-spacing: -0.5px; }
  .hero-desc { font-size: 0.95rem; }
  .hero-badge { font-size: 0.7rem; padding: 7px 14px; }
  .hero-features { gap: 8px; margin-bottom: 28px; }
  .hero-visual-stats { grid-template-columns: 1fr; }

  .section-title { font-size: 1.6rem; }
  .section-pad { padding: 44px 0; }

  .page-hero h1 { font-size: 1.6rem; }
  .page-hero p { font-size: 0.95rem; }
  .page-hero-icon { width: 56px; height: 56px; font-size: 1.4rem; }

  .about-preview-img .img-placeholder { height: 220px; }
  .about-badge { padding: 12px 16px; gap: 10px; }
  .about-badge .badge-icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .about-badge .badge-num { font-size: 1.1rem; }

  .gv-card, .testimonial-card, .why-item { padding: 20px; }
  .contact-form-wrapper { padding: 18px; }
  .contact-info-card { padding: 18px; flex-direction: column; text-align: center; }
  .contact-info-card .info-icon { margin: 0 auto; }

  .service-card .card-img-wrapper, .product-card .product-img { height: 160px; }
  .service-card .card-img-wrapper i, .product-card .product-img i { font-size: 3rem; }
  .blog-card .blog-img { height: 160px; }

  .stat-number { font-size: 1.7rem; }
  .stat-label { font-size: 0.8rem; }

  .cert-badge { width: 100px; height: 100px; }
  .cert-badge i { font-size: 1.7rem; }
  .cert-badge span { font-size: 0.65rem; }

  .timeline { padding-left: 24px; }
  .timeline::before { left: 10px; }
  .timeline-dot { left: -24px; width: 12px; height: 12px; }
  .timeline-year { font-size: 1rem; }

  .map-placeholder { height: 220px; }

  .faq-accordion .accordion-button { padding: 14px 16px; font-size: 0.86rem; }
  .faq-accordion .accordion-body { padding: 0 16px 16px; font-size: 0.86rem; }

  .footer-bottom { gap: 8px; }
  .footer-bottom p { font-size: 0.76rem; }
}

/* =============================================
   RESPONSIVE — EXTRA SMALL PHONES
   ============================================= */
@media (max-width: 380px) {
  .hero-title { font-size: 1.7rem; }
  .section-title { font-size: 1.4rem; }
  .btn-gv-primary, .btn-gv-outline, .btn-gv-white { padding: 12px 22px; font-size: 0.8rem; width: 100%; justify-content: center; }
  .hero-visual-card, .gv-card, .contact-form-wrapper { padding: 16px; }
  .cert-badge { width: 88px; height: 88px; }
}

/* =============================================
   MEGA MENU (Services dropdown)
   Rebuilt to have ZERO dependency on Bootstrap's
   dropdown JS / Popper positioning. Desktop opens
   on hover/focus via pure CSS; mobile opens via a
   small vanilla-JS class toggle (see main.js).
   This removes the entire class of bug where a
   JS-computed inline position/transform could
   override the intended full-width layout.
   ============================================= */
.navbar-gv { position: sticky; }
.navbar-gv .mega-dropdown { position: static; }
.navbar-gv .mega-dropdown .mega-menu {
  display: block;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0;
  padding: 28px 0 0 0;
  background: rgba(17,24,39,0.99);
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  z-index: 1060;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s;
}
.navbar-gv .mega-dropdown:hover .mega-menu,
.navbar-gv .mega-dropdown:focus-within .mega-menu,
.navbar-gv .mega-dropdown.mega-open .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px 24px;
  padding: 0 32px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
}
.mega-col-title {
  display: flex; align-items: center; gap: 8px;
  color: var(--accent);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  padding-bottom: 10px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.mega-col-title:hover { color: var(--accent-lime); }
.mega-sublist { list-style: none; margin: 0; padding: 0; }
.mega-sublist li { margin-bottom: 2px; }
.mega-link {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  text-decoration: none;
  padding: 6px 8px;
  border-radius: 6px;
  transition: var(--transition);
}
.mega-link i { color: var(--accent); font-size: 0.85rem; width: 14px; }
.mega-link:hover { background: rgba(76,175,80,0.15); color: white; }
.mega-menu-footer {
  margin-top: 20px;
  padding: 16px 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}
.btn-sm-gv { padding: 8px 20px !important; font-size: 0.85rem !important; }

@media (max-width: 1200px) {
  .mega-menu-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .navbar-gv .mega-dropdown .mega-menu {
    display: none;
    position: static;
    opacity: 1; visibility: visible; pointer-events: auto; transform: none;
    box-shadow: none;
    border-top: none;
    padding: 10px 0;
    background: transparent;
  }
  .navbar-gv .mega-dropdown.mega-open .mega-menu { display: block; }
  .mega-menu-grid { grid-template-columns: 1fr; padding: 0 10px; gap: 14px; max-width: 100%; }
  .mega-col-title { color: white; }
  .mega-menu-footer { padding: 10px; }
}

/* =============================================
   RESPONSIVE SAFETY NET — applies site-wide to
   prevent horizontal scroll and keep third-party
   embeds (tables, iframes, code blocks) inside
   the viewport on every breakpoint.
   ============================================= */
table { max-width: 100%; display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }
iframe, video, embed, object { max-width: 100%; }
pre, code { max-width: 100%; overflow-x: auto; white-space: pre-wrap; word-break: break-word; }
input, select, textarea, button { max-width: 100%; }
h1, h2, h3, h4, h5, h6, p, span, a { overflow-wrap: break-word; word-wrap: break-word; }
