/* ==== RESET / BASE ==== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    color: #0b1020;
    background-color: #f5f6fb;
    line-height: 1.6;
}
.main-nav a.active { color:#ff8502; }

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

button {
    font-family: inherit;
}

/* ==== LAYOUT HELPERS ==== */

.container {
    width: 100%;
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 40px 0;
}

.section-alt {
    background-color: #f0f2fa;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px auto;
}

.section-header h2 {
    font-size: 32px;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.section-header p {
    color: #5d647a;
    margin: 0;
}

/* ==== GRID ==== */

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* ==== BUTTONS ==== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease, color 0.15s ease;
    white-space: nowrap;
}

.btn-lg {
    padding: 12px 26px;
    font-size: 15px;
}

.btn-sm {
    padding: 8px 18px;
    font-size: 13px;
}

.btn-primary {
    background: linear-gradient(135deg, #ff8c3a, #ff5a00);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(255, 102, 0, 0.35);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff9b4f, #ff6a16);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 102, 0, 0.45);
}

.btn-ghost {
    background-color: rgb(84 126 68);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-ghost:hover {
    background-color: rgba(114, 164, 174, 0.65);
    background: linear-gradient(135deg, #8faf86, #729265);
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.45);
}

.btn-accent {
    /* background-color: #0b1020; */
    background: linear-gradient(356deg, #008a1e, #04ff0f);
    color: #ffffff;
}

.btn-accent:hover {
    background-color: #171d33;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ==== HEADER ==== */

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  padding: 14px 0;
}


.logo-link {
  margin-right: auto;
}


.main-nav {
  /* margin-left: auto; */
  margin-right: auto;
}


.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-mark {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    background: linear-gradient(135deg, #ff8c3a, #ff5a00);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
}

.logo-text {
    color: #ffffff;
    font-weight: 600;
    letter-spacing: 0.04em;
    font-size: 15px;
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 14px;
}

.main-nav a {
    color: #000000;
    position: relative;
    padding-bottom: 2px;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -4px;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, #ff8c3a, #ff5a00);
    transform: translateX(-50%);
    transition: width 0.18s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 18px;
}

.header-cta {
    margin-left: 20px;
}

/* Mobile toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  width: 22px;
  height: 18px;
  background: black;
  border: none;
  padding: 0;
}

.nav-toggle span {
    height: 2px;
    width: 100%;
    border-radius: 999px;
    background-color: #ffffff;
}
@media (max-width: 768px) {
    .main-nav a {
        color: #000000;
    }
}


/* dropdown for the industies*/

.has-dropdown {
  position: relative;
}

.main-nav ul li ul.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;

  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4px;

  min-width: 260px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 12px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.35);
  padding: 10px;

  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: all 0.2s ease;
  z-index: 999;
}

.main-nav ul li:hover > ul.dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-nav ul li ul.dropdown li {
  width: 100%;
}

.main-nav ul li ul.dropdown li a {
  display: flex;
  align-items: center;
  padding: 10px 14px;
  /* color: black; */
  font-size: 13px;
  border-radius: 8px;
}

.main-nav ul li ul.dropdown li a:hover {
  background: linear-gradient(135deg, #ff8c3a, #ff5a00);
  color:#ffffff;
}
.main-nav ul li ul.dropdown li a.active {
  background: linear-gradient(135deg, #ff8c3a, #ff5a00);
  color:#ffffff;
}

.main-nav ul li ul.dropdown li a.active::after {
  width: 18px;
  color: #ff8c3a;
}

@media (max-width: 768px) { 
    .main-nav ul li ul.dropdown { 
     position: static;
     transform: none;
     box-shadow: none; 
     background: transparent; 
     border: 0; 
     padding-left: 12px; 
     display: none; 
     opacity: 1; 
     visibility: visible; 
    } 
    .main-nav ul li.open > ul.dropdown { 
        display: block; 
    } 
}


/* ==== HERO ==== */

.hero {
    position: relative;
    color: #ffffff;
    padding: 120px 0 80px 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url("../../../assets/images/banners/desktop/home-page.webp"); /* replace with your actual path */
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -2;
}
@media (max-width: 768px){
  .hero-bg{
    position: absolute;
    inset: 0;
    background-image: url("../../../assets/images/banners/mobile/home-page-banner--mobile.webp"); /* replace with your actual path */
    background-size: cover;
    background-position: center;
    opacity: 1;
    z-index: -2;
  }
}


.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(255, 166, 77, 0.65), transparent 55%),
                radial-gradient(circle at bottom right, rgba(0, 94, 255, 0.65), transparent 50%),
                linear-gradient(to bottom, rgba(6, 10, 32, 0.9), #050714);
    z-index: -3;
}

.hero-content {
    display: grid;
    grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.4fr);
    gap: 40px;
    align-items: center;
}

.hero-eyebrow {
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.85;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 42px;
    line-height: 1.15;
    margin: 0 0 16px 0;
}

.hero-subtitle {
    color: #d3d9ff;
    max-width: 540px;
    margin-bottom: 24px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.hero-note {
    font-size: 13px;
    color: #c2c8f0;
}

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

.stat-card {
    padding: 14px 16px;
    border-radius: 14px;
    background: rgba(8, 11, 38, 0.86);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat-value {
    display: block;
    font-size: 22px;
    font-weight: 700;
}

.stat-label {
    display: block;
    font-size: 12px;
    color: #c2c8f0;
}

/* ==== CARDS / TAGS ==== */

.card {
    background-color: #ffffff;
    border-radius: 18px;
    padding: 20px 20px 22px 20px;
    box-shadow: 0 16px 45px rgba(15, 23, 42, 0.06);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.card h3 {
    margin-top: 10px;
    margin-bottom: 8px;
    font-size: 18px;
}

.card p {
    margin: 0;
    color: #5d647a;
    font-size: 14px;
}

.card-tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border-top-left-radius: 999px;
    border-top-right-radius: 999px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* Tag colors */
.tag-blue { background-color: #e4ebff; color: #2242d0; }
.tag-purple { background-color: #efe4ff; color: #6b28d9; }
.tag-green { background-color: #e4ffe8; color: #1f8b3b; }
.tag-orange { background-color: #ffe9dd; color: #d05920; }
.tag-teal { background-color: #dff7ff; color: #0c7891; }
.tag-pink { background-color: #ffe5f3; color: #c02173; }

/* ==== SERVICES ==== */

.services-grid .service-card ul {
    margin-top: 10px;
}

.service-list li::before {
    content: "•";
    color: #ff7a1a;
    margin-right: 6px;
}

.service-list li {
    font-size: 13px;
    color: #4d556a;
    margin-bottom: 4px;
}

/* ==== PROCESS ==== */

.process-card {
    text-align: left;
}

.process-step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: linear-gradient(135deg, #ff8c3a, #ff5a00);
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
}

/* ==== INDUSTRIES ==== */

.industry-card p {
    font-size: 14px;
    margin-top: 6px;
    margin-bottom: 14px;
}

.link-arrow {
    font-size: 13px;
    font-weight: 600;
    color: #ff5a00;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.link-arrow::after {
    content: "→";
    font-size: 13px;
}

/* ==== AI SECTION ==== */

.ai-grid .ai-card {
    min-height: 190px;
}

.ai-cta {
    margin-top: 40px;
    text-align: center;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.ai-cta h3 {
    margin-bottom: 10px;
    font-size: 24px;
}

.ai-cta p {
    color: #5d647a;
    margin-bottom: 18px;
}

.ai-cta-actions {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

/* ==== PRICING ==== */

.pricing-grid .pricing-card {
    position: relative;
}

.pricing-price {
    margin: 10px 0 4px 0;
    font-size: 26px;
    font-weight: 700;
}

.pricing-price span {
    font-size: 13px;
    font-weight: 400;
    color: #6a7287;
    margin-left: 4px;
}

.pricing-subtitle {
    font-size: 13px;
    color: #6a7287;
    margin-bottom: 10px;
}

.pricing-list li {
    font-size: 13px;
    color: #4d556a;
    margin-bottom: 4px;
    position: relative;
    padding-left: 18px;
}

.pricing-list li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: #12b981;
    position: absolute;
    left: 4px;
    top: 8px;
}

.pricing-badge {
    position: absolute;
    top: 14px;
    right: 18px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    background: #0b1020;
    color: #ffffff;
}

.pricing-popular {
    border: 2px solid #ff7a1a;
    box-shadow: 0 18px 45px rgba(254, 152, 74, 0.25);
}

/* ==== CASE STUDIES ==== */
.case-card ul {
    margin-top: 10px;
}

.case-results li {
    font-size: 13px;
    color: #4d556a;
    margin-bottom: 4px;
    padding-left: 18px;
    position: relative;
}

.case-results li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background-color: #2563eb;
    position: absolute;
    left: 4px;
    top: 8px;
}

.case-stack {
    margin-top: 8px;
    font-size: 13px;
}

.case-footer {
    margin-top: 24px;
    text-align: center;
}

/* ==== GLOBAL PRESENCE ==== */

.global-section {
    position: relative;
    color: #ffffff;
    padding: 80px 0;
    overflow: hidden;
}

.global-bg{
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;

  background-image: url("../../../assets/images/home/global_presence.webp");
  background-size: cover;
  background-position: center;
}

/* Fog layer */
.global-bg::before{
  content: "";
  position: absolute;
  inset: 0;

  /* blur the backdrop (fog effect) */
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  /* fog color tint */
  background: rgba(10, 14, 28, 0.45);
}

/* Optional: extra soft mist */
.global-bg::after{
  content: "";
  position: absolute;
  inset: -20%;
  background: radial-gradient(circle at 30% 20%, rgba(255,255,255,.14), transparent 55%),
              radial-gradient(circle at 70% 60%, rgba(255,255,255,.10), transparent 60%),
              radial-gradient(circle at 50% 90%, rgba(255,255,255,.08), transparent 55%);
  opacity: .4;
  pointer-events: none;
}

@media (max-width: 768px){
  .global-bg{
    background-image: url("../../../assets/images/home/global_presence_mobile_view.webp");
    background-position: center top;
  }

  .global-bg::before{
    backdrop-filter: blur(6px);     /* slightly less blur for performance */
    -webkit-backdrop-filter: blur(6px);
    background: rgba(10, 14, 28, 0.55);
  }
}


.global-section .section-header p {
    color: #c7cff5;
}

.global-grid {
    margin-top: 30px;
}

.global-card {
    background: rgba(9, 13, 34, 0.88);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #e5e9ff;
}

.global-card h3 {
    margin-top: 0;
    margin-bottom: 4px;
    font-size: 16px;
}

.global-card p {
    margin-bottom: 8px;
    color: #c7cff5;
}

.global-card ul li {
    font-size: 13px;
    margin-bottom: 2px;
}

.global-metrics {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    background: radial-gradient(circle at top, rgba(255, 138, 76, 0.18), rgba(10, 16, 41, 0.9));
}

.metric {
    padding: 12px;
    border-radius: 12px;
    background: rgba(4, 7, 22, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.metric-value {
    display: block;
    font-size: 18px;
    font-weight: 700;
}

.metric-label {
    display: block;
    font-size: 12px;
    color: #c7cff5;
}

/* ==== CTA SECTION ==== */

.cta-sectionconsult {
    background: linear-gradient(135deg, #001f4f, #003b8c);
    color: #ffffff;
}

.cta-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 1.2fr);
    gap: 32px;
    align-items: center;
}

.cta-main h2 {
    font-size: 30px;
    margin-bottom: 12px;
}

.cta-main p {
    color: #d2defc;
    margin-bottom: 18px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cta-steps {
    display: grid;
    gap: 16px;
}

.cta-step {
    background: rgba(0, 0, 0, 0.15);
    border-radius: 14px;
    padding: 14px 16px;
}

.cta-step h3 {
    margin: 0 0 4px 0;
    font-size: 16px;
}

.cta-step p {
    margin: 0;
    font-size: 13px;
    color: #d2defc;
}

/* ==== CONTACT FORM ==== */

.contact-form {
    max-width: 720px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 24px 22px 26px 22px;
    border-radius: 18px;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
    border: 1px solid rgba(15, 23, 42, 0.06);
}

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

.form-field {
    flex: 1 1 0;
    min-width: 200px;
}

.form-field-full {
    flex-basis: 100%;
}

.form-field label {
    display: block;
    font-size: 13px;
    margin-bottom: 4px;
    color: #111827;
    font-weight: 500;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 9px 10px;
    border-radius: 10px;
    border: 1px solid #d1d5e4;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
    background-color: #f9fafb;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #2563eb;
    box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.25);
    background-color: #ffffff;
}

/* ==== FOOTER ==== */

.site-footer {
    background-color: #050716;
    color: #9ca3c9;
    padding-top: 40px;
}

.footer-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.8fr) minmax(0, 2fr);
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-about p {
    font-size: 13px;
    max-width: 420px;
    margin-top: 10px;
}

.footer-logo .logo-mark {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer-column h4 {
    margin: 0 0 10px 0;
    font-size: 14px;
    color: #e5e7ff;
}

.footer-column li {
    margin-bottom: 4px;
}

.footer-column a {
    font-size: 13px;
    color: #a5b0e5;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-bottom {
    padding: 10px 0 14px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: #6b7287;
}

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

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        max-width: 420px;
        margin-top: 18px;
    }

    .grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        gap: 10px;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgb(255, 255, 255);
        max-height: 0;
        overflow: auto;
        transition: max-height 0.2s ease;
    }

    .main-nav.open {
        max-height: 260px;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 10px 20px 14px 20px;
        align-items: flex-start;
    }

    .header-cta {
        display: none;
    }

    .nav-toggle {
        display: flex;
        margin-right: 15px;

    }

    .hero {
        padding-top: 30px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .cta-main h2 {
        font-size: 24px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom-inner {
        flex-direction: column;
        gap: 6px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-columns {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }
}

.global-grid .global-metrics{
  grid-column: 2 / -1;                 /* span cols 2..4 */
  border-radius: 20px;
  padding: 18px;
  gap: 16px;

  /* keep your vibe, slightly stronger depth */
  background:
    radial-gradient(900px 260px at 50% 0%,
      rgba(255, 138, 76, 0.22),
      rgba(10, 16, 41, 0.94) 55%,
      rgba(4, 7, 22, 0.96) 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 22px 70px rgba(0,0,0,0.45);
}

/* Make each metric tile a wider “pill/rectangle” feel */
.global-grid .global-metrics .metric{
  padding: 22px 22px;
  border-radius: 16px;
  background: rgba(4, 7, 22, 0.86);
  border: 1px solid rgba(255,255,255,0.10);

  min-height: 92px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Typography closer to the reference */
.global-grid .global-metrics .metric-value{
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.global-grid .global-metrics .metric-label{
  margin-top: 6px;
  font-size: 13px;
  color: #c7cff5;
}

/* Responsive: when grid collapses to 2 cols / 1 col, metrics should go full width */
@media (max-width: 1024px){
  .global-grid .global-metrics{
    grid-column: 1 / -1;
  }
}

/* =========================
   HEADER LOGO (LIGHT/DARK)
   ========================= */

.logo{ display:flex; align-items:center; gap:10px; }

.site-logo{
  height: 40px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}

/* Default: show light logo, hide dark */
.site-logo--dark{ display:none; }

/* When dark theme: switch */
html[data-theme="dark"] .site-logo--light{ display:none; }
html[data-theme="dark"] .site-logo--dark{ display:block; }



/* Footer logo (dark/light) */
.footer-site-logo{
  height: 50px;
  width: auto;
  max-width: 250px;
  object-fit: contain;
}

/* default show light */
.footer-site-logo--dark{ display:none; }

/* dark theme switch */
html[data-theme="dark"] .footer-site-logo--light{ display:none; }
html[data-theme="dark"] .footer-site-logo--dark{ display:block; }


/* ==== POPUP MODAL ==== */

.popup-overlay{
  position:fixed;
  inset:0;
  background:rgba(11,18,32,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  z-index:9999;
  padding:16px;
}

.popup-card{
  width:min(420px, 92vw);
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(16,56,128,.14);
  box-shadow:0 22px 70px rgba(11,18,32,.18);
  padding:18px;
  text-align:center;
}

.popup-icon{
  width:46px;
  height:46px;
  border-radius:16px;
  margin:0 auto 10px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:1000;
  background:rgba(80,176,208,.18);
  border:1px solid rgba(80,176,208,.35);
  color:#103880;
}

.popup-card h3{
  margin:0 0 6px;
  font-size:18px;
  color:#0b1220;
}

.popup-card p{
  margin:0 0 14px;
  color:rgba(11,18,32,.72);
}

.popup-btn{
  border:0;
  cursor:pointer;
  padding:10px 14px;
  border-radius:14px;
  font-weight:900;
  color:#0b1220;
  background:linear-gradient(135deg, #F88000, #FFA22E);
  box-shadow:0 14px 35px rgba(248,128,0,.22);
}
.popup-btn:hover{ transform: translateY(-1px); }

.popup-error .popup-icon{
  background:rgba(248,128,0,.12);
  border-color:rgba(248,128,0,.35);
  color:#F88000;
}



/* =========================
   MOTION SYSTEM (PERFORMANT)
   ========================= */

/* Default reveal state */
.fx-reveal {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 520ms cubic-bezier(.2,.8,.2,1),
    transform 520ms cubic-bezier(.2,.8,.2,1);
  will-change: transform, opacity;
}

/* Visible state */
.fx-reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

/* Small stagger helpers (optional) */
.fx-delay-1 { transition-delay: 60ms; }
.fx-delay-2 { transition-delay: 120ms; }
.fx-delay-3 { transition-delay: 180ms; }

/* Respect accessibility */
@media (prefers-reduced-motion: reduce) {
  .fx-reveal,
  .fx-reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

:focus-visible {
  outline: 2px solid rgba(37, 99, 235, 0.55);
  outline-offset: 3px;
  border-radius: 10px;
}

/* Card hover: only on real hover devices */
@media (hover: hover) and (pointer: fine) {
  .card {
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  }

  .card:hover {
    transform: translate3d(0, -6px, 0);
    box-shadow: 0 20px 55px rgba(15, 23, 42, 0.10);
    border-color: rgba(15, 23, 42, 0.10);
  }
}



/* ==============================
   CENTER PRICING + CASE STUDIES
   auto-center with flex + wrap
   ============================== */

/* override grid layout for these sections only */
.pricing-grid,
.case-grid{
  display: flex !important;
  flex-wrap: wrap;
  justify-content: center;   /* main requirement */
  align-items: stretch;
  gap: 24px;                 /* keep same spacing as your grid */
}

/* card sizing: auto-fit, stays centered */
.pricing-grid > .pricing-card,
.case-grid > .case-card{
  flex: 0 1 360px;           /* min width behavior, wraps nicely */
  max-width: 360px;
  width: 100%;
}

/* optional: slightly wider cards on large screens */
@media (min-width: 1200px){
  .pricing-grid > .pricing-card,
  .case-grid > .case-card{
    flex-basis: 380px;
    max-width: 380px;
  }
}

 /* Footer social icons */
.social-icons{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
 
.social-icon{
  width:40px;
  height:40px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
 
.social-icon svg{
  width:18px;
  height:18px;
  fill: currentColor;
}
 
.social-icon:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
}


/* =========================================================
   PROCESS SECTION (Our Design & Development Process)
========================================================= */

.process-section {
  background: #f5f6fb;
}

.process-grid {
  display: grid;
  gap: 34px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.process-item {
  text-align: center;
  padding: 10px 6px;
}

.process-icon {
  width: 76px;
  height: 76px;
  border-radius: 999px;
  background: #fc8a10;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px auto;
}

.process-icon svg {
  width: 28px;
  height: 28px;
  fill: #fff;
  display: block;
}

.process-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 750;
  color: #0b1020;
}

.process-item p {
  margin: 0 auto;
  max-width: 280px;
  color: #5d647a;
  font-size: 14.5px;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }
}
@media (max-width: 520px) {
  .process-grid {
    grid-template-columns: 1fr;
  }
  .process-item p {
    max-width: 320px;
  }
}


/* =========================================================
   CTA SECTION (Let's Build Something Amazing Together + Form)
========================================================= */

.cta-section {
  background: #f5f6fb;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 34px;
  align-items: center;
}

.cta-left {
  padding: 6px 0;
}

.cta-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 133, 2, 0.14);
  color: #ff8502;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 16px;
}

.cta-title {
  font-size: 52px;
  line-height: 1.04;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
  color: #0b1020;
}

.cta-subtitle {
  margin: 0 0 22px;
  color: #5d647a;
  max-width: 520px;
}

.cta-stats {
  display: flex;
  gap: 38px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.cta-stat__value {
  font-size: 26px;
  font-weight: 850;
  color: #ff8502;
  line-height: 1.1;
}

.cta-stat__label {
  font-size: 12px;
  color: #5d647a;
  margin-top: 6px;
}

.cta-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.cta-card__title {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
  color: #0b1020;
}

.cta-card__desc {
  margin: 0 0 14px;
  font-size: 13px;
  color: #5d647a;
}

.cta-form {
  display: grid;
  gap: 12px;
}

.cta-field label {
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  color: #0b1020;
  margin-bottom: 6px;
}

.cta-field input,
.cta-field select,
.cta-field textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5e4;
  background: #f6f7fb;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}

.cta-field textarea {
  resize: vertical;
  min-height: 86px;
}

.cta-field input:focus,
.cta-field select:focus,
.cta-field textarea:focus {
  border-color: rgba(255, 133, 2, 0.65);
  box-shadow: 0 0 0 4px rgba(255, 133, 2, 0.12);
  background: #fff;
}

.cta-required {
  color: #ff8502;
  font-weight: 900;
}

.cta-submit {
  width: 100%;
  border-radius: 10px;
  margin-top: 2px;
}

/* Responsive */
@media (max-width: 992px) {
  .cta-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .cta-title {
    font-size: 42px;
  }
  .cta-card {
    max-width: 520px;
  }
}
@media (max-width: 520px) {
  .cta-title {
    font-size: 34px;
  }
  .cta-stats {
    gap: 22px;
  }
  .cta-card {
    padding: 18px;
  }
}

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: #fff;
    padding: 12px 18px;
    border-radius: 50px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    text-decoration: none;
    z-index: 9999;
    transition: all 0.3s ease;
    animation: floatUp 0.6s ease;
}

.whatsapp-float:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.whatsapp-text {
    font-size: 13px;
    line-height: 1.3;
}

.whatsapp-icon {
    background: rgba(255,255,255,0.2);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp-icon i {
    width: 20px;
    height: 20px;
}

/* Mobile version */
@media (max-width: 768px) {
    .whatsapp-text {
        display: none;
    }

    .whatsapp-float {
        padding: 14px;
        border-radius: 50%;
    }

    .whatsapp-icon {
        width: 48px;
        height: 48px;
    }
}

/* Animation */
@keyframes floatUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;
  clip:rect(0,0,0,0);
  white-space:nowrap;
  border:0;
}
