/* =========================================
   MARGOPADHYZ - Main Stylesheet
   ========================================= */

/* CSS Variables */
:root {
  --primary: #f36023;
  --primary-dark: #d94f1d;
  --primary-light: #ff8c5a;
  --secondary: #1a1a2e;
  --dark: #111;
  --gray: #6c757d;
  --light-bg: #f8f9fa;
  --white: #fff;
  --transition: all 0.35s ease;
  --shadow: 0 10px 40px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--white);
  font-family: 'Poppins', 'Mukta Mahee', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  overflow-x: hidden;
}
html, body { overflow-x: hidden; }
a { transition: var(--transition); text-decoration: none; color: var(--primary); }
a:hover { text-decoration: none; color: var(--primary-dark); }
h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', 'Georgia', serif; color: var(--dark); line-height: 1.3; }
img { max-width: 100%; }
::selection { color: #fff; background: var(--primary); }

/* Utility */
.section { padding: 80px 0; }
.uppercase { text-transform: uppercase; letter-spacing: .15em; }

/* Buttons */
.btn { padding: 12px 32px; border-radius: 50px; font-weight: 500; font-size: 14px; letter-spacing: .1em; transition: var(--transition); outline: none !important; box-shadow: none !important; }
.btn-primary { background: var(--primary); border-color: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243,96,35,0.4) !important; }
.btn-outline-light:hover { background: #fff; color: var(--primary); transform: translateY(-2px); }
.btn-outline-orange { color: var(--primary); border: 2px solid var(--primary); background-color: transparent; }
.btn-outline-orange:hover, .btn-outline-orange:focus { color: #fff; background-color: var(--primary); border-color: var(--primary); }

/* Navbar */
.site-header { position: fixed; top: 0; width: 100%; z-index: 1000; transition: var(--transition); }
.site-header.scrolled { background: rgba(15,15,30,0.97) !important; box-shadow: 0 4px 30px rgba(0,0,0,0.3); backdrop-filter: blur(12px); }
.navbar { padding: 10px 0; }
.navbar-brand img { border-radius: 10px; border: 2px solid rgba(255,255,255,0.3); transition: var(--transition); height: 80px !important; }
.navbar-brand:hover img { border-color: var(--primary); }
.navbar-nav .nav-link { color: #fff !important; font-size: 14px; font-weight: 500; padding: 8px 18px !important; border-radius: 25px; border: 2px solid transparent; transition: var(--transition); letter-spacing: .05em; margin: 0 3px; }
.navbar-nav .nav-link:hover, .navbar-nav .nav-item.active .nav-link { color: var(--primary) !important; border-color: var(--primary); background: rgba(243,96,35,0.1); }
@media (max-width: 991px) {
  .navbar-collapse { background: rgba(15,15,30,0.98); border-radius: 15px; margin-top: 12px; padding: 20px; border: 1px solid rgba(243,96,35,0.2); }
  .navbar-nav .nav-link { display: block; margin: 6px 0; border: none; font-size: 16px; }
  .navbar-brand img { height: 55px !important; }
}

/* Hero */
.site-hero { background-size: cover; background-position: center; height: 100vh; min-height: 650px; width: 100%; position: relative; display: flex; align-items: center; }
.site-hero.overlay::before { content: ""; position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.42) 100%); }
.site-hero-inner { position: relative; z-index: 2; width: 100%; min-height: 100%; padding: 120px 0 60px; display: flex; align-items: center; }
.site-hero .heading { color: #fff; font-size: clamp(28px, 5vw, 64px); font-weight: 700; text-shadow: 0 2px 20px rgba(0,0,0,0.5); margin-bottom: 15px; }
.site-hero .sub-heading { color: rgba(255,255,255,0.9); font-size: clamp(15px, 2vw, 22px); font-weight: 300; }
.hero-badge { display: inline-block; background: var(--primary); color: #fff; padding: 6px 20px; border-radius: 25px; font-size: 13px; letter-spacing: .15em; text-transform: uppercase; margin-bottom: 20px; font-weight: 500; }

/* Quick Services Bar */
.quick-services { background: #fff; padding: 40px 0; box-shadow: 0 5px 20px rgba(0,0,0,0.07); position: relative; z-index: 5; }
.quick-service-item { text-align: center; padding: 15px 10px; transition: var(--transition); }
.quick-service-item:hover { transform: translateY(-5px); }
.quick-service-icon { width: 55px; height: 55px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 14px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; color: #fff; box-shadow: 0 8px 20px rgba(243,96,35,0.3); }
.quick-service-item h6 { font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; color: var(--dark); margin: 0; font-family: 'Poppins', sans-serif; }
.quick-service-item p { font-size: 12px; color: var(--gray); margin: 4px 0 0; line-height: 1.4; }

/* Section headings */
.section-heading { font-size: clamp(24px, 3.5vw, 40px); font-weight: 700; color: var(--dark); margin-bottom: 15px; position: relative; }
.section-heading::after { content: ""; display: block; width: 55px; height: 4px; background: var(--primary); margin-top: 14px; border-radius: 2px; }
.text-center .section-heading::after { margin-left: auto; margin-right: auto; }

/* Card grid */
.visit-section { background: var(--white); padding: 80px 0; }
.media-custom { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: #fff; height: 400px !important; }
.media-custom:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.media-custom img { width: 100%; height: 200px; object-fit: cover; transition: var(--transition); }
.media-custom:hover img { transform: scale(1.05); }
.media-body { padding: 18px 20px; }
.media-body h2 { font-size: 17px; font-weight: 700; }
.media-body h2 a { color: var(--dark); transition: var(--transition); }
.media-body h2 a:hover { color: var(--primary); }
.media-body span { color: var(--gray); font-size: 14px; line-height: 1.7; }

/* Why section */
.why-section { background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%); padding: 80px 0; position: relative; overflow: hidden; }
.why-section::before { content: ""; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%; background: radial-gradient(circle, rgba(243,96,35,0.07) 0%, transparent 60%); }
.why-card { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius-lg); padding: 30px; height: 100%; transition: var(--transition); position: relative; overflow: hidden; margin-bottom: 25px; }
.why-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--primary); }
.why-card:hover { background: rgba(243,96,35,0.1); border-color: rgba(243,96,35,0.3); transform: translateY(-5px); }
.why-card h4 { color: #fff; font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 15px; font-family: 'Poppins', sans-serif; }
.why-card ul { list-style: none; padding: 0; margin: 0; }
.why-card ul li { color: rgba(255,255,255,0.75); font-size: 14px; padding: 6px 0; border-bottom: 1px solid rgba(255,255,255,0.07); display: flex; align-items: flex-start; gap: 10px; }
.why-card ul li::before { content: "✓"; color: var(--primary); font-weight: bold; flex-shrink: 0; }
.why-highlight { display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%); border-radius: var(--radius-lg); padding: 50px 40px; height: 100%; text-align: center; min-height: 280px; }
.why-highlight h2 { color: #fff; font-size: clamp(20px, 3vw, 36px); font-weight: 700; text-shadow: 0 2px 10px rgba(0,0,0,0.3); margin: 0; }

/* Stats */
.stats-section { background: #f8f9fa; padding: 70px 0; }
.stat-box { text-align: center; padding: 30px 20px; }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(42px, 6vw, 72px); font-weight: 700; color: var(--primary); line-height: 1; display: block; }
.stat-label { font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); margin-top: 10px; }

/* Slider */
.slider-section { background: var(--white); padding: 80px 0; }
.home-slider .slider-item img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--radius); }
.owl-prev, .owl-next { background: var(--primary) !important; color: #fff !important; border-radius: 50% !important; width: 42px !important; height: 42px !important; }
.owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span { background: var(--primary) !important; }

/* Services table */
.services-table { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); overflow: hidden; }
.services-table thead th { background: linear-gradient(135deg, var(--secondary), #2d2d4e); color: #fff; border: none; padding: 18px 20px; font-weight: 600; letter-spacing: .05em; }
.services-table tbody tr { transition: var(--transition); border-bottom: 1px solid #f0f0f0; }
.services-table tbody tr:hover { background: #fff8f5; }
.services-table td { padding: 16px 20px; vertical-align: middle; border: none; font-size: 14px; line-height: 1.6; }
.services-table td:first-child { font-weight: 600; color: var(--primary); width: 28%; }

/* Half sections */
.half { min-height: 500px; }
.half .text { padding: 60px 50px; width: 50%; background: var(--light-bg); display: flex; flex-direction: column; justify-content: center; }
.half .image { background-size: cover; background-position: center; width: 50%; min-height: 400px; }
@media (max-width: 768px) {
  .half { flex-direction: column !important; }
  .half .text, .half .image { width: 100%; }
  .half .text { padding: 40px 25px; order: 2; }
  .half .image { min-height: 280px; order: 1; }
}
.half .text h5 { text-transform: uppercase; font-size: 13px; letter-spacing: .2em; color: var(--primary); font-weight: 600; }
.half .text h3 { font-size: clamp(22px, 3vw, 36px); font-weight: 700; }
.half .text p { font-size: 14px; color: var(--gray); font-weight: 500; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; display: flex; align-items: flex-start; gap: 8px; }
.half .text p::before { content: "✓"; color: var(--primary); font-weight: bold; flex-shrink: 0; margin-top: 2px; }

/* About */
.about-main { padding: 70px 0; }
.about-block { padding: 30px 35px; margin-bottom: 20px; border-radius: var(--radius); background: #fff; box-shadow: 0 5px 25px rgba(0,0,0,0.06); border-left: 4px solid var(--primary); transition: var(--transition); }
.about-block:hover { box-shadow: var(--shadow); transform: translateX(5px); }
.about-block h2 { font-size: 21px; font-weight: 700; color: var(--dark); margin-bottom: 12px; }
.about-block p { color: var(--gray); margin-bottom: 10px; font-size: 15px; }

/* Team */
.team-section { background: var(--light-bg); padding: 80px 0; }
.team-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); text-align: center; padding: 30px 20px; height: 100%; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-avatar { width: 100px; height: 100px; border-radius: 50%; object-fit: cover; border: 4px solid var(--primary); margin-bottom: 15px; background: #eee; }
.team-card h4 { font-size: 17px; font-weight: 700; color: var(--dark); margin-bottom: 5px; }
.team-card .role { color: var(--primary); font-size: 12px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.team-card .quals { color: var(--gray); font-size: 13px; line-height: 1.6; margin-top: 12px; }

/* Training */
.training-section { padding: 80px 0; }
.training-container { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 30px; align-items: start; }
@media (max-width: 900px) { .training-container { grid-template-columns: 1fr; } }
.training-list h2 { font-size: 22px; font-weight: 700; margin-bottom: 20px; color: var(--dark); }
.training-list ul { list-style: none; padding: 0; }
.training-list ul li { padding: 10px 0; border-bottom: 1px solid #eee; font-size: 14px; color: var(--gray); display: flex; gap: 10px; align-items: flex-start; }
.training-list ul li::before { content: "→"; color: var(--primary); flex-shrink: 0; }
.training-image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); }
.training-highlight { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); border-radius: var(--radius); padding: 35px; }
.training-highlight h3 { color: #fff; font-size: 18px; font-weight: 700; margin: 0; }

/* Ventures */
.ventures-section { padding: 60px 0; background: var(--light-bg); }
.ventures-title { font-size: 36px; font-weight: 700; text-align: center; margin-bottom: 40px; color: var(--dark); }
.ventures-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 25px; }
@media (max-width: 768px) { .ventures-grid { grid-template-columns: repeat(2, 1fr); } }
.venture-item { background: #fff; border-radius: var(--radius); padding: 25px 15px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.venture-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.venture-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--primary), var(--primary-light)); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 14px; font-size: 20px; }
.venture-item p { color: var(--dark); font-weight: 600; font-size: 14px; margin: 0; }

/* Partners */
.auth-section { padding: 80px 0; }
.auth-logo { display: flex; align-items: center; justify-content: center; padding: 20px; transition: var(--transition); filter: grayscale(30%); }
.auth-logo:hover { filter: grayscale(0); transform: scale(1.08); }
.auth-logo img { max-height: 80px; max-width: 160px; object-fit: contain; }
.clients-section { background: var(--light-bg); padding: 80px 0; }
.client-logo { background: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; padding: 20px; height: 120px; box-shadow: 0 3px 15px rgba(0,0,0,0.07); transition: var(--transition); margin-bottom: 25px; filter: grayscale(50%); }
.client-logo:hover { box-shadow: var(--shadow); transform: translateY(-3px); filter: grayscale(0); }
.client-logo img { max-height: 80px; max-width: 140px; object-fit: contain; }

/* Contact */
.contact-section { padding: 80px 0; }
.contact-card { background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); overflow: hidden; display: grid; grid-template-columns: 1fr 1.4fr; min-height: 550px; }
@media (max-width: 768px) { .contact-card { grid-template-columns: 1fr; } }
.contact-info-side { background: linear-gradient(135deg, var(--secondary) 0%, #16213e 100%); padding: 50px 40px; color: #fff; }
.contact-info-side h2 { color: #fff; font-size: 26px; margin-bottom: 30px; }
.info-item { display: flex; gap: 15px; margin-bottom: 25px; align-items: flex-start; }
.info-icon { width: 42px; height: 42px; background: rgba(243,96,35,0.2); border: 1px solid rgba(243,96,35,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 16px; color: var(--primary); }
.info-content p { margin: 0; font-size: 14px; color: rgba(255,255,255,0.8); line-height: 1.7; }
.info-content a { color: rgba(255,255,255,0.8); }
.info-content a:hover { color: var(--primary); }
.contact-form-side { padding: 50px 40px; }
.contact-form-side h2 { font-size: 26px; margin-bottom: 30px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; letter-spacing: .05em; color: var(--dark); margin-bottom: 8px; font-family: 'Poppins', sans-serif; }
.form-group input, .form-group textarea, .form-group select { width: 100%; padding: 12px 16px; border: 2px solid #e8e8e8; border-radius: 10px; font-size: 14px; color: #333; transition: var(--transition); outline: none; background: #fafafa; font-family: inherit; }
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); background: #fff; box-shadow: 0 0 0 4px rgba(243,96,35,0.1); }
.form-group textarea { height: 130px; resize: vertical; }
.btn-submit { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #fff; border: none; padding: 14px 40px; border-radius: 50px; font-size: 14px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; transition: var(--transition); width: 100%; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(243,96,35,0.4); }
.map-section { margin-top: 50px; border-radius: var(--radius); overflow: hidden; }
.map-section iframe { display: block; }

/* Footer */
.footer-section { background: linear-gradient(135deg, #0a0a1a 0%, #111 100%); color: rgba(255,255,255,0.7); padding: 70px 0 30px; }
.footer-logo img { height: 70px; border-radius: 10px; border: 2px solid rgba(255,255,255,0.15); margin-bottom: 20px; }
.footer-section h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 20px; font-weight: 700; position: relative; padding-bottom: 12px; font-family: 'Poppins', sans-serif; }
.footer-section h5::after { content: ""; position: absolute; bottom: 0; left: 0; width: 35px; height: 3px; background: var(--primary); border-radius: 2px; }
.footer-section .link { list-style: none; padding: 0; }
.footer-section .link li { margin-bottom: 10px; }
.footer-section .link a { color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-section .link a:hover { color: var(--primary); padding-left: 5px; }
.footer-contact p { color: rgba(255,255,255,0.65); font-size: 14px; margin-bottom: 10px; }
.footer-contact strong { color: rgba(255,255,255,0.85); }
.footer-socials { display: flex; flex-direction: column; gap: 12px; }
.footer-socials a { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,0.65); font-size: 14px; transition: var(--transition); }
.footer-socials a:hover { color: var(--primary); }
.footer-divider { border-color: rgba(255,255,255,0.1); margin: 30px 0 20px; }
.footer-bottom { text-align: center; color: rgba(255,255,255,0.4); font-size: 13px; }

/* Back to top */
.back-to-top { position: fixed; bottom: 30px; right: 30px; z-index: 999; width: 46px; height: 46px; background: var(--primary); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 5px 20px rgba(243,96,35,0.5); opacity: 0; transform: translateY(20px); transition: var(--transition); pointer-events: none; }
.back-to-top.visible { opacity: 1; transform: translateY(0); pointer-events: all; }
.back-to-top:hover { background: var(--primary-dark); color: #fff; transform: translateY(-3px); }

/* Responsive */
@media (max-width: 768px) {
  .section { padding: 55px 0; }
  .site-hero .heading { font-size: 28px; }
  .contact-form-side, .contact-info-side { padding: 35px 25px; }
}

/* =========================================
   SERVICES INFOGRAPHIC SECTION
   ========================================= */

.services-infographic {
  background: #f0f4f8;
  padding: 70px 0 60px;
  overflow: hidden;
  position: relative;
}

.svc-heading-wrap {
  margin-bottom: 50px;
}
.svc-eyebrow {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 5px 20px;
  border-radius: 25px;
  font-size: 12px;
  letter-spacing: .15em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.svc-main-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 700;
  color: var(--dark);
  margin: 0;
}

/* World-map watermark background */
.svc-world-bg {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='900' height='500' viewBox='0 0 900 500'%3E%3Cellipse cx='450' cy='250' rx='420' ry='220' fill='none' stroke='%23c8d8e8' stroke-width='1' stroke-dasharray='4,4'/%3E%3Cellipse cx='450' cy='250' rx='300' ry='160' fill='none' stroke='%23c8d8e8' stroke-width='1' stroke-dasharray='3,5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90% auto;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ---- Each Row ---- */
.svc-row {
  display: grid;
  grid-template-columns: 1fr 220px 1fr;
  align-items: center;
  gap: 0 10px;
  margin-bottom: 6px;
}

/* ---- Service Card ---- */
.svc-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 8px 0;
}
.svc-card--left  { justify-content: flex-end; }
.svc-card--right { justify-content: flex-start; }

/* Text blocks */
.svc-text { max-width: 220px; }
.svc-text--right { text-align: right; }
.svc-text--left  { text-align: left; }
.svc-text h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}
.svc-text p {
  font-size: 13px;
  color: #666;
  margin: 0;
  line-height: 1.5;
}

/* Icon boxes */
.svc-icon-box {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 24px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.15);
  transition: var(--transition);
}
.svc-icon-box:hover {
  transform: scale(1.12);
  box-shadow: 0 10px 28px rgba(0,0,0,0.2);
}
.svc-icon-box img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
.svc-icon-fallback {
  font-size: 22px;
}

/* Colour variants */
.svc-icon-box--teal   { background: linear-gradient(135deg, #1a6b5a, #22897a); }
.svc-icon-box--yellow { background: linear-gradient(135deg, #e8a800, #f5c200); }
.svc-icon-box--blue   { background: linear-gradient(135deg, #1b4f9e, #2962c8); }

/* ---- Centre Column ---- */
.svc-center-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Bulb / logo */
.svc-center-col--top {
  align-items: flex-start;
  padding-top: 10px;
  grid-row: span 3;
}
.svc-logo-bulb {
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.svc-logo-bulb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 20px rgba(0,0,0,0.15));
}

/* Centre bottom cards (Recruitment + Sponsor) */
.svc-center-col--bottom,
.svc-center-col--bottom2 {
  padding: 4px 0;
}
.svc-center-card {
  background: #fff;
  border-radius: 12px;
  padding: 14px 18px;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0,0,0,0.1);
  border-top: 3px solid #1a6b5a;
  transition: var(--transition);
}
.svc-center-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.15);
}
.svc-center-card h4 {
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 5px;
}
.svc-center-card p {
  font-size: 12px;
  color: #777;
  margin: 0;
  line-height: 1.4;
}
.svc-center-card--orange {
  border-top-color: var(--primary);
}
.svc-center-card--orange h4 {
  color: var(--primary);
}

/* ========= RESPONSIVE ========= */
@media (max-width: 900px) {
  .svc-row {
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 12px;
  }
  .svc-card { justify-content: flex-start !important; }
  .svc-text--right { text-align: left; }
  .svc-card--left { flex-direction: row-reverse; }
  .svc-center-col--top { display: none; } /* hide bulb on mobile, shown separately */
  .svc-logo-bulb { display: block; width: 130px; height: 130px; margin: 0 auto 20px; }
  .services-infographic .svc-world-bg::before {
    content: "";
    display: block;
  }
}

@media (max-width: 600px) {
  .svc-text { max-width: 160px; }
  .svc-text h4 { font-size: 14px; }
  .svc-text p { font-size: 12px; }
  .svc-icon-box { width: 46px; height: 46px; }
}
/* =========================================
   WAVE NAVBAR - Curved White Bar
   ========================================= */

/* Remove old navbar styles */
.site-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: transparent !important;
  box-shadow: none !important;
  backdrop-filter: none !important;
}

/* The wave bar itself */
.wave-navbar {
  background: #fff;
  position: relative;
  padding: 0 30px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 80px;
  /* Curved bottom wave */
  clip-path: ellipse(100% 100% at 50% 0%);
  /* Fallback for browsers without clip-path */
  border-radius: 0 0 60% 60% / 0 0 30px 30px;
}

/* Clip-path wave shape - large elliptical curve at bottom */
@supports (clip-path: ellipse(110% 100% at 50% 0%)) {
  .wave-navbar {
    clip-path: ellipse(110% 100% at 50% 0%);
    border-radius: 0;
    padding-bottom: 20px;
    min-height: 90px;
  }
}

/* Logo circle */
.wave-logo {
  display: flex;
  align-items: center;
  padding-left: 30px;
  flex-shrink: 0;
}
.wave-logo a {
  display: block;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  background: #fff;
  position: relative;
  /* Drop slightly below bar */
  margin-top: 10px;
  transition: transform 0.3s ease;
}
.wave-logo a:hover { transform: scale(1.05); }
.wave-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

/* Nav links */
.wave-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 20px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.wave-nav a {
  display: inline-block;
  padding: 10px 22px;
  background: #5a5a5a;
  color: #fff !important;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 500;
  border-radius: 6px;
  text-decoration: none;
  letter-spacing: .03em;
  transition: background 0.25s ease, transform 0.2s ease;
  white-space: nowrap;
}
.wave-nav a:hover {
  background: #3a3a3a;
  color: #fff !important;
  transform: translateY(-2px);
}
.wave-nav a.active {
  background: #3d3d3d;
  color: #fff !important;
}

/* Mobile toggle button */
.wave-toggle {
  display: none;
  background: #5a5a5a;
  border: none;
  border-radius: 6px;
  width: 42px;
  height: 38px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  margin-right: 20px;
}
.wave-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile nav drawer */
.wave-nav-mobile {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(30,30,30,0.97);
  z-index: 999;
  padding: 80px 30px 40px;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
}
.wave-nav-mobile.open {
  display: flex;
  transform: translateY(0);
}
.wave-nav-mobile a {
  display: block;
  padding: 14px 20px;
  background: #5a5a5a;
  color: #fff !important;
  font-size: 16px;
  font-weight: 500;
  border-radius: 6px;
  text-align: center;
  font-family: 'Poppins', sans-serif;
}
.wave-nav-mobile a.active,
.wave-nav-mobile a:hover { background: #f36023; }
.wave-nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f36023;
  border: none;
  color: #fff;
  font-size: 22px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .wave-toggle { display: flex; }
  .wave-nav { display: none; }
  .wave-logo a { width: 72px; height: 72px; }
  .wave-navbar { min-height: 72px; padding-bottom: 12px; }
}

/* Wave navbar scroll state */
.site-header.scrolled .wave-navbar {
  box-shadow: 0 4px 30px rgba(0,0,0,0.12);
}
