/* Base Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  color: #111;
}

/* Container */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* Header */
.site-header {
  background: white;
  border-bottom: 1px solid #ddd;
  padding: 15px 0;
}

/* Header layout */
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.brand {
  font-size: 20px;
  font-weight: bold;
  text-decoration: none;
  color: black;
}

/* Navigation */
.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links li a {
  text-decoration: none;
  color: black;
  font-size: 14px;
}

.nav-links li a:hover {
  color: navy;
}

/* Buttons */
.nav-cta {
  display: flex;
  gap: 10px;
}

.btn {
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-outline {
  border: 1px solid #aaa;
  color: black;
}

.btn-primary {
  background: navy;
  color: white;
}

/* Hero Section */
.hero {
  padding: 80px;
  text-align: center;
}

.hero h1 {
  font-size: 40px;
  color: navy;
}

.hero p {
  margin-top: 15px;
  font-size: 16px;
}

.logo-img {
  height: 38px;
  width: auto;
  display: block;
}

/* Hero Section */
.hero-section {
  padding: 70px 0;
  background: #ffffff;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 46px;
  color: #0b3b8c;
  line-height: 1.1;
}

.hero-text p {
  margin-top: 18px;
  font-size: 16px;
  line-height: 1.6;
  max-width: 520px;
}

.hero-buttons {
  margin-top: 25px;
  display: flex;
  gap: 12px;
}

.hero-image {
  flex: 1;
  text-align: right;
}

.hero-image img {
  width: 100%;
  max-width: 520px;
  height: auto;
}

/* ===========================
   ✅ HERO (ITX STYLE ADD-ON)
   (does NOT remove anything)
   =========================== */

/* Use this class on your h1: class="hero-title" */
.hero-text .hero-title {
  font-size: 54px;     /* ITX-like */
  font-weight: 700;
  line-height: 1.05;
  color: #111;         /* black like ITX */
  margin: 0;
}

/* red words */
.hero-text .hero-red {
  color: #ff0000;
}

/* Use this class on paragraph: class="hero-desc" */
.hero-text .hero-desc {
  margin-top: 0px;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 800;
  color: #111;
  max-width: 560px;
}

/* ITX-like red pill button (ONLY inside hero) */
.hero-section .btn-primary {
  background: #ff0000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 700;
}

/* Responsive hero */
@media (max-width: 900px) {
  .hero-text .hero-title {
    font-size: 40px;
    line-height: 1.1;
  }

  .hero-text .hero-desc {
    font-size: 15px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    text-align: center;
  }

  .hero-image {
    text-align: center;
  }

  .hero-buttons {
    justify-content: center;
    flex-wrap: wrap;
  }
}

/* Dropdown */
.dropdown { position: relative; display: inline-block; }

.dropdown-btn { cursor: pointer; }

.caret { font-size: 12px; margin-left: 6px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: 44px;
  left: 0;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 10px;
  min-width: 180px;
  padding: 8px 0;
  z-index: 2000;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.dropdown-menu a {
  display: block;
  padding: 10px 14px;
  text-decoration: none;
  color: #111;
  font-size: 13px;
}

.dropdown-menu a:hover {
  background: #f5f5f5;
}

/* Show dropdown on hover (desktop) */
.dropdown:hover .dropdown-menu {
  display: block;
}

/* Mobile: dropdown should stay aligned */
@media (max-width: 980px) {
  .dropdown-menu {
    position: static;
    border: 0;
    box-shadow: none;
    padding: 0;
    min-width: unset;
  }

  .dropdown:hover .dropdown-menu {
    display: none;
  }

  .site-nav.open .dropdown-menu {
    display: block;
  }
}

/* ===========================
   PARTNER SECTION
   =========================== */

.partner-section {
  padding: 75px 0 85px;
  background: #f6fbff;
}

.section-top {
  text-align: center;
  margin: 0 0 44px;
}

/* Badge */
.section-pill {
  display: inline-block;
  background: #e9c5c6;
  padding: 10px 34px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: #111;
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
}

/* Heading */
.section-top h2 {
  margin-top: 18px;
  font-size: 34px;
  font-weight: 700;
  color: #111;
}

/* Paragraph aligns with cards */
.partner-desc {
  margin: 16px auto 0;
  max-width: 100%;
  font-size: 16px;
  line-height: 1.7;
  font-weight: 700;
  color: #111;
  text-align: center;
}

/* Grid Layout */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 34px;
}

/* Partner Cards */
.partner-card {
  background: #fdeff0;
  border-radius: 22px;
  padding: 24px 22px;
  text-align: center;
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
}

.partner-logo {
  height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.partner-logo img {
  max-height: 56px;
  width: auto;
}

.partner-card h3 {
  font-size: 23px;
  font-weight: 700;
  margin-bottom: 10px;
}

.partner-card p {
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 600;
  max-width: 320px;
  margin: 0 auto;
}

/* Partner Responsive */
@media (max-width: 980px) {
  .partner-grid {
    grid-template-columns: 1fr;
  }

  .section-top h2 {
    font-size: 28px;
  }

  .partner-desc {
    max-width: 92%;
    font-size: 15px;
  }

  .partner-card p {
    max-width: 300px;
  }
}

/* ===========================
   ✅ OUR SERVICES SECTION (NEW)
   =========================== */

.services-section {
  padding: 75px 0 90px;
  background: #ffffff;
}

.services-top {
  text-align: center;
  max-width: 980px;
  margin: 0 auto 48px;
}

.services-top h2 {
  margin-top: 18px;
  font-size: 30px;        /* ✅ smaller */
  font-weight: 700;
  color: #111;
  white-space: nowrap;    /* ✅ forces one line */
}
@media (max-width: 900px) {
  .services-top h2 {
    white-space: normal;  /* ✅ allow wrap on small screens */
    font-size: 26px;
  }
}

.services-desc {
  margin: 18px auto 0;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 700;
  color: #111;
}

/* 4 columns like ITX site */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
  margin-top: 34px;
}

/* Card style (match your screenshot) */
.service-card {
  background: #fdeff0;
  border-radius: 22px;
  padding: 26px 22px 24px;
  text-align: center;
  box-shadow: 0 14px 26px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
}

.service-icon {
  height: 92px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 14px;
}

.service-icon img {
  max-height: 88px;
  width: auto;
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 10px;
  color: #111;
}

.service-card p {
  font-size: 12.5px;
  line-height: 1.6;
  font-weight: 700;
  max-width: 260px;
  margin: 0 auto;
  color: #111;
}

/* Services Responsive */
@media (max-width: 1100px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 650px) {
  .services-top h2 {
    font-size: 26px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card p {
    max-width: 320px;
  }
}

/* ===========================
   ITX "Fueling Growth" – FINAL
   =========================== */

.itx-services{
  padding: 70px 0 80px;
  background: #f6fbff;
}

.itx-services__top{
  text-align: center;
  max-width: 880px;
  margin: 0 auto 42px;
}

.itx-services__pill{
  display: inline-block;
  background: #e9c5c6;
  padding: 8px 28px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
}

.itx-services__title{
  margin-top: 16px;
  font-size: 36px;   /* ⬅️ smaller, matches ITX */
  font-weight: 800;
  color: #111;
  line-height: 1.2;
}

.itx-services__subtitle{
  margin-top: 14px;
  font-size: 15px;   /* ⬅️ reduced */
  font-weight: 600;
  line-height: 1.8;
  color: #111;
}

/* grid */
.itx-services__grid{
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* cards */
.itx-services__card{
  background: #fdeff0;
  border-radius: 22px;
  padding: 26px 24px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 14px 28px rgba(0,0,0,0.18);
}

.itx-services__cardTitle{
  font-size: 20px;   /* ⬅️ FIXED (was too big) */
  font-weight: 700;
  color: #111;
  margin-bottom: 10px;
}

.itx-services__cardText{
  font-size: 13px;   /* ⬅️ FIXED */
  font-weight: 600;
  line-height: 1.6;
  color: #111;
  max-width: 300px;
  margin: 0 auto;
}

/* responsive */
@media (max-width: 1024px){
  .itx-services__grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .itx-services__grid{
    grid-template-columns: 1fr;
  }
  .itx-services__title{
    font-size: 28px;
  }
}
/* ===========================
   FOOTER (ITX STYLE)
   =========================== */

.site-footer{
  background: #f6fbff;
  padding-top: 30px;
}

/* TRUST STRIP */
.footer-trust{
  padding: 18px 0 10px;
}

.footer-trust__inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

/* ✅ FIX: FORCE ALL TRUST + PARTNER LOGOS SEE SAME HEIGHT (55px) */
.footer-trust__inner img,
.footer-partners img{
  height: 60px !important;
  max-height: none !important;
  width: auto !important;
  max-width: none !important;
  object-fit: contain;
  display: block;
  filter: none;
}

/* MAIN GRID */
.footer-main{
  padding: 28px 0 25px;
}

.footer-main__grid{
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.2fr;
  column-gap: 70px;   /* ✅ more space between columns */
  row-gap: 34px;
  align-items: start;
}
/* Column base */
.footer-col{
  min-width: 0;
}

.footer-title{
  font-size: 16px;
  font-weight: 600;
  color: #ff0000;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  text-transform: uppercase;
}

.footer-title--spaced{
  margin-top: 22px;
}

/* Links */
.footer-links{
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li{
  margin:10px 0;
  font-size: 16px;
  line-height: 1.45;
  color: #111;
  font-weight: 700;   /* ✅ makes ALL items bold */
}

.footer-links li a{
  color: #111;
  text-decoration: none;
  font-weight: 600;
}

.footer-links li a:hover{
  color: #ff0000;
}

/* Plain list (support) */
.footer-links--plain li a{
  font-weight: 600;
}

/* Brand column - move to the RIGHT inside grid column */
.footer-brand{
  justify-self: end;     /* ✅ THIS is the real grid alignment fix */
  text-align: left;
  max-width: 280px;      /* keep it neat */
}


.footer-logo{
  max-width: 250px;
  height: auto;
  display: block;
  margin-bottom: 20px
}

.footer-reg{
  font-size: 16x;
  font-weight: 600;
  color: #111;
  margin-bottom: 14px;
}

/* Social icons (Font Awesome) */
.footer-social{
  display: flex;
  gap: 12px;
}

.footer-social a{
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #111;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: 0.2s ease;
}

.footer-social a:hover{
  background: #ff0000;
}

/* Office blocks */
.footer-office{
  margin-top: 14px;
}

.office-head{
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: #111;
  margin-bottom: 10px;
}

.office-head img{
  width: 32px;
  height: 20px;
  object-fit: cover;
  border-radius: 4px;
}

.office-body{
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  color: #111;
}

.office-body a{
  color: #111;
  font-weight: 600;
  text-decoration: none;
}

.office-body a:hover{
  color: #ff0000;
}

/* Bottom strip */
.footer-bottom{
  padding: 18px 0 22px;
}

.footer-bottom__inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-payments{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-payments img{
  height: 34px;
  width: auto;
  object-fit: contain;
  display: block;
}

.footer-copy{
  font-size: 16px;
  font-weight: 600;
  color: #111;
  text-align: center;
  flex: 1;
}

/* Responsive */
@media (max-width: 1200px){
  .footer-main__grid{
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 700px){
  .footer-main__grid{
    grid-template-columns: 1fr;
  }

 .footer-brand{
  text-align: left;
}


  .footer-logo{
    margin-left: auto;
    margin-right: auto;
  }

  .footer-social{
    justify-content: center;
  }

  .footer-bottom__inner{
    justify-content: center;
  }
}
/* =========================
   TOP RED STRIP (Selfcare + Pay Bill)
   ========================= */
.top-strip{
  background: #ff0000;
  height: 32px;
  display: flex;
  align-items: center;
}

.top-strip-inner{
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.top-strip-right{
  display: flex;
  gap: 18px;
  align-items: center;
}

/* Make dropdown/button look like plain text (not boxed) */
.top-strip-btn{
  background: transparent;
  border: 0;
  padding: 0;
  color: #fff;
  font-size: 14px;
  cursor: pointer;
  font-weight: 600;
}

.top-strip-link{
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.top-strip-link:hover{
  text-decoration: underline;
}

/* Dropdown menu positioning for top strip */
.top-strip-dropdown .dropdown-menu{
  top: 28px;        /* closer to the red bar */
  left: auto;
  right: 0;         /* align to the right */
  min-width: 160px;
}
/* =========================================================
   HEADER PILL MENU (Our Industries / Partner / Company / Contact Us)
   + Talk to ITX button
   ========================================================= */

.site-nav{
  display: flex;
  align-items: center;
  gap: 18px;
}

/* Rounded rectangle container */
.pill-nav{
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 18px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
}

/* Menu list inside pill */
.pill-menu{
  list-style: none;
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
}

.pill-link{
  background: transparent;
  border: 0;
  padding: 0;
  text-decoration: none;
  color: #111;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

/* Talk to ITX button */
.talk-btn{
  background: #ff0000;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  padding: 12px 26px;
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(0,0,0,0.18);
}

/* Dropdown look for pill */
.pill-dropdown{
  border-radius: 12px;
  min-width: 260px;
}

/* Make dropdown appear under the pill item */
.pill-item .dropdown-menu{
  top: 40px;
}

/* Optional: hover style */
.pill-link:hover{
  color: #ff0000;
}

/* Responsive: stack nicely */
@media (max-width: 980px){
  .site-nav{
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
  }

  .pill-menu{
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .talk-btn{
    padding: 10px 18px;
  }
}
/* ==========================================
   FIX: Pill menu dropdown (bigger + spaced)
   ========================================== */

/* bigger dropdown container + smoother look */
.pill-item .pill-dropdown,
.pill-item .dropdown-menu.pill-dropdown{
  min-width: 320px;           /* wider like original */
  padding: 16px 0;            /* more top/bottom space */
  border-radius: 14px;
}

/* bigger text + more vertical spacing */
.pill-item .pill-dropdown a,
.pill-item .dropdown-menu.pill-dropdown a{
  font-size: 16px;            /* ✅ bigger letters */
  padding: 14px 22px;         /* ✅ more space */
  line-height: 1.4;
  font-weight: 500;           /* similar to original */
}

/* nice hover effect */
.pill-item .pill-dropdown a:hover{
  background: #f5f5f5;
}
/* ==========================================
   FIX: Dropdown should NOT disappear on hover
   ========================================== */

/* Keep open when hovering either button OR menu */
.pill-item.dropdown:hover .pill-dropdown{
  display: block;
}

/* Ensure dropdown sits directly under the button (no gap) */
.pill-item.dropdown .pill-dropdown{
  top: 38px;     /* adjust if needed */
  left: 0;
}

/* Create a small invisible hover bridge (prevents flicker) */
.pill-item.dropdown::after{
  content: "";
  position: absolute;
  left: 0;
  top: 28px;       /* between button and menu */
  width: 100%;
  height: 14px;    /* bridge height */
}

/* =========================================================
   ✅ ITX TECH MOVING BAR (ADD ONLY)
   same layout + smooth continuous move
   ========================================================= */
.itx-techbar{
  background: #2b2b2b;          /* dark strip like original */
  border-top: 2px solid #111;    /* thin black line */
  width: 100%;
  overflow: hidden;
  padding: 18px 0;               /* bar height */
}

.itx-techbar__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: itxTechScroll 28s linear infinite;  /* ✅ speed (original-like) */
}

.itx-techbar__group{
  display: flex;
  align-items: center;
  gap: 78px;                     /* spacing like original */
  padding: 0 78px;               /* keeps spacing at edges */
}

.itx-techbar__group img{
  height: 68px;                  /* ✅ icon size like original */
  width: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

/* smooth infinite loop */
@keyframes itxTechScroll{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* responsive */
@media (max-width: 900px){
  .itx-techbar{ padding: 14px 0; }
  .itx-techbar__group{ gap: 44px; padding: 0 44px; }
  .itx-techbar__group img{ height: 52px; }
}

/* accessibility */
@media (prefers-reduced-motion: reduce){
  .itx-techbar__track{ animation: none; }
}
/* =========================================================
   ✅ FIX: Hero too tall + Tech bar not visible before scroll
   (ADD ONLY at the END of style.css)
   ========================================================= */

/* Reduce overall hero section height */
.hero-section{
  padding: 40px 0 28px;   /* was 70px 0 */
}

/* Slightly tighter hero layout */
.hero-inner{
  gap: 28px;              /* was 40px */
  align-items: center;
}

/* Title a little smaller (so section fits like original) */
.hero-text .hero-title{
  font-size: 48px;        /* was 54px */
  line-height: 1.05;
}

/* Reduce paragraph spacing */
.hero-text .hero-desc{
  margin-top: 10px;       /* was 0 */
  line-height: 1.75;      /* was 1.9 */
}

/* Reduce button top spacing */
.hero-buttons{
  margin-top: 18px;       /* was 25px */
}

/* ✅ Zoom out hero image */
.hero-image img{
  max-width: 460px;       /* was 520px */
  width: 100%;
  height: auto;
}

/* ✅ Make the moving tech bar smaller so it shows before scroll */
.itx-techbar{
  padding: 12px 0;        /* was 18px 0 */
  border-top: 1px solid #111;  /* thinner black line */
}

/* Smaller icons so bar height reduces */
.itx-techbar__group img{
  height: 56px;           /* was 68px */
}

/* Reduce spacing a bit */
.itx-techbar__group{
  gap: 56px;              /* was 78px */
  padding: 0 56px;
}

/* Responsive adjustments */
@media (max-width: 900px){
  .hero-section{ padding: 28px 0 18px; }
  .hero-text .hero-title{ font-size: 38px; }
  .hero-image img{ max-width: 360px; }
  .itx-techbar{ padding: 10px 0; }
  .itx-techbar__group img{ height: 46px; }
  .itx-techbar__group{ gap: 34px; padding: 0 34px; }
}
/* =========================================================
   ✅ EXTRA FIX: Zoom out hero image more + remove gap above techbar
   (ADD ONLY at the END of style.css)
   ========================================================= */

/* Make hero section end tighter (no extra space before techbar) */
.hero-section{
  padding-bottom: 0 !important;   /* remove bottom gap */
}

/* If any margin pushes techbar down, kill it */
.itx-techbar{
  margin-top: 0 !important;
}

/* Reduce the gap between hero text and techbar */
.hero-inner{
  padding-bottom: 0 !important;
}

/* ✅ Zoom out the hero image more */
.hero-image img{
  max-width: 380px !important;    /* was 460px in previous fix */
}

/* Optional: slightly reduce hero top padding so everything fits nicer */
.hero-section{
  padding-top: 32px !important;   /* reduce from 40 */
}

/* Responsive */
@media (max-width: 900px){
  .hero-image img{
    max-width: 320px !important;
  }
}
/* =========================================================
   FINAL HERO + TECHBAR ADJUSTMENT
   ========================================================= */

/* Reduce hero height so tech bar fully visible */
.hero-section{
  padding-top: 25px !important;
  padding-bottom: 10px !important;
}

/* Reduce space inside hero container */
.hero-inner{
  gap: 20px !important;
}

/* Make hero image smaller */
.hero-image img{
  max-width: 340px !important;   /* smaller so black bar shows fully */
}

/* Move hero image slightly LEFT */
.hero-image{
  text-align: right;
  margin-right: 40px;  /* pushes image left */
}

/* Ensure tech bar sits directly under hero */
.itx-techbar{
  margin-top: 0 !important;
  padding: 14px 0 !important;  /* slightly thinner */
  border-top: 3px solid #000;  /* stronger visible black line */
}

/* Remove any hidden extra space */
.hero-section + .itx-techbar{
  margin-top: 0 !important;
}
/* ===============================
   FIX: Hero image touch black bar
   =============================== */

/* Reduce bottom spacing of hero section */
.hero-section {
  padding-bottom: 0 !important;
}

/* Remove bottom gap inside hero container */
.hero-inner {
  align-items: flex-end; /* push image down */
}

/* Make image sit exactly on bottom */
.hero-image img {
  display: block;
  margin-bottom: -2px; /* removes tiny white gap */
}
/* =================================
   PERFECT HERO + TECHBAR ALIGNMENT
   ================================= */

/* Give hero proper height like original */
.hero-section {
  padding: 30px 0 20px !important; /* small bottom space */
}

/* Push image down naturally */
.hero-inner {
  align-items: flex-end;
}

/* Remove small white gap */
.hero-image img {
  display: block;
}

/* Slightly push tech bar down */
.itx-techbar {
  margin-top: 14px; /* adjust between 8px–15px if needed */
}
/* =========================
   HERO IMAGE ADJUSTMENT ONLY
   ========================= */

.hero-image {
  text-align: right;
}

.hero-image img {
  max-width: 580px;      /* slightly bigger */
  width: 110%;           /* increase size */
  margin-left: 50px;    /* move left */
  margin-bottom: -20px;  /* move down to touch black line */
  display: block;
}
.itx-techbar__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: itxTechScroll 60s linear infinite;
}
/* ==============================
   ICONS MOVE (BAR STAYS FIXED)
   ============================== */

.itx-techbar {
  background: #2b2b2b;
  border-top: 2px solid #111;
  width: 100%;
  overflow: hidden;
  padding: 18px 0;
  position: relative;
}

/* move only once on page load, then stop */
.itx-techbar__track{
  display: flex;
  width: max-content;
  will-change: transform;
  animation: itxTechScrollOnce 120s linear 1 forwards; /* ✅ one time + very slow */
}

/* moves half of the track then stops (because you have duplicated group) */
@keyframes itxTechScrollOnce{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* Remove duplicated group spacing */
.itx-techbar__group {
  display: flex;
  align-items: center;
  gap: 100px;
}

/* Icon size */
.itx-techbar__group img {
  height: 65px;
  width: auto;
}

/* Animation */
@keyframes moveIcons {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
/* =========================================
   FIX: Reduce space between Partner and Services
   Paste at END of style.css
   ========================================= */

.partner-section{
  padding-bottom: 25px !important;   /* was 85px */
}

.services-section{
  padding-top: 25px !important;      /* was 75px */
}
/* =========================================
   FIX: Reduce white space before "Our Services"
   (between .services-section and .itx-services)
   ========================================= */

.services-section{
  padding-bottom: 25px !important;   /* was 90px */
}

.itx-services{
  padding-top: 25px !important;      /* was 70px */
}

/* =========================================
   KEY CLIENTS - EXACT 10 visible + chain move
   ========================================= */

.keyclients{
  padding: 40px 0;
  background: #f6fbff;
  text-align: center;
}

.keyclients__pill{
  display: inline-block;
  margin: 0 auto 18px;
  background: #e9c5c6;
  padding: 10px 34px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #111;
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

/* IMPORTANT: slots */
.keyclients__viewport{
  --slotW: 120px;     /* one logo box width */
  --gap: 80px;        /* spacing between logos */
  --slots: 10;        /* show 10 logos */

  width: calc((var(--slotW) * var(--slots)) + (var(--gap) * (var(--slots) - 1)));
  margin: 0 auto;
  overflow: hidden;
  max-width: 100%;
}

/* track moves 1 slot at a time */
.keyclients__track{
  display: flex;
  align-items: center;
  gap: var(--gap);
  width: max-content;
  will-change: transform;

  /* 30 logos => 30 steps; 1 step moves exactly 1 logo */
  animation: keyClientsChain 90s steps(30) infinite;
}

/* each logo takes EXACT slot width */
.keyclients__track img{
  flex: 0 0 var(--slotW);
  width: var(--slotW);
  height: 48px;
  object-fit: contain;
  display: block;
}

/* Move left by (slot+gap)*30 logos */
@keyframes keyClientsChain{
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-1 * (var(--slotW) + var(--gap)) * 30)); }
}

/* optional pause on hover */
.keyclients__viewport:hover .keyclients__track{
  animation-play-state: paused;
}

/* responsive: show fewer items on mobile automatically */
@media (max-width: 1100px){
  .keyclients__viewport{
    --slots: 6;
    --slotW: 110px;
    --gap: 28px;
  }
}

@media (max-width: 650px){
  .keyclients__viewport{
    --slots: 4;
    --slotW: 95px;
    --gap: 22px;
  }
}

/* ==========================================
   PROJECT REVIEW / TESTIMONIAL SLIDER
   ========================================== */
.project-review-section {
  background: #eef2f5;
  padding: 70px 0 40px;
  overflow: hidden;
}

.project-review-shell {
  width: 92%;
  max-width: 1400px;
  margin: 0 auto;
}

.project-review-title {
  text-align: center;
  font-size: 28px;
  line-height: 1.35;
  font-weight: 700;
  color: #111;
  margin-bottom: 34px;
}

.project-review-slider {
  overflow: hidden;
  position: relative;
}

.project-review-track {
  display: flex;
  gap: 16px;
  transition: transform 0.65s ease;
  will-change: transform;
}

.project-review-card {
  flex: 0 0 calc(100% - 90px);
  background: #f3f3f3;
  border: 1px solid #d7dde3;
  border-radius: 6px;
  min-height: 240px;
}

.project-review-cardInner {
  padding: 20px;
}

.project-review-name {
  font-size: 18px;
  font-weight: 700;
  color: #111;
  line-height: 1.3;
  margin: 0;
}

.project-review-role {
  font-size: 13px;
  font-weight: 700;
  color: #222;
  margin-top: 6px;
}

.project-review-line {
  height: 1px;
  background: #d7dde3;
  margin: 10px -20px 12px;
}

.project-review-text {
  font-size: 15px;
  line-height: 1.35;
  color: #333;
  margin: 0;
}

.project-review-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.project-review-dot {
  width: 8px;
  height: 8px;
  border: none;
  border-radius: 50%;
  background: #b8b8b8;
  cursor: pointer;
  padding: 0;
  transition: all 0.25s ease;
}

.project-review-dot.is-active {
  background: #111;
  transform: scale(1.15);
}

.project-review-dot:hover {
  background: #555;
}

@media (max-width: 991px) {
  .project-review-card {
    flex: 0 0 100%;
  }

  .project-review-title {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .project-review-section {
    padding: 50px 0 30px;
  }

  .project-review-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .project-review-cardInner {
    padding: 16px;
  }

  .project-review-line {
    margin: 10px -16px 12px;
  }

  .project-review-name {
    font-size: 17px;
  }

  .project-review-text {
    font-size: 14px;
    line-height: 1.5;
  }

  .project-review-dots {
    gap: 8px;
  }
}

/* ===================== PROJECT TESTIMONIAL SLIDER START ===================== */
#project-testimonial-section {
    width: 100%;
    background: #eef2f5;
    padding: 60px 0 40px 0;
    overflow: hidden;
    clear: both;
}

#project-testimonial-section .project-testimonial-container {
    width: 76%;
    max-width: 1420px;
    margin: 0 auto;
}

#project-testimonial-section .project-testimonial-heading {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    color: #000;
    margin: 0 0 35px 0;
}

#project-testimonial-section .project-testimonial-slider {
    width: 100%;
    overflow: hidden;
    position: relative;
}

#project-testimonial-section .project-testimonial-track {
    display: flex;
    align-items: stretch;
    gap: 14px;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
}

#project-testimonial-section .project-testimonial-item {
    flex: 0 0 100%;
    min-width: 100%;
    box-sizing: border-box;
}

#project-testimonial-section .project-testimonial-card {
    width: 100%;
    min-height: 240px;
    background: #f3f3f3;
    border: 1px solid #d5dce3;
    border-radius: 6px;
    overflow: hidden;
    box-sizing: border-box;
}

#project-testimonial-section .project-testimonial-name {
    font-size: 17px;
    font-weight: 700;
    color: #111;
    margin: 0;
    padding: 18px 20px 0 20px;
    line-height: 1.3;
}

#project-testimonial-section .project-testimonial-role {
    font-size: 13px;
    font-weight: 700;
    color: #222;
    margin: 4px 0 0 0;
    padding: 0 20px 0 20px;
    line-height: 1.3;
}

#project-testimonial-section .project-testimonial-divider {
    width: 100%;
    height: 1px;
    background: #d5dce3;
    margin-top: 10px;
}

#project-testimonial-section .project-testimonial-text {
    font-size: 15px;
    line-height: 1.4;
    color: #2f2f2f;
    margin: 0;
    padding: 14px 20px 20px 20px;
    word-break: break-word;
}

#project-testimonial-section .project-testimonial-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 11px;
    margin-top: 18px;
    flex-wrap: wrap;
}

#project-testimonial-section .project-testimonial-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #bdbdbd;
    display: inline-block;
    cursor: pointer;
    transition: all 0.3s ease;
}

#project-testimonial-section .project-testimonial-dot.active {
    background: #111;
    transform: scale(1.15);
}

@media (max-width: 991px) {
    #project-testimonial-section .project-testimonial-container {
        width: 90%;
    }

    #project-testimonial-section .project-testimonial-heading {
        font-size: 24px;
    }

    #project-testimonial-section .project-testimonial-card {
        min-height: auto;
    }
}

@media (max-width: 576px) {
    #project-testimonial-section {
        padding: 45px 0 30px 0;
    }

    #project-testimonial-section .project-testimonial-container {
        width: 94%;
    }

    #project-testimonial-section .project-testimonial-heading {
        font-size: 21px;
        margin-bottom: 24px;
    }

    #project-testimonial-section .project-testimonial-name {
        font-size: 16px;
        padding: 16px 16px 0 16px;
    }

    #project-testimonial-section .project-testimonial-role {
        padding: 0 16px 0 16px;
    }

    #project-testimonial-section .project-testimonial-text {
        font-size: 14px;
        padding: 12px 16px 16px 16px;
    }
}
/* ===================== PROJECT TESTIMONIAL SLIDER END ===================== */

/* ================= CTA HELP SECTION START ================= */
.cta-help-section {
    width: 100%;
    background: linear-gradient(90deg, #1f1f1f, #2b2b2b);
    padding: 28px 0;
}

.cta-help-container {
    width: 65%; /* smaller width = content moves closer */
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.cta-help-text {
    font-size: 22px;
    font-weight: 600;
    color: #ffffff;
}

.cta-help-button-wrap {
    display: flex;
    justify-content: flex-end;
    flex: 1;
}

.cta-help-button {
    display: inline-block;
    background: #ff1a1a;
    color: #fff;
    text-decoration: none;

    padding: 16px 40px;
    border-radius: 50px;

    font-size: 16px;
    font-weight: 600;

    border: 3px solid #ffffff;

    transition: all 0.3s ease;
}

.cta-help-button:hover {
    background: #cc0000;
    transform: scale(1.03);
}

/* Responsive */
@media (max-width: 768px) {
    .cta-help-container {
        flex-direction: column;
        text-align: center;
    }

    .cta-help-button-wrap {
        justify-content: center;
    }

    .cta-help-text {
        font-size: 20px;
    }
}
/* ================= CTA HELP SECTION END ================= */

/* ================= SERVICES PAGE HERO START ================= */
.services-hero {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.services-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.services-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 2;
}

.services-hero-content {
    position: relative;
    z-index: 3;
    width: 88%;
    max-width: 1500px;
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-top: 180px;
    padding-bottom: 110px;
}

.services-hero-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 18px 0;
    animation: serviceMoveDown 1.2s ease forwards;
}

.services-breadcrumb {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 28px;
}

.services-breadcrumb a,
.services-breadcrumb span {
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    animation: serviceMoveDown 1.5s ease forwards;
}

.services-breadcrumb a:hover {
    color: #ff2a2a;
}

.services-hero-text {
    max-width: 1700px;
    font-size: 17px;
    font-weight: 600;
    line-height: 1.75;
    color: #fff;
    margin: 0;
}

@keyframes serviceMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-25px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1200px) {
    .services-hero {
        height: 620px;
    }

    .services-hero-content {
        padding-top: 170px;
        padding-bottom: 95px;
    }

    .services-hero-text {
        font-size: 16px;
        line-height: 1.65;
    }
}

@media (max-width: 768px) {
    .services-hero {
        height: 560px;
    }

    .services-hero-content {
        width: 92%;
        padding-top: 150px;
        padding-bottom: 70px;
    }

    .services-hero-title {
        font-size: 30px;
    }

    .services-breadcrumb {
        gap: 22px;
        margin-bottom: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .services-breadcrumb a,
    .services-breadcrumb span {
        font-size: 14px;
    }

    .services-hero-text {
        font-size: 14px;
        line-height: 1.6;
    }
}

@media (max-width: 480px) {
    .services-hero {
        height: 520px;
    }

    .services-hero-title {
        font-size: 26px;
    }

    .services-hero-text {
        font-size: 13px;
    }
}
/* ================= SERVICES PAGE HERO END ================= */

/* ================= PROJECT FORM SECTION START ================= */
.project-form-section {
  background: #eef2f5;
  padding: 50px 0 70px;
}

.project-form-container {
  width: 78%;
  max-width: 1100px;
  margin: 0 auto;
}

.project-form-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  color: #111;
  margin-bottom: 28px;
}

.project-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 18px;
}

.project-form-group {
  display: flex;
  flex-direction: column;
}

.project-form-group label {
  font-size: 15px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.project-form-group input,
.project-form-group select,
.project-form-group textarea {
  width: 100%;
  height: 46px;
  border: 1px solid #cfd6de;
  border-radius: 7px;
  background: #fff;
  padding: 0 14px;
  font-size: 15px;
  color: #222;
  outline: none;
  box-sizing: border-box;
}

.project-form-group textarea {
  height: auto;
  min-height: 90px;
  padding: 12px 14px;
  resize: vertical;
}

.project-form-group input:focus,
.project-form-group select:focus,
.project-form-group textarea:focus {
  border-color: #3b82f6;
}

.project-form-group.full-width {
  grid-column: 1 / -1;
}

.project-form-submit {
  width: 100%;
  height: 40px;
  border: none;
  border-radius: 6px;
  background: #b40000;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.3s ease;
}

.project-form-submit:hover {
  background: #930000;
}

@media (max-width: 768px) {
  .project-form-container {
    width: 92%;
  }

  .project-form-grid {
    grid-template-columns: 1fr;
  }

  .project-form-group.full-width {
    grid-column: auto;
  }

  .project-form-title {
    font-size: 22px;
  }
}
/* ================= PROJECT FORM SECTION END ================= */

.project-form-section {
    background: #eef2f5;
    padding: 50px 0 40px;
}

.project-form-container {
    width: 78%;
    max-width: 1100px;
    margin: 0 auto;
}

.project-form-title {
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    color: #111;
    margin: 0 0 28px;
}

.project-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.project-form-group {
    display: flex;
    flex-direction: column;
}

.project-form-group label {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.project-form-group input,
.project-form-group select,
.project-form-group textarea {
    width: 100%;
    border: 1px solid #cfd6de;
    border-radius: 7px;
    background: #fff;
    padding: 12px 14px;
    font-size: 15px;
    color: #222;
    outline: none;
    box-sizing: border-box;
}

.project-form-group input,
.project-form-group select {
    height: 46px;
}

.project-form-group textarea {
    min-height: 95px;
    resize: vertical;
}

.project-form-group.full-width {
    grid-column: 1 / -1;
}

.project-form-submit {
    width: 100%;
    height: 42px;
    border: none;
    border-radius: 6px;
    background: #b30000;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
}

.project-form-submit:hover {
    background: #930000;
}

@media (max-width: 768px) {
    .project-form-container {
        width: 92%;
    }

    .project-form-grid {
        grid-template-columns: 1fr;
    }

    .project-form-group.full-width {
        grid-column: auto;
    }

    .project-form-title {
        font-size: 22px;
    }
}

/* ================= WEBSITE DEVELOPMENT PAGE START ================= */
.website-dev-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.website-dev-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.website-dev-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 2;
}

.website-dev-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 90%;
    max-width: 1400px;
    margin-top: 120px;
}

.website-dev-hero-title {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #fff;
    animation: webMoveDown 1s ease forwards;
}

.website-dev-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 28px;
}

.website-dev-breadcrumb a,
.website-dev-breadcrumb span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    animation: webMoveDown 1.25s ease forwards;
}

.website-packages-subtitle {
    font-size: 24px;
    font-weight: 700;
    color: #ff1e1e;
    text-align: center;
    margin: 0 0 4px;
    animation: webMoveDown 1.4s ease forwards;
}

.website-packages-title {
    font-size: 36px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 0 0 32px;
    animation: webMoveDown 1.6s ease forwards;
}

@keyframes webMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-22px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.website-packages-section {
    background: #eef2f5;
    padding: 35px 0 70px;
}

.website-packages-container {
    width: 92%;
    max-width: 1280px;
    margin: 0 auto;
}

.website-packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 42px 32px;
}

.website-package-card {
    background: #edf1f5;
    border: 1px solid #8f97a2;
    border-radius: 16px;
    padding: 0 0 22px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

.website-package-name {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin: 14px 0 10px;
}

.website-package-price {
    width: calc(100% - 24px);
    margin: 0 auto 16px;
    background: #430000;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    padding: 10px 15px;
}

.website-package-features {
    list-style: none;
    margin: 0;
    padding: 0 20px;
    min-height: 295px;
}

.website-package-features li {
    position: relative;
    padding-left: 16px;
    font-size: 13px;
    line-height: 1.55;
    color: #1f2630;
    margin-bottom: 4px;
}

.website-package-features li::before {
    content: "☑";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: #3956ff;
}

.website-package-actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 18px;
}

.website-btn-primary,
.website-btn-dark {
    min-width: 110px;
    text-align: center;
    padding: 11px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 700;
    transition: 0.3s ease;
}

.website-btn-primary {
    background: #1064ff;
    color: #fff;
}

.website-btn-primary:hover {
    background: #0a4fcb;
}

.website-btn-dark {
    background: #111b28;
    color: #fff;
}

.website-btn-dark:hover {
    background: #000;
}

@media (max-width: 1100px) {
    .website-packages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .website-dev-hero {
        height: 420px;
    }

    .website-dev-hero-content {
        margin-top: 90px;
    }

    .website-dev-hero-title {
        font-size: 28px;
    }

    .website-packages-subtitle {
        font-size: 20px;
    }

    .website-packages-title {
        font-size: 28px;
    }

    .website-packages-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .website-package-features {
        min-height: auto;
    }
}
/* ================= WEBSITE DEVELOPMENT PAGE END ================= */

/* ================= BPO SERVICE INQUIRY PAGE START ================= */
.bpo-inquiry-section {
    background: #eef2f5;
    padding: 55px 0 70px;
}

.bpo-inquiry-container {
    width: 76%;
    max-width: 1360px;
    margin: 0 auto;
}

.bpo-inquiry-title {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin: 0 0 26px;
}

.bpo-step-panel {
    display: none;
}

.bpo-step-panel.active {
    display: block;
}

.bpo-step-label {
    font-size: 16px;
    color: #555;
    margin-bottom: 8px;
}

.bpo-progress {
    width: 100%;
    height: 24px;
    background: #dfe3e8;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 26px;
}

.bpo-progress-fill {
    height: 100%;
    background: #2d7be8;
    color: #fff;
    font-size: 13px;
    line-height: 24px;
    text-align: right;
    padding-right: 8px;
    box-sizing: border-box;
}

.bpo-progress-fill.step-50 {
    width: 50%;
}

.bpo-progress-fill.step-100 {
    width: 100%;
}

.bpo-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bpo-form-group {
    display: flex;
    flex-direction: column;
}

.bpo-form-group.full-width {
    width: 100%;
}

.bpo-form-group label {
    font-size: 18px;
    font-weight: 600;
    color: #ff0000;
    margin-bottom: 10px;
}

.bpo-form-group label span,
.bpo-check-title span {
    color: #111;
}

.bpo-form-group input,
.bpo-form-group select,
.bpo-form-group textarea {
    width: 100%;
    border: 1px solid #cfd6de;
    border-radius: 10px;
    background: #fff;
    padding: 16px 18px;
    font-size: 18px;
    color: #444;
    box-sizing: border-box;
    outline: none;
}

.bpo-form-group input,
.bpo-form-group select {
    height: 58px;
}

.bpo-form-group textarea {
    min-height: 140px;
    resize: vertical;
}

.bpo-form-group input:focus,
.bpo-form-group select:focus,
.bpo-form-group textarea:focus {
    border-color: #2d7be8;
}

.step-one-actions {
    justify-content: flex-end;
}

.bpo-form-actions {
    display: flex;
    align-items: center;
}

.bpo-next-btn,
.bpo-prev-btn,
.bpo-submit-btn {
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
    padding: 14px 26px;
}

.bpo-next-btn,
.bpo-prev-btn {
    background: #666;
    color: #fff;
}

.bpo-next-btn:hover,
.bpo-prev-btn:hover {
    background: #4f4f4f;
}

.bpo-submit-btn {
    background: #2d7be8;
    color: #fff;
}

.bpo-submit-btn:hover {
    background: #1f66c7;
}

.bpo-three-col-grid {
    display: grid;
    grid-template-columns: 1.1fr 1.3fr 1fr;
    gap: 50px;
    margin-bottom: 22px;
}

.bpo-check-group {
    display: flex;
    flex-direction: column;
}

.bpo-check-title {
    font-size: 18px;
    font-weight: 600;
    color: #ff0000;
    margin-bottom: 14px;
    line-height: 1.5;
}

.bpo-check-item {
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bpo-check-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.bpo-date-group {
    margin-top: 10px;
}

.bpo-step-two-actions {
    justify-content: space-between;
    margin-top: 6px;
}

@media (max-width: 991px) {
    .bpo-inquiry-container {
        width: 92%;
    }

    .bpo-three-col-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .bpo-inquiry-title {
        font-size: 24px;
    }

    .bpo-form-group label,
    .bpo-check-title {
        font-size: 16px;
    }

    .bpo-form-group input,
    .bpo-form-group select,
    .bpo-form-group textarea,
    .bpo-check-item,
    .bpo-next-btn,
    .bpo-prev-btn,
    .bpo-submit-btn {
        font-size: 16px;
    }
}
/* ================= BPO SERVICE INQUIRY PAGE END ================= */
/* ================= BUSINESS REGISTER PAGE START ================= */
.business-register-hero {
    position: relative;
    width: 100%;
    height: 560px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.business-register-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.business-register-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 2;
}

.business-register-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 90%;
    max-width: 1400px;
    margin-top: 120px;
}

.business-register-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    animation: businessMoveDown 1s ease forwards;
}

.business-register-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 26px;
    margin-bottom: 16px;
}

.business-register-breadcrumb a,
.business-register-breadcrumb span {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    animation: businessMoveDown 1.2s ease forwards;
}

.business-register-hero-text {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.6;
    color: #fff;
    max-width: 860px;
    margin: 0 auto;
}

@keyframes businessMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.business-register-section {
    background: #eef2f5;
    padding: 95px 0 70px;
}

.business-register-container {
    width: 90%;
    max-width: 1180px;
    margin: 0 auto;
}

.business-register-intro {
    max-width: 520px;
    margin-bottom: 46px;
}

.business-register-intro h2 {
    font-size: 44px;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;
    line-height: 1.2;
}

.business-register-intro p {
    font-size: 16px;
    line-height: 1.7;
    color: #222;
    margin: 0 0 22px;
    font-weight: 600;
}

.business-register-top-btn {
    display: inline-block;
    background: #b40000;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 12px 18px;
    border-radius: 2px;
}

.business-register-top-btn:hover {
    background: #930000;
}

.business-register-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 26px;
    align-items: start;
    margin: 24px 0 26px;
}

.business-register-step {
    text-align: center;
}

.business-register-step-topicon {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-register-step-topicon img {
    width: 42px;
    height: 42px;
    object-fit: contain;
    display: block;
}

.business-register-step h3 {
    font-size: 14px;
    line-height: 1.2;
    color: #1b2b44;
    font-weight: 700;
    margin: 0 0 16px;
    min-height: 54px;
}

.business-register-step-image {
    width: 120px;
    height: 120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-register-step-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
}

.business-register-table-wrap {
    overflow-x: auto;
    margin-top: 14px;
}

.business-register-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    min-width: 920px;
}

.business-register-table thead th {
    background: #d6eef7;
    color: #222;
    font-size: 16px;
    font-weight: 700;
    padding: 14px 12px;
    border: 1px solid #d9e2e8;
    text-align: center;
}

.business-register-table thead th:first-child {
    text-align: left;
    width: 46%;
}

.business-register-table tbody td {
    border: 1px solid #d9e2e8;
    padding: 11px 12px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.business-register-table tbody td:first-child {
    text-align: left;
}

.business-register-bottom-cta {
    margin-top: 34px;
    border: 2px solid #d95b5b;
    border-radius: 16px;
    background: #fff;
    text-align: center;
    padding: 20px 20px 16px;
}

.business-register-bottom-cta h3 {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    margin: 0 0 12px;
}

.business-register-bottom-cta a {
    display: inline-block;
    background: #b40000;
    color: #fff;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    padding: 10px 18px;
    border-radius: 3px;
}

.business-register-bottom-cta a:hover {
    background: #930000;
}

@media (max-width: 1100px) {
    .business-register-steps {
        grid-template-columns: repeat(3, 1fr);
    }

    .business-register-intro h2 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .business-register-hero {
        height: 440px;
    }

    .business-register-hero-content {
        margin-top: 90px;
    }

    .business-register-hero-title {
        font-size: 30px;
    }

    .business-register-hero-text {
        font-size: 14px;
    }

    .business-register-section {
        padding: 60px 0 50px;
    }

    .business-register-intro {
        max-width: 100%;
    }

    .business-register-intro h2 {
        font-size: 28px;
    }

    .business-register-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 22px;
    }

    .business-register-step-topicon {
        width: 36px;
        height: 36px;
    }

    .business-register-step-topicon img {
        width: 34px;
        height: 34px;
    }

    .business-register-step-image {
        width: 95px;
        height: 95px;
    }

    .business-register-bottom-cta h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .business-register-steps {
        grid-template-columns: 1fr;
    }
}

.business-register-step-topicon {
    width: 34px;
    height: 34px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.business-register-step-topicon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    display: block;
}
/* ================= BUSINESS REGISTER PAGE END ================= */

/* ================= SEO PAGE START ================= */
.seo-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.seo-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.seo-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 2;
}

.seo-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 90%;
    max-width: 1400px;
    margin-top: 120px;
}

.seo-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    animation: seoMoveDown 1s ease forwards;
}

.seo-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 24px;
}

.seo-breadcrumb a,
.seo-breadcrumb span {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    animation: seoMoveDown 1.2s ease forwards;
}

@keyframes seoMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.seo-intro-section {
    background: #eef2f5;
    padding: 28px 0 20px;
}

.seo-intro-container {
    width: 88%;
    max-width: 1180px;
    margin: 0 auto;
}

.seo-intro-lead,
.seo-intro-text p,
.seo-intro-text li {
    font-size: 15px;
    line-height: 1.75;
    color: #1e1e1e;
    font-weight: 600;
}

.seo-intro-lead {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 28px;
}

.seo-intro-text {
    max-width: 1120px;
    margin: 0 auto;
}

.seo-intro-text p {
    margin: 0 0 14px;
}

.seo-intro-text ul {
    margin: 0 0 18px 20px;
    padding: 0;
}

.seo-intro-text li {
    margin-bottom: 4px;
}

.seo-packages-section {
    background: #eef2f5;
    padding: 26px 0 70px;
}

.seo-packages-container {
    width: 88%;
    max-width: 1240px;
    margin: 0 auto;
}

.seo-packages-small-red {
    text-align: center;
    color: #ff2a2a;
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 2px;
}

.seo-packages-main-title {
    text-align: center;
    font-size: 40px;
    font-weight: 700;
    color: #111;
    margin: 0 0 26px;
}

.second-red {
    margin-top: 52px;
}

.second-title {
    margin-bottom: 34px;
}

.seo-package-wide-card {
    background: #f7f7f7;
    border: 2px solid #9da3ad;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    padding: 18px 18px 24px;
    max-width: 1080px;
    margin: 0 auto;
}

.seo-card-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.seo-card-price {
    text-align: center;
    font-size: 38px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.seo-card-bar,
.seo-premium-bar {
    width: 100%;
    background: #420000;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    padding: 10px 12px;
    box-sizing: border-box;
}

.seo-card-actions {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin-top: 22px;
}

.seo-card-actions-wide {
    margin-top: 18px;
}

.seo-btn-primary,
.seo-btn-dark {
    display: inline-block;
    min-width: 235px;
    padding: 15px 20px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: 0.3s ease;
}

.seo-btn-primary {
    background: #0f63f2;
    color: #fff;
}

.seo-btn-primary:hover {
    background: #0b52c8;
}

.seo-btn-dark {
    background: #131d29;
    color: #fff;
}

.seo-btn-dark:hover {
    background: #000;
}

.seo-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.seo-premium-card {
    background: #f7f7f7;
    border: 2px solid #a8afb8;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    padding: 18px 16px 24px;
    display: flex;
    flex-direction: column;
}

.seo-premium-name {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin: 0 0 10px;
}

.seo-premium-desc {
    text-align: center;
    font-size: 14px;
    line-height: 1.55;
    color: #333;
    min-height: 48px;
    margin: 0 0 18px;
    font-weight: 600;
}

.seo-premium-price {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.seo-premium-bar {
    margin-bottom: 20px;
}

.seo-feature-block {
    margin-bottom: 14px;
}

.seo-feature-block h4 {
    font-size: 16px;
    font-weight: 700;
    color: #d72828;
    margin: 0 0 10px;
    position: relative;
    padding-left: 18px;
}

.seo-feature-block h4::before {
    content: "🔖";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 12px;
}

.seo-feature-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.seo-feature-block li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
    color: #27313f;
    font-weight: 600;
}

.seo-feature-block li::before {
    content: "☑";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: #4e63ff;
}

.seo-premium-card .seo-card-actions {
    margin-top: auto;
    padding-top: 18px;
}

.seo-premium-card .seo-btn-primary,
.seo-premium-card .seo-btn-dark {
    min-width: 135px;
    font-size: 16px;
    padding: 13px 16px;
}

@media (max-width: 1100px) {
    .seo-premium-grid {
        grid-template-columns: 1fr;
    }

    .seo-packages-small-red {
        font-size: 22px;
    }

    .seo-packages-main-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .seo-hero {
        height: 430px;
    }

    .seo-hero-content {
        margin-top: 90px;
    }

    .seo-hero-title {
        font-size: 30px;
    }

    .seo-intro-container,
    .seo-packages-container {
        width: 92%;
    }

    .seo-card-title {
        font-size: 26px;
    }

    .seo-card-price {
        font-size: 30px;
    }

    .seo-packages-small-red {
        font-size: 20px;
    }

    .seo-packages-main-title {
        font-size: 28px;
    }

    .seo-card-actions,
    .seo-card-actions-wide {
        flex-direction: column;
        align-items: center;
    }

    .seo-btn-primary,
    .seo-btn-dark {
        width: 100%;
        max-width: 320px;
    }
}
/* ================= SEO PAGE END ================= */

/* ================= SOCIAL MEDIA MARKETING PAGE START ================= */
.smm-hero {
    position: relative;
    width: 100%;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.smm-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.smm-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.58);
    z-index: 2;
}

.smm-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    width: 90%;
    max-width: 1400px;
    margin-top: 120px;
}

.smm-hero-title {
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    animation: smmMoveDown 1s ease forwards;
}

.smm-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 10px;
}

.smm-breadcrumb a,
.smm-breadcrumb span {
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    animation: smmMoveDown 1.2s ease forwards;
}

@keyframes smmMoveDown {
    0% {
        opacity: 0;
        transform: translateY(-18px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.smm-section {
    background: #eef2f5;
    padding: 34px 0 34px;
}

.smm-container {
    width: 88%;
    max-width: 1240px;
    margin: 0 auto;
}

.smm-top-red {
    text-align: center;
    color: #ff2c2c;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 2px;
    animation: smmMoveDown 1.25s ease forwards;
}

.smm-main-title {
    text-align: center;
    font-size: 34px;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
    animation: smmMoveDown 1.4s ease forwards;
}

.smm-subtitle {
    text-align: center;
    max-width: 980px;
    margin: 0 auto 30px;
    font-size: 15px;
    line-height: 1.65;
    color: #222;
    font-weight: 600;
    animation: smmMoveDown 1.55s ease forwards;
}

.smm-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.smm-card {
    background: #f7f7f7;
    border: 2px solid #a8afb8;
    border-radius: 16px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
    padding: 18px 16px 22px;
    display: flex;
    flex-direction: column;
}

.smm-card-title {
    text-align: center;
    font-size: 20px;
    font-weight: 700;
    color: #222;
    margin: 0 0 8px;
}

.smm-card-price {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    margin-bottom: 12px;
}

.smm-card-bar {
    width: 100%;
    background: #420000;
    color: #fff;
    border-radius: 999px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    padding: 9px 12px;
    box-sizing: border-box;
    margin-bottom: 14px;
}

.smm-social-icons {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.smm-social-icons span {
    width: 30px;
    height: 30px;
    border-radius: 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 15px;
}

.smm-social-icons span:nth-child(1) { background: #4267B2; }
.smm-social-icons span:nth-child(2) { background: #333; }
.smm-social-icons span:nth-child(3) { background: #0077b5; }
.smm-social-icons span:nth-child(4) { background: #ff0000; }

.smm-feature-block {
    margin-bottom: 14px;
}

.smm-feature-block h4 {
    font-size: 15px;
    font-weight: 700;
    color: #232b38;
    margin: 0 0 10px;
    position: relative;
    padding-left: 18px;
}

.smm-feature-block h4::before {
    content: "🔖";
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 12px;
}

.smm-feature-block ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.smm-feature-block li {
    position: relative;
    padding-left: 15px;
    margin-bottom: 6px;
    font-size: 13px;
    line-height: 1.5;
    color: #27313f;
    font-weight: 600;
}

.smm-feature-block li::before {
    content: "☑";
    position: absolute;
    left: 0;
    top: 0;
    font-size: 11px;
    color: #4e63ff;
}

.smm-card-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: auto;
    padding-top: 18px;
}

.smm-btn-primary,
.smm-btn-dark {
    display: inline-block;
    min-width: 138px;
    padding: 13px 16px;
    border-radius: 999px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    transition: 0.3s ease;
}

.smm-btn-primary {
    background: #0f63f2;
    color: #fff;
}

.smm-btn-primary:hover {
    background: #0b52c8;
}

.smm-btn-dark {
    background: #131d29;
    color: #fff;
}

.smm-btn-dark:hover {
    background: #000;
}

.smm-faq-section {
    background: #eef2f5;
    padding: 26px 0 50px;
}

.smm-faq-container {
    width: 88%;
    max-width: 1240px;
    margin: 0 auto;
}

.smm-faq-title {
    font-size: 30px;
    font-weight: 700;
    color: #111;
    margin: 0 0 28px;
    animation: smmMoveDown 1.7s ease forwards;
}

.smm-faq-list {
    border-top: 0;
}

.smm-faq-item {
    border-bottom: 1px solid #d8dde5;
    padding: 0;
}

.smm-faq-question {
    width: 100%;
    border: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    text-align: left;
    font-size: 17px;
    font-weight: 700;
    color: #111;
    padding: 18px 0;
    cursor: pointer;
}

.smm-faq-icon {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    min-width: 26px;
    text-align: center;
}

.smm-faq-answer {
    display: none;
    padding: 0 0 18px 42px;
}

.smm-faq-answer p {
    margin: 0;
    color: #ff1f1f;
    font-size: 16px;
    line-height: 1.7;
    max-width: 1120px;
}

.smm-faq-item.active .smm-faq-answer {
    display: block;
}

@media (max-width: 1100px) {
    .smm-card-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .smm-hero {
        height: 430px;
    }

    .smm-hero-content {
        margin-top: 90px;
    }

    .smm-hero-title {
        font-size: 30px;
    }

    .smm-container,
    .smm-faq-container {
        width: 92%;
    }

    .smm-top-red {
        font-size: 20px;
    }

    .smm-main-title {
        font-size: 28px;
    }

    .smm-subtitle {
        font-size: 14px;
    }

    .smm-card-actions {
        flex-direction: column;
        align-items: center;
    }

    .smm-btn-primary,
    .smm-btn-dark {
        width: 100%;
        max-width: 280px;
    }

    .smm-faq-title {
        font-size: 24px;
    }

    .smm-faq-question {
        font-size: 15px;
    }

    .smm-faq-answer {
        padding-left: 0;
    }

    .smm-faq-answer p {
        font-size: 14px;
    }
}
/* ================= SOCIAL MEDIA MARKETING PAGE END ================= */

/* ================= ECOMMERCE PAGE START ================= */
.ecom-page-section {
    background: #eef2f5;
    padding: 42px 0 0;
    overflow: hidden;
}

.ecom-page-container {
    width: 88%;
    max-width: 1280px;
    margin: 0 auto;
}

.ecom-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 34px;
}

.ecom-main-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 700;
    color: #ff2a2a;
    margin: 0 0 22px;
}

.ecom-sub-heading {
    font-size: 22px;
    line-height: 1.5;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;
    max-width: 620px;
}

.ecom-main-text {
    font-size: 18px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0;
    max-width: 700px;
}

.ecom-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ecom-hero-image {
    width: 100%;
    max-width: 620px;
    height: auto;
    display: block;
}

.ecom-logo-slider {
    width: 100%;
    overflow: hidden;
    margin: 16px 0 42px;
}

.ecom-logo-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: ecomLogoSlide 12s linear infinite;
}

.ecom-logo-item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
}

.ecom-logo-item img {
    max-height: 42px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
    display: block;
}

@keyframes ecomLogoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.ecom-section-title {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: #ff2a2a;
    text-align: center;
    margin: 0 0 22px;
}

.ecom-section-intro {
    font-size: 17px;
    line-height: 1.75;
    color: #2a2a2a;
    text-align: center;
    max-width: 1180px;
    margin: 0 auto 34px;
}

.ecom-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-bottom: 46px;
}

.ecom-feature-box {
    text-align: center;
    padding: 0 22px;
    position: relative;
}

.ecom-feature-box:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 8px;
    right: 0;
    width: 2px;
    height: 180px;
    border-right: 3px dotted #666;
}

.ecom-feature-box h3 {
    font-size: 18px;
    line-height: 1.3;
    font-weight: 700;
    color: #111;
    margin: 0 0 18px;
    min-height: 52px;
}

.ecom-feature-box p {
    font-size: 16px;
    line-height: 1.75;
    color: #2a2a2a;
    margin: 0;
}

.ecom-ai-section {
    padding: 10px 0 10px;
}

.ecom-ai-text {
    max-width: 1220px;
    margin-bottom: 42px;
}

.ecom-project-cta {
    text-align: center;
    padding-bottom: 10px;
}

.ecom-project-cta h3 {
    font-size: 24px;
    line-height: 1.3;
    font-weight: 700;
    color: #ff2a2a;
    margin: 0 0 18px;
}

.ecom-book-btn {
    display: inline-block;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    padding: 13px 28px;
    border-radius: 4px;
}

.ecom-book-btn:hover {
    background: #1d1d1d;
}

@media (max-width: 1100px) {
    .ecom-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .ecom-main-title {
        font-size: 42px;
    }

    .ecom-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 0;
    }

    .ecom-feature-box:nth-child(2)::after {
        display: none;
    }

    .ecom-feature-box:not(:last-child)::after {
        height: 160px;
    }
}

@media (max-width: 768px) {
    .ecom-page-container {
        width: 92%;
    }

    .ecom-main-title {
        font-size: 32px;
    }

    .ecom-sub-heading {
        font-size: 18px;
    }

    .ecom-main-text,
    .ecom-section-intro,
    .ecom-feature-box p {
        font-size: 15px;
    }

    .ecom-section-title {
        font-size: 26px;
    }

    .ecom-features-grid {
        grid-template-columns: 1fr;
    }

    .ecom-feature-box {
        padding: 0;
    }

    .ecom-feature-box::after {
        display: none !important;
    }

    .ecom-logo-track {
        gap: 34px;
    }

    .ecom-logo-item {
        min-width: 110px;
    }

    .ecom-logo-item img {
        max-height: 32px;
        max-width: 130px;
    }

    .ecom-project-cta h3 {
        font-size: 20px;
    }

    .ecom-book-btn {
        font-size: 16px;
        padding: 12px 20px;
    }
}
/* ================= ECOMMERCE PAGE END ================= */