
:root {
  --bg-top:#0f4fa8;
  --bg-bottom:#063b6f;
  --muted:#b7d0e8;
  --white:#ffffff;
  --accent:#2563eb;
  --maxw:1100px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #0f172a;
  background: #fff;
  line-height: 1.5;
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

a {
  text-decoration: none;
  color: inherit;
}

/* HEADER */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e2e8f0;
  height: 70px;
  z-index: 20;
}

.site-header .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.brand {
  font-weight: 700;
  color: #0f172a;
}

.main-nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

.main-nav a {
  color: #334155;
  font-weight: 600;
}

.btn {
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  cursor: pointer;
  border: 0;
}

.btn-primary {
  background: #2563eb;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.btn-ghost {
  background: #2563eb;
  color: #fff;
}

/* HERO */
.hero {
  position: relative;
  background: linear-gradient(135deg,#1e3a8a,#2563eb);
  color: #ffffff;
  padding:80px 20px;
  text-align:center;
  font-family: 'Inter',sans-serif;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0,2);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin:0 auto;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  align-items:center;
  gap:22px;
}

.eyebrow {
  font-size: 18px;
  color: #dbeafe;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size:36px;
  line-height: 1.3;
  margin: 0 0 16px;
  font-weight: 700;
  color: #ffffff;
  text-shadow: 0 2px 10px rgba(0,0,0,0,2);
}

.hero-sub {
  font-size: 20px;
  font-weight: 400;
  line-height: 1.7;
  color: #e0e7ff;
  max-width: 800px;
}

.hero-actions {
  display: flex;
  gap: 20px;
  margin-top:25px;
}

.btn{
  padding:12px 30px;
  border-radius:6px;
  font-weight: 600;
  font-size: 16px;
  cursor:pointer;
  transition: all 0.3s ease;
}

.btn-primary{
  background: #ffffff;
  color: #1e3a8a;
  border:none;
}

.btn-primary:hover{
  background: #dbeafe;
}

.btn-secondary{
  background: transparent;
  color: #ffffff;
  border: 1px solid #ffffff;
}

.btn-secondary:hover{
  background:rgba(255,255,255,0.2);
}
:root { --bg-top:#0f4fa8; --bg-bottom:#063b6f; --muted:#b7d0e8; --white:#ffffff; --accent:#2563eb; --maxw:1100px; } 
* { box-sizing: border-box; } 
body { margin: 0; font-family: 'Inter', sans-serif; color: #0f172a; background: #fff; line-height: 1.5; } 
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; } 
a { text-decoration: none; color: inherit; } 

/* HEADER */ 
.site-header { position: fixed; top: 0; left: 0; right: 0; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-bottom: 1px solid #e2e8f0; height: 70px; z-index: 20; } 
.site-header .wrap { display: flex; justify-content: space-between; align-items: center; height: 70px; } 
.brand { font-weight: 700; color: #0f172a; } 
.main-nav { display: flex; gap: 20px; align-items: center; } 
.main-nav a { color: #334155; font-weight: 600; } 
.btn { border-radius: 8px; padding: 10px 16px; font-weight: 600; cursor: pointer; border: 0; } 
.btn-primary { background: #2563eb; color: #fff; } 
.btn-secondary { background: transparent; border: 1px solid #2563eb; color: #2563eb; } 
.btn-ghost { background: #2563eb; color: #fff; } 

/* HERO */ 
.hero { position: relative; background: linear-gradient(135deg,#1e3a8a,#2563eb); color: #ffffff; padding:80px 20px; text-align:center; font-family: 'Inter',sans-serif; } 
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0,2); } 
.hero-content { position: relative; z-index: 2; max-width: 900px; margin:0 auto; } 
.hero-inner { display: flex; flex-direction: column; align-items:center; gap:22px; } 
.eyebrow { font-size: 18px; color: #dbeafe; font-weight: 500; letter-spacing: 1px; text-transform: uppercase; } 
.hero-title { font-size:36px; line-height: 1.3; margin: 0 0 16px; font-weight: 700; color: #ffffff; text-shadow: 0 2px 10px rgba(0,0,0,0,2); } 
.hero-sub { font-size: 20px; font-weight: 400; line-height: 1.7; color: #e0e7ff; max-width: 800px; } 
.hero-actions { display: flex; gap: 20px; margin-top:25px; } 
.btn{ padding:12px 30px; border-radius:6px; font-weight: 600; font-size: 16px; cursor:pointer; transition: all 0.3s ease; } 
.btn-primary{ background: #ffffff; color: #1e3a8a; border:none; } 
.btn-primary:hover{ background: #dbeafe; } 
.btn-secondary{ background: transparent; color: #ffffff; border: 1px solid #ffffff; } 
.btn-secondary:hover{ background:rgba(255,255,255,0.2); } 

/* SERVICES */ 
.services-section { background: #f8fafc; text-align: center; padding: 100px 20px; color: #0f172a; font-family: 'Inter',sans-serif; } 
.section-eyebrow { font-size: 22px; color: #2563eb; font-weight: 600; margin-bottom: 10px; text-transform: uppercase; } 
.section-title { font-size: 32px; font-weight: 700; color:black; line-height: 1.4; margin: bottom 60px; max-width: 800px; margin-left:auto; margin-right:auto; } 
.services-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); gap: 30px; justify-content: center; align-items: stretch; } 
.service-card { background: #ffffff; border-radius: 16px; padding: 40px 25px; text-align: left; box-shadow: 0 5px 25px rgba(0,0,0,0.05); transition:all 0.3s ease; border:1px solid #e2e8f0; } 
.service-card:hover { transform: translateY(-6px); box-shadow: 0 8px 30px rgba(37,99,234,0.15); border-color: #93c5fd; } 
.icon { font-size: 30px; color: #2563eb; background: #e0ecff; border-radius: 12px; padding:14px; width:55px; height:55px; display: flex; align-items:center; margin-bottom: 20px; } 
.service-card h3 { margin-bottom: 12px; font-size: 20px; color: #0f172a; font-weight: 600; } 
.services-heading{ font-size:26px; font-weight: 800; color: #2563eb; text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-bottom: 16px ; text-shadow: 0 0 8px rgba(37,99,235,0.3); } 
.service-card p { color: #475569; font-size: 15px; line-height: 1.7; } 

/* MORE SERVICES */ 
.services-more { background: #fff; padding: 40px 20px 80px; } 
.services-more .services-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } 
.services-more .service-card { background: #f9fafb; border: 1px solid #e2e8f0; border-radius: 12px; padding: 28px 22px; } 
.services-more .icon { font-size: 26px; color: #2563eb; margin-bottom: 12px; } 

/* ABOUT */ 
.about-section { background: #fff; padding: 80px 20px; font-family: 'Inter',sans-serif; } 
.about-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 60px; max-width:1200px; margin:0 auto; } 
.about-image img { width: 100%; border-radius: 12px; box-shadow: 0 8px 20px rgba(0,0,0,0.05); } 
.section-eyebrow{ font-size:20px; font-weight:700; color: #2563eb; text-transform:uppercase; margin-bottom:10px; letter-spacing: 1px; } 
.about-title { font-size: 32px; margin-bottom:16px; font-weight: 700; color: #0f172a; } 
.about-desc { color: #475569; font-size: 18px; line-height: 1.9; margin-bottom: 20px; font-weight: 400; } 
.about-list { list-style: none; margin-top: 25px; padding: 0; display: flex; flex-direction:column; gap:16px; } 
.about-list li { margin-bottom: 10px; font-size: 17px; color: #1e293b; display: flex; align-items: flex-start; gap: 14px; line-height: 1.7; font-family: 'Open Sans',sans-serif; } 
.about-list i{ font-size:20px; color: #2563eb; margin-top:4px; } 
.about-list strong { color: #0f172a; font-weight: 600; } 

/* CONTACT */ 
.contact-section { background: #f8fafc; padding: 80px 20px; color: #0f172a; } 
.contact-section .section-eyebrow{ font-size:22px; font-weight: 700; color: #2563eb; letter-spacing: 1px; text-transform: uppercase; } 
.contact-header { text-align: center; margin-bottom: 40px; } 
.contact-header .section-title { font-size: 22px; max-width: 700px; margin: 0 auto; color: #1e293b; } 
.contact-content { display: grid; grid-template-columns: 1fr 2fr; gap: 40px; align-items: flex-start; } 

/* LEFT COLUMN */ 
.contact-info { display: grid; gap: 20px; } 
.info-card { display: flex; align-items: flex-start; gap: 14px; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 18px 20px; box-shadow: 0 3px 6px rgba(0,0,0,0.03); } 
.info-card .icon { font-size: 22px; color: #2563eb; } 
.info-card h4 { margin: 0 0 6px; font-size: 16px; color: #0f172a; } 
.info-card p { margin: 0; font-size: 14px; color: #475569; } 
.info-card a { color: #2563eb; } 

/* RIGHT COLUMN */ 
.contact-form { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 28px 24px; box-shadow: 0 3px 6px rgba(0,0,0,0.03); } 
.contact-form h4 { margin: 0 0 20px; font-size: 18px; color: #0f172a; } 
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; } 
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; } 
.form-group label { font-size: 14px; color: #475569; } 
.form-group input, .form-group textarea { padding: 10px 12px; border: 1px solid #cbd5e1; border-radius: 8px; font-size: 15px; background: #f9fafb; color: #0f172a; } 
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: #2563eb; } 
.contact-form .btn-primary { margin-top: 8px; background: #2563eb; color: #fff; font-weight: 600; padding: 10px 18px; border-radius: 8px; border: none; cursor: pointer; } 
.contact-form .btn-primary:hover { background: #1e4ed8; } 

/* FOOTER */ 
.footer-section { background: linear-gradient(180deg, #0f172a, #1e293b); color: #f1f5f9; padding-top: 60px; padding-bottom: 30px; } 
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.08); } 
.footer-left { display: flex; flex-direction: column; gap: 18px; } 
.footer-brand { font-size: 20px; font-weight: 600; color: #fff; margin: 0; } 
.footer-desc { color: #cbd5e1; line-height: 1.6; max-width: 420px; } 
.footer-socials { display: flex; gap: 18px; margin-top: 10px; } 
.footer-socials a { font-size: 22px; color: #cbd5e1; transition: color 0.3s ease, transform 0.2s ease; } 
.footer-socials a:hover { color: #60a5fa; transform: translateY(-3px); } 
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; } 
.footer-links h4 { font-size: 16px; color: #fff; margin-bottom: 10px; } 
.footer-links ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; } 
.footer-links ul li a { color: #cbd5e1; text-decoration: none; transition: color 0.2s ease; } 
.footer-links ul li a:hover { color: #60a5fa; } 
.footer-bottom { text-align: center; color: #94a3b8; font-size: 14px; padding-top: 20px; } 

/* RESPONSIVE */ 
@media (max-width: 900px) { 
  .services-grid, .services-more .services-grid { grid-template-columns: 1fr 1fr; } 
  .about-grid, .contact-content { grid-template-columns: 1fr; } 
  .footer-grid { grid-template-columns: 1fr; } 
} 

@media (max-width: 640px) { 
  .services-grid, .services-more .services-grid { grid-template-columns: 1fr; } 
  .hero-title { font-size: 20px; } 
  .section-title { font-size: 18px; } 
} 

.services-title{ font-size:28px; font-weight: 800; color: #2563eb; text-transform: uppercase; letter-spacing: 2px; text-align: center; margin-bottom: 20px; text-shadow: 0 0 10px rgba(37,99,235,0.3); transition:all 0.3s ease; cursor: pointer; font-family: 'poppins',sans-serif; } 
.services-title:hover{ color: #1e40af; text-shadow: 0 0 12px rgba(37,99,235,0.6),0 0 24px rgba(37,99,235,0.4); transform:scale(1.05); animation:blink-glow 1.2s infinite alternate; } 

@keyframes blink-glow{ 0%{ opacity: 1; text-shadow: 0 0 8px rgba(37,99,235,0.4); } 50%{ opacity: 0.8; text-shadow: 0 0 20px rgba(37,99,235,0.7); } 100%{ opacity: 1; text-shadow: 0 0 10px rgba(37,99,235,0.5); } } 

.services-section.services-grid, 
.services-more.services-grid { margin-top:0; padding-top:0; row-gap:20px; } 
.services-section{ padding-bottom: 60px; } 
.services-more{ padding-top:0; margin-top:-40px; } 

.about-heading { font-family: 'Poppins', sans-serif; font-size: 32px; font-weight: 600; color: #2563eb; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 25px; text-shadow: 0 0 8px rgba(37, 99, 235, 0.3); transition: all 0.3s ease-in-out; cursor: pointer; display: inline-block; } 
.about-heading:hover { color: #1e40af; text-shadow: 0 0 15px rgba(37, 99, 235, 0.6), 0 0 30px rgba(37, 99, 235, 0.4); transform: scale(1.05); animation: blinkGlow 1.2s infinite alternate; } 

@keyframes blinkGlow { 0% { opacity: 1; text-shadow: 0 0 8px rgba(37, 99, 235, 0.3); } 50% { opacity: 0.85; text-shadow: 0 0 20px rgba(37, 99, 235, 0.7); } 100% { opacity: 1; text-shadow: 0 0 10px rgba(37, 99, 235, 0.5); } } 

.section-eyebrow, .about-heading, .services-title { font-family: 'Poppins', sans-serif; font-size: 30px; font-weight: 600; color: #2563eb; text-transform: uppercase; letter-spacing: 3px; margin-bottom: 25px; text-align: center; text-shadow: 0 0 8px rgba(37, 99, 235, 0.3); transition: all 0.3s ease-in-out; cursor: pointer; display: inline-block; } 
.section-eyebrow:hover, .about-heading:hover, .services-title:hover { color: #1e40af; text-shadow: 0 0 15px rgba(37, 99, 235, 0.6), 0 0 30px rgba(37, 99, 235, 0.4); transform: scale(1.05); animation: blinkGlow 1.2s infinite alternate; } 

@keyframes blinkGlow { 0% { opacity: 1; text-shadow: 0 0 8px rgba(37, 99, 235, 0.3); } 50% { opacity: 0.85; text-shadow: 0 0 20px rgba(37, 99, 235, 0.7); } 100% { opacity: 1; text-shadow: 0 0 10px rgba(37, 99, 235, 0.5); } } 

.footer-socials i { font-size: 24px; color: white; margin-right: 12px; } 

/* ============================ MOBILE FIXES ============================ */ 
@media (max-width: 768px) { 
  .site-header .wrap { flex-direction: column; height: auto; padding: 10px 0; gap: 8px; } 
  .main-nav { flex-wrap: wrap; justify-content: center; gap: 12px; } 
  .hero { padding: 120px 20px 60px; text-align: center; } 
  .hero-title { font-size: 26px; } 
  .hero-sub { font-size: 16px; } 
  .hero-actions { flex-direction: column; width: 100%; } 
  .hero-actions .btn { width: 100%; text-align: center; } 
  .services-grid { grid-template-columns: 1fr; text-align: center; } 
  .service-card { text-align: center; } 
  .service-card .icon { margin-left: auto; margin-right: auto; } 
  .services-more .services-grid { grid-template-columns: 1fr !important; } 
  .about-grid { grid-template-columns: 1fr !important; text-align: center; } 
  .about-list { align-items: center; } 
  .contact-content { grid-template-columns: 1fr !important; } 
  .form-grid { grid-template-columns: 1fr !important; } 
  .footer-grid { grid-template-columns: 1fr; text-align: center; } 
  .footer-links { grid-template-columns: 1fr; } 
  .footer-socials { justify-content: center; } 
} 

@media (max-width: 480px) { 
  .hero-title { font-size: 22px; } 
  .section-title { font-size: 20px; } 
  .services-title, .about-heading, .section-eyebrow { font-size: 22px !important; letter-spacing: 2px; } 
  .contact-header .section-title { font-size: 18px; } 
} 

@media (max-width: 768px) { 
  .main-nav { flex-direction: column; gap: 10px; } 
  .main-nav a.btn-ghost { width: 100%; text-align: center; margin-top: 10px; } 
} 

@media (max-width: 768px) { 
  .site-header { height: auto !important; padding-bottom: 10px; } 
  .site-header .wrap { height: auto !important; flex-direction: column; gap: 8px; padding-top: 10px; padding-bottom: 10px; } 
  .main-nav { flex-direction: column; gap: 8px; } 
  .hero { margin-top: 120px !important; } 
} 

@media (max-width: 768px) { 
  .site-header { background: #fff !important; height: auto !important; padding: 12px 0 0; } 
  .site-header .wrap { flex-direction: column; align-items: center; height: auto !important; padding-bottom: 10px; gap: 6px; } 
  .main-nav { flex-direction: column; gap: 8px; padding-bottom: 12px; } 
  .main-nav .btn-ghost { margin-top: 10px; width: 90%; text-align: center; } 
  .hero { margin-top: 0 !important; padding-top: 150px; } 
}

/* ---------------------------
   HAMBURGER MENU (MOBILE)
---------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: #0f172a;
  border-radius: 4px;
  transition: 0.3s;
}

/* Show hamburger on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  /* Hide desktop nav initially */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    padding: 20px 0;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  }

  /* Show nav when active */
  .main-nav.active {
    display: flex;
  }

  .main-nav a {
    padding: 12px 0;
    font-size: 18px;
  }

  .main-nav .btn-ghost {
    width: 90%;
    margin: 10px auto 0;
  }
}
/* Hamburger hidden on desktop */
.hamburger {
  display: none;
  background: none;
  border: 0;
  font-size: 26px;
  cursor: pointer;
}

/* Mobile Hamburger Position Fix */
@media (max-width: 768px) {

  /* Show hamburger */
  .hamburger {
    display: block;
    position: absolute;
    right: 20px; /* right side */
    top: 22px;   /* aligned under header */
    z-index: 100;
  }

  /* Keep brand centered */
  .site-header .wrap {
    justify-content: center;
    position: relative;
  }

  /* Hide menu by default */
  .main-nav {
    display: none;
    flex-direction: column;
    background: white;
    padding-bottom: 12px;
    width: 100%;
    text-align: center;
  }

  /* Show when toggled */
  #mobileMenu.active {
    display: flex;
  }
}
/* MOBILE HAMBURGER POSITION FIX */
@media (max-width: 768px) {

    /* Make header container positionable */
    .site-header .wrap {
        position: relative;
    }

    /* Hamburger icon placement */
    .hamburger {
        position: absolute;
        right: 20px;   /* distance from right */
        top: 22px;     /* distance from top */
        font-size: 28px;
        cursor: pointer;
        display: block;
        z-index: 1000;
    }

    /* Hide nav by default on mobile */
    .main-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding-bottom: 15px;
        margin-top: 10px;
    }

    /* Show menu after clicking */
    .main-nav.show {
        display: flex;
    }
}

/* Hide hamburger on desktop */
@media (min-width: 769px) {
    .hamburger {
        display: none;
    }
}
/* -----------------------------
   MOBILE HEADER + HAMBURGER FIX
   -----------------------------
   Tweak the two CSS variables below to adjust header height or hamburger vertical position:
     --header-h: header height (px)
     --hamburger-top: distance from top of header (px)
*/
:root {
  --header-h: 70px;
  --hamburger-top: 22px;
}

/* Make sure header uses the wrapper we positioned */
.site-header { z-index: 999; }

/* Desktop: keep original behavior */
@media (min-width: 769px) {
  .hamburger { display: none; }          /* hide hamburger on desktop */
  .site-header { height: auto; }         /* use your existing desktop header */
  .hero { margin-top: 0 !important; }    /* hero normal on desktop */
}

/* Mobile layout */
@media (max-width: 768px) {

  /* Force a stable header area so blue hero starts below it */
  .site-header {
    height: var(--header-h) !important;
    background: rgba(255,255,255,0.98);
    border-bottom: 1px solid #e8edf3;
    display: block;
  }

  /* Make this wrapper a positioning context and keep brand centered */
  .site-header .header-wrap {
    position: relative;
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: center; /* brand centered */
    padding: 0 20px;
  }

  /* Brand stays centered and on single line */
  .site-header .brand {
    position: relative;
    z-index: 10;
    text-align: center;
    display: inline-block;
    width: auto;
  }

  /* Hamburger: place at top-right inside the white header */
  .hamburger {
    position: absolute;
    right: 16px;                        /* distance from right edge */
    top: var(--hamburger-top);          /* vertical adjust */
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    font-size: 24px;
    line-height: 1;
    cursor: pointer;
    padding: 6px;
  }

  /* Hide desktop nav by default on mobile; will show when toggled */
  .main-nav {
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,0.04);
    margin-top: 0;
    padding: 8px 0;
    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
    position: relative;
    z-index: 25;
  }

  /* Menu visible state */
  .main-nav.show {
    display: flex;
  }

  .main-nav a {
    padding: 12px 16px;
    font-size: 17px;
    color: #1f2937;
  }

  .main-nav .btn-ghost {
    margin: 10px auto 0;
    width: 90%;
  }

  /* Ensure hero starts below header - prevents overlap */
  .hero {
    margin-top: var(--header-h) !important;
  }
}

/* Reduce font size of mobile dropdown menu items */
@media (max-width: 768px) {
  .main-nav a {
    font-size: 15px !important;   /* adjust size here */
    padding: 10px 14px;           /* smaller padding */
  }

  .main-nav .btn-ghost {
    font-size: 15px !important;
    padding: 12px 14px;
  }
}

/* FIX HERO HEIGHT ON MOBILE */
@media (max-width: 768px) {
  .hero {
    padding-top: 80px !important;   /* Reduce from 150px */
    padding-bottom: 40px !important;
  }

  .hero-title {
    font-size: 22px !important;   /* smaller heading */
    line-height: 1.3;
  }

  .hero-sub {
    font-size: 15px !important;
    line-height: 1.5;
  }

  .hero-inner {
    gap: 14px !important; /* reduce spacing */
  }
}

/* MOBILE MENU FIX — Reduce white space */
@media (max-width: 768px) {

  #mobileMenu {
    width: 85%;                /* reduce width from 100% */
    margin: 0 auto;            /* center menu */
    border-radius: 10px;       /* rounded dropdown */
    padding: 15px 0 !important;
  }

  #mobileMenu a {
    font-size: 15px !important; 
    padding: 10px 0 !important; 
    text-align: center;
  }

  #mobileMenu .btn-ghost {
    width: 85%;
    margin: 15px auto 5px;
    padding: 12px 0 !important;
  }
}

/* REMOVE WHITE SPACE IN MOBILE MENU */
@media (max-width: 768px) {

  #mobileMenu {
    width: 100%;
    padding: 0 !important;
    margin: 0;
    background: #ffffff;
  }

  #mobileMenu a {
    font-size: 15px !important;
    padding: 8px 12px !important;   /* smaller height */
    margin: 0 !important;
    text-align: left;               /* optional: left align */
    border-bottom: 1px solid #f1f1f1;
  }

  #mobileMenu a:last-child {
    border-bottom: none;
  }

  /* Get Started button */
  #mobileMenu .btn-ghost {
    padding: 10px !important;
    margin: 5px 10px !important;
    text-align: center !important;
  }
}
/* ======== FLOATING RIGHT-SIDE MOBILE MENU (LIKE EXAMPLE) ======== */
@media (max-width: 768px) {

  /* Hide menu by default */
  #mobileMenu {
    display: none;
    position: absolute;
    top: 60px;               /* appear below header */
    right: 10px;             /* right aligned */
    width: 180px;            /* small box */
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    padding: 8px 0;
    z-index: 9999;
  }

  /* Show menu when active */
  #mobileMenu.active {
    display: block;
  }

  /* Menu Items */
  #mobileMenu a {
    display: block;
    padding: 10px 16px;
    font-size: 15px;
    color: #111;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  #mobileMenu a:last-child {
    border-bottom: none;
  }

  /* Hamburger icon */
  .hamburger {
    position: absolute;
    top: 18px;
    right: 16px;
    font-size: 26px;
    cursor: pointer;
    z-index: 10000;
  }
}


/* FIX WHITE SPACE UNDER HEADER (MOBILE ONLY) */
@media (max-width: 768px) {
  .site-header .wrap {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  .site-header {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }

  /* Hide menu completely when not active */
  #mobileMenu:not(.active) {
    display: none !important;
    height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }
}
.section-subtitle {
  font-size: 20px;
  color: #475569;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 30px;
  font-weight: 400;
  line-height: 1.6;
}

/* INDUSTRIES SECTION */
.industries-section {
  padding: 80px 20px;
  background: linear-gradient(135deg, white, white);
  color: white;
  text-align: center;
}

.industries-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #ffffff !important;   /* force white */
  background: none !important; /* remove gradient */
  -webkit-background-clip: unset !important;
  -webkit-text-fill-color: #ffffff !important;
}


.industries-subtitle {
  font-size: 18px;
  opacity: 0.8;
  margin-bottom: 50px;
}

.industries-grid {
  display: grid;
  gap: 25px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.industry-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  padding: 18px;
  backdrop-filter: blur(6px);
  transition: 0.3s;
}

.industry-card img {
  width: 100%;
  height: 150px;
  border-radius: 12px;
  object-fit: cover;
  margin-bottom: 15px;
}

.industry-card h3 {
  font-size: 20px;
  margin-bottom: 6px;
}

.industry-card p {
  font-size: 14px;
  opacity: 0.85;
}

.industry-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.08);
}

/* ---------- 5 cards per row on wide screens (for Industries / cards grid) ---------- */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr); /* five equal columns */
  gap: 28px; /* spacing between cards */
  align-items: stretch;
}

/* ensure cards and images scale nicely */
.industry-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.03), rgba(255,255,255,0.02));
  border-radius: 12px;
  padding: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* image area sizing inside each card */
.industry-card img {
  display: block;
  width: 100%;
  height: 160px;     /* tweak height as needed */
  object-fit: cover; /* preserve aspect ratio but fill */
  border-radius: 10px;
  margin-bottom: 14px;
}

/* card title & description spacing */
.industry-card h3 {
  margin: 0 0 10px;
  font-size: 18px;
  color: #fff;
}
.industry-card p {
  margin: 0;
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

/* ---------------- Responsive breakpoints ---------------- */
/* 1200px and below -> 4 columns */
@media (max-width: 1200px) {
  .industries-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* 992px and below -> 3 columns */
@media (max-width: 992px) {
  .industries-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 640px and below -> 2 columns */
@media (max-width: 640px) {
  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .industry-card img {
    height: 140px;
  }
}

/* mobile single column */
@media (max-width: 420px) {
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .industry-card img {
    height: 200px;
  }
}

/* ================= HERO FEATURE CARDS ================= */
.hero-cards {
  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 28px;
  margin-top: 30px;
  flex-wrap: nowrap;      /* ❗ Force single row */
}

.hero-card {
  width: 300px;
  padding: 30px 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  text-align: center;
  transition: 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.35);
}

.hero-icon {
  font-size: 42px;
  color: #4fd1ff;
  margin-bottom: 15px;
}

.hero-card h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #ffffff;
}

.hero-card p {
  color: #dbeafe;
  font-size: 15px;
  line-height: 1.6;
}

/* Mobile View - Stack Cards */
@media (max-width: 850px) {
  .hero-cards {
    flex-wrap: wrap; /* allow stacking only on small screens */
  }
  .hero-card {
    width: 90%;
  }
}

/* ===========================
   WHY HYBRID AI SECTION
=========================== */

.why-hybrid {
  padding: 80px 20px;
  background: linear-gradient(135deg, #0f1b40, #1d0433);
  color: soft blue;
  text-align: center;
}

.why-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  background: linear-gradient(90deg, #4fb4ff, #8d7bff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.why-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.why-card {
  background: linear-gradient(180deg,#e9ffef,#ffffff);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.18);
  box-shadow: 0 0 18px rgba(255,255,255,0.05);
  transition: 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
  background: rgba(255,255,255,0.10);
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
}

.why-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-card ul li {
  padding: 6px 0;
  font-size: 15px;
  opacity: 0.9;
}



/* Responsive */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}
.green-check {
  color: #22c55e;       /* bright green */
  font-weight: bold;
  margin-right: 6px;
  font-size: 18px;
}
/* Reduce height of Hybrid AI Approach cards */
.hybrid-card {
    padding: 20px 25px !important;   /* reduce top/bottom padding */
    min-height: 200px !important;    /* reduce card height */
}

/* Also reduce spacing between list items */
.hybrid-card ul li {
    margin-bottom: 10px !important;
}

/* Reduce heading spacing */
.hybrid-card h3 {
    margin-bottom: 12px !important;
}


/* ===================== IMPACT SECTION ===================== */
.impact-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #0a1b3d, #240235);
  color: white;
}

.impact-title {
  font-size: 40px;
  font-weight: 700;
  color: #ffffff !important;
  background: none !important;
  -webkit-text-fill-color: #ffffff !important;
}

.impact-subtitle {
  color: #cbd5e1;
  font-size: 18px;
  margin-bottom: 50px;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.impact-card {
  padding: 30px;
  background: rgba(255,255,255,0.06);
  border-radius: 18px;
  backdrop-filter: blur(8px);
  text-align: left;
  border-top: 3px solid #5f9cff;
}

.impact-card h3 {
  margin-bottom: 12px;
  color: white;
}

.impact-card ul {
  margin: 18px 0 0;
  padding-left: 18px;
}

.impact-card li {
  margin-bottom: 10px;
  list-style: none;
  color: #36ff98; /* green check color */
  font-size: 15px;
}

.impact-tag {
  padding: 6px 14px;
  background: rgba(255,255,255,0.12);
  border-radius: 20px;
  font-size: 13px;
  color: #dbeafe;
  display: inline-block;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .impact-grid {
    grid-template-columns: 1fr;
  }
}
/* Hover Effects for Impact Cards */
.impact-card {
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Glow + Lift on hover */
.impact-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(80, 120, 255, 0.25);
  border-top: 3px solid #7cb8ff;
}

/* Subtle gradient highlight on hover */
.impact-card:hover::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(100, 180, 255, 0.15),
    rgba(180, 120, 255, 0.15)
  );
  z-index: 0;
}

/* Make text stay above highlight layer */
.impact-card * {
  position: relative;
  z-index: 1;
}

.case-tag {
  display: inline-block;
  background: #0c8c48;   /* green background */
  color: white;
  padding: 6px 14px;
  font-size: 14px;
  border-radius: 20px;
  font-weight: 600;
  margin-bottom: 15px;
}

/* ============================================
   GLOBAL BLUE + WHITE THEME FIX
   ============================================ */

/* Sections with WHITE background */
.services-section,
.services-more,
.about-section,
.contact-section {
  background: #ffffff !important;
}

/* Sections with BLUE GRADIENT background */
.why-hybrid,
.industries-section,
.impact-section {
  background: linear-gradient(135deg, #1e3a8a, #2563eb) !important;
  color: #ffffff !important;
}

/* Fix card text inside blue sections */
.why-card, .industry-card, .impact-card {
  color: #ffffff !important;
  background: rgba(255,255,255,0.10) !important;
  border-color: rgba(255,255,255,0.3) !important;
}

/* Fix headings colors on blue background */
.why-title,
.industries-title,
.impact-title {
  -webkit-text-fill-color: blue !important;
  color: #2563eb !important;
}

/* MAKE WHY-HYBRID SECTION WHITE */
.why-hybrid {
  background: #ffffff !important;
  color: #0f172a !important;

}

.why-card {
  background: #f9fafb !important;
  border: 1px solid #e2e8f0 !important;
  color: #1e293b !important;
}

.why-card h3 {
  color: #0f172a !important;
}

/* FORCE INDUSTRIES HEADING TO WHITE */
.industries-title {
  color: #ffffff !important;
  -webkit-text-fill-color: #ffffff !important;
  background: none !important;
}

/* FORCE WHITE COLOR FOR IMPACT HEADING */
.impact-title {
    color: #ffffff !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #ffffff !important;
    background-clip: unset !important;
    text-shadow: none !important;
}

/* ===========================
   WHY HYBRID AI SECTION (FIXED)
=========================== */

.why-hybrid {
  padding: 80px 20px;
  background: #ffffff !important;        /* White background */
  color: #0f172a !important;
  text-align: center;
}

.why-title {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: 700;
  color: #1e3a8a !important;             /* Blue heading */
}

.why-subtitle {
  font-size: 18px;
  opacity: 0.9;
  margin-bottom: 50px;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ===========================
   HIGHLIGHTED HYBRID CARDS
=========================== */

.why-card {
  background: linear-gradient(135deg, blue, blue);  /* Light blue highlight */
  border-radius: 18px;
  padding: 30px 25px;
  text-align: left;
  border: 1px solid #c7ddff;
  box-shadow: 0 8px 20px rgba(0, 60, 150, 0.08);
  transition: 0.35s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(135deg, #d7ebff, #ffffff);
  box-shadow: 0 14px 28px rgba(0, 80, 170, 0.18);
  border-color: blue;
}

.why-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #0f172a;
  font-weight: 600;
}

.why-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.why-card ul li {
  padding: 6px 0;
  font-size: 15px;
  color: #334155;
}

/* For green check marks */
.green-check {
  color: #22c55e;
  font-weight: bold;
  margin-right: 6px;
  font-size: 18px;
}

/* Mobile */
@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}


/* ============================
   UPDATED HIGHLIGHTED WHY CARDS
============================ */

.why-card {
  background: linear-gradient(145deg, #ffffff, #e9f5ff);
  border-radius: 18px;
  padding: 32px 26px;
  border: 1px solid #cce7ff;
  box-shadow: 0 8px 25px rgba(0, 102, 255, 0.12);
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* SOFT GLOW BORDER EFFECT */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,162,255,0.25), rgba(120,90,255,0.25));
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

.why-card:hover::before {
  opacity: 1;
}

/* LIFT + STRONGER SHADOW ON HOVER */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 102, 255, 0.25);
  border-color: #99d0ff;
  background: linear-gradient(145deg, #ffffff, #f0f7ff);
}

.why-card * {
  position: relative;
  z-index: 1;
}

/* Text styling */
.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b1e3f;
  margin-bottom: 16px;
}

.why-card ul li {
  font-size: 15px;
  color: #1e293b;
  margin-bottom: 8px;
}
/* ============================
   BLUE HIGHLIGHT WHY CARDS
============================ */

.why-card {
  background: #f0f6ff; /* soft blue background */
  border-radius: 18px;
  padding: 32px 26px;
  border: 1px solid #c2dbff;
  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.20); /* blue glow */
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}

/* Blue glow layer */
.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.25), rgba(147, 197, 253, 0.25));
  opacity: 0;
  transition: 0.4s ease;
  z-index: 0;
}

/* Hover effect */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
  border-color: #7bb4ff;
  background: #e6f1ff;
}

.why-card:hover::before {
  opacity: 1;
}

/* Text above glow */
.why-card * {
  position: relative;
  z-index: 1;
}

/* Heading inside card */
.why-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0b2050;
  margin-bottom: 16px;
}

/* List items */
.why-card ul li {
  font-size: 15px;
  color: #0f172a;
  margin-bottom: 8px;
}

/* ======== BRIGHT BLUE HIGHLIGHT CARDS ======== */

.why-card {
  background: linear-gradient(180deg, #c7dbff, #e3eeff);
  border-radius: 18px;
  padding: 30px 25px;
  text-align: left;
  border: 1px solid #9bbdff;
  box-shadow: 0 8px 22px rgba(0, 70, 200, 0.15);
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  background: linear-gradient(180deg, #b7d1ff, #d7e6ff);
  box-shadow: 0 12px 30px rgba(0, 90, 240, 0.25);
}

.why-card h3 {
  color: bule !important;
}

.why-card ul li {
  color: blue !important;
}


/* FIX INDUSTRY CARD ALIGNMENT */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.industry-card {
    background: rgba(255, 255, 255, 0.10);
    border-radius: 16px;
    padding: 20px 18px;
    text-align: center;
    height: 100%;             /* ensures equal card height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 14px;
}

/* FIX IMAGE SIZE */
.industry-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
}

/* FIX TITLE ALIGNMENT */
.industry-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    color: #ffffff;
    min-height: 45px;      /* Ensures all titles occupy same height */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* FIX SUBTITLE (DESCRIPTION) ALIGNMENT */
.industry-card p {
    margin: 0;
    color: rgba(255,255,255,0.9);
    font-size: 14px;
    line-height: 1.4;
    min-height: 40px;     /* Makes all descriptions equal space */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

