
text/css style.css ( UTF-8 Unicode text, with CRLF line terminators )
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Inter, Arial, sans-serif;
  background: #f8fafc;
  color: #0f172a;
  line-height: 1.7;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */

.header {
  background: rgba(255,255,255,0.95);
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(8px);
}

.header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: 800;
  color: #1e293b;
}

nav a {
  margin-left: 24px;
  font-weight: 500;
  color: #1e293b;
  position: relative;
  padding-bottom: 6px;
  transition: 0.2s;
}

nav a:hover {
  color: #2563eb;
}

/* ACTIVE MENU */
nav a.active {
  color: #2563eb;
  font-weight: 700;
}

nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  border-radius: 2px;
}

.btn-primary {
  background: linear-gradient(90deg, #2563eb, #06b6d4);
  color: white;
  padding: 12px 22px;
  border-radius: 12px;
  display: inline-block;
  font-weight: 600;
  transition: 0.3s;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(37,99,235,0.3);
}

/* ================= HERO ================= */

.hero {
  background: linear-gradient(180deg, #eef2ff, #ffffff);
  padding: 140px 0 110px;
  text-align: center;
}

.hero small {
  color: #06b6d4;
  font-weight: 600;
  letter-spacing: 1px;
}

.hero h1 {
  font-size: 58px;
  font-weight: 800;
  color: #1e3a8a;
  margin: 20px 0;
  line-height: 1.2;
}

.hero p {
  font-size: 19px;
  color: #475569;
  max-width: 720px;
  margin: 0 auto 35px;
}

/* ================= SECTIONS ================= */

section {
  scroll-margin-top: 100px;
}

.section {
  padding: 90px 0;
}

.section:nth-child(even) {
  background: #f1f5f9;
}

.section-title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #1e3a8a;
  margin-bottom: 40px;
}

.section-subtitle {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
  color: #475569;
}

/* ================= FEATURE ================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.feature-card {
  background: white;
  padding: 45px 35px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
}

/* ================= SERVICES ================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

.service-card {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
  transition: 0.3s;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card h3 {
  color: #2563eb;
  margin-bottom: 12px;
}

/* ================= WHY US ================= */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 35px;
}

/* ================= CONTACT ================= */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 60px;
}


.contact-box {
  background: white;
  padding: 45px;
  border-radius: 22px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.06);
}

.contact-box input,
.contact-box select {
  width: 100%;
  padding: 14px;
  margin-top: 10px;
  margin-bottom: 18px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
}

.contact-box input:focus,
.contact-box select:focus {
  outline: none;
  border-color: #2563eb;
}

.contact-box button {
  width: 100%;
  border: none;
  font-size: 16px;
  cursor: pointer;
}

/* ================= FOOTER ================= */

.footer-main {
  background: linear-gradient(135deg, #020617, #0f172a);
  color: #cbd5f5;
  padding: 80px 0 0;
}

.footer-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 24px;
  font-weight: 800;
  color: #22d3ee;
  margin-bottom: 8px;
}

.footer-main h4 {
  color: white;
  margin-bottom: 15px;
}

.footer-main a {
  display: block;
  color: #cbd5f5;
  margin-bottom: 8px;
}

.footer-main a:hover {
  color: #22d3ee;
}

.footer-note {
  color: #94a3b8;
  font-size: 14px;
  margin-top: 8px;
}

.footer-bottom {
  text-align: center;
  padding: 22px 0;
  color: #94a3b8;
  font-size: 14px;
}

/* ================= SOCIAL ICONS ================= */

.footer-social {
  margin-top: 18px;
  display: flex;
  gap: 16px;
}

.footer-social a {
  font-size: 22px;
  color: #cbd5f5;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #22d3ee;
  transform: scale(1.25);
}

/* ================= MARQUEE ================= */

.veterans-marquee {
  overflow: hidden;
  width: 100%;
  margin-top: 15px;
}

.veterans-track {
  display: flex;
  gap: 45px;
  width: max-content;
  animation: scrollLeft 20s linear infinite;
}

@keyframes scrollLeft {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* FOUNDER UI CARD */

.founder-ui-card {
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 22px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.founder-circle {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #1e3a8a;
  color: white;
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.founder-ui-card h2 {
  font-size: 22px;
  color: #0f172a;
  margin-bottom: 4px;
}

.founder-role {
  color: #64748b;
  font-size: 15px;
  margin-bottom: 20px;
}

.founder-desc {
  color: #475569;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.founder-sub {
  color: #1e293b;
  font-size: 16px;
  margin-bottom: 15px;
}

.founder-brands {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  color: #94a3b8;
  font-weight: 600;
}
/* ================= SERVICES SECTION FIX ================= */

#services small {
  display: block;
  text-align: center;
  color: #06b6d4;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#services h1 {
  text-align: center;
  font-size: 42px;
  color: #1e3a8a;
  margin-bottom: 15px;
}

#services p {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 50px;
  color: #475569;
  font-size: 17px;
}

/* Service card content */

.service-card strong {
  display: block;
  margin-top: 15px;
  margin-bottom: 5px;
  color: #1e3a8a;
  font-size: 16px;
}

.service-card ul {
  margin-left: 18px;
  margin-bottom: 10px;
  color: #475569;
}

.service-card ul li {
  margin-bottom: 6px;
  line-height: 1.5;
}

.service-card p {
  color: #475569;
  font-size: 15px;
  margin-bottom: 10px;
}
/* ================= WHY US SECTION FIX ================= */

#why small {
  display: block;
  text-align: center;
  color: #06b6d4;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

#why h1 {
  text-align: center;
  font-size: 42px;
  color: #1e3a8a;
  margin-bottom: 40px;
}

/* Why cards */

#why .feature-card {
  background: linear-gradient(135deg, #2563eb, #1e3a8a);
  color: white;
  text-align: left;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
  transition: 0.3s;
}

#why .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 50px rgba(0,0,0,0.18);
}

#why .feature-card h3 {
  color: #ffffff;
  margin-bottom: 10px;
}

#why .feature-card p {
  color: #e0e7ff;
  font-size: 15px;
  line-height: 1.6;
}

/* Icon style inside Why cards */

#why .feature-icon {
  background: rgba(255,255,255,0.15);
  color: white;
  margin-bottom: 15px;
}
/* ================= TESTIMONIALS (CLIENT STORIES) ================= */

.section .section-subtitle {
  font-size: 14px;
  letter-spacing: 1px;
  color: #06b6d4;
  font-weight: 600;
  text-align: center;
}

.section .section-title {
  font-size: 42px;
  color: #1e3a8a;
  text-align: center;
}

/* Testimonial cards */

.section .feature-grid .feature-card {
  text-align: center;   /* CENTER */
  padding: 35px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 15px 40px rgba(0,0,0,0.08);
  transition: 0.3s;
  position: relative;
}

.section .feature-grid .feature-card::before {
  content: "“";
  font-size: 60px;
  color: #2563eb;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0.15;
}

.section .feature-grid .feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 55px rgba(0,0,0,0.15);
}

.section .feature-grid .feature-card strong {
  display: block;
  margin-top: 15px;
  color: #1e3a8a;
}

.section .feature-grid .feature-card .footer-note {
  color: #64748b;
  font-size: 13px;
}
.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563eb, #06b6d4);
  color: white;
  border-radius: 50%;
  margin: 0 auto 20px auto;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 26px;
  line-height: 1;
}

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 2px; /* smaller space */
}

.logo-img {
  height: 34px;
  width: auto;
  display: block;
}

.logo-text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #1e3a8a;
  margin: 0;
  padding: 0;
}

/* =========================
   FULL RESPONSIVE SYSTEM
   ========================= */

/* Tablets */
@media (max-width: 1024px) {
  .hero h1 { font-size: 44px; }
  .section-title { font-size: 34px; }
  #services h1,
  #why h1 { font-size: 36px; }
}

/* Mobile */
@media (max-width: 768px) {

  body { overflow-x: hidden; }

  .container {
    width: 94%;
  }

  /* HEADER */
  .header-flex {
    flex-direction: column;
    gap: 14px;
  }

  nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  nav a {
    margin: 0;
    font-size: 14px;
  }

  /* HERO */
  .hero {
    padding: 100px 0 80px;
  }

  .hero h1 {
    font-size: 30px;
    line-height: 1.25;
  }
@media (max-width: 600px) {

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .founder-ui-card {
    width: 100%;
    max-width: 100%;
  }

  .founder-desc {
    font-size: 14px;
  }

  .veterans-track {
    gap: 20px;
  }
}

  .hero p {
    font-size: 15px;
  }

  /* GRIDS STACK */
  .feature-grid,
  .service-grid,
  .why-grid,
  .contact-grid,
  .footer-grid-4 {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }

  /* ABOUT */
  #about h1 { font-size: 28px !important; }

  /* FOUNDER */
  .founder-ui-card {
    margin-top: 30px;
    padding: 30px 25px;
  }

  /* SERVICES */
  #services h1 { font-size: 28px; }

  /* WHY */
  #why h1 { font-size: 28px; }

  /* CONTACT */
  #contact h1 { font-size: 30px !important; }

  /* FOOTER */
  .footer-main { text-align: center; }
  .footer-social { justify-content: center; }
}
@media (max-width: 600px) {

  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  .founder-ui-card {
    width: 100%;
    max-width: 100%;
  }

  .founder-desc {
    font-size: 14px;
  }

  .veterans-track {
    gap: 20px;
  }
}


/* ===== ABOUT MOBILE HEIGHT BUG FIX ===== */
#about {
  position: relative;
  overflow: visible !important;
}

#about .contact-grid {
  align-items: start;
}

.founder-ui-card {
  height: auto !important;
  min-height: unset !important;
}

.section {
  overflow: visible;
  min-height: auto;
}

/* stop clipping from even-section rule */
.section:nth-child(even) {
  overflow: visible;
}
/* ================= FLOATING BLINKING CTA ================= */

.floating-cta {
  position: fixed;
  top: 140px;
  right: 65px;
  z-index: 9999;

  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;

  color: white;
  background: linear-gradient(90deg, #2563eb, #06b6d4);

  box-shadow: 0 0 0 rgba(37,99,235, 0.7);
  animation: pulseBlink 1.4s infinite;

  text-decoration: none;
  white-space: nowrap;
}

@keyframes pulseBlink {
  0% {
    box-shadow: 0 0 0 0 rgba(37,99,235, 0.7);
    transform: scale(1);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(37,99,235, 0);
    transform: scale(1.05);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37,99,235, 0);
    transform: scale(1);
  }
}

/* === FORCE FLOATING BUTTON VISIBLE ON MOBILE === */
@media (max-width: 768px) {
  .floating-cta {
    position: fixed !important;
    top: auto !important;
    bottom: 70px !important;   /* keep above phone nav bar */
    right: 12px !important;
    left: auto !important;

    transform: none !important;
    display: block !important;
  }
}

/* ===== MOBILE OVERFLOW FIX (ABOUT SECTION) – SAFE ===== */
@media (max-width: 768px) {

  html, body {
    overflow-x: hidden !important;
    width: 100%;
  }

  #about {
    max-width: 100vw;
    overflow-x: hidden;
  }

  .founder-ui-card,
  .veterans-marquee {
    max-width: 100%;
    overflow: hidden;
  }

  .veterans-track {
    width: max-content;
  }
}

/* ===== FINAL MOBILE HEADER RESET ===== */
@media (max-width: 768px) {

  .header .container.header-flex {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .header nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    gap: 10px !important;
  }

  .header nav a {
    font-size: 14px !important;
    margin: 0 !important;
  }

  .header nav .btn-primary {
    display: block !important;
    margin: 10px auto 0 auto !important;
  }
}

/* ===== FORCE ORIGINAL MOBILE HEADER STACK ===== */
@media (max-width: 768px) {
  header.header .header-flex {
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
  }

  header.header nav {
    width: 100% !important;
    justify-content: center !important;
  }

  header.header nav .btn-primary {
    margin: 12px auto 0 auto !important;
    display: block !important;
  }
}

/* ===== FORCE HEADER STICKY ON MOBILE ===== */
@media (max-width: 768px) {

  .header {
    position: fixed !important;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  body {
    padding-top: 90px; /* space for fixed header */
  }
}

/* ===== MOBILE HEADER FINAL LOCK ===== */
@media (max-width: 768px) {

  header.header .header-flex {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  header.header nav {
    width: 100% !important;
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    text-align: center;
  }

  header.header nav a {
    margin: 0 8px !important;
    font-size: 14px !important;
  }

  /* Move Contact button to its own row */
  header.header nav .btn-primary {
    width: auto !important;
    margin: 12px auto 0 auto !important;
    display: block !important;
  }
}

/* ===== MOBILE HEADER TAB SIZE REDUCTION ===== */
@media (max-width: 768px) {

  header.header nav a {
    font-size: 13px !important;   /* smaller text */
    padding-bottom: 4px !important;
  }

  header.header nav .btn-primary {
    font-size: 14px !important;
    padding: 10px 18px !important;
  }

  .logo-text {
    font-size: 20px !important;   /* slightly smaller logo text */
  }
}
/* ===== TALK MODAL ===== */
.talk-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.talk-modal-box {
  background: white;
  width: 90%;
  max-width: 420px;
  padding: 35px;
  border-radius: 18px;
  position: relative;
  animation: popIn 0.3s ease;
}

@keyframes popIn {
  from { transform: scale(0.9); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.talk-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
  color: #475569;
}

/* ===== TALK MODAL LAYOUT FIX ===== */
.talk-modal-box {
  max-width: 480px;
  width: 92%;
}

.talk-modal .contact-box {
  box-shadow: none;   /* avoid double shadow */
  padding: 0;        /* modal already has padding */
}

/* ===== TALK MODAL MOBILE FIX ===== */
@media (max-width: 768px) {

  .talk-modal-box {
    width: 94%;
    max-width: 94%;
    padding: 25px 20px;
    border-radius: 16px;
  }

  .talk-modal-box h2 {
    font-size: 22px;
  }

  .talk-modal .contact-box input,
  .talk-modal .contact-box select {
    font-size: 14px;
    padding: 12px;
  }

  .talk-modal .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 15px;
  }
}

/* ===== BLOG MODAL ===== */
.blog-modal {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 10000;
}

.blog-modal-box {
  background: white;
  width: 92%;
  max-width: 650px;
  padding: 35px;
  border-radius: 18px;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

.blog-modal-box h2 {
  color: #1e3a8a;
  margin: 10px 0 15px;
}

.blog-close {
  position: absolute;
  top: 12px;
  right: 14px;
  font-size: 26px;
  cursor: pointer;
  color: #475569;
}
/* ===== BLOG MODAL IMAGE SIZE FIX ===== */
#blogImage {
  max-width: 100%;
  height: auto;
  max-height: 220px;      /* reduce big height */
  object-fit: contain;   /* no crop */
  margin: 12px 0;
}
@media (max-width: 768px) {
  #blogImage {
    max-height: 160px;
  }
}
/* ===== BLOG MODAL CONTENT ===== */

.pc-table {
  display: grid;
  gap: 12px;
  margin-top: 12px;
  font-size: 14px;
}

.pc-row {
  display: grid;
  grid-template-columns: 1fr 2fr 2fr;
  gap: 10px;
  padding: 12px;
  border: 1px solid #cbd5f5;
  border-radius: 8px;
  background: #ffffff;
}

.pc-head {
  background: #eef2ff;
  font-weight: 700;
  color: #1e3a8a;
}

.blog-image-wrap {
  text-align: center;
  margin-top: 20px;
}

.blog-image-wrap img {
  width: 100%;
  max-width: 320px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.blog-modal table td {
  text-align: center;
  vertical-align: middle;
}
.footer-brand{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  margin-top:25px;   /* move whole block down */
}

/* Logo */
.footer-logo-img{
  height:100px;       /* good size */
  width:auto;
  margin-bottom:12px;  /* space between logo and text */


  mix-blend-mode: normal;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,.45));
}
/* ===== FOOTER MOBILE FIX ===== */
@media (max-width: 768px){

  .footer-brand{
    align-items: center !important;   /* center on mobile */
    text-align: center;
    margin-top: 40px !important;      /* push block down */
  }

  .footer-logo-img{
    height: 64px !important;          /* slightly smaller */
    margin-bottom: 14px !important;
  }

  .footer-tagline{
    margin-bottom: 18px;              /* space before links */
    font-size: 14px;
  }

  .footer-grid-4{
    text-align: center;
  }
}

/* Tagline */
.footer-tagline{
  color:#cbd5f5;
  font-size:14px;
  letter-spacing:1px;
  margin-top:4px;   /* push text slightly down */
}
/* ===== FOOTER MOBILE FIX ===== */
@media (max-width: 768px){

  .footer-brand{
    align-items: center !important;   /* center on mobile */
    text-align: center;
    margin-top: 40px !important;      /* push block down */
  }

  .footer-logo-img{
    height: 64px !important;          /* slightly smaller */
    margin-bottom: 14px !important;
  }

  .footer-tagline{
    margin-bottom: 18px;              /* space before links */
    font-size: 13px;
  }

  .footer-grid-4{
    text-align: center;
  }
}



