/* =====================================================
   MEGA WINDS - Premium Industrial Corporate Stylesheet
   ===================================================== */

:root {
  --mega-blue: #0057B8;
  --navy-blue: #0B1F3A;
  --white: #FFFFFF;
  --light-grey: #F5F7FA;
  --accent-blue: #0099FF;
  --orange: #FF7A00;
  --text-dark: #1a1a2e;
  --text-body: #4a4a5a;
  --text-muted: #6c757d;
  --border-color: #e2e8f0;
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);
  --transition: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 8px;
  --radius-lg: 12px;
  --font-primary: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-heading: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-primary);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--navy-blue);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }
h6 { font-size: 1rem; }
p { margin-bottom: 1.25rem; }
a { color: var(--mega-blue); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--accent-blue); }
img { max-width: 100%; height: auto; -webkit-user-drag: none; user-select: none; }
video { -webkit-user-drag: none; user-select: none; }
section { padding: 100px 0; position: relative; }
@media (max-width: 991.98px) { section { padding: 70px 0; } }

.text-mega-blue { color: var(--mega-blue) !important; }
.text-navy { color: var(--navy-blue) !important; }
.text-accent { color: var(--accent-blue) !important; }
.bg-mega-blue { background-color: var(--mega-blue) !important; }
.bg-navy { background-color: var(--navy-blue) !important; }
.bg-light-grey { background-color: var(--light-grey) !important; }
.bg-white { background-color: var(--white) !important; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

.section-header { margin-bottom: 60px; }
.section-label {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--mega-blue);
  margin-bottom: 12px;
  position: relative;
  padding-left: 40px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 3px;
  background: var(--mega-blue);
}
.section-title { color: var(--navy-blue); margin-bottom: 18px; }
.section-subtitle { font-size: 1.15rem; color: var(--text-muted); max-width: 700px; margin-bottom: 0; }

.btn {
  padding: 14px 34px;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.15);
  transition: var(--transition);
  z-index: -1;
}
.btn:hover::before { left: 0; }
.btn-primary { background-color: var(--mega-blue); border-color: var(--mega-blue); color: var(--white); }
.btn-primary:hover { background-color: var(--navy-blue); border-color: var(--navy-blue); color: var(--white); }
.btn-whatsapp { background-color: #25D366; border-color: #25D366; color: var(--white); }
.btn-whatsapp:hover { background-color: #1ebc57; border-color: #1ebc57; color: var(--white); }
.btn-outline-light { border: 2px solid var(--white); color: var(--white); background: transparent; }
.btn-outline-light:hover { background: var(--white); color: var(--navy-blue); }
.btn-outline-navy { border: 2px solid var(--navy-blue); color: var(--navy-blue); background: transparent; }
.btn-outline-navy:hover { background: var(--navy-blue); color: var(--white); }
.btn-lg { padding: 16px 42px; font-size: 1rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  transition: var(--transition);
}
.floating-whatsapp:hover { transform: scale(1.1) rotate(10deg); color: var(--white); background: #128C7E; }

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--mega-blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--navy-blue); color: var(--white); transform: translateY(-4px); }

.top-bar {
  background: var(--navy-blue);
  color: var(--white);
  padding: 10px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.top-bar a { color: rgba(255, 255, 255, 0.85); font-weight: 500; }
.top-bar a:hover { color: var(--white); }
.top-bar i { color: var(--accent-blue); margin-right: 8px; }
.top-bar-divider { margin: 0 14px; color: rgba(255, 255, 255, 0.3); }
@media (max-width: 767.98px) { .top-bar { display: none; } }

.navbar {
  padding: 0;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  z-index: 1040;
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.navbar-brand {
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--navy-blue) !important;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 0;
}
.navbar-brand .logo-img { max-height: 55px; width: auto; display: block; }
.navbar-brand .logo-icon {
  width: 45px; height: 45px; background: var(--mega-blue); border-radius: 4px;
  display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem;
}
.navbar-brand .brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.navbar-brand .brand-text span { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--mega-blue); font-weight: 600; margin-top: 4px; }

.navbar-nav .nav-link {
  color: var(--navy-blue) !important;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 30px 16px !important;
  position: relative;
  transition: var(--transition);
}
.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 22px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--mega-blue);
  transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { width: calc(100% - 32px); }
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active { color: var(--mega-blue) !important; }
.navbar .btn-quote { margin-left: 16px; padding: 12px 24px; }
.navbar-toggler { border: none; padding: 12px; font-size: 1.3rem; color: var(--navy-blue); }
.navbar-toggler:focus { box-shadow: none; }
@media (max-width: 991.98px) {
  .navbar-nav .nav-link { padding: 14px 16px !important; }
  .navbar-nav .nav-link::after { display: none; }
  .navbar .btn-quote { margin: 16px; }
  .navbar-collapse { border-top: 1px solid var(--border-color); padding-bottom: 16px; }
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 180px 0 120px;
}
.hero-bg {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(rgba(11,31,58,0.55), rgba(11,31,58,0.55)), url('../images/logo.jpg') center 20%/contain no-repeat, var(--navy-blue); z-index: -2;
}
.hero-video {
  display: none;
}
.hero-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.5; z-index: 0;
}
.hero .container { position: relative; z-index: 1; color: var(--white); }
.hero h1 { color: var(--white); font-weight: 800; margin-bottom: 24px; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero .lead { font-size: 1.25rem; color: var(--white); margin-bottom: 36px; max-width: 700px; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2); padding: 10px 20px; border-radius: 50px;
  font-size: 0.85rem; font-weight: 600; margin-bottom: 24px;
  color: var(--white);
}
.hero-badge i { color: var(--accent-blue); }

.trust-bar {
  background: var(--white); padding: 40px 0; border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm); position: relative; z-index: 2; margin-top: -80px;
}
.trust-item {
  display: flex; align-items: center; justify-content: center; gap: 16px; padding: 20px; border-right: 1px solid var(--border-color);
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 2.2rem; color: var(--mega-blue); width: 60px; height: 60px;
  display: flex; align-items: center; justify-content: center; background: var(--light-grey); border-radius: 50%;
  transition: var(--transition);
}
.trust-item:hover i { background: var(--mega-blue); color: var(--white); transform: rotateY(180deg); }
.trust-item h5 { margin-bottom: 4px; font-size: 1.05rem; }
.trust-item p { margin-bottom: 0; font-size: 0.9rem; color: var(--text-muted); }
@media (max-width: 991.98px) {
  .trust-bar { margin-top: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-color); }
  .trust-item:last-child { border-bottom: none; }
}

.feature-card {
  background: var(--white); border: 1px solid var(--border-color); border-radius: var(--radius-lg);
  padding: 40px 30px; transition: var(--transition); height: 100%; position: relative; overflow: hidden; z-index: 1;
}
.feature-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--mega-blue);
  transition: var(--transition); z-index: -1;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.feature-card:hover::before { height: 100%; }
.feature-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--mega-blue) 0%, var(--accent-blue) 100%);
  color: var(--white); border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 24px; transition: var(--transition);
}
.feature-card:hover .feature-icon { transform: scale(1.1) rotate(-5deg); }
.feature-card h4 { margin-bottom: 14px; font-size: 1.25rem; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; }

.service-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: var(--transition); height: 100%; border: 1px solid var(--border-color);
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-xl); }
.service-image {
  height: 220px; background: linear-gradient(135deg, var(--navy-blue) 0%, var(--mega-blue) 100%);
  position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.service-image::before {
  content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
  animation: pulse 6s ease-in-out infinite;
}
.service-image img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }
.service-image i { font-size: 3.5rem; color: var(--white); position: relative; z-index: 1; transition: var(--transition); }
.service-card:hover .service-image i { transform: scale(1.2); }
.service-body { padding: 30px; }
.service-body h4 { margin-bottom: 14px; font-size: 1.25rem; }
.service-body p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 20px; }
.service-benefits { list-style: none; padding: 0; margin: 0 0 24px; }
.service-benefits li { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 10px; font-size: 0.9rem; color: var(--text-body); }
.service-benefits li i { color: var(--mega-blue); margin-top: 3px; font-size: 0.85rem; }

.stats-section { background: var(--navy-blue); color: var(--white); padding: 80px 0; }
.stats-section h2 { color: var(--white); }
.stat-item { text-align: center; padding: 30px; position: relative; }
.stat-item:not(:last-child)::after {
  content: ''; position: absolute; right: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.15);
}
.stat-number {
  font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 800; color: var(--white); line-height: 1;
  margin-bottom: 10px; display: flex; align-items: center; justify-content: center;
}
.stat-number .suffix { color: var(--accent-blue); margin-left: 4px; }
.stat-label { font-size: 1rem; color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 1.5px; font-weight: 500; }
@media (max-width: 767.98px) {
  .stat-item:not(:last-child)::after { display: none; }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
}

.timeline { position: relative; padding: 40px 0; }
.timeline::before { content: ''; position: absolute; left: 50%; top: 0; bottom: 0; width: 2px; background: var(--border-color); transform: translateX(-50%); }
.timeline-item { position: relative; margin-bottom: 50px; width: 50%; padding: 0 40px; }
.timeline-item:nth-child(odd) { left: 0; text-align: right; }
.timeline-item:nth-child(even) { left: 50%; text-align: left; }
.timeline-dot { position: absolute; width: 24px; height: 24px; background: var(--mega-blue); border: 4px solid var(--white); border-radius: 50%; top: 0; box-shadow: var(--shadow-md); }
.timeline-item:nth-child(odd) .timeline-dot { right: -12px; }
.timeline-item:nth-child(even) .timeline-dot { left: -12px; }
.timeline-content { background: var(--white); padding: 28px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-color); }
.timeline-year { display: inline-block; background: var(--mega-blue); color: var(--white); padding: 6px 16px; border-radius: 4px; font-weight: 700; font-size: 0.9rem; margin-bottom: 12px; }
@media (max-width: 767.98px) {
  .timeline::before { left: 20px; }
  .timeline-item { width: 100%; left: 0 !important; text-align: left !important; padding-left: 60px; padding-right: 0; }
  .timeline-item .timeline-dot { left: 8px !important; right: auto !important; }
}

.workshop-hero { background: linear-gradient(135deg, var(--navy-blue) 0%, var(--mega-blue) 100%); padding: 140px 0 100px; color: var(--white); }
.workshop-hero h1, .workshop-hero h2 { color: var(--white); }
.workshop-hero .lead { color: rgba(255,255,255,0.85); }

.equipment-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  transition: var(--transition); height: 100%; border: 1px solid var(--border-color);
}
.equipment-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.equipment-image {
  height: 200px; background: var(--light-grey); position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.equipment-image::after {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,58,0.6) 100%); opacity: 0; transition: var(--transition);
}
.equipment-card:hover .equipment-image::after { opacity: 1; }
.equipment-image i { font-size: 3rem; color: var(--mega-blue); transition: var(--transition); }
.equipment-card:hover .equipment-image i { transform: scale(1.15); color: var(--white); z-index: 2; }
.equipment-body { padding: 26px; }
.equipment-body h5 { margin-bottom: 10px; font-size: 1.1rem; }
.equipment-body p { color: var(--text-muted); font-size: 0.92rem; margin-bottom: 0; }

.gallery-item { position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; cursor: pointer; box-shadow: var(--shadow-sm); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.gallery-overlay {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(180deg, transparent 0%, rgba(11,31,58,0.85) 100%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 24px; opacity: 0; transition: var(--transition);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay h5 { color: var(--white); margin-bottom: 6px; font-size: 1.1rem; }
.gallery-overlay p { color: rgba(255,255,255,0.8); margin-bottom: 0; font-size: 0.9rem; }
.gallery-overlay .zoom-icon {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 50px; height: 50px; background: var(--mega-blue); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem; transition: var(--transition);
}

.lightbox {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11,31,58,0.95);
  z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-content { position: relative; max-width: 90%; max-height: 90%; }
.lightbox-content img { max-width: 100%; max-height: 90vh; border-radius: var(--radius); box-shadow: var(--shadow-xl); }
.lightbox-close { position: absolute; top: -50px; right: 0; color: var(--white); font-size: 2rem; cursor: pointer; transition: var(--transition); }
.lightbox-close:hover { color: var(--accent-blue); transform: rotate(90deg); }
.lightbox-caption { position: absolute; bottom: -60px; left: 0; color: var(--white); font-size: 1.1rem; font-weight: 600; }
.lightbox-nav {
  position: absolute; top: 50%; transform: translateY(-50%); width: 50px; height: 50px;
  background: rgba(255,255,255,0.15); color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); border: none; font-size: 1.2rem;
}
.lightbox-nav:hover { background: var(--mega-blue); }
.lightbox-prev { left: -80px; }
.lightbox-next { right: -80px; }
@media (max-width: 767.98px) { .lightbox-prev { left: 10px; } .lightbox-next { right: 10px; } }

.industry-card {
  position: relative; border-radius: var(--radius-lg); overflow: hidden; height: 100%; min-height: 420px; box-shadow: var(--shadow-md); transition: var(--transition);
}
.industry-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); }
.industry-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, var(--navy-blue) 0%, var(--mega-blue) 100%); z-index: 0; }
.industry-bg::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  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='%23ffffff' 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.5;
}
.industry-content { position: absolute; bottom: 0; left: 0; width: 100%; padding: 34px; z-index: 1; background: linear-gradient(180deg, transparent 0%, rgba(11,31,58,0.95) 30%); }
.industry-icon {
  width: 70px; height: 70px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: var(--white); margin-bottom: 20px; transition: var(--transition);
}
.industry-card:hover .industry-icon { background: var(--mega-blue); transform: rotate(5deg) scale(1.1); }
.industry-content h4 { color: var(--white); margin-bottom: 12px; font-size: 1.35rem; }
.industry-content p { color: rgba(255,255,255,0.85); font-size: 0.95rem; margin-bottom: 18px; }
.industry-content ul { list-style: none; padding: 0; margin: 0; }
.industry-content ul li { color: rgba(255,255,255,0.75); font-size: 0.9rem; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.industry-content ul li i { color: var(--accent-blue); font-size: 0.8rem; }

.why-card {
  display: flex; align-items: flex-start; gap: 20px; padding: 28px; background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border-color); transition: var(--transition); height: 100%;
}
.why-card:hover { box-shadow: var(--shadow-md); border-color: var(--mega-blue); transform: translateX(8px); }
.why-icon { width: 60px; height: 60px; min-width: 60px; background: var(--light-grey); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--mega-blue); transition: var(--transition); }
.why-card:hover .why-icon { background: var(--mega-blue); color: var(--white); }
.why-content h5 { margin-bottom: 8px; font-size: 1.1rem; }
.why-content p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.clients-section { background: var(--light-grey); }
.client-logo-track { display: flex; animation: scroll 30s linear infinite; width: max-content; }
.client-logo-wrapper { overflow: hidden; padding: 30px 0; position: relative; }
.client-logo-wrapper::before,
.client-logo-wrapper::after { content: ''; position: absolute; top: 0; width: 120px; height: 100%; z-index: 2; pointer-events: none; }
.client-logo-wrapper::before { left: 0; background: linear-gradient(90deg, var(--light-grey) 0%, transparent 100%); }
.client-logo-wrapper::after { right: 0; background: linear-gradient(270deg, var(--light-grey) 0%, transparent 100%); }
.client-logo { width: 220px; height: 120px; background: var(--white); border-radius: var(--radius); margin: 0 16px; display: flex; align-items: center; justify-content: center; padding: 24px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.client-logo:hover { box-shadow: var(--shadow-md); transform: scale(1.05); }
.client-logo img { max-width: 100%; max-height: 60px; object-fit: contain; filter: grayscale(0%); opacity: 1; transition: var(--transition); }
.client-logo.logo-large img { max-height: 105px; }
.client-logo-placeholder { font-size: 1.1rem; font-weight: 700; color: var(--navy-blue); text-align: center; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

.quote-section { background: var(--navy-blue); color: var(--white); padding: 80px 0; }
.quote-section blockquote { font-size: 1.6rem; font-weight: 500; font-style: italic; border-left: 4px solid var(--mega-blue); padding-left: 30px; margin: 0 auto; max-width: 900px; color: rgba(255,255,255,0.95); }
.quote-section cite { display: block; margin-top: 20px; font-size: 1rem; color: var(--accent-blue); font-style: normal; font-weight: 600; }

.cta-section { background: linear-gradient(135deg, var(--mega-blue) 0%, var(--navy-blue) 100%); color: var(--white); padding: 100px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 60%); animation: rotate 20s linear infinite; }
.cta-section h2 { color: var(--white); position: relative; z-index: 1; }
.cta-section p { color: rgba(255,255,255,0.85); position: relative; z-index: 1; max-width: 700px; margin: 0 auto 36px; }
.cta-section .btn { position: relative; z-index: 1; }
@keyframes rotate { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
@keyframes pulse { 0%, 100% { transform: scale(1); opacity: 0.5; } 50% { transform: scale(1.1); opacity: 0.8; } }

.contact-card { background: var(--white); padding: 34px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-color); height: 100%; transition: var(--transition); }
.contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.contact-icon { width: 60px; height: 60px; background: var(--light-grey); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; color: var(--mega-blue); margin-bottom: 20px; transition: var(--transition); }
.contact-card:hover .contact-icon { background: var(--mega-blue); color: var(--white); }
.contact-card h5 { margin-bottom: 14px; font-size: 1.15rem; }
.contact-card p { margin-bottom: 8px; color: var(--text-muted); font-size: 0.95rem; }
.contact-card a { color: var(--mega-blue); font-weight: 600; }

.contact-form-card { background: var(--white); padding: 42px; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); border: 1px solid var(--border-color); }
.form-label { font-weight: 600; font-size: 0.9rem; color: var(--navy-blue); margin-bottom: 8px; }
.form-control, .form-select { padding: 14px 18px; border: 1px solid var(--border-color); border-radius: var(--radius); font-size: 0.95rem; transition: var(--transition); color: var(--text-body); }
.form-control:focus, .form-select:focus { border-color: var(--mega-blue); box-shadow: 0 0 0 4px rgba(0,87,184,0.1); }
.form-control::placeholder { color: #a0aec0; }
.map-container { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--border-color); height: 100%; min-height: 450px; }
.map-container iframe { width: 100%; height: 100%; min-height: 450px; border: 0; }
.map-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 2; display: flex; align-items: center; justify-content: center; background: rgba(11,31,58,0); transition: var(--transition); text-decoration: none; }
.map-overlay:hover { background: rgba(11,31,58,0.25); }
.map-overlay .btn { opacity: 0; transform: translateY(10px); transition: var(--transition); }
.map-overlay:hover .btn { opacity: 1; transform: translateY(0); }

.footer { background: var(--navy-blue); color: rgba(255,255,255,0.7); padding: 80px 0 0; font-size: 0.95rem; }
.footer-brand { font-size: 1.5rem; font-weight: 800; color: var(--white); display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.footer-brand .logo-icon { width: 45px; height: 45px; background: var(--mega-blue); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.4rem; }
.footer h5 { color: var(--white); font-size: 1.1rem; margin-bottom: 24px; position: relative; padding-bottom: 12px; }
.footer h5::after { content: ''; position: absolute; bottom: 0; left: 0; width: 40px; height: 3px; background: var(--mega-blue); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,0.7); transition: var(--transition); display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--accent-blue); font-weight: 700; font-size: 1.2rem; }
.footer-links a:hover { color: var(--white); padding-left: 8px; }
.footer-contact p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.footer-contact i { color: var(--accent-blue); margin-top: 4px; font-size: 1rem; }
.footer-contact a { color: rgba(255,255,255,0.7); }
.footer-contact a:hover { color: var(--white); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-links a { width: 42px; height: 42px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); transition: var(--transition); }
.social-links a:hover { background: var(--mega-blue); transform: translateY(-4px); color: var(--white); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 24px 0; margin-top: 60px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-certifications { display: flex; gap: 20px; align-items: center; }
.footer-certifications span { display: inline-flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 600; color: var(--white); background: rgba(255,255,255,0.1); padding: 8px 14px; border-radius: 4px; }
.footer-certifications i { color: var(--accent-blue); }
@media (max-width: 767.98px) { .footer-bottom { flex-direction: column; text-align: center; } }

.page-header { background: linear-gradient(rgba(11,31,58,0.55), rgba(11,31,58,0.55)), url('../images/logo.jpg') center 20%/contain no-repeat, var(--navy-blue); min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; overflow: hidden; padding: 180px 0 120px; color: var(--white); }
.page-header::before {
  content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.03' fill-rule='evenodd'/%3E%3C/svg%3E"); opacity: 0.5;
}
.page-header h1 { color: var(--white); font-weight: 800; margin-bottom: 16px; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.page-header p { color: rgba(255,255,255,0.85); font-size: 1.15rem; max-width: 700px; text-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.page-header .container { position: relative; z-index: 1; }
.breadcrumb-nav { background: rgba(255,255,255,0.05); display: inline-flex; padding: 10px 22px; border-radius: 50px; font-size: 0.85rem; margin-bottom: 20px; }
.breadcrumb-nav a { color: rgba(255,255,255,0.8); }
.breadcrumb-nav a:hover { color: var(--white); }
.breadcrumb-nav span { color: rgba(255,255,255,0.4); margin: 0 10px; }
.breadcrumb-nav .current { color: var(--white); font-weight: 600; }

.testimonial-card { background: var(--white); padding: 36px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); border: 1px solid var(--border-color); position: relative; margin-top: 30px; }
.testimonial-card::before { content: '"'; position: absolute; top: 20px; left: 30px; font-size: 5rem; color: var(--mega-blue); opacity: 0.15; font-family: Georgia, serif; line-height: 1; }
.testimonial-card p { font-size: 1.05rem; color: var(--text-body); margin-bottom: 24px; position: relative; z-index: 1; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-author-avatar { width: 55px; height: 55px; background: var(--mega-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1.2rem; }
.testimonial-author-info h6 { margin-bottom: 2px; font-size: 1rem; }
.testimonial-author-info span { font-size: 0.85rem; color: var(--text-muted); }

.value-card { background: var(--white); border-radius: var(--radius-lg); padding: 34px; text-align: center; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); transition: var(--transition); height: 100%; }
.value-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.value-number { width: 70px; height: 70px; background: var(--mega-blue); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; font-weight: 800; margin: 0 auto 20px; transition: var(--transition); }
.value-card:hover .value-number { background: var(--navy-blue); transform: scale(1.1); }
.value-card h5 { margin-bottom: 12px; font-size: 1.2rem; }
.value-card p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }

.parallax-section { background-attachment: fixed; background-position: center; background-repeat: no-repeat; background-size: cover; position: relative; padding: 120px 0; }
.parallax-section::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(11,31,58,0.85); }
.parallax-section .container { position: relative; z-index: 1; }
@media (max-width: 991.98px) { .parallax-section { background-attachment: scroll; } }

.img-card { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); height: 100%; position: relative; }
.img-card img { width: 100%; height: 100%; object-fit: cover; min-height: 350px; transition: var(--transition); }
.img-card:hover img { transform: scale(1.05); }
.video-card { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }

.img-placeholder { width: 100%; height: 100%; min-height: 250px; background: linear-gradient(135deg, var(--navy-blue) 0%, var(--mega-blue) 100%); display: flex; align-items: center; justify-content: center; color: var(--white); position: relative; overflow: hidden; }
.img-placeholder::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%; 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='%23ffffff' 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"); }
.img-placeholder i { font-size: 3.5rem; position: relative; z-index: 1; opacity: 0.9; }
.img-placeholder-label { position: absolute; bottom: 24px; left: 24px; z-index: 1; color: var(--white); font-weight: 600; font-size: 1.1rem; }

.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 14px; font-size: 1rem; color: var(--text-body); }
.check-list li i { width: 26px; height: 26px; min-width: 26px; background: rgba(0,87,184,0.1); color: var(--mega-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; margin-top: 2px; }

.table-responsive { border-radius: var(--radius-lg); border: 1px solid var(--border-color); overflow: hidden; }
.table { margin-bottom: 0; }
.table thead th { background: var(--navy-blue); color: var(--white); font-weight: 600; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; padding: 16px; border: none; }
.table tbody td { padding: 16px; border-color: var(--border-color); color: var(--text-body); font-size: 0.95rem; }
.table tbody tr:hover { background: var(--light-grey); }

.accordion-item { border: 1px solid var(--border-color); border-radius: var(--radius) !important; margin-bottom: 12px; overflow: hidden; }
.accordion-button { padding: 20px 24px; font-weight: 600; color: var(--navy-blue); background: var(--white); box-shadow: none; }
.accordion-button:not(.collapsed) { background: var(--mega-blue); color: var(--white); }
.accordion-button:not(.collapsed)::after { filter: brightness(0) invert(1); }
.accordion-button:focus { box-shadow: none; border-color: var(--border-color); }
.accordion-body { padding: 24px; color: var(--text-body); }

.badge-cert { display: inline-flex; align-items: center; gap: 8px; background: var(--white); color: var(--navy-blue); padding: 10px 18px; border-radius: 50px; font-weight: 700; font-size: 0.85rem; box-shadow: var(--shadow-sm); border: 1px solid var(--border-color); }
.badge-cert i { color: var(--mega-blue); }
.why-card[data-bs-toggle="modal"], .badge-cert[data-bs-toggle="modal"], .service-card[data-bs-toggle="modal"] { cursor: pointer; }

.process-step { text-align: center; padding: 30px; position: relative; }
.process-step::after { content: ''; position: absolute; top: 60px; right: -50%; width: 100%; height: 2px; background: var(--border-color); z-index: 0; }
.process-step:last-child::after { display: none; }
.process-number { width: 80px; height: 80px; background: var(--white); border: 3px solid var(--mega-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; font-weight: 800; color: var(--mega-blue); margin: 0 auto 20px; position: relative; z-index: 1; transition: var(--transition); }
.process-step:hover .process-number { background: var(--mega-blue); color: var(--white); transform: scale(1.1); }
.process-step h5 { font-size: 1.15rem; margin-bottom: 10px; }
.process-step p { color: var(--text-muted); font-size: 0.95rem; margin-bottom: 0; }
@media (max-width: 991.98px) { .process-step::after { display: none; } }

.fade-in-up { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease-out, transform 0.8s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--navy-blue); z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s ease, visibility 0.5s ease; }
.preloader.hidden { opacity: 0; visibility: hidden; }
.preloader-content { text-align: center; }
.preloader-icon { width: 80px; height: 80px; background: var(--mega-blue); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 2rem; margin: 0 auto 20px; animation: rotate 1.5s linear infinite; }
.preloader-text { color: var(--white); font-size: 1.2rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

.navbar-expand-lg .navbar-nav .dropdown-menu { border: none; box-shadow: var(--shadow-lg); border-radius: var(--radius); padding: 12px 0; }
.dropdown-item { padding: 10px 24px; font-weight: 600; color: var(--navy-blue); font-size: 0.9rem; }
.dropdown-item:hover { background: var(--light-grey); color: var(--mega-blue); }
.dropdown-item:focus { background: var(--light-grey); }

.nav-pills .nav-link { color: var(--navy-blue); font-weight: 600; padding: 14px 28px; border-radius: 50px; margin: 0 6px 10px; border: 1px solid var(--border-color); }
.nav-pills .nav-link.active { background: var(--mega-blue); border-color: var(--mega-blue); }
.nav-pills .nav-link:hover { background: var(--light-grey); }

.gallery-filter-btn { background: var(--white); border: 1px solid var(--border-color); color: var(--navy-blue); padding: 10px 24px; border-radius: 4px; font-weight: 600; font-size: 0.9rem; margin: 0 5px 10px; transition: var(--transition); }
.gallery-filter-btn:hover, .gallery-filter-btn.active { background: var(--mega-blue); color: var(--white); border-color: var(--mega-blue); }

@media (max-width: 767.98px) {
  .hero, .page-header { padding: 140px 0 80px; min-height: auto; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; text-align: center; }
  .trust-item { flex-direction: column; text-align: center; }
  .section-header { margin-bottom: 40px; }
  .floating-whatsapp { bottom: 20px; right: 20px; width: 50px; height: 50px; font-size: 1.5rem; }
  .back-to-top { bottom: 85px; right: 20px; width: 44px; height: 44px; }
}

@media (min-width: 992px) {
  .container-custom { max-width: 1200px; }
}

.img-fluid-cover { width: 100%; height: 100%; object-fit: cover; }
.min-h-300 { min-height: 300px; }
.min-h-400 { min-height: 400px; }
.min-h-500 { min-height: 500px; }
