/* ROOT */
:root{
  --bg:#f4f6fa;
  --bg-light:#ffffff;
  --navy:#0f1e36;
  --muted:#6b7280;
  --accent:#d4a627;
  --shadow:0 8px 22px rgba(0,0,0,0.06);
  --radius:14px;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--navy);
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */
.site-header{
  background:var(--bg-light);
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
  position:sticky;
  top:0;
  z-index:999;
}

.header-row{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width:54px;
  height:54px;
  background:#0d213f;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:700;
  font-size:20px;
}

.brand-title{
  font-family:"Poppins",sans-serif;
  font-weight:700;
}

.brand-sub{
  font-size:12px;
  color:var(--muted);
}

.main-nav a{
  margin-left:22px;
  font-weight:600;
  text-decoration:none;
  color:var(--navy);
  position:relative;
  transition:0.25s ease;
}

.main-nav a:hover{
  color:#1a3bb3;
}

.main-nav a.active::after{
  content:"";
  width:34px;
  height:4px;
  background:var(--accent);
  border-radius:6px;
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
}

/* HERO */
.hero{
  position:relative;
  padding:90px 0 60px;
  background:linear-gradient(135deg,#eef2f7,#f9fafc);
  overflow:hidden;
}

/* dotted premium pattern */
.hero-pattern{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle,#d8dee9 1px,transparent 1px);
  background-size:22px 22px;
  opacity:0.25;
}

/* HERO ROW */
.hero-row{
  position:relative;
  display:flex;
  gap:40px;
  align-items:flex-start;
}

/* Content */
.hero-badge{
  background:var(--accent);
  padding:8px 18px;
  border-radius:50px;
  color:white;
  font-weight:600;
  font-size:13px;
}

.hero-title{
  font-family:"Poppins",sans-serif;
  font-size:44px;
  margin:16px 0;
}

.hero-sub{
  max-width:620px;
  color:var(--muted);
  font-size:15px;
}

/* Buttons */
.hero-buttons{
  margin-top:20px;
  display:flex;
  gap:14px;
}

.btn-primary{
  background:var(--accent);
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  color:black;
  font-weight:700;
}

.btn-outline{
  border:2px solid var(--accent);
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  color:var(--navy);
}

/* WHY CARD */
.why-card{
  width:360px;
  background:white;
  padding:26px;
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  position:relative;
}

.why-accent{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:var(--accent);
  border-radius:14px 0 0 14px;
}

.why-card h3{
  margin-top:0;
  font-family:"Poppins",sans-serif;
  font-size:22px;
}

.why-list{
  list-style:none;
  padding:0;
  margin:12px 0 18px;
}

.why-list li{
  margin-bottom:10px;
  font-size:14px;
  display:flex;
  gap:8px;
  align-items:flex-start;
}

.why-list span{
  color:var(--accent);
  font-weight:700;
}

.why-link{
  color:#1a3bb3;
  font-weight:600;
  text-decoration:none;
}

/* ABOUT SECTION */
.section{
  padding:70px 0;
}

.about-header{
  text-align:center;
  max-width:760px;
  margin:auto;
}

.about-header h2{
  font-family:"Poppins";
  font-size:32px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:32px;
}

.feature-card{
  background:white;
  padding:22px;
  border-radius:var(--radius);
  border-top:5px solid var(--accent);
  box-shadow:var(--shadow);
  text-align:center;
}

.feature-icon{
  width:52px;
  height:52px;
  background:#0d213f;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:12px;
}

/* SERVICES */
.section-alt{
  background:#eef1f5;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:30px;
}

.service-card{
  background:white;
  border-radius:var(--radius);
  padding:24px;
  border-top:5px solid var(--accent);
  box-shadow:var(--shadow);
  text-align:center;
}

.service-icon{
  width:50px;
  height:50px;
  background:#0d213f;
  border-radius:12px;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:12px;
}

/* LEADERSHIP + PARTNERS */
.leader-wrapper{
  display:flex;
  gap:40px;
}

.leader-section, .partner-section{
  flex:1;
  text-align:center;
}

.leader-card{
  background:white;
  padding:28px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border-top:6px solid var(--accent);
}

.leader-avatar{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#e2e6ea;
  margin:auto;
  margin-bottom:12px;
}

.partners-grid{
  display:flex;
  gap:20px;
  margin-top:14px;
}

.partner-card{
  background:white;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border-top:6px solid var(--accent);
}

.partner-logo{
  height:70px;
  object-fit:contain;
  margin-bottom:10px;
}

/* CONTACT */
.center{text-align:center;}

.contact-card{
  background:white;
  padding:30px;
  border-radius:var(--radius);
  max-width:900px;
  margin:auto;
  box-shadow:var(--shadow);
}

.form-row{
  display:flex;
  gap:12px;
}

input,textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d7dbe0;
  border-radius:10px;
}

.contact-btn{
  display:block;
  margin:20px auto 0;
}

/* FOOTER */
.site-footer{
  padding:30px 0;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-row{flex-direction:column;}
  .why-card{width:100%;}
  .leader-wrapper{flex-direction:column;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .about-features{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:720px){
  .services-grid,
  .about-features{
    grid-template-columns:1fr;
  }
}
/* ROOT */
:root{
  --bg:#f4f6fa;
  --bg-light:#ffffff;
  --navy:#0f1e36;
  --muted:#6b7280;
  --accent:#d4a627;
  --shadow:0 8px 22px rgba(0,0,0,0.06);
  --radius:14px;
}

body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--navy);
}

.container{
  width:min(1180px,92%);
  margin:auto;
}

/* HEADER */
.site-header{
  background:var(--bg-light);
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
  position:sticky;
  top:0;
  z-index:999;
}

.header-row{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-logo{
  width:54px;
  height:54px;
  background:#0d213f;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:white;
  font-weight:700;
  font-size:20px;
}

.brand-title{
  font-family:"Poppins",sans-serif;
  font-weight:700;
}

.brand-sub{
  font-size:12px;
  color:var(--muted);
}

.main-nav a{
  margin-left:22px;
  font-weight:600;
  text-decoration:none;
  color:var(--navy);
  position:relative;
  transition:0.25s ease;
}

.main-nav a:hover{
  color:#1a3bb3;
}

.main-nav a.active::after{
  content:"";
  width:34px;
  height:4px;
  background:var(--accent);
  border-radius:6px;
  position:absolute;
  bottom:-6px;
  left:50%;
  transform:translateX(-50%);
}

/* HERO */
.hero{
  position:relative;
  padding:90px 0 60px;
  background:linear-gradient(135deg,#eef2f7,#f9fafc);
  overflow:hidden;
}

/* dotted premium pattern */
.hero-pattern{
  position:absolute;
  inset:0;
  background-image:
    radial-gradient(circle,#d8dee9 1px,transparent 1px);
  background-size:22px 22px;
  opacity:0.25;
}

/* HERO ROW */
.hero-row{
  position:relative;
  display:flex;
  gap:40px;
  align-items:flex-start;
}

/* Content */
.hero-badge{
  background:var(--accent);
  padding:8px 18px;
  border-radius:50px;
  color:white;
  font-weight:600;
  font-size:13px;
}

.hero-title{
  font-family:"Poppins",sans-serif;
  font-size:44px;
  margin:16px 0;
}

.hero-sub{
  max-width:620px;
  color:var(--muted);
  font-size:15px;
}

/* Buttons */
.hero-buttons{
  margin-top:20px;
  display:flex;
  gap:14px;
}

.btn-primary{
  background:var(--accent);
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  color:black;
  font-weight:700;
}

.btn-outline{
  border:2px solid var(--accent);
  padding:12px 22px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  color:var(--navy);
}

/* WHY CARD */
.why-card{
  width:360px;
  background:white;
  padding:26px;
  box-shadow:var(--shadow);
  border-radius:var(--radius);
  position:relative;
}

.why-accent{
  position:absolute;
  left:0;
  top:0;
  bottom:0;
  width:6px;
  background:var(--accent);
  border-radius:14px 0 0 14px;
}

.why-card h3{
  margin-top:0;
  font-family:"Poppins",sans-serif;
  font-size:22px;
}

.why-list{
  list-style:none;
  padding:0;
  margin:12px 0 18px;
}

.why-list li{
  margin-bottom:10px;
  font-size:14px;
  display:flex;
  gap:8px;
  align-items:flex-start;
}

.why-list span{
  color:var(--accent);
  font-weight:700;
}

.why-link{
  color:#1a3bb3;
  font-weight:600;
  text-decoration:none;
}

/* ABOUT SECTION */
.section{
  padding:70px 0;
}

.about-header{
  text-align:center;
  max-width:760px;
  margin:auto;
}

.about-header h2{
  font-family:"Poppins";
  font-size:32px;
}

.about-features{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin-top:32px;
}

.feature-card{
  background:white;
  padding:22px;
  border-radius:var(--radius);
  border-top:5px solid var(--accent);
  box-shadow:var(--shadow);
  text-align:center;
}

.feature-icon{
  width:52px;
  height:52px;
  background:#0d213f;
  color:white;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:12px;
}

/* SERVICES */
.section-alt{
  background:#eef1f5;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:30px;
}

.service-card{
  background:white;
  border-radius:var(--radius);
  padding:24px;
  border-top:5px solid var(--accent);
  box-shadow:var(--shadow);
  text-align:center;
}

.service-icon{
  width:50px;
  height:50px;
  background:#0d213f;
  border-radius:12px;
  color:white;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:auto;
  margin-bottom:12px;
}

/* LEADERSHIP + PARTNERS */
.leader-wrapper{
  display:flex;
  gap:40px;
}

.leader-section, .partner-section{
  flex:1;
  text-align:center;
}

.leader-card{
  background:white;
  padding:28px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border-top:6px solid var(--accent);
}

.leader-avatar{
  width:90px;
  height:90px;
  border-radius:50%;
  background:#e2e6ea;
  margin:auto;
  margin-bottom:12px;
}

.partners-grid{
  display:flex;
  gap:20px;
  margin-top:14px;
}

.partner-card{
  background:white;
  padding:20px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  border-top:6px solid var(--accent);
}

.partner-logo{
  height:70px;
  object-fit:contain;
  margin-bottom:10px;
}

/* CONTACT */
.center{text-align:center;}

.contact-card{
  background:white;
  padding:30px;
  border-radius:var(--radius);
  max-width:900px;
  margin:auto;
  box-shadow:var(--shadow);
}

.form-row{
  display:flex;
  gap:12px;
}

input,textarea{
  width:100%;
  padding:12px 14px;
  border:1px solid #d7dbe0;
  border-radius:10px;
}

.contact-btn{
  display:block;
  margin:20px auto 0;
}

/* FOOTER */
.site-footer{
  padding:30px 0;
  text-align:center;
  color:var(--muted);
  font-size:14px;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .hero-row{flex-direction:column;}
  .why-card{width:100%;}
  .leader-wrapper{flex-direction:column;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .about-features{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:720px){
  .services-grid,
  .about-features{
    grid-template-columns:1fr;
  }
}
/* -------------------------------------------------- */
/* UPDATED SOFTWARE PARTNERS — PREMIUM DESIGN */
/* -------------------------------------------------- */

.partners-enhanced-grid {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.partner-enhanced-card {
  background: #ffffff;
  width: 330px;
  padding: 32px 24px;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  border-top: 6px solid var(--accent);
  text-align: center;
  transition: 0.25s ease;
}

.partner-enhanced-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 14px 40px rgba(0,0,0,0.12);
}

.partner-logo-wrap {
  width: 110px;
  height: 110px;
  background: #f5f7fa;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
  margin-bottom: 16px;
  overflow: hidden;
}

.partner-logo-wrap img {
  width: 75%;
  height: auto;
  object-fit: contain;
}

.partner-enhanced-card h3 {
  font-family: "Poppins";
  font-size: 20px;
  margin-bottom: 8px;
}

.partner-enhanced-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Center text utility */
.center {
  text-align: center;
}
/* -------------------------------------------------- */
/* LEADERSHIP (FIXED CENTER ALIGNMENT) */
/* -------------------------------------------------- */
.leader-wrapper{
  display:flex;
  justify-content:center;
  align-items:flex-start;
  gap:40px;
}

.leader-section{
  flex:1;
  text-align:center; /* centers heading */
}

.leader-card{
  background:#fff;
  padding:36px 30px;
  border-radius:var(--radius);
  border-top:6px solid var(--accent);
  box-shadow:var(--shadow);
  max-width:700px; /* keeps it clean */
  margin:auto;     /* center the card */
  text-align:center;
}

.leader-avatar{
  width:100px;
  height:100px;
  background:#e4e7eb;
  border-radius:50%;
  margin:0 auto 18px auto;
}

.leader-name{
  font-size:20px;
  font-weight:700;
  margin-top:10px;
}

.leader-role{
  margin-top:4px;
  font-size:14px;
  color:var(--muted);
}

/* Make the info lines uniform */
.leader-info{
  margin-top:16px;
}

.leader-info p{
  margin:6px 0;
  font-size:15px;
}

.leader-info strong{
  font-weight:600;
}
/* ----------------------------------------- */
/* CONTACT SECTION ALIGNMENT FIX             */
/* ----------------------------------------- */

#contact {
    padding-top: 40px !important;   /* reduce space above heading */
    padding-bottom: 80px;
}

.contact-card {
    margin: 30px auto 0 !important; /* bring the card closer to heading */
    padding: 28px 32px;
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-row {
    display: flex;
    gap: 16px;
}

.form-row input {
    flex: 1;
}

.contact-btn {
    margin-top: 10px !important;  /* reduce extra space above button */
}
/* ----------------------------------------- */
/* FINAL CONTACT SECTION SPACING FIX         */
/* ----------------------------------------- */

#contact {
    padding-top: 30px !important;   /* reduce top gap */
    padding-bottom: 60px !important;
}

.contact-card {
    margin: 20px auto 0 !important; /* bring card closer to heading */
    padding: 26px 32px !important;
    max-width: 850px;               /* tighter width for better balance */
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: flex;
    gap: 14px;
}

.form-row input {
    flex: 1;
}

input,
textarea {
    border-radius: 10px !important;
    padding: 12px 14px !important;
}

/* Button spacing fix */
.contact-btn {
    margin-top: 10px !important;
}

/* Prevent card from looking too tall */
textarea {
    height: 130px !important;
}

/* Reduce huge space above footer */
.site-footer {
    margin-top: 10px !important;
}
/* -------------------------------------------------- */
/* CONTACT FORM SPACING — FIX RIGHT-SIDE CROWDING     */
/* -------------------------------------------------- */

.contact-card {
    padding: 32px 40px !important;   /* more space on left AND right */
}

.contact-card form {
    gap: 18px !important;            /* better breathing space */
}

.form-row {
    gap: 18px !important;            /* equal spacing between left & right inputs */
}

input,
textarea {
    padding: 14px 18px !important;   /* inner padding so text doesn't touch borders */
}

/* Slight radius for smooth look */
input,
textarea {
    border-radius: 12px !important;
}

/* Prevent textarea from touching card edges */
textarea {
    height: 140px !important;
}
/* ================================
   FIX: Leadership Heading Position
================================ */
.leader-section h2 {
  text-align: center;
  margin-top: 20px;      /* Ensures visible */
  margin-bottom: 25px;
  font-size: 28px;
  font-weight: 700;
}

/* Center alignment fix */
.leader-card {
  text-align: center;
  padding-top: 60px !important;   /* Creates proper spacing from top */
}

/* ================================
   FIX: Contact Form Spacing
================================ */
.contact-card {
  padding: 45px 45px 55px;
}

.contact-card input,
.contact-card textarea {
  padding: 16px;                 /* Increased padding */
  border-radius: 12px;
  border: 1px solid #d4d7dd;
}

.contact-card textarea {
  margin-top: 10px;
  min-height: 150px;             /* More breathing room */
}

.form-row {
  display: flex;
  gap: 20px;
  margin-bottom: 18px;
}

.contact-btn {
  margin-top: 28px;
}

/* Extra spacing inside contact card */
.contact-card form {
  margin-top: 10px;
}
/* Center Services Heading */
#services .section-title,
#services h2 {
    text-align: center !important;
    width: 100%;
    margin-bottom: 30px;
}
/* =======================================================
   CORPORATE HERO DESIGN — CLEAN, PROFESSIONAL, PREMIUM
======================================================= */

.hero {
  padding: 100px 0 80px;
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fa 100%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  position: relative;
}

/* Subtle vertical accent line (premium corporate look) */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  top: 80px;
  width: 4px;
  height: 70%;
  background: var(--accent);
  border-radius: 4px;
  opacity: 0.9;
}

/* Title refinement */
.hero-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.25;
  color: #0d1b2a;
  max-width: 600px;
  margin-bottom: 12px;
}

/* Subtext style */
.hero-sub {
  font-size: 16px;
  line-height: 1.55;
  max-width: 600px;
  color: #475467;
}

/* Button refinement */
.btn-primary, .btn-outline {
  font-size: 15px;
  border-radius: 10px;
  padding: 12px 22px;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #c39520;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* =======================================================
   CLEAN, PROFESSIONAL WHY-CARD
======================================================= */

.why-card {
  background: #ffffff;
  padding: 30px 28px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 6px 22px rgba(0,0,0,0.06);
  width: 360px;
  position: relative;
}

/* Thin vertical accent strip */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 5px;
  background: var(--accent);
  border-radius: 6px;
}

/* Heading style */
.why-card h3 {
  font-size: 22px;
  margin: 0 0 12px;
  font-weight: 600;
  color: #0d1b2a;
}

/* Bullet improvements */
.why-card ul li {
  margin-bottom: 12px;
  padding-left: 20px;
  font-size: 15px;
  color: #344054;
  position: relative;
  list-style: none;
}

.why-card ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 24px;
  color: var(--accent);
  line-height: 0;
}

/* Link refinement */
.why-link {
  display: inline-block;
  margin-top: 10px;
  color: #003b94;
  font-weight: 600;
  text-decoration: none;
}

.why-link:hover {
  text-decoration: underline;
}
/* ==========================================================
   ULTIMATE PREMIUM CORPORATE HERO (BEST POSSIBLE STYLE)
========================================================== */

.hero {
  position: relative;
  padding: 120px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f3f5f9 100%);
  overflow: hidden;
}

/* Soft premium patterned overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(0,0,0,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0,0,0,0.04) 1px, transparent 1px);
  background-size: 38px 38px;
  opacity: 0.25;
}

/* Elegant curved highlight panel on right */
.hero::after {
  content: "";
  position: absolute;
  right: -140px;
  top: -40px;
  width: 580px;
  height: 120%;
  background: linear-gradient(135deg, #eef1f6 0%, #ffffff 100%);
  border-radius: 180px;
  transform: rotate(8deg);
  box-shadow: -40px 0px 80px rgba(0,0,0,0.06);
}

/* =================== HERO CONTENT =================== */
.hero-left {
  position: relative;
  z-index: 2;
}

.hero-badge {
  font-size: 13px;
  padding: 7px 18px;
  font-weight: 600;
  border-radius: 40px;
  background: #0f1e36;
  color: white;
  letter-spacing: 0.3px;
}

.hero-title {
  font-size: 48px;
  font-weight: 700;
  margin-top: 18px;
  color: #0d1b2a;
  line-height: 1.25;
  max-width: 650px;
  position: relative;
  padding-bottom: 14px;
}

/* GOLD UNDERLINE (premium accent) */
.hero-title::after {
  content: "";
  width: 95px;
  height: 5px;
  background: var(--accent);
  position: absolute;
  left: 0;
  bottom: 0;
  border-radius: 6px;
}

.hero-sub {
  margin-top: 22px;
  max-width: 600px;
  font-size: 17px;
  color: #475467;
  line-height: 1.58;
}

/* Buttons */
.btn-primary, .btn-outline {
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  transition: 0.25s ease;
}

.btn-primary:hover {
  background: #be8f1f;
}

.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}


/* ==========================================================
   WHY CARD — PREMIUM, ATTRACTIVE, ENTERPRISE GRADE
========================================================== */

.why-card {
  width: 360px;
  background: #ffffff;
  padding: 34px 28px;
  border-radius: 20px;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
  position: relative;
  z-index: 3;
  transition: 0.28s ease;
}

/* Gold accent stripe */
.why-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 22px;
  bottom: 22px;
  width: 5px;
  background: var(--accent);
  border-radius: 8px;
}

/* Hover Elevation */
.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.12);
}

/* Title */
.why-card h3 {
  font-size: 23px;
  margin-bottom: 16px;
  color: #0d1b2a;
  font-weight: 700;
}

/* Bullet Style */
.why-card ul li {
  list-style: none;
  margin-bottom: 13px;
  padding-left: 22px;
  color: #374151;
  font-size: 15px;
  position: relative;
}

.why-card ul li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 16px;
  color: var(--accent);
  font-weight: 700;
}

/* Link */
.why-link {
  margin-top: 14px;
  font-weight: 600;
  color: #0d47a1;
  display: inline-block;
}

.why-link:hover {
  text-decoration: underline;
}
/* ===============================================
   PREMIUM ABOUT SECTION — LEFT TEXT + RIGHT 2×2 GRID
================================================ */

.about-section {
  padding: 100px 0;
  background: #f7f9fc;
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* ================= LEFT SIDE ================= */

.about-left h2 {
  font-size: 34px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 18px;
  position: relative;
}

/* Gold underline */
.about-left h2::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: -8px;
  left: 0;
  border-radius: 6px;
}

.about-left p {
  font-size: 16px;
  color: #4b5563;
  line-height: 1.65;
  margin-bottom: 14px;
  max-width: 580px;
}

/* ================= RIGHT SIDE (2×2 GRID) ================= */

.about-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.about-card {
  background: #ffffff;
  padding: 24px 20px;
  border-radius: 16px;
  box-shadow: 0 10px 26px rgba(0,0,0,0.06);
  border: 1px solid rgba(0,0,0,0.07);
  text-align: center;
  transition: 0.25s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.ac-icon {
  width: 54px;
  height: 54px;
  background: #0d1b2a;
  border-radius: 50%;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 22px;
}

.about-card h4 {
  margin: 0 0 6px;
  font-size: 17px;
  color: #0d1b2a;
  font-weight: 700;
}

.about-card p {
  font-size: 14.5px;
  line-height: 1.5;
  color: #4b5563;
}

/* ================= RESPONSIVE ================= */

@media(max-width: 900px) {
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-right-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media(max-width: 600px) {
  .about-right-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   BEAUTIFUL PREMIUM SERVICES SECTION (14 ITEMS)
========================================================== */

#services.section-alt {
  background: linear-gradient(180deg, #f7f9fc 0%, #eef2f7 100%);
  padding: 110px 0 130px;
}

/* Section heading */
#services .section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

#services .section-title::after {
  content: "";
  width: 85px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
}

/* Grid layout (14 items supported) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

/* BEAUTIFUL SERVICE CARD */
.service-card {
  background: #ffffff;
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 10px 32px rgba(0,0,0,0.06);
  transition: 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Smooth gradient shine on hover */
.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    145deg,
    rgba(255,255,255,0.35),
    rgba(255,255,255,0)
  );
  opacity: 0;
  transition: 0.35s ease;
}

.service-card:hover::before {
  opacity: 1;
}

/* Hover lift */
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 22px 54px rgba(0,0,0,0.12);
}

/* Icon bubble */
.service-icon {
  width: 68px;
  height: 68px;
  background: #0d1b2a;
  color: white;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

/* Title */
.service-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #0d1b2a;
}

/* Description */
.service-card p {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.55;
}

/* Responsive */
@media(max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(max-width: 650px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* ==========================================================
   PREMIUM LEADERSHIP SECTION (CORPORATE EXECUTIVE STYLE)
========================================================== */

.leadership-section {
  background: linear-gradient(180deg, #ffffff 0%, #f5f7fb 100%);
  padding: 110px 0 130px;
  text-align: center;
}

/* Title */
.leader-title {
  font-size: 34px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 50px;
  position: relative;
}

.leader-title::after {
  content: "";
  width: 80px;
  height: 4px;
  background: var(--accent);
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 6px;
}

/* Executive card */
.leader-card-enhanced {
  background: #ffffff;
  padding: 42px 36px;
  max-width: 520px;
  margin: auto;
  border-radius: 22px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 14px 40px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.leader-card-enhanced:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 55px rgba(0,0,0,0.12);
}

/* Profile photo */
.leader-photo-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.leader-photo {
  width: 110px;
  height: 110px;
  background: #e2e6ea;
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 8px 18px rgba(0,0,0,0.12);
}

/* Name */
.leader-name {
  font-size: 22px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 4px;
}

/* Role */
.leader-role {
  font-size: 15px;
  color: #475467;
  margin-bottom: 22px;
}

/* Contact Info Grid */
.leader-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  font-size: 15px;
  color: #374151;
}

.leader-info-grid div {
  background: #f8f9fc;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.03);
}

.leader-info-grid strong {
  font-weight: 600;
  color: #0d1b2a;
}
/* ==========================================================
   ELEGANT & PREMIUM LEADERSHIP SECTION
========================================================== */

.leadership-elegant {
  padding: 120px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
}

.leader-elegant-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
  align-items: center;
}

/* ===================== PHOTO ====================== */
.leader-elegant-photo-wrap {
  display: flex;
  justify-content: center;
}

.leader-elegant-photo {
  width: 260px;
  height: 320px;
  background: #e7eaee;
  border-radius: 14px;
  border: 4px solid #ffffff;
  box-shadow: 0 20px 40px rgba(0,0,0,0.10);
}

/* ===================== CONTENT ====================== */
.leader-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 12px;
}

.leader-e-name {
  font-size: 26px;
  font-weight: 700;
  margin: 4px 0 2px;
  color: #0d1b2a;
}

.leader-e-role {
  font-size: 15px;
  color: #7a7f89;
}

/* Elegant Gold Accent Line */
.leader-e-accent {
  width: 80px;
  height: 4px;
  background: var(--accent);
  border-radius: 8px;
  margin: 28px 0;
}

.leader-e-bio {
  font-size: 16px;
  line-height: 1.68;
  color: #4b4f56;
  max-width: 600px;
  margin-bottom: 32px;
}

/* ===================== INFO ====================== */
.leader-e-info p {
  font-size: 15px;
  margin: 8px 0;
  padding-bottom: 10px;
  border-bottom: 1px solid #e4e6ea;
  color: #0d1b2a;
}

.leader-e-info strong {
  font-weight: 600;
}

/* ===================== RESPONSIVE ====================== */
@media(max-width: 900px) {
  .leader-elegant-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-e-accent {
    margin-left: auto;
    margin-right: auto;
  }

  .leader-e-info p {
    text-align: center;
  }
}
/* ==========================================================
   PREMIUM CORPORATE LEADERSHIP (DELOITTE / EY STYLE)
========================================================== */

.leadership-pro {
  padding: 120px 0;
  background: #ffffff;
}

.leadership-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 80px;
  align-items: start;
}

/* LEFT — PHOTO BLOCK */
.leader-photo-block {
  display: flex;
  justify-content: center;
}

.leader-photo {
  width: 260px;
  height: 340px;
  background: #e5e7ea;           /* Replace with real image later */
  border-radius: 8px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

/* RIGHT — TEXT BLOCK */
.leader-content-block {
  position: relative;
}

/* Vertical accent bar */
.leader-accent {
  width: 6px;
  height: 90px;
  background: var(--accent);
  border-radius: 4px;
  position: absolute;
  left: -22px;
  top: 5px;
}

/* Heading */
.leader-heading {
  font-size: 34px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 18px;
}

/* Name & Role */
.leader-name {
  font-size: 26px;
  font-weight: 700;
  color: #0d1b2a;
  margin: 0;
}

.leader-role {
  font-size: 15px;
  color: #777d86;
  margin-bottom: 24px;
}

/* Bio text */
.leader-bio {
  font-size: 16px;
  line-height: 1.68;
  color: #4a4f55;
  margin-bottom: 32px;
  max-width: 620px;
}

/* Contact list */
.leader-contact p {
  font-size: 15px;
  color: #0d1b2a;
  padding-bottom: 10px;
  margin-bottom: 12px;
  border-bottom: 1px solid #e3e6ea;
}

.leader-contact strong {
  font-weight: 600;
}

/* RESPONSIVE */
@media(max-width: 900px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .leader-accent {
    left: 0;
  }

  .leader-content-block {
    padding-left: 20px;
  }
}
/* ==========================================================
   FINAL LEADERSHIP SECTION (ULTRA CORPORATE - PwC / KPMG STYLE)
========================================================== */

.leadership-final {
  padding: 130px 0;
  background: #ffffff;
}

.leadership-final-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 80px;
  align-items: center;
}

/* ---------------------------------------------
   LEFT SIDE — EXECUTIVE PHOTO
----------------------------------------------*/

.leader-photo-section {
  display: flex;
  justify-content: center;
}

.leader-photo-frame {
  width: 270px;
  height: 350px;
  background: #f1f3f6;
  border-radius: 10px;
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.leader-photo {
  width: 100%;
  height: 100%;
  background: #d9dce0;  /* Replace with your image */
}

/* ---------------------------------------------
   RIGHT SIDE — TEXT CONTENT
----------------------------------------------*/

.leader-text-section {
  position: relative;
  padding-left: 28px;
}

/* Premium vertical accent bar */
.leader-accent-bar {
  width: 6px;
  height: 100px;
  background: var(--accent);
  border-radius: 4px;
  position: absolute;
  left: 0;
  top: 8px;
}

/* Heading */
.leader-heading {
  font-size: 36px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 12px;
}

/* Name & Role */
.leader-name {
  font-size: 26px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 4px;
}

.leader-role {
  font-size: 15px;
  color: #747a83;
  margin-bottom: 24px;
}

/* Bio paragraph */
.leader-bio {
  font-size: 16px;
  line-height: 1.72;
  color: #444a52;
  max-width: 620px;
  margin-bottom: 32px;
}

/* Contact block */
.leader-contact-list div {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 15px;
  color: #0d1b2a;
}

.leader-contact-list strong {
  font-weight: 600;
}

/* ---------------------------------------------
   RESPONSIVE DESIGN
----------------------------------------------*/

@media(max-width: 900px) {
  .leadership-final-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .leader-text-section {
    padding-left: 0;
    text-align: left;
  }

  .leader-accent-bar {
    left: 0;
    top: -20px;
    height: 70px;
  }

  .leader-contact-list div {
    text-align: left;
  }
}
/* ==========================================================
   SOFTWARE PARTNERS — PROFESSIONAL & CORPORATE STYLE
========================================================== */

.partners-pro {
  background: #ffffff;
  padding: 110px 0;
  text-align: center;
}

.partners-heading {
  font-size: 32px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 10px;
}

.partners-sub {
  color: #6b7280;
  font-size: 15px;
  max-width: 580px;
  margin: 0 auto 40px;
}

/* GRID */
.partners-pro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  max-width: 900px;
  margin: auto;
}

/* CARD */
.partner-pro-card {
  display: flex;
  align-items: center;
  background: #f8f9fb;
  padding: 26px 26px;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  transition: 0.25s ease;
}

.partner-pro-card:hover {
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(0,0,0,0.08);
  transform: translateY(-4px);
}

/* LOGO CIRCLE */
.partner-logo-circle {
  width: 90px;
  height: 90px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e0e2e7;
  margin-right: 24px;
  overflow: hidden;
}

.partner-logo-circle img {
  width: 70%;
  height: auto;
  object-fit: contain;
}

/* TEXT */
.partner-info h3 {
  font-size: 20px;
  font-weight: 700;
  color: #0d1b2a;
  margin-bottom: 6px;
  text-align: left;
}

.partner-info p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.55;
  max-width: 320px;
  text-align: left;
}

/* RESPONSIVE */
@media(max-width: 800px) {
  .partners-pro-grid {
    grid-template-columns: 1fr;
  }

  .partner-pro-card {
    justify-content: center;
    text-align: center;
    flex-direction: column;
  }

  .partner-logo-circle {
    margin-right: 0;
    margin-bottom: 14px;
  }

  .partner-info h3,
  .partner-info p {
    text-align: center;
  }
}
.partners-pro {
  padding: 110px 0;
  text-align: center;
  background: linear-gradient(140deg, #f9fbfd 0%, #eef1f6 50%, #e7ebf1 100%);
  box-shadow: inset 0 40px 70px rgba(0,0,0,0.05);
}
#about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 120px;
  background: linear-gradient(to bottom, #ffffff 0%, transparent 100%);
  pointer-events: none;
}
#about {
  padding: 110px 0;
  background: linear-gradient(90deg, #f8fafc 0%, #f0f3f7 100%);
  background-image: linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
#about {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #eef2f6 100%);
  overflow: hidden;
}

/* Soft abstract geometric shapes */
#about::before {
  content: "";
  position: absolute;
  top: -80px;
  right: -120px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(220,226,234,0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
}

#about::after {
  content: "";
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(210,216,224,0.30) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(25px);
}
.section-alt {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(120deg, #f9fbfd 0%, #eef2f7 50%, #e5e9f1 100%);
  overflow: hidden;
}

/* Soft diagonal abstract glow (top-right) */
.section-alt::before {
  content: "";
  position: absolute;
  top: -180px;
  right: -160px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(205,215,230,0.28) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(10deg);
  filter: blur(20px);
}

/* Soft geometric angled glow (bottom-left) */
.section-alt::after {
  content: "";
  position: absolute;
  bottom: -200px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(195,205,222,0.26) 0%, transparent 70%);
  border-radius: 50%;
  transform: rotate(-12deg);
  filter: blur(24px);
}
/* ==========================================================
   SOFTWARE PARTNERS — PREMIUM SPLIT BACKGROUND (Option 2)
========================================================== */

.partners-pro {
  position: relative;
  padding: 120px 0;
  text-align: center;
  background: linear-gradient(100deg, #f8fafc 0%, #f1f4f8 50%, #e8ecf2 100%);
  overflow: hidden;
}

/* Soft vertical split highlight (professional stripe style) */
.partners-pro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 45%;
  width: 35%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0.0) 0%,
    rgba(255,255,255,0.45) 50%,
    rgba(255,255,255,0.0) 100%
  );
  opacity: 0.55;
  pointer-events: none;
}

/* Subtle diagonal sheen for premium tone */
.partners-pro::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -180px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(220,226,234,0.28) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}
/* =====================================================
   SOFTWARE PARTNERS — RICH PROFESSIONAL MODERN BACKGROUND
   ===================================================== */

.partners-pro {
  position: relative;
  padding: 130px 0;
  text-align: center;

  /* STRONG & PROFESSIONAL GRADIENT */
  background: linear-gradient(
      135deg,
      #f1f5fc 0%,
      #e0e7f5 35%,
      #cfd8ee 75%,
      #c7d2eb 100%
  );

  overflow: hidden;
}

/* Premium top-right glow */
.partners-pro::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(255,255,255,0.45) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(20px);
  pointer-events: none;
}

/* Premium bottom-left glow */
.partners-pro::after {
  content: "";
  position: absolute;
  bottom: -180px;
  left: -150px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(210,220,240,0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

/* Optional subtle brightness strip */
.partners-pro .shine {
  content: "";
  position: absolute;
  top: 0;
  left: 35%;
  width: 30%;
  height: 100%;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,0.22) 50%,
    rgba(255,255,255,0) 100%
  );
  pointer-events: none;
}
/* =======================================================
   CONTACT SECTION — PREMIUM MODERN CORPORATE ENHANCEMENT
======================================================= */

#contact {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 45%, #e5e9f1 100%);
  overflow: hidden;
}

/* Soft corner glow (top-left) */
#contact::before {
  content: "";
  position: absolute;
  top: -140px;
  left: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(205,215,230,0.35) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(22px);
}

/* Soft corner glow (bottom-right) */
#contact::after {
  content: "";
  position: absolute;
  bottom: -160px;
  right: -150px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200,210,225,0.30) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(26px);
}

/* Contact Card Upgrade */
.contact-card {
  background: #ffffff;
  padding: 40px 50px;
  border-radius: 18px;
  max-width: 850px;
  margin: auto;
  box-shadow: 0 14px 40px rgba(0,0,0,0.10);
  border: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

/* Contact Heading */
#contact h2 {
  font-size: 32px;
  margin-bottom: 22px;
  font-weight: 700;
  color: #0f1e36;
}

/* Input fields */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #d6d9df;
  border-radius: 12px;
  font-size: 15px;
  background: #f9fafb;
  transition: 0.25s ease;
}

.contact-card input:focus,
.contact-card textarea:focus {
  border-color: #b7bfd0;
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(180,190,210,0.25);
  outline: none;
}

/* Form spacing */
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-row {
  display: flex;
  gap: 20px;
}

.form-row input {
  flex: 1;
}

/* Submit Button */
.contact-btn {
  display: inline-block;
  background: #d4a627;
  color: #0f1e36;
  padding: 14px 22px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
  width: 200px;
  margin: 10px auto 0;
}

.contact-btn:hover {
  background: #c49822;
  transform: translateY(-2px);
}
/* ================================================
   CONTACT SECTION — FIXED SPACING + PREMIUM LAYOUT
================================================ */

#contact {
  position: relative;
  padding: 140px 0;   /* more breathing space above & below */
  background: linear-gradient(135deg, #f7f9fc 0%, #eef2f7 45%, #e5e9f1 100%);
  overflow: hidden;
}

/* Glow accents (keep same) */
#contact::before,
#contact::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(26px);
  pointer-events: none;
}

#contact::before {
  top: -140px;
  left: -150px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(205,215,230,0.35) 0%, transparent 70%);
}

#contact::after {
  bottom: -160px;
  right: -150px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(200,210,225,0.30) 0%, transparent 70%);
}

/* Contact card */
.contact-card {
  background: #ffffff;
  padding: 55px 60px;     /* increased internal spacing */
  border-radius: 20px;
  max-width: 900px;
  margin: 40px auto 0;    /* more space below heading */
  box-shadow: 0 18px 50px rgba(0,0,0,0.10);
  border: 1px solid #e5e7eb;
  position: relative;
  z-index: 2;
}

/* Form spacing improved */
.contact-card form {
  display: flex;
  flex-direction: column;
  gap: 28px;     /* More space between rows */
}

/* Input rows */
.form-row {
  display: flex;
  gap: 28px;     /* More horizontal space between inputs */
}

/* Inputs */
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 16px 18px;   /* Larger padding for premium feel */
  border: 1px solid #d6d9df;
  border-radius: 12px;
  font-size: 15px;
  background: #f9fafb;
  transition: 0.25s ease;
}

/* Textarea height increased */
.contact-card textarea {
  min-height: 170px;     /* more vertical space */
}

/* Button spacing improved */
.contact-btn {
  margin-top: 8px;        /* precise spacing */
  padding: 14px 24px;
  width: 220px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  background: #d4a627;
  color: #0f1e36;
  border: none;
  cursor: pointer;
  transition: 0.25s ease;
}

.contact-btn:hover {
  background: #c49822;
  transform: translateY(-2px);
}
/* FIX: Add outer margin so textarea doesn't touch card edges */
.contact-card textarea {
    min-height: 180px;
    padding: 16px 18px;
    border-radius: 12px;
    margin-top: 12px;       /* Top spacing */
    margin-bottom: 20px;    /* Bottom spacing */
    margin-left: 4px;       /* NEW – creates left gap */
    margin-right: 4px;      /* NEW – creates right gap */
}
/* FIX: Stop textarea from touching right border */
.contact-card textarea {
    width: calc(100% - 10px) !important;  /* reduce width slightly */
    margin-left: 5px;                     /* center it perfectly */
    min-height: 180px;
    padding: 18px 20px;
    border-radius: 14px;
}
/* ===========================================================
   ABOUT US — PREMIUM GRADIENT + SOFT GLOW (BEST VERSION)
=========================================================== */

#about {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(
        135deg,
        #f6f8fc 0%,
        #eef1f7 45%,
        #e4e9f2 100%
    );
    overflow: hidden;
}

/* Top-left premium glow */
#about::before {
    content: "";
    position: absolute;
    top: -140px;
    left: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(205,215,230,0.32) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(25px);
    pointer-events: none;
}

/* Bottom-right soft glow */
#about::after {
    content: "";
    position: absolute;
    bottom: -180px;
    right: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(195,205,225,0.28) 0%, transparent 75%);
    border-radius: 50%;
    filter: blur(30px);
    pointer-events: none;
}

/* Optional center light strip (corporate style) */
.about-lightbar {
    position: absolute;
    top: 0;
    left: 35%;
    width: 30%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255,255,255,0) 0%,
        rgba(255,255,255,0.15) 50%,
        rgba(255,255,255,0) 100%
    );
    opacity: 0.6;
    pointer-events: none;
}
/* ===========================================================
   WHY CHOOSE US — PREMIUM GLASS CARD REDESIGN
=========================================================== */

.why-card {
  width: 380px;
  padding: 32px 30px;
  background: rgba(255, 255, 255, 0.85); /* soft glass effect */
  backdrop-filter: blur(10px);
  border-radius: 20px;

  /* Premium subtle border */
  border: 1px solid rgba(230, 230, 240, 0.7);

  /* Clean floating shadow */
  box-shadow: 
      0 10px 30px rgba(0,0,0,0.10),
      0 6px 12px rgba(0,0,0,0.05);
}

/* Remove old accent line */
.why-accent {
  display: none;
}

/* Updated heading */
.why-card h3 {
  font-family: "Poppins";
  font-size: 22px;
  margin-bottom: 16px;
  font-weight: 700;
  color: #0f1e36;
}

/* Modern bullet list */
.why-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px 0;
}

.why-card ul li {
  font-size: 15px;
  color: #1b2430;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

/* Modern check icons */
.why-card ul li::before {
  content: "✔";
  font-size: 14px;
  color: #d4a627; /* your brand gold */
  font-weight: 700;
}

/* Link styling */
.why-card .why-link {
  font-weight: 600;
  color: #1147c2;
  text-decoration: none;
  font-size: 15px;
}

.why-card .why-link:hover {
  text-decoration: underline;
}
.main-nav a {
  transition: 0.25s ease;
}

.main-nav a:hover {
  transform: translateY(-2px);
  color: var(--accent);
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  transform: translateX(-50%);
  transition: all 0.35s ease;
  opacity: 0;
}

.main-nav a:hover::after {
  width: 70%;
  opacity: 0.8;
}
/* ==========================================================
   PREMIUM CORPORATE FOOTER — NO LOGO VERSION
========================================================== */

.site-footer {
  background: linear-gradient(135deg, #0f1e36, #1a2d48);
  padding: 55px 0 35px;
  margin-top: 80px;
  color: #d5d9df;
}

.footer-container {
  width: min(1180px, 92%);
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Footer Navigation */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 26px;
}

.footer-links a {
  color: #cdd1d8;
  text-decoration: none;
  font-weight: 500;
  font-size: 15px;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #d4a627;          /* Gold accent on hover */
  transform: translateY(-2px);
}

/* Divider line */
.footer-line {
  width: 100%;
  height: 1px;
  background: rgba(255,255,255,0.12);
  margin-top: 10px;
}

/* Copyright */
.footer-copy {
  font-size: 14px;
  color: #aeb4bd;
  margin-top: 4px;
}
/* ==========================================================
   PREMIUM WHITE CONSULTING FOOTER
========================================================== */

.site-footer {
  background: #ffffff;
  padding: 60px 0 40px;
  margin-top: 80px;
  border-top: 1px solid #e6e9ee;   /* subtle professional divider */
}

.footer-container {
  width: min(1180px, 92%);
  margin: auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

/* Links */
.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}

.footer-links a {
  color: #4c5563;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: 0.25s ease;
}

.footer-links a:hover {
  color: #d4a627;       /* your gold accent */
  transform: translateY(-2px);
}

/* Divider */
.footer-divider {
  width: 100%;
  height: 1px;
  background: #eceff3;
  margin-top: 5px;
}

/* Copyright */
.footer-copy {
  font-size: 14px;
  color: #6b7280;
  margin-top: 4px;
}
/* MOBILE MENU */
.mobile-menu-icon {
  display: none;
  font-size: 28px;
  font-weight: 600;
  cursor: pointer;
  color: var(--navy);
}

.mobile-nav {
  display: none;
  flex-direction: column;
  background: #ffffff;
  position: absolute;
  top: 80px;
  right: 20px;
  width: 200px;
  padding: 20px;
  box-shadow: 0px 8px 20px rgba(0,0,0,0.15);
  border-radius: 14px;
  z-index: 9999;
}

.mobile-nav a {
  padding: 10px 0;
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
}

.mobile-nav a:hover {
  color: var(--accent);
}

/* SHOW MOBILE NAV ON SMALL SCREENS */
@media(max-width: 820px){
  .main-nav {
    display: none;
  }

  .mobile-menu-icon {
    display: block;
  }
}
/* GLOBAL MOBILE FIXES */
@media (max-width: 768px) {

    body {
        padding: 0;
        margin: 0;
    }

    /* HERO SECTION */
    .hero h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    /* WHY CHOOSE US */
    .why-box {
        margin: 20px auto;
        padding: 20px !important;
        width: 95% !important;
        box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    }

    .why-box .left-line {
        height: 100%;
        width: 4px;
        margin-right: 8px;
    }

    /* ABOUT US */
    #about {
        padding: 50px 20px;
    }

    #about h2 {
        font-size: 30px;
    }

    .about-wrapper {
        flex-direction: column !important;
        gap: 30px;
    }

    .about-text {
        width: 100%;
        text-align: left;
    }

    .about-features {
        grid-template-columns: 1fr !important;
        gap: 20px;
        width: 100%;
    }

    .feature-card {
        padding: 20px !important;
        width: 100% !important;
    }

    /* SERVICES */
    #services {
        padding: 60px 20px;
    }

    .services-grid {
        grid-template-columns: 1fr !important;
        gap: 22px;
    }

    .service-card {
        padding: 28px 18px !important;
        border-radius: 18px;
    }

    .service-card img {
        width: 52px;
        height: 52px;
    }

    .service-card h3 {
        font-size: 20px !important;
    }

    /* LEADERSHIP */
    .leader-wrapper {
        flex-direction: column !important;
        text-align: left;
        gap: 20px;
    }

    .leader-img {
        width: 100%;
        height: 250px !important;
        border-radius: 18px;
    }

    .leader-text h2 {
        font-size: 30px;
    }

    /* SOFTWARE PARTNERS */
    .partners-grid {
        grid-template-columns: 1fr !important;
        gap: 20px;
    }

    .partner-card {
        padding: 20px !important;
    }

    /* CONTACT FORM */
    #contact {
        padding: 50px 20px;
    }

    .contact-box {
        padding: 25px 18px !important;
        width: 100% !important;
    }

    .contact-box input,
    .contact-box textarea {
        font-size: 16px !important;
        padding: 14px !important;
    }

    .contact-box textarea {
        min-height: 150px !important;
    }

    .contact-box button {
        width: 100%;
        padding: 14px 0;
        font-size: 18px !important;
    }

    /* FOOTER */
    footer {
        padding: 30px 10px;
        text-align: center;
        font-size: 14px;
    }
}
/* HIDE DESKTOP NAV ON MOBILE */
@media (max-width: 768px) {
    .main-nav {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 4px 12px rgba(0,0,0,0.08);
        padding: 20px 0;
        flex-direction: column;
        text-align: center;
        z-index: 999;
    }

    .main-nav a {
        display: block;
        padding: 14px 0;
        font-size: 18px;
        border-bottom: 1px solid #eee;
    }

    /* Hamburger icon */
    .mobile-menu-icon {
        display: block;
        font-size: 30px;
        cursor: pointer;
        margin-left: auto;
        padding-right: 10px;
    }

    /* Hide desktop nav items */
    .header-row {
        position: relative;
    }
}

/* DESKTOP VIEW — SHOW NORMAL NAV */
@media (min-width: 769px) {
    .mobile-menu-icon {
        display: none;
    }
}
/* --------------------------- */
/* FIX HERO + WHY CHOOSE US SPACING ON MOBILE */
/* --------------------------- */
@media (max-width: 768px) {

    .hero {
        padding: 40px 0 20px !important;
    }

    .hero-row {
        gap: 20px !important;
        margin-bottom: 0 !important;
    }

    .why-choose-card {
        margin-top: -10px !important; /* pulls it closer to hero */
    }

    .why-card {
        width: 100% !important;
        margin-top: -15px !important;
        padding: 22px !important;
    }

    /* Reduce space before the next section */
    #about {
        margin-top: 10px !important;
    }
}
/* ===== ABOUT US GRID (Accuracy, Professionalism, Compliance, Support) ===== */

.about-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* desktop */
  gap: 2rem;
  margin-top: 2rem;
}

/* Tablet (2 per row) */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (2 x 2 grid) */
@media (max-width: 600px) {
  .about-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 1.25rem;
  }

  .about-card {
    padding: 1.25rem;
    border-radius: 16px;
  }

  .about-card img {
    width: 55px;
    height: 55px;
    margin-bottom: 12px;
  }

  .about-card-title {
    font-size: 1rem;
  }

  .about-card-desc {
    font-size: 0.85rem;
  }
}
/* ABOUT — 2×2 GRID ON MOBILE */
.about-right-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

/* Make the cards look balanced on mobile */
.about-card {
  text-align: center;
  padding: 20px 15px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* Center icons perfectly */
.about-card .ac-icon {
  font-size: 36px;
  margin-bottom: 10px;
}

/* ABOUT LAYOUT MOBILE FIX */
@media (max-width: 768px) {
  .about-layout {
    flex-direction: column;
    gap: 30px;
  }

  .about-left {
    text-align: left;
  }

  .about-right-grid {
    grid-template-columns: 1fr 1fr !important;
    width: 100%;
  }
}
/* MOBILE HERO + WHY CHOOSE US FIX */
@media (max-width: 768px) {

  /* Reduce extra spacing in hero */
  .hero-section {
    padding-top: 40px;
    padding-bottom: 30px;
  }

  .hero-content {
    text-align: left;
    padding: 0 20px;
  }

  /* Place Why Choose Us closer to hero */
  .why-card {
    margin-top: 25px !important;
    margin-left: auto;
    margin-right: auto;
    width: 95%;
    border-radius: 18px;
    padding: 20px 18px;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  }

  .why-card ul {
    padding-left: 20px;
  }

  .why-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }

  /* Buttons clean spacing */
  .hero-buttons {
    margin-bottom: 10px;
    margin-top: 20px;
    display: flex;
    gap: 12px;
    flex-direction: column;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
}
/* ============================ */
/* MOBILE HERO + WHY CARD FIX   */
/* ============================ */

@media (max-width: 768px) {

  /* HERO TEXT CENTERING */
  .hero-content {
    text-align: center !important;
    padding: 0 20px;
  }

  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 16px;
    margin-top: 12px;
    margin-bottom: 20px;
  }


  /* BUTTONS FULL WIDTH + CLEAN SPACE */
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    margin-top: 10px;
    margin-bottom: 20px;
  }

  .hero-buttons a {
    width: 100%;
    text-align: center;
    padding: 14px 0;
    border-radius: 10px;
  }


  /* WHY CHOOSE US CARD — PREMIUM LOOK */
  .why-card {
    width: 92%;
    margin: 0 auto;
    margin-top: 10px;
    padding: 20px 18px;
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.10);
  }

  .why-card h3 {
    text-align: center;
    font-size: 22px;
    margin-bottom: 12px;
  }

  .why-card ul {
    padding-left: 20px;
  }

  .why-card li {
    margin-bottom: 8px;
    font-size: 15px;
  }

  .why-card a {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
  }


  /* FIX GAP BETWEEN HERO + WHY SECTION */
  .hero-section {
    padding-bottom: 15px !important;
  }
}
/* ============================ */
/* ABOUT US — MOBILE FIX 2x2    */
/* ============================ */

@media (max-width: 768px) {

  .about-right-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px; /* reduced gap for compact look */
    padding: 0 10px;
  }

  .about-card {
    padding: 14px 10px !important; /* reduce padding */
    border-radius: 12px !important;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  }

  .about-card .ac-icon {
    font-size: 30px !important; /* reduce icon size */
    margin-bottom: 6px;
  }

  .about-card h4 {
    font-size: 15px !important;
    margin-bottom: 4px;
  }

  .about-card p {
    font-size: 13px !important;
    line-height: 1.35 !important;
  }
}
/* SERVICES GRID DESKTOP */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

/* SERVICE CARD */
.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 25px 15px;
  text-align: center;
  box-shadow: rgba(0, 0, 0, 0.06) 0 6px 18px;
}

.service-card img {
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
}

/* -------------------------------------- */
/* MOBILE VIEW — 3 PER ROW NEAT CLEAN GRID */
/* -------------------------------------- */

@media (max-width: 768px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    padding: 0 12px;
  }

  .service-card {
    padding: 16px 8px;
    border-radius: 14px;
  }

  .service-card h4 {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 12px;
    line-height: 16px;
  }

  .service-card img {
    width: 38px;
    height: 38px;
    margin-bottom: 8px;
  }
}
/* DEFAULT DESKTOP LAYOUT */
.services-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 28px !important;
  justify-items: center;
}

/* SERVICE CARD FIX */
.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 5px 18px rgba(0,0,0,0.06);
  max-width: 280px;
  width: 100%;
}

.service-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

/* TABLET - 2 PER ROW */
@media (max-width: 992px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }
}

/* MOBILE - 3 PER ROW */
@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 12px !important;
    padding: 0 8px;
  }

  .service-card {
    padding: 14px 8px !important;
    border-radius: 12px !important;
  }

  .service-icon {
    font-size: 26px !important;
    margin-bottom: 6px !important;
  }

  .service-card h4 {
    font-size: 13px !important;
    line-height: 16px !important;
    margin-bottom: 4px !important;
  }

  .service-card p {
    font-size: 11px !important;
    line-height: 14px !important;
  }
}
/* ====== CLEAN 3-COLUMN MOBILE LAYOUT (IMPROVED SPACING) ====== */

@media (max-width: 600px) {

  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
    padding: 0 12px !important;
  }

  .service-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 12px 8px !important;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0,0,0,0.05);
    width: 100%;
    min-height: 150px; /* all cards equal height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
  }

  .service-icon {
    font-size: 26px !important;
    margin-bottom: 6px !important;
  }

  .service-card h4 {
    font-size: 13px !important;
    font-weight: 600;
    margin-bottom: 4px !important;
    line-height: 1.2;
  }

  .service-card p {
    font-size: 11px !important;
    line-height: 1.2;
    color: #555;
  }
}
/* ====== PERFECT MOBILE 3-COLUMN CLEAN SPACING FIX ====== */

@media (max-width: 600px) {

  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 20px !important;               /* MORE SPACE BETWEEN CARDS */
    padding: 10px 14px !important; 
  }

  .service-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 10px 6px !important;       /* REDUCED CARD SIZE */
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.05);
    min-height: 130px;                  /* SMALLER CARD HEIGHT */
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .service-icon {
    font-size: 22px !important;         /* SMALLER ICON */
    margin-bottom: 4px !important;
  }

  .service-card h4 {
    font-size: 12px !important;         /* SMALLER TITLE */
    font-weight: 600;
    margin-bottom: 3px !important;
    line-height: 1.15;
  }

  .service-card p {
    font-size: 10px !important;         /* COMPACT TEXT */
    line-height: 1.15;
    color: #666;
  }
}
/* ----------------------------------------
   OPTION B — DESKTOP LAYOUT BUT MOBILE-OPTIMIZED
-----------------------------------------*/

@media (max-width: 1024px) {

    /* GENERAL SPACING */
    .section, .container {
        padding-left: 18px;
        padding-right: 18px;
    }

    /* HEADLINE: center + better spacing */
    h1, h2, h3, .section-title {
        text-align: center;
        line-height: 1.3;
        margin-bottom: 18px;
    }

    /* HOME SECTION */
    #home .home-left {
        text-align: center;
        padding: 0 10px;
    }

    #home .btn-row {
        justify-content: center;
        gap: 14px;
        flex-wrap: wrap;
    }

    /* WHY CHOOSE US CARD */
    .why-card {
        width: 100%;
        margin: auto;
        padding: 24px;
        border-radius: 18px;
    }

    .why-card ul li {
        font-size: 15px;
        line-height: 1.45;
    }

    /* ----------------------------------------
       ABOUT — 2×2 CARDS, BALANCED
    -----------------------------------------*/

    .about-layout {
        flex-direction: column;
        gap: 20px;
    }

    .about-right-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
        padding: 0 10px;
    }

    .about-card {
        padding: 18px 12px;
        border-radius: 16px;
        text-align: center;
    }

    .about-card h4 {
        font-size: 16px;
        margin-top: 10px;
    }

    /* ----------------------------------------
       SERVICES — 3 PER ROW CLEAN MOBILE GRID
    -----------------------------------------*/

    .services-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        padding: 5px;
    }

    .service-card {
        padding: 18px 10px;
        text-align: center;
        border-radius: 16px;
        min-height: 200px;
    }

    .service-card h4 {
        font-size: 14px;
        margin: 8px 0;
    }

    .service-card p {
        font-size: 12px;
        line-height: 1.35;
    }

    .service-icon {
        font-size: 26px;
        margin-bottom: 6px;
    }

    /* ----------------------------------------
       LEADERSHIP (center aligned)
    -----------------------------------------*/

    .leader-block {
        text-align: center;
        padding: 0 10px;
    }

    .leader-photo {
        width: 80%;
        max-width: 280px;
        margin: auto;
    }

    /* ----------------------------------------
       PARTNERS SECTION
    -----------------------------------------*/

    .partners-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .partner-card {
        padding: 18px 10px;
    }

    /* ----------------------------------------
       CONTACT FORM
    -----------------------------------------*/

    .contact-card {
        width: 100%;
        padding: 22px;
        border-radius: 16px;
    }

    .contact-card input,
    .contact-card textarea {
        font-size: 15px;
        border-radius: 12px;
    }

    .contact-card button {
        width: 100%;
        padding: 14px;
        border-radius: 12px;
        font-size: 16px;
    }
}
/* ============================================
   UNIVERSAL MOBILE SLIDER STYLE
   (Applies only on mobile screens)
============================================ */

@media (max-width: 768px) {

  /* Horizontal Slider Container */
  .mobile-slider {
    display: flex !important;
    flex-direction: row !important;
    gap: 16px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    padding-bottom: 12px !important;
    -webkit-overflow-scrolling: touch !important;
  }

  /* Hide scrollbar */
  .mobile-slider::-webkit-scrollbar {
    display: none !important;
  }

  /* Each Slide Item */
  .mobile-slider > * {
    flex: 0 0 75% !important;  /* card width */
    scroll-snap-align: start !important;
  }

  /* SERVICE CARDS — Make them slightly smaller for slide */
  .services-grid.mobile-slider .service-card {
    min-width: 70% !important;
    padding: 20px 14px !important;
    border-radius: 16px !important;
  }

  /* ABOUT CARDS */
  .about-right-grid.mobile-slider .about-card {
    min-width: 70% !important;
    padding: 18px !important;
    border-radius: 16px !important;
  }

  /* PARTNERS */
  .partners-enhanced-grid.mobile-slider .partner-enhanced-card {
    min-width: 70% !important;
    padding: 24px !important;
    border-radius: 18px !important;
  }
}
/* CONTACT SECTION — MOBILE FIX */
@media (max-width: 768px) {

  #contact .contact-container {
    padding: 18px !important;
    margin-top: 0 !important;
  }

  #contact h2 {
    margin-bottom: 20px !important;
    text-align: center;
    font-size: 26px;
  }

  .contact-form {
    padding: 14px !important;
    border-radius: 18px;
  }

  .contact-form input,
  .contact-form textarea {
    padding: 14px !important;
    font-size: 16px !important;
  }

  .contact-form .row {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .contact-form textarea {
    min-height: 140px;
    margin-top: 10px;
  }

  .contact-btn {
    width: 100%;
    margin-top: 18px;
    padding: 14px !important;
    font-size: 17px !important;
    border-radius: 12px;
  }
}
/* Leadership Section — FIX for mobile */
.leader-card {
  max-width: 700px;
  margin: 0 auto;
  padding: 20px;
  text-align: center;
}

.leader-image-wrapper {
  width: 140px;
  height: 140px;
  margin: 0 auto 20px auto;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 6px 18px rgba(0,0,0,0.12);
}

.leader-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.leader-title {
  font-size: 28px;
  margin-bottom: 6px;
}

.leader-name {
  font-size: 22px;
  font-weight: 700;
  margin-top: 5px;
}

.leader-role {
  color: #777;
  font-size: 16px;
  margin-bottom: 15px;
}

.leader-bio {
  font-size: 16px;
  line-height: 1.6;
  text-align: justify;
  padding: 0 5px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .leader-card {
    padding: 16px;
  }

  .leader-title {
    font-size: 26px;
  }

  .leader-name {
    font-size: 20px;
  }

  .leader-image-wrapper {
    width: 130px;
    height: 130px;
  }
}
/* SOFTWARE PARTNERS — 2 cards side-by-side on mobile */
@media (max-width: 768px) {
  .partners-grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 10px;
    scroll-snap-type: x mandatory;
  }

  .partners-grid::-webkit-scrollbar {
    display: none;
  }

  .partner-card {
    min-width: 80%;
    flex: 0 0 80%;
    scroll-snap-align: center;
  }
}
/* ==========================================
   MOBILE HORIZONTAL SWIPE (DOES NOT affect desktop)
========================================== */
@media (max-width: 768px) {

  /* General Horizontal Scroll Layout */
  .mobile-scroll {
    display: flex;
    overflow-x: auto;
    gap: 1.2rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .mobile-scroll::-webkit-scrollbar {
    display: none;
  }

  /* Each card behaves like a slide */
  .mobile-slide {
    min-width: 85%;
    max-width: 85%;
    flex-shrink: 0;
    scroll-snap-align: center;
    border-radius: 18px;
    box-shadow: 0 8px 22px rgba(0,0,0,0.08);
  }

  /* Fix hero + why choose us spacing */
  .hero-row {
    flex-direction: column;
  }

  .why-card {
    width: 90%;
    margin: auto;
    margin-top: 1.5rem;
  }

  /* About Us 2x2 -> swipe */
  .about-right-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.2rem;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
  }

  .about-card {
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  /* Services grid -> horizontal carousel */
  .services-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.2rem;
    padding-bottom: 1rem;
  }

  .service-card {
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  /* Partners two cards side-by-side on mobile */
  .partners-pro-grid {
    display: flex;
    overflow-x: auto;
    gap: 1.2rem;
    padding-bottom: 1rem;
  }

  .partner-pro-card {
    min-width: 85%;
    max-width: 85%;
    scroll-snap-align: center;
  }

  /* Leadership photo + text */
  .leadership-final-grid {
    display: block;
  }

  .leader-photo-frame {
    width: 85%;
    margin: auto;
  }

  .leader-text-section {
    padding: 1rem;
  }

  /* Contact form cleanup */
  .contact-card {
    width: 90%;
    margin: auto;
  }

  .form-row {
    flex-direction: column;
    gap: 1rem;
  }

  .form-row input {
    width: 100%;
  }
}
/* =========================================================
   SM Consultancy — Clean Responsive Styles (A1, with subtle animations)
   Desktop layout preserved; mobile optimized (<= 768px)
   ========================================================= */

/* ---------- Variables ---------- */
:root{
  --bg:#f4f6fa;
  --bg-light:#ffffff;
  --navy:#0f1e36;
  --muted:#6b7280;
  --accent:#d4a627;
  --shadow:0 10px 30px rgba(0,0,0,0.06);
  --radius:14px;
  --max-width:1180px;
}

/* ---------- Reset & base ---------- */
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Inter",sans-serif;
  background:var(--bg);
  color:var(--navy);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
}

/* ---------- Layout container ---------- */
.container{
  width:min(var(--max-width),92%);
  margin:0 auto;
}

/* ---------- Header ---------- */
.site-header{
  background:var(--bg-light);
  box-shadow:0 2px 8px rgba(0,0,0,0.04);
  position:sticky;
  top:0;
  z-index:999;
}

.header-row{
  padding:18px 0;
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.brand{display:flex;align-items:center;gap:12px}
.brand-logo{
  width:54px;height:54px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  background:#0d213f;color:#fff;font-weight:700;font-size:20px;
}
.brand-title{font-family:"Poppins",sans-serif;font-weight:700}
.brand-sub{font-size:12px;color:var(--muted)}

/* Nav */
.main-nav{display:flex;gap:18px;align-items:center}
.main-nav a{color:var(--navy);text-decoration:none;font-weight:600;position:relative;padding:6px}
.main-nav a.active::after{
  content:"";width:30px;height:4px;background:var(--accent);border-radius:6px;position:absolute;left:50%;bottom:-8px;transform:translateX(-50%)
}
.mobile-menu-icon{display:none;font-size:28px;cursor:pointer}

/* ---------- Hero ---------- */
.hero{
  padding:90px 0 60px;
  background:linear-gradient(135deg,#eef2f7,#f9fafc);
}
.hero-row{
  display:flex;gap:40px;align-items:flex-start;
}
.hero-left{flex:1;max-width:720px}
.hero-badge{
  background:var(--accent);padding:8px 18px;border-radius:50px;color:#000;font-weight:700;font-size:13px;display:inline-block
}
.hero-title{font-family:"Poppins",sans-serif;font-size:44px;margin:16px 0}
.hero-sub{color:var(--muted);font-size:15px;max-width:640px}
.hero-buttons{margin-top:20px;display:flex;gap:14px}
.btn-primary{background:var(--accent);padding:12px 22px;border-radius:12px;text-decoration:none;color:#000;font-weight:700}
.btn-outline{border:2px solid var(--accent);padding:12px 22px;border-radius:12px;text-decoration:none;font-weight:700;color:var(--navy)}

/* Why card */
.why-card{
  width:360px;background:var(--bg-light);padding:26px;border-radius:var(--radius);
  box-shadow:var(--shadow);border-top:6px solid var(--accent);
}
.why-card h3{margin-top:0;font-family:"Poppins",sans-serif;font-size:20px}
.why-card ul{padding-left:18px;margin:12px 0 10px;color:var(--muted)}
.why-link{color:#1a3bb3;text-decoration:none;font-weight:600}

/* ---------- Sections ---------- */
.section{padding:70px 0}
.section-alt{background:#eef1f5}
.section-title{text-align:center;font-family:"Poppins";font-size:28px;margin:0}

/* ---------- About ---------- */
.about-layout{display:grid;grid-template-columns:1.2fr 1fr;gap:30px;align-items:start}
.about-left{text-align:left}
.about-right-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
.about-card{background:var(--bg-light);padding:20px;border-radius:14px;box-shadow:var(--shadow);text-align:center}
.ac-icon{width:52px;height:52px;border-radius:50%;background:#0d213f;color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-size:20px}

/* ---------- Services ---------- */
.services-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px;margin-top:18px}
.service-card{background:var(--bg-light);border-radius:14px;padding:22px;text-align:center;box-shadow:var(--shadow);transition:transform .18s ease,box-shadow .18s ease}
.service-card:hover{transform:translateY(-6px);box-shadow:0 14px 40px rgba(0,0,0,0.08)}
.service-icon{width:50px;height:50px;border-radius:10px;background:#0d213f;color:#fff;display:flex;align-items:center;justify-content:center;margin:0 auto 12px;font-size:20px}
.service-card h4{margin:8px 0}

/* ---------- Leadership ---------- */
.leadership-final-grid{display:flex;gap:40px;align-items:center}
.leader-photo-frame{width:140px;height:140px;border-radius:50%;overflow:hidden;background:#e4e7eb;box-shadow:0 8px 20px rgba(0,0,0,0.08)}
.leader-photo{width:100%;height:100%;background-size:cover;background-position:center}
.leader-text-section{flex:1}

/* ---------- Partners ---------- */
.partners-pro-grid{display:flex;gap:24px;align-items:center}
.partner-pro-card{background:var(--bg-light);padding:18px;border-radius:14px;display:flex;gap:12px;align-items:center;box-shadow:var(--shadow)}
.partner-logo-circle{width:76px;height:76px;border-radius:50%;display:flex;align-items:center;justify-content:center;background:#f5f7fa;overflow:hidden}
.partner-logo-circle img{width:70%;height:auto;object-fit:contain}

/* ---------- Contact ---------- */
.contact-card{background:var(--bg-light);padding:30px;border-radius:16px;max-width:900px;margin:0 auto;box-shadow:var(--shadow)}
.form-row{display:flex;gap:12px}
input,textarea{width:100%;padding:12px 14px;border:1px solid #d7dbe0;border-radius:10px}

/* ---------- Footer ---------- */
.site-footer{padding:30px 0;text-align:center;color:var(--muted);font-size:14px}
.footer-container{width:min(var(--max-width),92%);margin:0 auto;display:flex;flex-direction:column;gap:12px;align-items:center}
.footer-links{display:flex;gap:12px;flex-wrap:wrap;justify-content:center}

/* ---------- Animations ---------- */
.fade-up{opacity:0;transform:translateY(10px);animation:fadeUp .6s ease forwards}
@keyframes fadeUp{to{opacity:1;transform:none}}

/* ---------- Utilities ---------- */
.center{text-align:center}

/* ---------- Responsive: Tablet (<=1024) ---------- */
@media (max-width:1024px){
  .about-layout{grid-template-columns:1fr;gap:24px}
  .leadership-final-grid{flex-direction:column;gap:18px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .partners-pro-grid{justify-content:center}
  .why-card{width:100%}
  .hero-row{flex-direction:column;gap:20px}
  .mobile-menu-icon{display:block}
  .main-nav{display:flex}
}

/* ---------- Mobile Tweaks: Professional (<=768) ---------- */
@media (max-width:768px){

  /* Header */
  .mobile-menu-icon{display:block}
  .main-nav{display:none;flex-direction:column;position:absolute;top:68px;left:0;width:100%;background:var(--bg-light);box-shadow:0 8px 30px rgba(0,0,0,0.08);padding:12px 0}
  .main-nav a{display:block;padding:12px 18px;border-bottom:1px solid #eef2f6}

  /* Keep containers padded nicely */
  .container{width:95%;}

  /* Hero */
  .hero{padding:36px 0 18px}
  .hero-row{flex-direction:column;gap:12px}
  .hero-left{text-align:center}
  .hero-title{font-size:26px}
  .hero-sub{font-size:15px;max-width:100%;margin:0 auto}
  .hero-buttons{flex-direction:column;gap:10px}
  .btn-primary, .btn-outline{width:100%;padding:12px 0;border-radius:10px;text-align:center}

  /* Why card -> place below hero, compact */
  .why-card{width:100%;margin:6px auto;padding:18px;border-radius:12px}

  /* ABOUT: keep 2x2 grid (compact) */
  .about-right-grid{grid-template-columns:repeat(2,1fr);gap:12px}
  .about-card{padding:14px;border-radius:12px}
  .ac-icon{width:44px;height:44px;font-size:18px}

  /* SERVICES: 3 per row compact (M1) */
  .services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    margin-top:18px;
  }
  .service-card{padding:12px;border-radius:12px;min-height:118px}
  .service-icon{width:36px;height:36px;font-size:18px}
  .service-card h4{font-size:13px;margin:6px 0}
  /* mobile-compact: hide p descriptions to keep clean 3-col look */
  .service-card.mobile-compact p{display:none}

  /* Leadership: photo above text, compact */
  .leadership-final-grid{flex-direction:column;gap:14px}
  .leader-photo-frame{width:120px;height:120px}
  .leader-bio{font-size:15px}

  /* Partners: show side-by-side, balanced */
  .partners-pro-grid{display:flex;gap:12px;flex-wrap:nowrap;overflow-x:auto;padding-bottom:8px}
  .partner-pro-card{min-width:44%;flex:0 0 44%;padding:14px;border-radius:12px}
  .partner-logo-circle{width:64px;height:64px}

  /* Contact form compact */
  .contact-card{padding:18px;border-radius:12px}
  .form-row{flex-direction:column;gap:10px}

  /* subtle animations on scroll — lightweight */
  .fade-up{animation:fadeUp .6s ease forwards}
}

/* ---------- Small phones: final polish (<=420px) ---------- */
@media (max-width:420px){
  .hero-title{font-size:22px}
  .service-card{min-height:110px;padding:10px}
  .service-card h4{font-size:12px}
  .about-card{padding:12px}
  .partners-pro-grid{gap:10px}
}

/* ---------- Accessibility & small helpers ---------- */
a:focus,button:focus,input:focus{outline:3px solid rgba(20,60,120,0.12);outline-offset:2px}
/* ============================
   MOBILE RESPONSIVE OVERRIDES
   ============================ */
@media (max-width: 768px) {

  /* GLOBAL SPACING FIX */
  .section, .section-alt {
    padding: 55px 20px;
  }

  /* HERO */
  .hero-row {
    flex-direction: column;
    text-align: center;
  }

  .why-card {
    margin-top: 30px;
    width: 100%;
  }

  /* ABOUT SECTION */
  .about-layout {
    flex-direction: column;
    gap: 35px;
  }

  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .about-card {
    padding: 18px;
    border-radius: 16px;
    text-align: center;
    height: auto;
  }

  .about-card h4 {
    margin-top: 8px;
    font-size: 15px;
  }

  .about-card p {
    font-size: 13px;
  }

  /* SERVICES SECTION */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }

  .service-card {
    padding: 18px;
    text-align: center;
    border-radius: 16px;
    height: auto;
  }

  .service-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  .service-card h4 {
    font-size: 14px;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 12px;
  }

  /* LEADERSHIP SECTION */
  .leadership-final-grid {
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .leader-photo-frame {
    width: 200px;
    height: 260px;
    margin: auto;
  }

  .leader-text-section {
    padding: 10px 20px;
  }

  .leader-bio {
    font-size: 14px;
  }

  /* SOFTWARE PARTNERS */
  .partners-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 25px;
  }

  .partner-pro-card {
    padding: 18px;
    border-radius: 16px;
    text-align: center;
  }

  .partner-logo-circle img {
    width: 55px;
  }

  .partner-info h3 {
    font-size: 14px;
  }

  .partner-info p {
    font-size: 12px;
  }

  /* CONTACT SECTION */
  .contact-card {
    padding: 25px 20px;
    border-radius: 18px;
  }

  .form-row {
    flex-direction: column;
    gap: 15px;
  }

  input, textarea {
    width: 100%;
    font-size: 14px;
  }

  .contact-btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }
}
/* ===========================
   MOBILE OPTIMIZATION PACK
   =========================== */
@media (max-width: 768px) {

  /* Reduce full-width stretching */
  .container,
  .desktop-wrapper {
    max-width: 92%;
    margin: 0 auto;
    padding: 0;
  }

  /* Reduce section vertical spacing */
  .section,
  .section-alt {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* Heading scaling */
  h1, .hero-title { font-size: 1.9rem; }
  h2 { font-size: 1.6rem; }
  h3 { font-size: 1.3rem; }

  /* ABOUT CARDS — prevent stretching */
  .about-right-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .about-card {
    padding: 18px !important;
    min-height: auto !important;
  }

  .ac-icon {
    font-size: 32px !important;
    margin-bottom: 6px;
  }

  /* SERVICES GRID — tighter, cleaner */
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .service-card {
    padding: 16px !important;
    min-height: auto !important;
  }

  .service-icon {
    font-size: 30px !important;
    margin-bottom: 6px;
  }

  /* SOFTWARE PARTNERS — fix stretched issue */
  .partners-pro-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .partner-pro-card {
    padding: 20px !important;
    min-height: auto !important;
  }

  .partner-logo-circle img {
    width: 55px;
  }

  /* CONTACT FORM — tighter spacing */
  .contact-card {
    padding: 20px !important;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  input, textarea {
    font-size: 15px;
    padding: 12px;
  }

  .contact-btn {
    padding: 14px;
    font-size: 16px;
  }
}
/* ----------- MOBILE OPTIMIZATION FIXES ----------- */
@media (max-width: 600px) {

  /* Reduce container width for better breathing space */
  .container, .desktop-wrapper {
    max-width: 92%;
    margin: 0 auto;
  }

  /* ABOUT CARDS — make them perfect square-ish, evenly spaced */
  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 10px 0;
  }

  .about-card {
    padding: 18px 10px;
    border-radius: 18px;
    min-height: 150px;
  }

  .about-card h4 {
    font-size: 15px;
    margin-top: 8px;
  }

  .about-card p {
    font-size: 13px;
    margin-top: 4px;
  }

  /* SERVICES — 3 per row, aligned & not stretched */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 0 5px;
  }

  .service-card {
    padding: 16px 5px;
    border-radius: 16px;
    min-height: 130px;
  }

  .service-card h4 {
    font-size: 13px;
    margin-top: 6px;
  }

  .service-card p {
    display: none; /* Hide description for clean mobile look */
  }

  /* SOFTWARE PARTNERS — center and compact */
  .partners-pro-grid {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }

  .partner-pro-card {
    width: 46%;
    padding: 18px 10px;
    border-radius: 18px;
  }

  .partner-info h3 {
    font-size: 15px;
  }

  .partner-info p {
    font-size: 13px;
  }

  /* CONTACT — tighter card, no stretch */
  .contact-card {
    padding: 20px;
    border-radius: 20px;
    margin-top: 10px;
  }

  .form-row {
    flex-direction: column;
    gap: 12px;
  }

  .contact-card input,
  .contact-card textarea {
    font-size: 15px;
    padding: 12px;
  }

  .contact-btn {
    padding: 14px 0;
    font-size: 16px;
  }
}
/* ----------------- MOBILE / OVERFLOW FIXES (paste near top of styles.css) ----------------- */

/* make width math predictable */
*,
*::before,
*::after { box-sizing: border-box; }

/* prevent any accidental horizontal scrolling */
html, body {
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
}

/* container safe padding so content never touches edges */
.container,
.desktop-wrapper {
  width: 100%;
  max-width: 1200px; /* keeps desktop look */
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

/* ensure any wrapper doesn't overflow on mobile */
.desktop-wrapper,
.hero-row,
.about-layout,
.services-grid,
.about-right-grid {
  width: 100%;
  overflow: visible;
}

/* images and icons scale nicely */
img, .partner-logo-circle img, .service-icon img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ---------- MOBILE SPECIFIC (<= 768px) ---------- */
@media (max-width: 768px) {

  /* slightly narrower page padding on small phones */
  .container, .desktop-wrapper {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* HERO: keep left content readable */
  .hero-left { padding-right: 8px; }

  /* ABOUT: 2x2 grid, cards constrained to viewport */
  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    align-items: start;
    margin-top: 18px;
    padding: 0;
  }

  .about-card {
    width: 100%;
    min-height: 140px;
    padding: 18px 12px;
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(10,20,40,0.06);
    background: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-card .ac-icon {
    width: 58px;
    height: 58px;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom: 8px;
    font-size: 26px;
  }

  .about-card h4 { font-size: 15px; margin: 4px 0; line-height:1.15; }
  .about-card p  { font-size: 13px; color: #6b7280; margin: 6px 0 0; }

  /* SERVICES: 3 columns but constrained using minmax(0,1fr) to avoid overflow */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 10px 0;
    align-items: start;
  }

  .service-card {
    width: 100%;
    padding: 12px;
    border-radius: 12px;
    min-height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 24px rgba(10,20,40,0.06);
  }

  .service-card .service-icon {
    background: #0f2130;
    color: #fff;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display:flex;
    align-items:center;
    justify-content:center;
    box-shadow: 0 8px 20px rgba(10,20,40,0.06);
    margin-top: 6px;
  }

  .service-card h4 { font-size: 13px; margin-top: 10px; line-height:1.2; }
  .service-card p  { display: none; } /* hide descriptions on small phones for clarity */

  /* SERVICES rows spacing: ensure even gutters */
  .services-grid > .service-card:nth-child(3n+1) { /* left column */ }
  .services-grid > .service-card:nth-child(3n+2) { /* centre column */ }
  .services-grid > .service-card:nth-child(3n)   { /* right column */ }

  /* PARTNERS: show 2 cards side-by-side on mobile */
  .partners-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 12px 0;
    align-items: start;
    justify-items: center;
  }

  .partner-pro-card {
    width: 100%;
    max-width: 320px;
    padding: 18px 12px;
    border-radius: 14px;
    text-align: center;
    background: #fff;
    box-shadow: 0 10px 28px rgba(10,20,40,0.06);
  }

  /* CONTACT: central, fixed max width so it doesn't stretch full width */
  .contact-card {
    width: 100%;
    max-width: 640px;
    margin: 18px auto;
    padding: 18px;
    border-radius: 18px;
    box-shadow: 0 10px 28px rgba(10,20,40,0.06);
    background: #fff;
  }

  .form-row { display: flex; flex-direction: column; gap: 12px; }
  .contact-card input,
  .contact-card textarea {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    border: 1px solid #e6e6e9;
    font-size: 15px;
  }

  .contact-btn {
    width: 100%;
    padding: 12px 18px;
    border-radius: 10px;
    font-weight: 700;
    margin-top: 12px;
  }

} /* end mobile rules */
/* ===============================
   FINAL MOBILE FIX PACK (SAFE)
   =============================== */
@media (max-width: 768px) {

  /* Stop horizontal scroll on mobile */
  html, body {
    overflow-x: hidden;
  }

  /* Container spacing fix */
  .container, 
  .desktop-wrapper {
    width: 100%;
    max-width: 92%;
    margin: 0 auto;
    padding: 0;
  }

  /* Reduce big empty spaces on mobile */
  .section, 
  .section-alt {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  /* -------- HERO FIXES -------- */
  .hero-row {
    flex-direction: column;
    gap: 20px;
  }

  .why-card {
    width: 100%;
    margin: 0 auto;
  }

  /* -------- ABOUT SECTION FIX -------- */
  .about-layout {
    flex-direction: column;
    gap: 20px;
  }

  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .about-card {
    padding: 16px 10px;
    min-height: 150px;
    text-align: center;
  }

  .about-card p {
    font-size: 13px;
  }

  /* -------- SERVICES GRID FIX -------- */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
  }

  .service-card {
    padding: 14px 6px;
    min-height: 140px;
    text-align: center;
  }

  .service-card p {
    display: none; /* optional - clean mobile UI */
  }

  .service-icon {
    width: 48px !important;
    height: 48px !important;
    font-size: 26px !important;
  }

  /* -------- SOFTWARE PARTNERS FIX -------- */
  .partners-pro-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-top: 20px;
  }

  .partner-pro-card {
    padding: 18px 10px !important;
    border-radius: 14px;
  }

  .partner-logo-circle img {
    width: 55px !important;
  }

  /* -------- CONTACT SECTION FIX -------- */
  .contact-card {
    padding: 20px !important;
    border-radius: 16px;
    margin-top: 15px;
  }

  .form-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  input, textarea {
    padding: 12px !important;
    font-size: 15px;
  }

  .contact-btn {
    padding: 14px;
    font-size: 16px;
    width: 100%;
  }

  /* -------- GENERAL FIX FOR OVERFLOW -------- */
  img, 
  .partner-logo-circle img {
    max-width: 100%;
    height: auto;
  }

  * {
    box-sizing: border-box;
  }
}
/* -------------------------------------------
   FIX SERVICES SECTION ON MOBILE
--------------------------------------------*/
@media (max-width: 768px) {

  /* Services Title spacing */
  .section-title {
    margin-bottom: 1.5rem;
  }

  /* Convert grid to perfect 2-column layout */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px; /* perfect spacing */
    padding: 0 10px;
  }

  /* Each card the same height + alignment centered */
  .service-card {
    padding: 16px 10px;
    border-radius: 14px;
    text-align: center;
    min-height: 150px; /* forces equal height */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
  }

  /* Icon adjustments */
  .service-icon {
    font-size: 32px;
    margin-bottom: 10px;
  }

  /* Text alignment improvements */
  .service-card h4 {
    font-size: 15px;
    line-height: 1.2;
    margin-bottom: 6px;
  }

  .service-card p {
    font-size: 13px;
    line-height: 1.35;
  }
}
/* --------------------------------------------------
   FINAL FIX FOR MOBILE SERVICES SECTION
   --------------------------------------------------*/
@media (max-width: 768px) {

  /* Force 2 perfect columns */
  .services-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 18px !important;
    padding: 0 12px !important;
    justify-items: center;
  }

  /* Equal height for every card */
  .service-card {
    width: 100% !important;
    max-width: 160px !important;
    min-height: 150px !important;
    padding: 16px 10px !important;

    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;

    text-align: center !important;
  }

  /* Icon size */
  .service-icon {
    font-size: 32px !important;
    margin-bottom: 10px !important;
  }

  /* Title text */
  .service-card h4 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }

  /* Description text */
  .service-card p {
    font-size: 13px !important;
    line-height: 1.3 !important;
  }
}
/* ----------------------------------------------- */
/* MOBILE FIXES FOR ABOUT-US + SOFTWARE PARTNERS   */
/* ----------------------------------------------- */
@media (max-width: 768px) {

  /* Fix About Us feature boxes */
  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    padding: 0 12px;
  }

  .about-card {
    padding: 18px 12px;
    min-height: 170px;    /* ensures even height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 18px;
  }

  .about-card p {
    margin-top: 6px;
  }

  /* SOFTWARE PARTNERS FIX */
  .partners-pro-grid {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 12px;
    padding: 0 12px;
  }

  .partner-pro-card {
    width: 48%;
    padding: 20px 12px;
    border-radius: 18px;
    min-height: 190px;  /* equal height for both */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .partner-logo-circle img {
    width: 55px;
    height: 55px;
  }

}
/* ----------------------------------------------- */
/* PERFECT COMPACT ABOUT-US BOXES (MOBILE ONLY)    */
/* ----------------------------------------------- */
@media (max-width: 768px) {

  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;           /* reduced gap for cleaner layout */
    padding: 0 10px;
  }

  .about-card {
    padding: 16px 10px;  /* reduce padding */
    min-height: auto;    /* allow natural height */
    height: auto;        /* removes stretched look */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .about-card h4 {
    margin-top: 10px;
    margin-bottom: 6px;
    font-size: 15px;
  }

  .about-card p {
    font-size: 13px;
    line-height: 1.35;
    margin: 0;          /* keeps height tight */
  }

  /* Icon size */
  .ac-icon {
    font-size: 32px;
  }
}
/* ----------------------------------------------- */
/* PERFECT COMPACT ABOUT-US BOXES - FINAL FIX      */
/* ----------------------------------------------- */
@media (max-width: 768px) {

  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 12px;
  }

  .about-card {
    padding: 14px 10px;
    height: 170px !important;     /* FIXED PERFECT HEIGHT */
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;  /* top align = compact */
    align-items: center;
    text-align: center;
  }

  .ac-icon {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .about-card h4 {
    margin: 6px 0 4px 0;
    font-size: 14.5px;
    line-height: 1.2;
  }

  .about-card p {
    font-size: 12.5px;
    line-height: 1.25;
    margin: 0;
    max-width: 95%;
  }
}
/* --------------------------------------------------------- */
/* CLEAN, NON-STRETCHED ABOUT CARDS — FINAL PERFECT VERSION  */
/* --------------------------------------------------------- */
@media (max-width: 768px) {

  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 10px;
  }

  .about-card {
    padding: 12px 8px;
    border-radius: 16px;

    /* NATURAL HEIGHT – removes the stretched look */
    height: auto !important;

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;

    /* prevents text from making the card too wide */
    max-width: 150px;
    margin-inline: auto;
  }

  .ac-icon {
    font-size: 28px;
    margin-bottom: 6px;
  }

  .about-card h4 {
    margin: 4px 0 4px;
    font-size: 14px;
    line-height: 1.2;
  }

  .about-card p {
    font-size: 12px;
    line-height: 1.25;
    margin: 0;
    max-width: 130px;   /* ensures text wraps tighter */
  }
}
/* ---------------------------------------------------------
   PERFECT MOBILE ABOUT CARDS — FINAL POLISHED VERSION
--------------------------------------------------------- */
@media (max-width: 768px) {

  .about-right-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 12px;
  }

  .about-card {
    background: #fff;
    border-radius: 18px;
    padding: 14px 10px;

    /* natural height based on content (no stretch) */
    height: auto !important;

    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

    /* reduces card width to make it look premium */
    max-width: 150px;
    margin-inline: auto;

    /* subtle shadow for premium look */
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }

  .ac-icon {
    font-size: 30px;
    margin-bottom: 6px;
  }

  .about-card h4 {
    font-size: 15px;
    font-weight: 600;
    margin: 4px 0 6px;
    line-height: 1.2;
  }

  .about-card p {
    font-size: 12.5px;
    line-height: 1.28;
    margin: 0;
    max-width: 125px; /* keeps paragraph tight */
  }
}
/* ---------------------------------------------------------
   PERFECT MOBILE FIX — SOFTWARE PARTNERS CARDS
--------------------------------------------------------- */
@media (max-width: 768px) {

  .partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding: 0 14px;
    justify-items: center;
  }

  .partner-card {
    background: #fff;
    border-radius: 18px;
    padding: 16px 10px;
    width: 150px; /* makes card compact */
    height: auto; /* removes stretched height */
    text-align: center;

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;

    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  }

  .partner-card img {
    width: 55px;
    height: 55px;
    margin-bottom: 4px;
  }

  .partner-card h4 {
    font-size: 15px;
    margin: 0;
  }

  .partner-card p {
    font-size: 12.5px;
    line-height: 1.3;
    max-width: 115px; /* keeps text compact */
    margin: 0 auto;
  }
}
/* --------------------------------------------------------
   FINAL PERFECT MOBILE OPTIMISATION (BEST VERSION)
   -------------------------------------------------------- */
@media (max-width: 480px) {

  /* Universal card improvements */
  .info-card {
    width: 44%; /* perfect compact width */
    max-width: 165px;
    padding: 18px 14px;
    margin: 10px auto;
    border-radius: 18px;
    text-align: center;
  }

  .info-card h3 {
    font-size: 1rem;
  }

  .info-card p {
    font-size: 0.82rem;
    line-height: 1.3;
    max-width: 90%; 
    margin: 6px auto 0 auto;
  }

  /* Grid alignment */
  .features-grid,
  .partners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px; /* perfect spacing */
  }

  /* Software partner cards */
  .partner-card {
    width: 44%;
    max-width: 165px;
    padding: 18px 14px;
    border-radius: 18px;
  }

  /* Partner logo balancing */
  .partner-card img {
    width: 56px;
    height: 56px;
    margin-bottom: 8px;
  }
}
@media(min-width:1000px){
  .about-right-grid{
    grid-template-columns:repeat(3,1fr);
  }
}
.about-right-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 cards per row */
  gap: 20px;
}
/* Improve About text readability */
.about-left {
  max-width: 620px;     /* limits line width */
}

.about-left p {
  line-height: 1.7;     /* better spacing */
  font-size: 16px;
  color: #4b5563;
}
.about-left h2 {
  margin-bottom: 20px;
}
/* Leadership Card Style */
.leadership-card {
  background: #f8fafc;
}

.leader-box {
  max-width: 700px;
  margin: auto;
  background: #ffffff;
  padding: 40px 30px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.leader-name {
  font-size: 26px;
  margin: 10px 0 5px;
}

.leader-role {
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 18px;
}

.leader-bio {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
}

.leader-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.leader-contact-list a {
  color: #1a3bb3;
  font-weight: 500;
  text-decoration: none;
}

.leader-contact-list a:hover {
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 600px) {
  .leader-box {
    padding: 28px 20px;
  }

  .leader-name {
    font-size: 22px;
  }
}
.leader-bio {
  max-width: 600px;
  margin: auto;
}
.leader-box:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}
/* Leadership Contact Alignment */

.leader-contact-list {
  margin-top: 25px;
  border-top: 1px solid #e5e7eb;
  padding-top: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  justify-content: center; /* centers row */
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #e5e7eb;
}

.contact-item:last-child {
  border-bottom: none;
}

.contact-icon {
  width: 22px;          /* fixed width for alignment */
  text-align: center;
  font-size: 18px;
}

.contact-item a {
  color: #1a3bb3;
  font-weight: 500;
  text-decoration: none;
}

.contact-item a:hover {
  text-decoration: underline;
}
