/* Fix page background and container for Services page */
body {
  margin: 0;
  background: #ffffff; /* ensure page background matches home */
  color: #111;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* global container (ensure consistent width) */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* services section container safety (in case other rules override .container) */
.core-services .container,
.services-intro .container,
.services-hero .container,
.get-started .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ensure services grid fills available width and shows 3 columns */
.services-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
}

/* card sizing — make cards stretch to same height per row */
.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 320px;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Single Navbar CSS for all pages */
.navbar{
    background:#e6f3ff;
    padding: 15px 0;  /* increased padding for larger logo */
    position:fixed;
    top:0;
    width:100%;
    z-index:1000;
    box-shadow:0 2px 10px rgba(0,0,0,.1)
}
.navbar .container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.logo img{
    width: auto;
    height: 120px; /* Increased from 85px for larger logo */
    max-width: 400px; /* Increased proportionally */
    padding: 8px 0;
    object-fit: contain;
}
.nav-links{
    display:flex;
    gap:32px;
    list-style:none;
    margin:0;
    align-items: center;
}
.nav-link{
    color:#333;
    text-decoration:none;
    font-weight:500;
    transition:.2s;
    padding: 8px 0; /* Add padding for better hover area */
}
.nav-link:hover{
    color:#2f8fe6
}
.contact-btn{background:#2f8fe6;color:#fff !important;padding:8px 24px;border-radius:6px}
.contact-btn:hover{background:#2478c7}

/* Updated Navbar Styles */
.navbar {
    background: #e9f3ff;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 8px 0;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}

/* Container */
.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 64px; /* Fixed height for consistency */
}

/* Logo sizing */
.logo img {
    width: auto;
    height: 52px; /* Reduced from 120px for more compact look */
    max-width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
    padding: 0;
}

/* Navigation links */
.nav-links {
    display: flex;
    gap: 28px;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    height: 100%;
}

.nav-link {
    color: #073046;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 6px 0;
    transition: color 0.2s ease;
    position: relative;
}

/* Contact button */
.contact-btn {
    background: #1976d2;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(25,118,210,0.1);
    margin-left: 8px;
}

.contact-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(25,118,210,0.2);
    background: #1565c0;
}

/* Scroll effect */
.navbar.scrolled {
    padding: 6px 0;
    background: rgba(233, 243, 255, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.navbar.scrolled .logo img {
    height: 48px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .navbar .container {
        height: 56px;
    }
    .logo img {
        height: 46px;
    }
    .nav-links {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 6px 0;
    }
    .navbar .container {
        height: 50px;
    }
    .logo img {
        height: 40px;
    }
    .nav-links {
        display: none; /* Hide links on mobile - implement mobile menu separately */
    }
    .contact-btn {
        padding: 6px 16px;
        font-size: 13px;
    }
}

/* Hero */
.hero {
  position:relative;
  background-image: url('assets/hero-bg.jpg'); /* replace with your image path */
  background-size:cover;
  background-position:center;
  min-height:360px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  overflow:hidden;
}
.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(6,10,18,0.45); /* dark overlay for contrast */
  z-index:1;
}
.hero .hero-content{
  position:relative;
  z-index:2;
  text-align:center;
  padding:72px 28px;
  max-width:1100px;
}
.hero h1{
  margin:0 0 16px;
  font-size:56px;
  line-height:1.02;
  font-weight:800;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  color:#ffffff;
  text-shadow:0 6px 18px rgba(0,0,0,0.25);
}
.hero .lead{
  margin:0 auto 22px;
  font-size:18px;
  color:rgba(255,255,255,0.95);
  max-width:900px;
}

/* CTA */
.btn-hero{
  display:inline-block;
  background:#2f8fe6;
  color:#fff;
  padding:14px 22px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  box-shadow:0 8px 20px rgba(47,143,230,0.18);
  transition:transform .12s ease, box-shadow .12s ease, background .12s;
}
.btn-hero:hover{
  transform:translateY(-4px);
  box-shadow:0 14px 36px rgba(47,143,230,0.26);
  background:#1f78d1;
}

/* Footer styles */
.site-footer { 
    background:#060606; 
    color:#e6e6e6; 
    padding:56px 0 24px; 
    font-family:Segoe UI, Roboto, Arial, sans-serif; 
}

.site-footer .footer-grid { 
    display:flex; 
    gap:48px; 
    align-items:flex-start; 
    justify-content:space-between; 
    max-width:1200px; 
    margin:0 auto; 
    padding:0 28px; 
    flex-wrap:wrap; 
}

.site-footer .footer-col { 
    flex:1 1 220px; 
    min-width:200px; 
    margin-bottom:22px; 
}

.site-footer h4 { 
    color:#fff; 
    font-size:20px; 
    margin:0 0 18px; 
    position:relative; 
    padding-bottom:12px; 
}

.site-footer h4::after { 
    content:''; 
    width:40px; 
    height:3px; 
    background:#2f8fe6; 
    position:absolute; 
    left:0; 
    bottom:0; 
    border-radius:2px; 
}

.footer-list { 
    list-style:none; 
    margin:0; 
    padding:0; 
}

.footer-list li { 
    margin:10px 0; 
}

.footer-list a { 
    color:#d7d7d7; 
    text-decoration:none; 
    font-size:15px; 
    display:inline-block; 
    position:relative; 
    padding-left:18px; 
}

.footer-list a::before { 
    content:'»'; 
    color:#2f8fe6; 
    position:absolute; 
    left:0; 
    top:0; 
    font-weight:700; 
    transform:translateY(-2px); 
}

/* Contact section in footer */
.site-footer .contact .contact-line { 
    color:#d1d1d1; 
    margin:8px 0; 
    font-size:14px; 
    line-height:1.5; 
}

.site-footer .contact .contact-line .ic { 
    display:inline-block; 
    width:22px; 
    color:#2f8fe6; 
    margin-right:8px; 
}

/* Social icons */
.social-icons { 
    list-style:none; 
    padding:0; 
    margin:14px 0 0; 
    display:flex; 
    gap:10px; 
}

.social-icons a { 
    display:inline-flex; 
    width:36px; 
    height:36px; 
    align-items:center; 
    justify-content:center; 
    border-radius:50%; 
    background:#0b2b45; 
    color:#fff; 
    text-decoration:none; 
    font-weight:600; 
    font-size:14px; 
    border:2px solid rgba(47,143,230,0.12); 
}

.social-icons a:hover { 
    background:#2f8fe6; 
}

/* Unified social icon styles — apply same look across contact form, cards, footer, etc. */
.socials,
.social-icons,
.card .socials,
.contact-form-wrap .socials,
.contact-info .socials,
.footer-col .social-icons {
  display: flex;
  gap: 10px;
  align-items: center;
  padding: 0;
  margin: 12px 0 0;
  list-style: none;
}

.socials .social-link,
.social-icons .social-link,
.card .socials .social-link,
.contact-form-wrap .socials .social-link,
.contact-info .socials .social-link,
.footer-col .social-icons .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(47,143,230,0.08);
  color: #1976d2;
  border: 1px solid rgba(47,143,230,0.12);
  text-decoration: none;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
  box-shadow: none;
}

.socials .social-link svg,
.social-icons .social-link svg,
.card .socials .social-link svg,
.contact-form-wrap .socials .social-link svg,
.contact-info .socials .social-link svg,
.footer-col .social-icons .social-link svg {
  width: 20px;
  height: 20px;
  display: block;
  fill: currentColor;
}

.socials .social-link:hover,
.social-icons .social-link:hover,
.card .socials .social-link:hover,
.contact-form-wrap .socials .social-link:hover,
.contact-info .socials .social-link:hover,
.footer-col .social-icons .social-link:hover,
.socials .social-link:focus,
.social-icons .social-link:focus,
.card .socials .social-link:focus,
.contact-form-wrap .socials .social-link:focus,
.contact-info .socials .social-link:focus,
.footer-col .social-icons .social-link:focus {
  transform: translateY(-4px);
  background: linear-gradient(180deg, #2f8fe6 0%, #1976d2 100%);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(47,143,230,0.14);
  outline: none;
}

/* smaller variant for footer lists (keeps look consistent) */
.footer-col .social-icons .social-link {
  width: 38px;
  height: 38px;
}
.footer-col .social-icons .social-link svg {
  width: 18px;
  height: 18px;
}

/* focus-visible for accessibility */
.socials .social-link:focus-visible,
.social-icons .social-link:focus-visible,
.contact-form-wrap .socials .social-link:focus-visible,
.contact-info .socials .social-link:focus-visible,
.footer-col .social-icons .social-link:focus-visible {
  outline: 3px solid rgba(47,143,230,0.14);
  outline-offset: 3px;
}

/* Footer bottom */
.footer-bottom { 
    border-top: 1px solid rgba(255,255,255,0.04); 
    margin-top: 26px; 
    padding: 14px 0; 
}

.footer-bottom .container { 
    max-width:1200px; 
    margin:0 auto; 
    padding:0 28px; 
    color:#a9a9a9; 
    font-size:13px; 
}

/* Compact footer: reduce vertical space and center the footer-bottom */
.site-footer {
  padding: 28px 0 18px; /* slimmer overall footer */
}

/* Tighten grid spacing for footer columns */
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px 24px;
  align-items: start;
  padding-bottom: 8px; /* reduce space above bottom bar */
}

/* Reduce heading spacing */
.site-footer .footer-col h4 {
  margin-bottom: 10px;
}

/* Center the footer bottom content */
.footer-bottom {
  padding: 10px 0 8px;
  border-top: none; /* remove if you had a divider */
}

.footer-bottom .container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}

/* make bottom text smaller and muted */
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* Reduce vertical spacing in contact column lines */
.footer-col.contact .contact-line {
  margin: 6px 0;
}

/* Responsive: keep footer compact on small screens */
@media (max-width: 768px) {
  .site-footer { padding: 20px 0 12px; }
  .site-footer .footer-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .footer-bottom { padding: 8px 0; }
}

/* Common Section Styles */
section { padding: 80px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
h2 { font-size: 42px; color: #1a1a1a; margin-bottom: 30px; font-weight: 700; }
.section-intro { font-size: 18px; color: #555; margin-bottom: 50px; max-width: 800px; }

/* Intro Section */
.intro { background: #fff; }
.intro-content { font-size: 18px; line-height: 1.7; color: #444; }
.intro-content p { margin-bottom: 20px; }

/* Who We Are */
.who-we-are { background: #dcdee0; }
.content-block { max-width: 900px; }
.content-block p { font-size: 17px; line-height: 1.8; margin-bottom: 24px; color: #333; }

/* Services Section */
.services { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.service-card { 
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.service-card:hover { transform: translateY(-5px); }
.service-card h3 { font-size: 24px; margin-bottom: 15px; color: #1a1a1a; }
.service-card p { color: #555; line-height: 1.6; margin-bottom: 20px; }

.btn-service {
    display: inline-block;
    padding: 12px 24px;
    background: #2f8fe6;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}
.btn-service:hover { background: #2272c4; }

/* Process Section */
.process { background: #f8f9fa; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
}
.step-number {
    font-size: 48px;
    font-weight: 800;
    color: #2f8fe6;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    right: 20px;
}
.process-step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

/* Industries Section */
.industries {
    padding: 80px 0;
    background: #f8fafd;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.industry-card {
    position: relative;
    min-height: 280px;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-position: center;
    background-size: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

/* Background images for each card */
.industry-card:nth-child(1) { background-image: url('information-home.png'); }
.industry-card:nth-child(2) { background-image: url('healthcare-home.png'); }
.industry-card:nth-child(3) { background-image: url('bpo-home.png'); }
.industry-card:nth-child(4) { background-image: url('finance-home.png'); }
.industry-card:nth-child(5) { background-image: url('sale-marketing-home.png'); }
.industry-card:nth-child(6) { background-image: url('operational-logistic-home.jpeg'); }

/* Overlay for text visibility */
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.7) 100%
    );
    transition: background 0.3s ease;
}

/* Fix page background and container for Services page */
body {
  margin: 0;
  background: #ffffff;
  color: #111;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* global container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Navbar (unchanged) */
.navbar {
  background: #e9f3ff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all 0.3s ease;
  padding: 8px 0;
  box-shadow: 0 2px 15px rgba(0,0,0,0.06);
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
}
.logo img {
  width: auto;
  height: 52px;
  max-width: 200px;
  object-fit: contain;
  transition: all 0.3s ease;
  padding: 0;
}
.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  height: 100%;
}
.nav-link {
  color: #073046;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  padding: 6px 0;
  transition: color 0.2s ease;
}
.contact-btn {
  background: #1976d2;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(25,118,210,0.1);
  margin-left: 8px;
}
.contact-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(25,118,210,0.2);
  background: #1565c0;
}

/* Hero section */
.hero {
  position: relative;
  background-image: url('assets/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,0.45);
  z-index: 1;
}
.hero .hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 72px 28px;
  max-width: 1100px;
}
.hero h1 {
  margin: 0 0 16px;
  font-size: 56px;
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.hero .lead {
  margin: 0 auto 22px;
  font-size: 18px;
  color: rgba(255,255,255,0.95);
  max-width: 900px;
}
.btn-hero {
  display: inline-block;
  background: #2f8fe6;
  color: #fff;
  padding: 14px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(47,143,230,0.18);
  transition: transform .12s ease, box-shadow .12s ease, background .12s;
}
.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(47,143,230,0.26);
  background: #1f78d1;
}

/* ===============================
   INDUSTRIES SECTION (FIXED FOR HOMEPAGE)
=============================== */
.home-page .industries {
  padding: 80px 0;
  background: #f8fafd;
}
.home-page .industries h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: #073046;
  margin-bottom: 40px;
}
.home-page .industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.home-page .industry-card {
  position: relative;
  min-height: 280px;
  border-radius: 14px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.home-page .industry-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.35) 0%,
    rgba(0, 0, 0, 0.75) 100%
  );
  transition: background 0.3s ease;
}
.home-page .industry-card .content {
  position: relative;
  z-index: 2;
  padding: 30px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
}
.home-page .industry-card h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 8px;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  background: rgba(0, 0, 0, 0.25);
  display: inline-block;
  padding: 8px 12px;
  border-radius: 6px;
}
.home-page .industry-card p {
  color: rgba(255,255,255,0.95);
  margin: 0;
  font-size: 15px;
  line-height: 1.5;
  background: rgba(0, 0, 0, 0.2);
  display: inline-block;
  padding: 6px 10px;
  border-radius: 6px;
}
.home-page .industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(47,143,230,0.25);
}
.home-page .industry-card:hover::before {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.6) 100%
  );
}
.home-page .industries-footer {
  text-align: center;
  max-width: 900px;
  margin: 40px auto 0;
  color: #555;
  font-size: 15px;
}
@media (max-width: 992px) {
  .home-page .industries-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .home-page .industry-card {
    min-height: 240px;
  }
}
@media (max-width: 576px) {
  .home-page .industries-grid {
    grid-template-columns: 1fr;
  }
  .home-page .industry-card {
    min-height: 200px;
  }
  .home-page .industry-card .content {
    padding: 20px;
    text-align: center;
    align-items: center;
  }
}

/* =====================================
   OTHER CSS (All Unchanged Below)
===================================== */

/* Services, Process, Footer, Contact, Blog, About, etc. remain EXACTLY the same from your version */


/* Mission Vision Section */
.mission-vision { background: #f8f9fa; }
.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.mv-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}
.mv-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2f8fe6, #1a5c9a);
    color: #fff;
    text-align: center;
    padding: 80px 0;
}
.cta-section h2 { color: #fff; }
.cta-section p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}
.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-primary, .btn-secondary {
    padding: 15px 35px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}
.btn-primary {
    background: #fff;
    color: #2f8fe6;
}
.btn-secondary {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}
.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(90deg,#1f9be6 0%,#0d75b0 100%);
    padding: 120px 0 80px;
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero .hero-text {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-intro {
    padding: 80px 0;
    background: #fff;
}

.about-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #444;
    margin-bottom: 24px;
}

.vision-mission {
    background: #f6f9fc;
    padding: 80px 0;
}

.vision-mission .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.vision, .mission {
    padding: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.vision h2, .mission h2 {
    color: #073046;
    margin-bottom: 20px;
    font-size: 32px;
}

.what-we-do {
    padding: 80px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.service-item h3 {
    color: #073046;
    margin-bottom: 15px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.benefit-item .check {
    font-size: 24px;
    margin-bottom: 15px;
    display: block;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.value-item {
    padding: 30px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    text-align: center;
}

.about-cta {
    background: linear-gradient(90deg,#1f9be6 0%,#0d75b0 100%);
    padding: 80px 0;
    text-align: center;
    color: #fff;
}

.about-cta h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto 30px;
}

.cta-button {
    display: inline-block;
    background: #fff;
    color: #0d75b0;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .vision-mission .container,
    .services-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 0 60px;
    }
    
    .about-hero h1 {
        font-size: 36px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

/* IT Staffing page styles (add/merge into style.css) */
.it-hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.it-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,0.45);
  z-index: 1;
}
.it-hero .container { position: relative; z-index: 2; }
.it-hero h1 { font-size: 44px; margin: 0 0 10px; font-weight:800; }
.it-hero .hero-lead { max-width: 900px; margin: 0 auto; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.95); }

/* content sections */
.content-section { padding: 48px 0; background: #fff; }
.content-section.bg-light { background:#f8f9fa; }
.content-section .container h2 { font-size:28px; margin-bottom:16px; color:#111; }
.content-section p { color:#444; font-size:16px; line-height:1.8; margin-bottom:12px; }

/* approach steps */
.approach-steps {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:12px;
}
.approach-steps .step { background:#fff; padding:18px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }
.approach-steps .step strong { display:block; margin-bottom:8px; color:#111; }

/* expertise list */
.expertise-list { list-style:none; padding:0; margin:12px 0 0; display:grid; gap:10px; }
.expertise-list li { background:#fff; padding:14px; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }

/* engagement models */
.engagement-models { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:12px; }
.engagement-models .model { background:#fff; padding:16px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }
.engagement-models .model h4 { margin:0 0 8px; color:#1a1a1a; }

/* CTA reuse */
.get-started { background: linear-gradient(135deg,#2f8fe6,#1a5c9a); color:#fff; text-align:center; padding:56px 0; }
.cta-button { display:inline-block; background:#fff; color:#2f8fe6; padding:12px 26px; border-radius:8px; text-decoration:none; font-weight:700; }

/* responsive */
@media (max-width: 900px) {
  .approach-steps { grid-template-columns: 1fr; }
  .engagement-models { grid-template-columns: 1fr; }
  .approach-steps .step, .engagement-models .model { padding:14px; }
}
@media (max-width: 480px) {
  .it-hero { padding:64px 0; }
  .it-hero h1 { font-size:28px; }
  .it-hero .hero-lead { font-size:15px; }
}

/* Healthcare Staffing page */
.healthcare-hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.healthcare-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(6,10,18,0.45);
  z-index: 1;
}
.healthcare-hero .container { position: relative; z-index: 2; }
.healthcare-hero h1 { font-size:44px; margin:0 0 10px; font-weight:800; }
.healthcare-hero .hero-lead { max-width:900px; margin:0 auto; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.95); }

/* content sections reuse */
.content-section { padding:48px 0; background:#fff; }
.content-section.bg-light { background:#f8f9fa; }
.content-section .container h2 { font-size:28px; margin-bottom:16px; color:#111; }
.content-section p { color:#444; font-size:16px; line-height:1.8; margin-bottom:12px; }

/* approach steps */
.approach-steps {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:12px;
}
.approach-steps .step { background:#fff; padding:18px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }
.approach-steps .step strong { display:block; margin-bottom:8px; color:#111; }

/* roles list */
.expertise-list { list-style:none; padding:0; margin:12px 0 0; display:grid; gap:10px; }
.expertise-list li { background:#fff; padding:14px; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }

/* engagement models */
.engagement-models { display:grid; grid-template-columns:repeat(2,1fr); gap:16px; margin-top:12px; }
.engagement-models .model { background:#fff; padding:16px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }
.engagement-models .model h4 { margin:0 0 8px; color:#1a1a1a; }

/* CTA */
.get-started { background: linear-gradient(135deg,#2f8fe6,#1a5c9a); color:#fff; text-align:center; padding:56px 0; }
.cta-button { display:inline-block; background:#fff; color:#2f8fe6; padding:12px 26px; border-radius:8px; text-decoration:none; font-weight:700; }

/* Responsive */
@media (max-width:900px) {
  .approach-steps { grid-template-columns:1fr; }
  .engagement-models { grid-template-columns:1fr; }
}
@media (max-width:480px) {
  .healthcare-hero { padding:64px 0; }
  .healthcare-hero h1 { font-size:28px; }
  .healthcare-hero .hero-lead { font-size:15px; }
}

/* Why Choose Us / Get Started styles for healthcare-staffing.html */
.why-choose { margin-top: 18px; }
.why-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px 20px; }
.why-item { background: #fff; padding: 14px 16px; border-radius: 10px; box-shadow: 0 6px 18px rgba(0,0,0,0.04); color: #333; line-height: 1.5; }
.why-item strong { display: block; color: #111; margin-bottom: 6px; }

.contact-cta { margin-top: 18px; display: flex; gap: 12px; align-items: center; flex-wrap:wrap; }
.cta-outline { display:inline-block; padding:10px 18px; border-radius:8px; border:2px solid rgba(47,143,230,0.16); color:#2f8fe6; text-decoration:none; font-weight:700; background:transparent; }
.cta-outline:hover { background: rgba(47,143,230,0.06); }

/* CTA styling for healthcare pages */
.contact-cta {
  margin-top: 20px;
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.cta-button {
  background: #2f8fe6;
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(47,143,230,0.18);
  transition: transform .15s ease, box-shadow .15s ease;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(47,143,230,0.22);
}

.cta-outline {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 8px;
  border: 2px solid rgba(47,143,230,0.18);
  color: #2f8fe6;
  text-decoration: none;
  font-weight: 700;
  background: transparent;
  transition: background .15s ease, color .15s ease;
}

.cta-outline:hover {
  background: rgba(47,143,230,0.06);
  color: #184f78;
}

/* Healthcare CTA (centered, prominent) */
.healthcare-cta {
  padding: 80px 0;
  text-align: center;
  color: #fff;
  background: linear-gradient(90deg,#2f8fe6 0%,#0f67a3 100%);
  position: relative;
  overflow: hidden;
}

.healthcare-cta .container { position: relative; z-index: 2; max-width:1000px; margin:0 auto; }

.healthcare-cta h2 {
  font-size: 42px;
  font-weight: 800;
  margin: 0 0 14px;
  color: #ffffff;
  line-height: 1.02;
}

.healthcare-cta p {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: 16px;
  color: rgba(255,255,255,0.92);
  line-height: 1.6;
}

.healthcare-cta .cta-button {
  display: inline-block;
  background: #ffffff;
  color: #1368a3;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(15,76,126,0.12);
  transition: transform .15s ease, box-shadow .15s ease;
}

.healthcare-cta .cta-button:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15,76,126,0.18);
}

/* BPO page styles */
.bpo-hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.bpo-hero::before { content:''; position:absolute; inset:0; background: rgba(6,10,18,0.4); z-index:1; }
.bpo-hero .container { position:relative; z-index:2; }
.bpo-hero h1 { font-size:44px; margin:0 0 10px; font-weight:800; color:#fff; }
.bpo-hero .hero-lead { max-width:900px; margin:0 auto; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.95); }

.content-section { padding:48px 0; background:#fff; }
.content-section.bg-light { background:#f8f9fa; }
.content-section .container h2 { font-size:28px; margin-bottom:16px; color:#111; }
.content-section p { color:#444; font-size:16px; line-height:1.8; margin-bottom:12px; }

/* reuse approach/engagement/expertise styles already in style.css */
/* ensure approach-steps and engagement-models are present; if not, include basic rules */
.approach-steps { display:grid; grid-template-columns:repeat(2,1fr); gap:18px; margin-top:12px; }
.approach-steps .step { background:#fff; padding:18px; border-radius:10px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }
.expertise-list { list-style:none; padding:0; display:grid; gap:10px; margin-top:12px; }
.expertise-list li, .engagement-models .model { background:#fff; padding:14px; border-radius:8px; box-shadow:0 6px 18px rgba(0,0,0,0.04); }

/* BPO CTA (match other CTAs) */
.bpo-cta {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(90deg,#1f9be6 0%,#0d75b0 100%);
  color: #fff;
}
.bpo-cta .container { max-width:1000px; margin:0 auto; }
.bpo-cta h2 { font-size:40px; margin:0 0 12px; font-weight:800; color:#fff; }
.bpo-cta p { max-width:900px; margin:0 auto 20px; color:rgba(255,255,255,0.92); line-height:1.6; }
.bpo-cta .cta-button {
  display:inline-block; background:#fff; color:#0d75b0; padding:12px 28px; border-radius:8px; font-weight:700; text-decoration:none;
  box-shadow:0 10px 30px rgba(15,20,25,0.12); transition:transform .15s ease, box-shadow .15s ease;
}
.bpo-cta .cta-button:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(15,20,25,0.18); }

/* responsive */
@media (max-width:900px) {
  .approach-steps{grid-template-columns:1fr;}
  .engagement-models{grid-template-columns:1fr;}
  .bpo-hero{padding:64px 0;}
  .bpo-hero h1{font-size:30px;}
  .bpo-cta h2{font-size:28px;}
}
@media (max-width:480px) {
  .bpo-cta .cta-button{width:100%; box-sizing:border-box;}
}

/* Non-IT page hero */
.nonit-hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.nonit-hero::before { content:''; position:absolute; inset:0; background: rgba(6,10,18,0.42); z-index:1; }
.nonit-hero .container { position:relative; z-index:2; }
.nonit-hero h1 { font-size:44px; margin:0 0 10px; font-weight:800; color:#fff; }
.nonit-hero .hero-lead { max-width:900px; margin:0 auto; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.95); }

/* reuse content-section, approach-steps, expertise-list, engagement-models from existing CSS */
/* ensure nonit CTA */
.nonit-cta {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(90deg,#1f9be6 0%,#0d75b0 100%);
  color: #fff;
}
.nonit-cta .container { max-width:1000px; margin:0 auto; }
.nonit-cta h2 { font-size:40px; margin:0 0 12px; font-weight:800; color:#fff; }
.nonit-cta p { max-width:900px; margin:0 auto 20px; color:rgba(255,255,255,0.92); line-height:1.6; }
.nonit-cta .cta-button {
  display:inline-block;
  background:#ffffff;
  color:#0d75b0;
  padding:12px 28px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(15,20,25,0.12);
  transition:transform .15s ease, box-shadow .15s ease;
}
.nonit-cta .cta-button:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(15,20,25,0.18); }

/* HR Consulting page styles */
.hr-hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.hr-hero::before { content:''; position:absolute; inset:0; background: rgba(6,10,18,0.42); z-index:1; }
.hr-hero .container { position:relative; z-index:2; }
.hr-hero h1 { font-size:44px; margin:0 0 10px; font-weight:800; color:#fff; }
.hr-hero .hero-lead { max-width:900px; margin:0 auto; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.95); }

/* HR CTA (use BPO gradient for consistency) */
.hr-cta {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(90deg,#1f9be6 0%,#0d75b0 100%);
  color: #fff;
}
.hr-cta .container { max-width:1000px; margin:0 auto; }
.hr-cta h2 { font-size:40px; margin:0 0 12px; font-weight:800; color:#fff; }
.hr-cta p { max-width:900px; margin:0 auto 20px; color:rgba(255,255,255,0.92); line-height:1.6; }
.hr-cta .cta-button {
  display:inline-block;
  background:#ffffff;
  color:#0d75b0;
  padding:12px 28px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(15,20,25,0.12);
  transition:transform .15s ease, box-shadow .15s ease;
}
.hr-cta .cta-button:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(15,20,25,0.18); }

/* Talent Acquisition page styles */
.talent-hero {
  background-size: cover;
  background-position: center;
  padding: 110px 0;
  color: #fff;
  text-align: center;
  position: relative;
}
.talent-hero::before { content:''; position:absolute; inset:0; background: rgba(6,10,18,0.42); z-index:1; }
.talent-hero .container { position:relative; z-index:2; }
.talent-hero h1 { font-size:44px; margin: 0 0 10px; font-weight:800; }
.talent-hero .hero-lead { max-width:900px; margin:0 auto; font-size:18px; line-height:1.7; color:rgba(255,255,255,0.95); }

/* reuse content-section, approach-steps, expertise-list, engagement-models from existing CSS */

/* Talent CTA (consistent with other CTAs) */
.talent-cta {
  padding: 72px 0;
  text-align: center;
  background: linear-gradient(90deg,#1f9be6 0%,#0d75b0 100%);
  color: #fff;
}
.talent-cta .container { max-width:1000px; margin:0 auto; }
.talent-cta h2 { font-size:40px; margin:0 0 12px; font-weight:800; color:#fff; }
.talent-cta p { max-width:900px; margin:0 auto 20px; color:rgba(255,255,255,0.92); line-height:1.6; }
.talent-cta .cta-button {
  display:inline-block;
  background:#ffffff;
  color:#0d75b0;
  padding:12px 28px;
  border-radius:8px;
  font-weight:700;
  text-decoration:none;
  box-shadow:0 10px 30px rgba(15,20,25,0.12);
  transition:transform .15s ease, box-shadow .15s ease;
}
.talent-cta .cta-button:hover { transform:translateY(-4px); box-shadow:0 18px 40px rgba(15,20,25,0.18); }

/* Interactive elements */
.service-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.nav-list a.active {
    color: #2f8fe6;
    font-weight: 600;
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 6px);
    left: 0;
    margin: 0;
    padding: 8px;
    min-width: 220px;
    background: #ffffff;
    color: #333333;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(6,20,40,0.12);
    list-style: none;
    z-index: 1100;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: opacity .30s ease, transform .30s ease, visibility .30s ease;
    -webkit-font-smoothing:antialiased;
    font-family: inherit; /* match navbar font */
    font-size: 15px;      /* match navbar size */
}

/* show dropdown on hover / focus-within (keeps keyboard accessibility) */
.navbar .dropdown:hover > .dropdown-menu,
.navbar .dropdown:focus-within > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* remove default list bullets and left offsets */
.navbar .dropdown-menu,
.navbar .dropdown-menu li {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* neat, even spacing for each dropdown item */
.navbar .dropdown-menu a {
  display: block;
  padding: 10px 16px;             /* ~10–12px vertical space requested */
  color: #2f3942;                 /* dark gray text */
  text-decoration: none;
  border-radius: 6px;
  transition: background .30s ease, color .30s ease, transform .30s ease;
  line-height: 1.2;
}

/* hover / focus state — subtle background change and slight lift */
.navbar .dropdown-menu a:hover,
.navbar .dropdown-menu a:focus {
  background: rgba(47,143,230,0.06); /* soft brand-tinted highlight */
  color: #0f3f8a;                     /* slightly stronger blue for emphasis */
  transform: translateY(-2px);
  outline: none;
}

/* remove extra left padding inside dropdown so items align flush */
.navbar .dropdown-menu { padding-left: 8px; padding-right: 8px; }
.navbar .dropdown-menu a { padding-left: 12px; padding-right: 12px; }

/* small-screen behavior: dropdown becomes part of flow, full-width and readable */
@media (max-width: 768px) {
  .navbar .dropdown-menu {
    position: static;
    display: block;
    width: 100%;
    box-shadow: none;
    transform: none;
    opacity: 1;
    visibility: visible;
    margin-top: 6px;
    border-radius: 8px;
    background: #ffffff;
  }

  .navbar .dropdown-menu a {
    padding: 12px 14px;
  }
}

/* Accessibility: visible focus ring for keyboard users */
.navbar .dropdown-menu a:focus-visible {
  box-shadow: 0 0 0 3px rgba(47,143,230,0.12);
  border-radius: 6px;
}

/* Contact page — enhanced, responsive, production-ready styles
   - Keeps existing HTML structure unchanged
   - Centers form, 2-column layout on desktop, stacked on mobile
   - Modern inputs, focus states, button styles, animations
*/

/* ============================
   Contact page scoped styles
   (Keep navbar & footer rules above unchanged)
   ============================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700&display=swap');

:root{
  --bg-from:#f8fbff; --bg-to:#eef5ff;
  --card-radius:16px;
  --card-shadow:0 4px 20px rgba(0,0,0,0.05);
  --accent:#1976d2;
  --accent-2:#1976d2;
  --field-border:#d0d7de;
  --focus-glow: rgba(25,118,210,0.29);
  --pad:40px;
  --gap:18px;
}

/* Section hero */
.contact-hero {
  background: linear-gradient(180deg,var(--bg-from),var(--bg-to));
  padding: 36px 0 8px;
}
.contact-hero .container { text-align:center; }
.contact-hero .hero-title { font-family: 'Poppins', sans-serif; font-size:34px; margin:0 0 8px; color:#0b2a36; line-height:1.2; }
.contact-hero .lead { margin:0 auto 6px; max-width:900px; color:#455d63; font-size:16px; line-height:1.4; }

/* Main contact grid */
.contact-section { background: transparent; padding: 28px 0 56px; }
.contact-grid { display:flex; gap:32px; align-items:stretch; justify-content:center; max-width:1100px; margin:0 auto; box-sizing:border-box; padding:0 18px; }
@media (max-width:880px) { .contact-grid { flex-direction:column; gap:20px; } }

/* Card common */
.contact-card { background:#ffffff; border-radius:var(--card-radius); padding:var(--pad); box-shadow:var(--card-shadow); border:1px solid rgba(16,24,32,0.04); display:flex; flex-direction:column; gap:var(--gap); transition:transform .22s ease, box-shadow .22s ease; }
.contact-card:hover { transform:translateY(-4px); box-shadow:0 12px 36px rgba(0,0,0,0.07); }
.card-inner { display:flex; flex-direction:column; gap:12px; }

/* Headings & text */
.contact-card h2, .contact-card h3, .contact-card h4 { margin:0; font-family:'Poppins',sans-serif; color:#092029; font-weight:700; }
.card-form h2 { font-size:28px; line-height:1.2; }
.card-sub, .contact-card p { color:#475a60; font-size:15px; line-height:1.45; margin:0; }

/* Form layout */
.contact-form { display:flex; flex-direction:column; gap:16px; margin-top:4px; }
.two-col { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
@media (max-width:640px) { .two-col { grid-template-columns:1fr; } }

/* Inputs */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea,
.contact-form input[type="file"] {
  width:100%;
  padding:12px 14px;
  border-radius:10px;
  border:1px solid var(--field-border);
  background:#fff;
  color:#0e2a33;
  font-size:15px;
  transition:box-shadow .18s ease, border-color .18s ease, transform .12s ease;
  box-sizing:border-box;
  outline:none;
  min-height:44px;
}

/* textarea */
.contact-form textarea { min-height:140px; resize:vertical; }

/* focus glow */
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.contact-form input[type="file"]:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 6px var(--focus-glow);
  transform: translateY(-1px);
}

/* Actions / buttons */
.form-actions { display:flex; gap:12px; align-items:center; margin-top:6px; }
.btn-submit, .btn-primary, .btn-submit.btn-primary {
  display:inline-block; width:220px; max-width:100%;
  padding:12px 18px; border-radius:10px; border:0; cursor:pointer;
  color:#fff; font-weight:700; font-size:15px;
  background:linear-gradient(90deg,var(--accent),var(--accent-2));
  box-shadow:0 8px 28px rgba(25,118,210,0.12);
  transition:transform .28s ease, box-shadow .28s ease, opacity .18s ease;
}
.btn-submit:hover, .btn-primary:hover { transform: translateY(-6px) scale(1.02); box-shadow:0 20px 56px rgba(25,118,210,0.16); }

/* secondary upload button styled as label */
.btn-secondary.upload-btn {
  display:inline-block; padding:12px 16px; border-radius:10px;
  background:transparent; color:#153843; border:1px solid rgba(0,0,0,0.06); cursor:pointer; font-weight:600;
}

/* Note text */
.note { color:#4b6168; font-size:14px; margin:6px 0 0; }

/* Corporate details */
.contact-info .info-list, .contact-info .info-list .info-item { display:flex; flex-direction:column; gap:12px; }
.info-item { display:flex; gap:12px; align-items:flex-start; padding:6px 0; transition:background .18s ease, transform .18s ease; }
.info-item:hover { transform:translateY(-2px); background: rgba(25,118,210,0.03); }

/* Icon circle */
.info-item .icon { width:44px; height:44px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background:rgba(25,118,210,0.06); color:var(--accent); flex:0 0 44px; transition:background .18s ease, color .18s ease, transform .18s ease; }
.info-item:hover .icon { background:var(--accent); color:#fff; transform:translateY(-2px); }

/* left border highlight on wide screens */
@media (min-width:900px) {
  .card-info { padding-left:42px; border-left:3px solid var(--accent); }
}
@media (max-width:899px) {
  .card-info { border-left:0; padding-left:24px; }
}

/* links */
.contact-card a { color:var(--accent); text-decoration:none; transition:color .22s ease, text-decoration .22s ease; }
.contact-card a:hover { text-decoration:underline; color:#125b9a; }

/* socials */
.socials { display:flex; gap:10px; margin-top:8px; }
.social-link { width:44px; height:44px; border-radius: 50%; display:inline-flex; align-items:center; justify-content:center; border:2px solid var(--accent); color:var(--accent); background:transparent; transition:all .22s ease; }
.social-link:hover { background:var(--accent); color:#fff; transform:translateY(-4px); box-shadow:0 12px 32px rgba(25,118,210,0.12); }

/* responsive: ensure inputs full width */
@media (max-width:640px) {
  .contact-form input, .contact-form textarea, .contact-form select { width:100%; }
  .form-actions { flex-direction:column; align-items:stretch; }
  .btn-submit { width:100%; }
}

/* accessibility focus-visible */
:focus-visible { outline-offset:3px; }

/* Services page hero — fully visible responsive background image, overlay, centered content */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;800;900&display=swap');

.services-hero {
  /* ensure image covers whole hero without cropping important center area */
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;                /* use cover (not contain) for a full-bleed hero */
  min-height: clamp(480px, 55vh, 720px); /* balanced hero height */
  padding: 56px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* ===== Overrides: improve text visibility & CTA in services hero ===== */
/* stronger, contrast-optimized overlay so image stays visible but text pops */
.services-hero::before {
  background: linear-gradient(
    180deg,
    rgba(6,10,18,0.56) 0%,
    rgba(6,10,18,0.34) 36%,
    rgba(6,10,18,0.08) 100%
  );
}

/* Stronger visual treatment so services hero text always reads clearly */
.services-hero::before{
  /* add a subtle centered radial darkening plus the existing linear overlay */
  background-image:
    radial-gradient(circle at 50% 45%, rgba(0,0,0,0.56) 0%, rgba(0,0,0,0.30) 35%, rgba(0,0,0,0.05) 70%),
    linear-gradient(180deg, rgba(6,10,18,0.40) 0%, rgba(6,10,18,0.22) 40%, rgba(6,10,18,0.06) 100%);
  background-blend-mode: multiply;
}

/* Ensure all possible heading selectors get the stronger white color + panel */
.services-hero .hero-title,
.services-hero h1,
.services-hero h2,
.services-hero .hero-content h1,
.services-hero .hero-content h2 {
  color: #ffffff !important;
  text-shadow: 0 14px 36px rgba(0,0,0,0.65);
  background: rgba(0,0,0,0.40);
  padding: 12px 18px;
  border-radius: 12px;
  display: inline-block;
  line-height: 1.02;
  box-decoration-break: clone;
  -webkit-font-smoothing: antialiased;
}

/* Subtitle/readability */
.services-hero .hero-lead,
.services-hero p.lead,
.services-hero .hero-content .lead {
  color: rgba(255,255,255,0.98) !important;
  background: rgba(0,0,0,0.28);
  padding: 10px 14px;
  border-radius: 10px;
  display: inline-block;
  max-width: 880px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.35);
}

/* Make CTA even more contrasted against the darkened image */
.services-hero .btn-hero,
.services-hero .contact-button,
.services-hero a.btn-hero {
  background: linear-gradient(90deg,#1976d2 0%,#43a047 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 44px rgba(25,118,210,0.18);
  padding: 14px 32px;
  border-radius: 10px;
  transition: transform .22s ease, box-shadow .22s ease, opacity .12s ease;
  z-index: 3;
}

/* Hover/focus for CTA */
.services-hero .btn-hero:hover,
.services-hero .btn-hero:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 28px 72px rgba(25,118,210,0.22);
  outline: none;
}

/* slightly lift title/lead entrance for better perceived contrast */
.services-hero .hero-title,
.services-hero .hero-lead,
.services-hero .btn-hero {
  /* ensure animations respect prefers-reduced-motion (existing keyframes still apply) */
  backface-visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Responsive: stack text panels and make CTA full-width on small screens */
@media (max-width: 560px) {
  .services-hero .hero-title,
  .services-hero .hero-lead {
    display: block;
    padding: 8px 12px;
    margin: 6px auto;
    width: calc(100% - 48px);
  }
  .services-hero .btn-hero {
    display: block;
    width: calc(100% - 48px);
    max-width: 420px;
    margin: 12px auto 0;
  }
}

/* Accessibility: keep animations off for reduced motion users */
@media (prefers-reduced-motion: reduce) {
  .services-hero .hero-title,
  .services-hero .hero-lead,
  .services-hero .btn-hero {
    animation: none !important;
    transition: none !important;
  }
}

/* ===== Make Services hero text & CTA match homepage visibility =====
   Add this at the end of style.css to override earlier .services-hero rules.
   Keeps background image intact, darkens overlay, and makes heading/CTA pop.
*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;800;900&display=swap');

.services-hero {
  background-size: cover !important;
  background-position: center center !important;
  min-height: clamp(480px, 55vh, 720px);
  padding: 84px 20px; /* more breathing room like homepage */
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

/* stronger dark radial + linear overlay so text always reads */
.services-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    radial-gradient(circle at 50% 35%, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.42) 30%, rgba(0,0,0,0.10) 70%),
    linear-gradient(180deg, rgba(6,10,18,0.36) 0%, rgba(6,10,18,0.18) 45%, rgba(6,10,18,0.06) 100%);
  background-blend-mode: overlay;
  opacity: 1;
}

/* content sits above overlay */
.services-hero .container,
.services-hero .hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  width: 100%;
  text-align: center;
  padding: 10px 18px;
}

/* Big, bold, highly-contrasted heading like homepage */
.services-hero .hero-title,
.services-hero h1 {
  font-family: 'Poppins', system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #ffffff !important;
  font-weight: 900;
  line-height: 1.02;
  margin: 0 0 14px;
  font-size: clamp(2rem, 5.2vw, 4.2rem); /* responsive scaling */
  text-shadow: 0 18px 42px rgba(0,0,0,0.65);
  display: inline-block;
  background: rgba(0,0,0,0.28);
  padding: 12px 20px;
  border-radius: 12px;
  box-decoration-break: clone;
  -webkit-font-smoothing: antialiased;
}

/* Subtitle with translucent backing for legibility */
.services-hero .hero-lead,
.services-hero p.lead {
  color: rgba(255,255,255,0.96) !important;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  max-width: 900px;
  margin: 8px auto 20px;
  line-height: 1.6;
  display: inline-block;
  background: rgba(0,0,0,0.18);
  padding: 10px 16px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,0.28);
}

/* CTA styled like homepage — pill, strong shadow, visible on dark overlay */
.services-hero .btn-hero,
.services-hero a.btn-hero {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 28px;
  font-weight: 800;
  color: #fff !important;
  background: linear-gradient(90deg, #2f8fe6 0%, #1976d2 58%, #43a047 100%) !important;
  box-shadow: 0 16px 48px rgba(25,118,210,0.16);
  text-decoration: none;
  transition: transform 220ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease, opacity 150ms ease;
  z-index: 3;
}

/* Hover/focus for CTA */
.services-hero .btn-hero:hover,
.services-hero .btn-hero:focus {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 90px rgba(25,118,210,0.22);
  outline: none;
}

/* small-screen adjustments: stack and keep readability */
@media (max-width: 760px) {
  .services-hero { padding: 60px 16px; min-height: 420px; }
  .services-hero .hero-title { font-size: clamp(1.4rem, 7.2vw, 2.2rem); padding: 10px 14px; }
  .services-hero .hero-lead { font-size: 0.98rem; display:block; width:calc(100% - 40px); padding:10px 12px; }
  .services-hero .btn-hero { width: calc(100% - 40px); max-width: 420px; margin: 12px auto 0; display:block; text-align:center; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .services-hero .hero-title,
  .services-hero .hero-lead,
  .services-hero .btn-hero {
    transition: none !important;
    animation: none !important;
  }
}

/* Industry card — refined title & text styling (visual clarity + responsive) */
@media (prefers-reduced-motion: no-preference) {
  .industry-card .content h3,
  .industry-card .content p {
    transition: transform 240ms ease, filter 240ms ease, opacity 240ms ease;
    will-change: transform, filter, opacity;
  }
}

.industry-card .content h3,



.industry-card h3 {
  font-family: "Poppins", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.6px;
  font-size: clamp(18px, 2.4vw, 24px);
  line-height: 1.06;
  margin: 0 0 8px;
  display: inline-block;
  text-shadow: 0 10px 22px rgba(0,0,0,0.65); /* strong contrast over images */
  background: rgba(0,0,0,0.28);              /* subtle backing to ensure legibility */
  padding: 8px 12px;
  border-radius: 8px;
  box-decoration-break: clone;
}

/* Secondary text / snippet */
.industry-card .content p,
.industry-card p {
  color: rgba(255,255,255,0.94);
  font-size: clamp(13px, 1.6vw, 15px);
  line-height: 1.45;
  margin: 0;
  background: rgba(0,0,0,0.18);
  padding: 7px 10px;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.28);
  letter-spacing: 0.2px;
}

/* Keep titles pinned bottom-left on larger screens; center on small screens for readability */
.industry-card .content {
  justify-content: flex-end;
  align-items: flex-start;
  text-align: left;
  padding: 22px;
}

/* Responsive: center text on small devices */
@media (max-width: 768px) {
  .industry-card .content {
    align-items: center;
    text-align: center;
    padding: 18px;
  }
  .industry-card .content h3,
  .industry-card .content p {
    width: calc(100% - 36px);
  }
}

/* Hover / focus micro-animation: brighten and lift text without altering layout */
.industry-card:hover .content h3,
.industry-card:focus-within .content h3 {
  transform: translateY(-6px);
  filter: brightness(1.06);
  box-shadow: 0 18px 44px rgba(0,0,0,0.45);
}

.industry-card:hover .content p,
.industry-card:focus-within .content p {
  transform: translateY(-4px);
  filter: brightness(1.04);
}

/* Maintain rounded corners and clipping for text panels */
.industry-card .content h3,
.industry-card .content p {
  border-radius: 8px;
}

/* Ensure touch accessibility: slightly larger tap targets on small screens */
@media (max-width: 480px) {
  .industry-card .content h3 { padding: 10px 14px; font-size: clamp(16px, 4.6vw, 20px); }
  .industry-card .content p  { padding: 9px 12px; font-size: 14px; }
}

/* Minimal overlay/tint for card hover (applies to all cards/grids) */
.card-hover-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: rgba(47,143,230,0.10); /* subtle blue tint */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(.4,.8,.2,1);
  z-index: 2;
}

/* Ensure cards are positioned for overlay and animate lift */
.service-card,
.industry-card,
.mv-card,
.benefit-item,
.value-item,
.process-step,
.engagement-models .model,
.approach-steps .step,
.expertise-list li {
  position: relative;
  transition: transform 0.32s cubic-bezier(.4,.8,.2,1);
  will-change: transform;
}

/* Blog Page Styles */

/* Page background and container */
body {
  background: #f8f9fc;
  color: #1a1a1a;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

.blog-hero {
  background: #fff;
  padding: 56px 0 32px 0;
  border-bottom: 1px solid #e5e8ef;
}

.blog-hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  margin: 0 0 16px 0;
  color: #073046;
  letter-spacing: 0.5px;
}

.blog-hero .lead {
  font-size: 1.15rem;
  color: #444;
  margin-bottom: 0;
  line-height: 1.6;
}

.blog-main {
  padding: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  margin-top: 32px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.post-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(47,143,230,0.07);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: transform .22s, box-shadow .22s;
  position: relative;
  min-height: 160px;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(47,143,230,0.13);
}

.post-title {
  font-size: 1.22rem;
  font-weight: 700;
  color: #1976d2;
  margin-bottom: 10px;
}

.post-excerpt {
  color: #444;
  font-size: 1rem;
  margin-bottom: 14px;
  line-height: 1.6;
}

.read-more {
  margin-top: auto;
  color: #2f8fe6;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color .18s;
}

.read-more:hover {
  color: #1976d2;
  text-decoration: underline;
}

.posts-footer-cta {
  margin-top: 18px;
  text-align: left;
}

.btn-primary {
  display: inline-block;
  background: #2f8fe6;
  color: #fff;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1rem;
  box-shadow: 0 6px 18px rgba(47,143,230,0.12);
  transition: transform .18s, box-shadow .18s, background .18s;
}

.btn-primary:hover {
  background: #1976d2;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(47,143,230,0.18);
}

.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.widget {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(47,143,230,0.06);
  padding: 22px 18px;
}

.widget h3 {
  font-size: 1.08rem;
  font-weight: 700;
  color: #073046;
  margin-bottom: 12px;
}

.widget-list {
  margin: 0;
  padding-left: 18px;
  font-size: 1.02rem;
  color: #222;
}

.widget-list li {
  margin-bottom: 8px;
  line-height: 1.5;
}

.featured {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.featured-item {
  color: #2f8fe6;
  font-weight: 600;
  text-decoration: none;
  font-size: 0.98rem;
  transition: color .18s;
}

.featured-item:hover {
  color: #1976d2;
  text-decoration: underline;
}

.subscribe p {
  color: #444;
  font-size: 0.98rem;
  margin-bottom: 10px;
}

.btn-secondary {
  display: inline-block;
  background: #fff;
  color: #2f8fe6;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 8px;
  border: 2px solid #2f8fe6;
  text-decoration: none;
  font-size: 1rem;
  transition: background .18s, color .18s;
}

.btn-secondary:hover {
  background: #2f8fe6;
  color: #fff;
}

.blog-cta {
  background: linear-gradient(90deg, #2f8fe6 0%, #1976d2 100%);
  color: #fff;
  padding: 54px 0 48px 0;
  text-align: center;
  margin-top: 48px;
}

.blog-cta h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
}

.blog-cta p {
  font-size: 1.08rem;
  margin-bottom: 22px;
  color: #eaf3ff;
}

.blog-cta .btn-primary {
  background: #fff;
  color: #1976d2;
  font-weight: 700;
  box-shadow: none;
  border: none;
  transition: background .18s, color .18s;
}

.blog-cta .btn-primary:hover {
  background: #eaf3ff;
  color: #1976d2;
}

/* Responsive adjustments */
@media (max-width: 1100px) {
  .blog-grid {
    grid-template-columns: 1fr 280px;
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .blog-hero h1 {
    font-size: 2rem;
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-sidebar {
    margin-top: 32px;
  }
}

@media (max-width: 600px) {
  .blog-hero {
    padding: 32px 0 18px 0;
  }
  .post-card {
    padding: 14px 8px;
    min-height: 120px;
  }
  .widget {
    padding: 12px 6px;
  }
  .blog-cta {
    padding: 32px 0 24px 0;
  }
}

/* Accessibility: focus ring for links */
.read-more:focus-visible,
.featured-item:focus-visible,
.btn-primary:focus-visible,
.btn-secondary:focus-visible {
  outline: 2px solid #2f8fe6;
  outline-offset: 2px;
}

/* Blog Hero Section - match "Who We Are" style */
.blog-hero {
  background: linear-gradient(90deg, #23a6e0 0%, #1586c7 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px 0;
  margin: 0;
  border-bottom: none;
}

.blog-hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #fff;
  letter-spacing: 0.5px;
}

.blog-hero .lead {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 auto;
  line-height: 1.6;
  max-width: 800px;
}

/* Responsive for hero */
@media (max-width: 600px) {
  .blog-hero {
    padding: 48px 0 32px 0;
  }
  .blog-hero h1 {
    font-size: 2rem;
  }
  .blog-hero .lead {
    font-size: 1rem;
  }
}

/* Contact Hero Section - match Blog Hero style */
.contact-hero {
  background: linear-gradient(90deg, #23a6e0 0%, #1586c7 100%);
  color: #fff;
  text-align: center;
  padding: 80px 0 60px 0;
  margin: 0;
  border-bottom: none;
}
.contact-hero .container { text-align: center; }
.contact-hero .hero-title {
  font-size: 3rem;
  font-weight: 800;
  margin: 0 0 18px 0;
  color: #fff;
  letter-spacing: 0.5px;
  font-family: 'Poppins', sans-serif;
}
.contact-hero .lead {
  font-size: 1.25rem;
  color: #fff;
  margin: 0 auto;
  line-height: 1.6;
  max-width: 800px;
}

/* Responsive for hero */
@media (max-width: 600px) {
  .contact-hero {
    padding: 48px 0 32px 0;
  }
  .contact-hero .hero-title {
    font-size: 2rem;
  }
  .contact-hero .lead {
    font-size: 1rem;
  }
}

/* Change Career Icon (SVG) in contact page */
.info-item .icon.career {
  background: rgba(35,166,224,0.12);
  color: #23a6e0;
  /* Use a briefcase SVG for career */
}
.info-item .icon.career svg {
  width: 24px;
  height: 24px;
  display: block;
  fill: currentColor;
}

/* === LOGO SIZE FIX (Final Override) === */
nav.navbar a.logo img {
  height: 200px !important;         /* Adjust height for better visibility */
  max-width: 250px !important;     /* Keep proportions clean */
  object-fit: contain;
  transition: all 0.3s ease;
  display: block;
}
@media (max-width: 768px) {
  nav.navbar a.logo img {
    height: 70px !important;
  }
}
/* ========================================
   MOBILE UI/UX IMPROVEMENTS
   Applied only for mobile and small screens (max-width: 768px)
   Desktop styles remain completely unchanged
======================================== */

@media (max-width: 768px) {
  /* Optimize main section padding for mobile */
  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  /* ===== NAVBAR MOBILE OPTIMIZATION ===== */
  .navbar {
    padding: 8px 0;
    height: auto;
  }

  .navbar .container {
    height: auto;
    padding: 8px 16px;
  }

  .logo img {
    height: 40px !important;
    max-width: 160px !important;
  }

  .navbar.scrolled .logo img {
    height: 36px !important;
  }

  /* Mobile hamburger menu styling */
  .nav-toggle {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
    padding: 0;
  }

  .nav-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: #073046;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translateY(11px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-11px);
  }

  /* Mobile nav links dropdown */
  .nav-links {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
  }

  .nav-links li:last-child {
    border-bottom: none;
  }

  .nav-link {
    display: block;
    padding: 14px 16px;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
    font-weight: 500;
    color: #073046;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .nav-link:active {
    background: #e6f3ff;
  }

  /* Mobile dropdown menu */
  .dropdown-menu {
    display: none;
    position: static;
    background: #f8f9fa;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
  }

  .dropdown.active .dropdown-menu {
    display: flex;
    flex-direction: column;
  }

  .dropdown-menu li {
    width: 100%;
    border: none;
    border-top: 1px solid #e0e0e0;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 16px 12px 32px;
    font-size: 13px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    transition: background 0.2s ease;
  }

  .dropdown-menu a:active {
    background: #e8f4ff;
  }

  .contact-btn {
    padding: 10px 16px;
    font-size: 12px;
    margin-left: 8px;
    display: block;
    width: auto;
  }

  /* ===== HERO SECTION MOBILE OPTIMIZATION ===== */
  .hero {
    min-height: 280px;
    padding-top: 64px;
  }

  .hero::before {
    background: rgba(6, 10, 18, 0.55);
  }

  .hero .hero-content {
    padding: 32px 16px;
    text-align: center;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.2;
    margin-bottom: 12px;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
  }

  .hero .lead {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
    max-width: 100%;
  }

  /* Full-width CTA button on mobile */
  .btn-hero {
    display: block;
    width: 100%;
    max-width: 280px;
    padding: 14px 20px;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
  }

  /* ===== INTRO SECTION MOBILE OPTIMIZATION ===== */
  .intro {
    padding: 40px 0;
  }

  .intro h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .intro-content {
    font-size: 14px;
    line-height: 1.6;
  }

  .intro-content p {
    margin-bottom: 16px;
  }

  /* ===== WHO WE ARE SECTION MOBILE OPTIMIZATION ===== */
  .who-we-are {
    padding: 40px 0;
  }

  .who-we-are h2 {
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
  }

  .content-block {
    max-width: 100%;
  }

  .content-block p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
  }

  /* ===== SERVICES SECTION MOBILE OPTIMIZATION ===== */
  .services {
    padding: 40px 0;
  }

  .services h2 {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
  }

  .section-intro {
    font-size: 14px;
    margin-bottom: 28px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 20px;
    min-height: auto;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }

  .service-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .btn-service {
    padding: 11px 18px;
    font-size: 13px;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    display: block;
  }

  /* ===== PROCESS SECTION MOBILE OPTIMIZATION ===== */
  .process {
    padding: 40px 0;
  }

  .process h2 {
    font-size: 24px;
    margin-bottom: 16px;
    text-align: center;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 28px;
  }

  .process-step {
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  }

  .step-number {
    font-size: 32px;
    top: 12px;
    right: 12px;
  }

  .process-step h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .process-step p {
    font-size: 13px;
    line-height: 1.5;
  }

  /* ===== INDUSTRIES SECTION MOBILE OPTIMIZATION ===== */
  .home-page .industries {
    padding: 40px 0;
  }

  .home-page .industries h2 {
    font-size: 24px;
    margin-bottom: 28px;
    text-align: center;
  }

  .home-page .industries-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .home-page .industry-card {
    min-height: 200px;
    border-radius: 10px;
  }

  .home-page .industry-card::before {
    background: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.3) 0%,
      rgba(0, 0, 0, 0.7) 100%
    );
  }

  .home-page .industry-card .content {
    padding: 16px;
    text-align: center;
    align-items: center;
  }

  .home-page .industry-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    padding: 6px 10px;
    display: inline-block;
  }

  .home-page .industry-card p {
    font-size: 13px;
    padding: 4px 8px;
  }

  .home-page .industries-footer {
    margin: 28px auto 0;
    font-size: 13px;
  }

  /* ===== CTA SECTION MOBILE OPTIMIZATION ===== */
  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .cta-section p {
    font-size: 14px;
    margin-bottom: 28px;
  }

  .cta-buttons {
    gap: 12px;
    flex-direction: column;
    align-items: center;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
    max-width: 280px;
    box-sizing: border-box;
    text-align: center;
    display: block;
  }

  /* ===== FOOTER MOBILE OPTIMIZATION ===== */
  .site-footer {
    padding: 28px 0 12px;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }

  .site-footer .footer-col {
    margin-bottom: 16px;
  }

  .site-footer h4 {
    font-size: 16px;
    margin-bottom: 12px;
  }

  .footer-list a {
    font-size: 13px;
  }

  .site-footer .contact .contact-line {
    font-size: 12px;
    margin: 8px 0;
  }

  .footer-bottom .container {
    padding: 0 16px;
    flex-direction: column;
  }

  .footer-bottom p {
    font-size: 12px;
  }

  .social-icons {
    gap: 8px;
  }

  .social-icons a {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }

  /* ===== GENERAL TEXT & SPACING ===== */
  h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }

  h3 {
    font-size: 16px;
  }

  p {
    font-size: 14px;
  }

  /* ===== TOUCH TARGET OPTIMIZATION ===== */
  a,
  button {
    min-height: 44px;
    min-width: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Ensure proper spacing for tap accuracy in dropdown menus */
  .dropdown-menu li a {
    min-height: 48px;
    padding: 12px 16px 12px 32px;
  }

  /* ===== IMPROVE READABILITY ===== */
  .hero,
  .about-hero,
  .blog-hero,
  .contact-hero {
    padding-top: 64px;
  }

  /* Ensure text doesn't get cut off at edges */
  .hero-content,
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  /* ===== RESPONSIVE TEXT SIZING ===== */
  body {
    font-size: 14px;
  }

  /* ===== IMAGES AND MEDIA ===== */
  img {
    max-width: 100%;
    height: auto;
  }
}

/* ===== EXTRA SMALL SCREENS (max-width: 480px) ===== */
@media (max-width: 480px) {
  /* Increase padding reduction for extra small screens */
  .container {
    padding: 0 12px;
  }

  section {
    padding: 36px 0;
  }

  .hero {
    min-height: 240px;
  }

  .hero .hero-content {
    padding: 24px 12px;
  }

  .hero h1 {
    font-size: 22px;
    line-height: 1.15;
  }

  .hero .lead {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .btn-hero {
    font-size: 12px;
    padding: 12px 16px;
  }

  h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .section-intro {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .service-card,
  .process-step,
  .mv-card {
    padding: 16px;
  }

  .service-card h3,
  .process-step h3 {
    font-size: 15px;
  }

  .contact-btn {
    padding: 8px 12px;
    font-size: 11px;
  }

  /* Stack buttons more tightly */
  .cta-buttons {
    gap: 8px;
  }

  .btn-primary,
  .btn-secondary {
    max-width: 100%;
    padding: 11px 18px;
  }

  /* Tighter footer */
  .site-footer h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer-list a {
    font-size: 12px;
  }

  /* Navbar adjustments for extra small */
  .logo img {
    height: 32px !important;
    max-width: 130px !important;
  }

  .nav-link {
    padding: 12px 12px;
    font-size: 13px;
  }

  .dropdown-menu a {
    padding: 10px 12px 10px 28px;
    font-size: 12px;
  }
}/* ========================================
   MOBILE NAVIGATION IMPROVEMENTS
   All changes mobile-only (max-width: 768px)
   Desktop navigation completely unchanged
======================================== */

/* Mobile hamburger button - initially hidden on desktop */
.nav-toggle {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  margin: 0;
  gap: 5px;
  z-index: 1001;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: #073046;
  border-radius: 2px;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  transform-origin: center;
}

/* Hamburger animation - X icon when menu is open */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(9px, 9px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-10px);
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile menu styles - only show on mobile */
@media (max-width: 768px) {
  /* Show hamburger button on mobile */
  .nav-toggle {
    display: flex;
  }

  /* Adjust navbar container for hamburger */
  .navbar .container {
    justify-content: space-between;
    gap: 0;
  }

  /* Mobile nav menu */
  .nav-links {
    display: none !important;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 0;
    margin: 0;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    max-height: calc(100vh - 64px);
    overflow-y: auto;
    box-sizing: border-box;
  }

  /* Show menu when active class is added */
  .nav-links.active {
    display: flex !important;
  }

  /* Style each nav item in mobile menu */
  .nav-links > li {
    width: 100%;
    border-bottom: 1px solid #f0f0f0;
    margin: 0;
    padding: 0;
  }

  .nav-links > li:last-child {
    border-bottom: none;
  }

  /* Navigation links in mobile menu */
  .nav-links .nav-link {
    display: block;
    width: 100%;
    padding: 14px 16px;
    color: #073046;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    box-sizing: border-box;
    transition: background 0.2s ease, color 0.2s ease;
  }

  .nav-links .nav-link:active {
    background: #e6f3ff;
    color: #1976d2;
  }

  /* Contact button in mobile menu */
  .nav-links .contact-btn {
    background: #1976d2;
    color: #fff !important;
    padding: 10px 16px;
    font-size: 12px;
    margin: 8px 16px;
    border-radius: 6px;
    display: inline-block;
    width: auto;
  }

  /* Dropdown menu styling for mobile */
  .dropdown {
    width: 100%;
  }

  .dropdown > .nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 16px;
  }

  /* Dropdown toggle arrow icon */
  .dropdown > .nav-link::after {
    content: '›';
    font-size: 20px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    display: inline-block;
  }

  /* Dropdown menu - initially hidden */
  .dropdown-menu {
    display: none !important;
    position: static;
    background: #f8f9fa;
    padding: 0;
    box-shadow: none;
    border-radius: 0;
    width: 100%;
    flex-direction: column;
    gap: 0;
    border-top: 1px solid #e8e8e8;
    border-bottom: 1px solid #e8e8e8;
    margin: 0;
  }

  /* Show dropdown when parent has active class */
  .dropdown.active .dropdown-menu {
    display: flex !important;
  }

  /* Rotate arrow when dropdown is open */
  .dropdown.active > .nav-link::after {
    transform: rotate(90deg);
  }

  /* Dropdown items styling */
  .dropdown-menu li {
    width: 100%;
    border: none;
    margin: 0;
    padding: 0;
  }

  .dropdown-menu a {
    display: block;
    padding: 12px 16px 12px 32px;
    font-size: 13px;
    color: #333;
    width: 100%;
    box-sizing: border-box;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
    border-left: 3px solid transparent;
  }

  .dropdown-menu a:active {
    background: #e8f4ff;
    color: #1976d2;
    border-left-color: #1976d2;
  }

  /* Ensure good touch targets in dropdown */
  .dropdown-menu a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Blog and other links in dropdown - ensure good spacing */
  .nav-links li a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  /* Adjust navbar height to accommodate mobile layout */
  .navbar .container {
    height: 64px;
    padding: 0 12px;
  }

  .navbar {
    padding: 0;
  }

  .logo img {
    height: 40px;
  }

  /* Prevent scrolling when mobile menu is open */
  body.menu-open {
    overflow: hidden;
  }

  /* Smooth animation for menu transitions */
  .nav-links {
    animation: slideDownMenu 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes slideDownMenu {
    from {
      opacity: 0;
      transform: translateY(-10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* When closing, use reverse animation */
  .nav-links:not(.active) {
    animation: slideUpMenu 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  }

  @keyframes slideUpMenu {
    from {
      opacity: 1;
      transform: translateY(0);
    }
    to {
      opacity: 0;
      transform: translateY(-10px);
    }
  }
}

/* Extra small mobile devices */
@media (max-width: 480px) {
  .navbar .container {
    height: 56px;
    padding: 0 8px;
  }

  .logo img {
    height: 36px;
  }

  .nav-toggle {
    width: 36px;
    height: 36px;
  }

  .nav-toggle span {
    width: 20px;
  }

  .nav-links .nav-link {
    padding: 12px 14px;
    font-size: 13px;
  }

  .dropdown-menu a {
    padding: 11px 14px 11px 28px;
    font-size: 12px;
  }
}/* Mobile-only footer improvements: accordion sections, spacing, hierarchy */
@media (max-width: 768px) {
  .site-footer {
    padding: 20px 0 12px;
    background: #060606; /* keep dark background as requested */
  }

  /* Stack footer columns into single column */
  .site-footer .footer-grid {
    display: block;
    padding: 0 16px;
    margin: 0;
  }

  .site-footer .footer-col {
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 12px 0;
    margin: 0;
  }

  /* Stronger headings and clear toggle button look */
  .site-footer .footer-col h4 {
    margin: 0;
    font-size: 18px;
    color: #ffffff;
    font-weight: 700;
    line-height: 1;
    padding: 6px 0;
  }

  /* Replace static headings with tappable toggle (JS will insert .toggle-btn) */
  .site-footer .footer-col .toggle-btn {
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    padding: 10px 0;
    font-size: 18px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    cursor: pointer;
    box-sizing: border-box;
    min-height: 44px; /* touch target minimum */
  }

  .site-footer .footer-col .toggle-btn:focus {
    outline: 3px solid rgba(47,143,230,0.14);
    outline-offset: 2px;
  }

  /* Chevron icon */
  .site-footer .footer-col .toggle-btn .chev {
    font-size: 18px;
    color: rgba(255,255,255,0.9);
    transition: transform 260ms ease;
    transform-origin: center;
  }
  .site-footer .footer-col.collapsed .toggle-btn .chev {
    transform: rotate(-90deg);
  }
  .site-footer .footer-col.expanded .toggle-btn .chev {
    transform: rotate(0deg);
  }

  /* Collapsible content area */
  .site-footer .footer-col .collapsible {
    overflow: hidden;
    transition: max-height 320ms ease, opacity 260ms ease;
    max-height: 1000px;
    opacity: 1;
    padding-top: 10px;
  }

  /* Collapsed state hides content */
  .site-footer .footer-col.collapsed .collapsible {
    max-height: 0;
    opacity: 0;
    padding-top: 0;
  }

  /* Increase spacing and touch targets for list items */
  .site-footer .footer-list li {
    padding: 10px 0;
  }

  .site-footer .footer-list a {
    display: block;
    padding: 8px 0;
    color: #d7d7d7;
    text-decoration: none;
    font-size: 15px;
  }

  .site-footer .footer-list a:active,
  .site-footer .footer-list a:focus {
    background: rgba(47,143,230,0.06);
    color: #fff;
  }

  /* Contact lines: align icon + text and ensure tap size */
  .site-footer .contact .contact-line {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: #d1d1d1;
    font-size: 14px;
  }

  .site-footer .contact .contact-line .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    min-height: 36px;
    color: #2f8fe6;
  }

  /* Center social icons and increase spacing */
  .site-footer .socials,
  .site-footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
    padding: 0;
    list-style: none;
  }

  .site-footer .socials .social-link,
  .site-footer .social-icons .social-link {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    min-width: 44px;
    min-height: 44px;
  }

  /* Footer bottom */
  .footer-bottom .container {
    padding: 10px 16px;
    text-align: center;
  }

  /* Make sure headings remain visible — stronger contrast */
  .site-footer h4 {
    color: #ffffff;
  }

  /* Ensure consistent left-right mobile padding */
  .site-footer,
  .site-footer .footer-grid,
  .site-footer .footer-col {
    padding-left: 16px;
    padding-right: 16px;
  }
}

/* ========================================
   FIX: Hide text caret on static content
   Scoped to static elements only
   Interactive elements (inputs, textareas, buttons) unaffected
======================================== */

/* Static text elements: hide text caret */
p, h1, h2, h3, h4, h5, h6, span, div, li, a, label {
  caret-color: transparent;
}

/* Form inputs and interactive elements: restore visible caret */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="password"],
input[type="search"],
input[type="url"],
input[type="number"],
textarea,
[contenteditable="true"] {
  caret-color: auto;
}

/* Buttons: ensure no caret */
button, input[type="button"], input[type="submit"], input[type="reset"] {
  caret-color: transparent;
}

/* Selects: ensure no caret */
select {
  caret-color: transparent;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .nav-links.active {
    display: block;
  }

  .dropdown-menu {
    display: none;
  }

  .dropdown-menu.open {
    display: block;
  }
}
