/********** Template CSS **********/
body {
   font-family: 'Poppins', sans-serif !important;
  overflow-x: hidden;
}

:root {

  /* --primary: #d5af33; */
  --primary: #E6FC81;
  --secondary: #fbfbfb !important;
  --light: #f8f8f8;
  --dark: #252525;
}

.text-secondary {
  color: var(--secondary) !important;
}

.bg-secondary {
  background: var(--secondary) !important;
}

.bg-second {
  background-color: #fafafa !important;
}

h1,
.h1 {


font-weight: 700;
font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {

}

h2,
.h2 {
color: #414040;
font-weight: 700;
font-family: 'Poppins', sans-serif !important;
}

@media (max-width: 768px) {
 
}

h3,
h4,
.h3,
.h4,
.fw-medium {
   font-family: 'Poppins', sans-serif !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
   font-family: 'Poppins', sans-serif !important;
}

p,
.p {
color: #5A5959;
font-family: 'Poppins', sans-serif !important;
}

ul,
li {
   font-family: 'Poppins', sans-serif !important;
}



figure{
	margin: 0;
}

img{
	max-width: 100%;
}

a{
	text-decoration: none;
}

a:hover{
	text-decoration: none;
	outline: 0;
}

a:focus{
	text-decoration: none;
	outline: 0;
}

html,
body{
	width: 100%;
	overflow-x: clip;
}


/* Images Animation */

.image-anime{
	position: relative;
	overflow: hidden;
}

.image-anime:after{
	content: "";
	position: absolute;
    width: 200%;
    height: 0%;
    left: 50%;
    top: 50%;
    background-color: rgba(255,255,255,.3);
    transform: translate(-50%,-50%) rotate(-45deg);
    z-index: 1;
}

.image-anime:hover:after{
    height: 250%;
    transition: all 600ms linear;
    background-color: transparent;
}

.reveal{
	position: relative;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    visibility: hidden;
    overflow: hidden;
}

.reveal img{
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -webkit-transform-origin: left;
    transform-origin: left;
}

.what-we-image-1 figure img{
	width: 100%;
	object-fit: cover;
	border-radius: 20px;
}

.what-we-image-1 figure img{
	aspect-ratio: 1 / 0.73;
}

.back-to-top {
  position: fixed;
  display: none;
  right: 30px;
  bottom: 30px;
  z-index: 99;
}

/*** Spinner ***/
#spinner {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-out, visibility 0s linear 0.5s;
  z-index: 99999;
}

#spinner.show {
  transition: opacity 0.5s ease-out, visibility 0s linear 0s;
  visibility: visible;
  opacity: 1;
}

/*** Button ***/
.btn {
  font-weight: 500;
  transition: 0.5s;
}

.btn.btn-primary {
  color: #000;
  background-color: var(--primary);
  border-radius: 10px;
  font-weight: 600 !important;
}

.btn-secondary {
  color: #000;
  padding: 12px 40px;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
  border-radius: 10px;
  background: #fff;
  font-weight: 600 !important;
  border-color: #fff;
}

.btn-secondary:hover {
  background-color: var(--primary);
  border-color: var(--primary);
  color: #000;
}

.btn-square {
  width: 38px;
  height: 38px;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

.btn-sm-square {
  width: 32px;
  height: 32px;
}

.btn-lg-square {
  width: 48px;
  height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-outline-body {
  color: var(--primary);
  border-color: #777777;
}

.btn-outline-body:hover {
  color: #ffffff;
  background: var(--primary);
  border-color: var(--primary);
}

.shop-btn {
  padding: 10px 25px 10px 25px !important;
}



/* Title with underline */
.section-title-2 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
}

.section-title-2::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: var(--primary);
  margin-top: 20px;
}

.section-title-3 {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  text-align: center;
}

.section-title-3::after {
  content: "";
  display: block;
  width: 200px;
  height: 5px;
  background-color: var(--primary);
  margin: 20px auto 0 auto;
  /* ✅ This centers the line */
}



/* **************************************** */
/* Responsive Screens */
/* **************************************** */


@media (max-width: 768px) {

  /* ************************ */
  /* Globally Fonts */
  /* ************************ */

    h1,
  .h1 {
    font-size: 24px;

  }

 h2,
  .h2 {
    font-size: 24px !important;

  }

  p,
  .p {

    font-size: 15px;
  }


  .section-title-2::after {
    width: 100px;
    margin-top: 10px !important;
  }

  .section-title-3::after {
    width: 100px;
    margin-top: 10px !important;
  }
}
/* --- Hero Component Custom Styles --- */
.hhero-v18-stage {
  position: relative;
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* Video & Overlay Positioning */
.hhero-v18-media-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hhero-v18-bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hhero-v18-dark-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
}

/* Content Formatting */
.hhero-v18-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1.5rem;
  box-sizing: border-box;
}

.hhero-v18-content-frame {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: #ffffff;
}

.hhero-v18-main-heading {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hhero-v18-subtext {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(0.95rem, 1.8vw, 1.15rem);
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.9);
  max-width: 680px;
  margin: 0 auto 2.25rem auto;
}

/* Button Formatting */
.hhero-v18-action-area {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hhero-v18-btn-primary {
  display: inline-block;
  padding: 0.85rem 3.25rem;
  background-color: #8b46ff;
  color: #ffffff;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  text-decoration: none;
  border-radius: 50px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(139, 70, 255, 0.35);
}

.hhero-v18-btn-primary:hover {
  background-color: #782ee6;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(139, 70, 255, 0.5);
}

.hhero-v18-btn-primary:active {
  transform: translateY(0);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .hhero-v18-main-heading br {
    display: none;
  }
  
  .hhero-v18-btn-primary {
    width: 80%;
    max-width: 280px;
  }
}

/* --- Intro Section (axsb-intro-x9) --- */
.axsb-intro-x9-section {
  width: 100%;
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  box-sizing: border-box;
}

.axsb-intro-x9-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

/* Left Content Styles */
.axsb-intro-x9-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.axsb-intro-x9-heading {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

.axsb-intro-x9-description {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  max-width: 480px;
  margin: 0 0 2.25rem 0;
}

/* Button & Hover State (Grey Background + White Text) */
.axsb-intro-x9-action {
  display: flex;
}

.axsb-intro-x9-btn {
  display: inline-block;
  padding: 0.75rem 3rem;
  background-color: transparent;
  color: #1a1a1a;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid #1a1a1a;
  border-radius: 50px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-align: center;
}

.axsb-intro-x9-btn:hover {
  background-color: #4a4a4a;
  color: #ffffff;
  border-color: #4a4a4a;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.axsb-intro-x9-btn:active {
  transform: translateY(0);
}

/* Right Visual & Overlapping Badge */
.axsb-intro-x9-visual-wrap {
  position: relative;
  width: 100%;
}

.axsb-intro-x9-image-card {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.axsb-intro-x9-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
}

.axsb-intro-x9-quote-box {
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 75%;
  background: #fcfcfc;
  padding: 1.75rem 2rem;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

.axsb-intro-x9-quote-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.axsb-intro-x9-quote-mark {
  font-size: 1.25rem;
  line-height: 1;
  color: #1a1a1a;
}

.axsb-intro-x9-quote-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a1a;
}

.axsb-intro-x9-quote-author {
  display: block;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  color: #888888;
  padding-left: 2rem;
}

/* Responsive Viewports */
@media (max-width: 991px) {
  .axsb-intro-x9-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .axsb-intro-x9-heading br {
    display: none;
  }

  .axsb-intro-x9-img {
    height: 380px;
  }

  .axsb-intro-x9-quote-box {
    left: 5%;
    width: 85%;
    padding: 1.25rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .axsb-intro-x9-section {
    padding: 3rem 1rem;
  }

  .axsb-intro-x9-btn {
    width: 100%;
  }

  .axsb-intro-x9-quote-box {
    position: relative;
    left: 0;
    width: 100%;
    margin-top: -2rem;
    border-radius: 12px;
  }
}

/* --- Global Business Solutions Section (gbs-feat-v4) --- */
.gbs-feat-v4-stage {
  width: 100%;
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  box-sizing: border-box;
}

.gbs-feat-v4-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Header Formatting */
.gbs-feat-v4-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.gbs-feat-v4-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.gbs-feat-v4-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Grid Layout */
.gbs-feat-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Card Container */
.gbs-feat-v4-card {
  display: flex;
  flex-direction: column;
}

.gbs-feat-v4-media {
  width: 100%;
  height: 260px;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.gbs-feat-v4-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gbs-feat-v4-card:hover .gbs-feat-v4-img {
  transform: scale(1.04);
}

/* Card Typography */
.gbs-feat-v4-body {
  display: flex;
  flex-direction: column;
}

.gbs-feat-v4-card-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #1c1c1c;
  margin: 0 0 0.65rem 0;
  line-height: 1.35;
}

.gbs-feat-v4-card-desc {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #666666;
  margin: 0;
}

/* Responsive Viewports */
@media (max-width: 991px) {
  .gbs-feat-v4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.5rem;
  }
}

@media (max-width: 640px) {
  .gbs-feat-v4-stage {
    padding: 3.5rem 1rem;
  }

  .gbs-feat-v4-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gbs-feat-v4-header {
    margin-bottom: 2.5rem;
  }

  .gbs-feat-v4-media {
    height: 230px;
  }
}

/* --- Global Projects Section (gp-showcase-z7) --- */
.gp-showcase-z7-stage {
  width: 100%;
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  box-sizing: border-box;
}

.gp-showcase-z7-container {
  max-width: 1140px;
  margin: 0 auto;
}

/* Header Styles */
.gp-showcase-z7-header {
  text-align: left;
  max-width: 600px;
  margin-bottom: 4rem;
}

.gp-showcase-z7-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(2.25rem, 4vw, 3rem);
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 0.85rem 0;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.gp-showcase-z7-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Project Rows Container */
.gp-showcase-z7-list {
  display: flex;
  flex-direction: column;
  gap: 3.5rem;
}

/* Project Row Grid Layout */
.gp-showcase-z7-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 3.5rem;
  align-items: center;
}

/* Media Card & Image */
.gp-showcase-z7-media {
  width: 100%;
  height: 320px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
}

.gp-showcase-z7-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.gp-showcase-z7-row:hover .gp-showcase-z7-img {
  transform: scale(1.03);
}

/* Content Area */
.gp-showcase-z7-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 2rem;
}

.gp-showcase-z7-card-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  font-weight: 700;
  color: #1f1f1f;
  margin: 0 0 1rem 0;
  line-height: 1.3;
}

.gp-showcase-z7-card-desc {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: #666666;
  margin: 0;
  max-width: 480px;
}

/* Responsive Viewports */
@media (max-width: 991px) {
  .gp-showcase-z7-row {
    gap: 2rem;
  }

  .gp-showcase-z7-content {
    padding-right: 0;
  }

  .gp-showcase-z7-media {
    height: 280px;
  }
}

@media (max-width: 768px) {
  .gp-showcase-z7-stage {
    padding: 3.5rem 1rem;
  }

  .gp-showcase-z7-header {
    margin-bottom: 2.5rem;
  }

  .gp-showcase-z7-list {
    gap: 3rem;
  }

  .gp-showcase-z7-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .gp-showcase-z7-media {
    height: 240px;
  }
}

/* --- Testimonial Banner Section (tst-banner-k3) --- */
.tst-banner-k3-stage {
  width: 100%;
  padding: 6rem 1.5rem;
  background-color: #9146f6;
  box-sizing: border-box;
}

.tst-banner-k3-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Star Rating Formatting */
.tst-banner-k3-rating {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}

.tst-banner-k3-star {
  color: #ffffff;
  font-size: 1.25rem;
  line-height: 1;
}

/* Quote Text Formatting */
.tst-banner-k3-quote {
  margin: 0 0 2.25rem 0;
  padding: 0;
  border: none;
}

.tst-banner-k3-text {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  max-width: 680px;
}

/* Author Section Formatting */
.tst-banner-k3-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.tst-banner-k3-avatar-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.tst-banner-k3-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tst-banner-k3-name {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Responsive Viewports */
@media (max-width: 640px) {
  .tst-banner-k3-stage {
    padding: 4rem 1.25rem;
  }

  .tst-banner-k3-rating {
    margin-bottom: 1.25rem;
  }

  .tst-banner-k3-quote {
    margin-bottom: 1.75rem;
  }

  .tst-banner-k3-avatar-wrap {
    width: 56px;
    height: 56px;
  }
}
/* *********************
home page ends 
********************* */

/* ***************************
footer starts 
************************* */
/* --- Dark Footer Section (site-ftr-m8) --- */
.site-ftr-m8-stage {
  width: 100%;
  padding: 5rem 1.5rem 3.5rem 1.5rem;
  background-color: #0d0a12;
  color: #ffffff;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.site-ftr-m8-container {
  max-width: 1200px;
  margin: 0 auto;
}

.site-ftr-m8-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 3.5rem;
  align-items: start;
}

/* --- Brand Column --- */
.site-ftr-m8-logo-text {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.site-ftr-m8-tagline {
  font-size: 0.9rem;
  line-height: 1.5;
  color: #dddddd;
  max-width: 280px;
  margin: 0 0 1.5rem 0;
}

/* Social Icons */
.site-ftr-m8-socials {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-bottom: 3rem;
}

.site-ftr-m8-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #ffffff;
  color: #0d0a12;
  text-decoration: none;
  font-size: 1.05rem;
  transition: all 0.25s ease;
}

.site-ftr-m8-social-link:hover {
  background-color: #9146f6;
  color: #ffffff;
  transform: translateY(-2px);
}

.site-ftr-m8-copy {
  font-size: 0.85rem;
  color: #ffffff;
  margin: 0;
}

/* --- Contact Column --- */
.site-ftr-m8-contact-group {
  margin-bottom: 1.75rem;
}

.site-ftr-m8-contact-group:last-child {
  margin-bottom: 0;
}

.site-ftr-m8-heading {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
  text-transform: uppercase;
}

.site-ftr-m8-list {
  list-style-type: disc;
  padding-left: 1.2rem;
  margin: 0;
}

.site-ftr-m8-list li {
  margin-bottom: 0.4rem;
  color: #ffffff;
}

.site-ftr-m8-list li a {
  color: #ffffff;
  text-decoration: underline;
  text-underline-offset: 3px;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.site-ftr-m8-list li a:hover {
  color: #9146f6;
}

/* --- Connect / Form Column --- */
.site-ftr-m8-connect-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffffff;
  margin: 0 0 0.85rem 0;
}

.site-ftr-m8-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.site-ftr-m8-input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: 12px;
  border: none;
  background-color: #ffffff;
  color: #1a1a1a;
  font-size: 0.9rem;
  outline: none;
  box-sizing: border-box;
}

.site-ftr-m8-input::placeholder {
  color: #a0a0a0;
}

.site-ftr-m8-submit-btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  background-color: #9146f6;
  color: #ffffff;
  border: none;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 15px rgba(145, 70, 246, 0.3);
}

.site-ftr-m8-submit-btn:hover {
  background-color: #7d33eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(145, 70, 246, 0.5);
}

/* --- Responsive Layout --- */
@media (max-width: 991px) {
  .site-ftr-m8-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem 2rem;
  }

  .site-ftr-m8-connect-col {
    grid-column: span 2;
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .site-ftr-m8-stage {
    padding: 3.5rem 1.25rem 2.5rem 1.25rem;
  }

  .site-ftr-m8-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .site-ftr-m8-connect-col {
    grid-column: span 1;
  }

  .site-ftr-m8-socials {
    margin-bottom: 2rem;
  }

  .site-ftr-m8-submit-btn {
    width: 100%;
  }
}

/* ***************************
footer starts 
************************* */


/* *****************
header starts 
******************** */
/* --- Header Component (ax-main-nav-q2) --- */
.ax-main-nav-q2-stage {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-sizing: border-box;
}

.ax-main-nav-q2-container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Brand / Logo Styling */
.ax-main-nav-q2-brand {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.ax-main-nav-q2-logo {
  height: auto;
  max-height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Menu Items */
.ax-main-nav-q2-menu {
  display: flex;
  align-items: center;
}

.ax-main-nav-q2-list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.ax-main-nav-q2-link {
  position: relative;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  padding-bottom: 0.4rem;
  transition: color 0.25s ease;
}

.ax-main-nav-q2-link:hover {
  color: #000000;
}

/* Bottom Border Indicator for Active/Hover state */
.ax-main-nav-q2-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #222222;
  transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.ax-main-nav-q2-link:hover::after,
.ax-main-nav-q2-link.ax-main-nav-q2-active::after {
  width: 100%;
}

.ax-main-nav-q2-link.ax-main-nav-q2-active {
  color: #000000;
}

/* Hamburger Mobile Toggle */
.ax-main-nav-q2-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.ax-main-nav-q2-bar {
  width: 100%;
  height: 2px;
  background-color: #1a1a1a;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* Mobile Viewports */
@media (max-width: 868px) {
  .ax-main-nav-q2-container {
    padding: 1rem 1.25rem;
  }

  .ax-main-nav-q2-logo {
    max-height: 38px;
  }

  .ax-main-nav-q2-toggle {
    display: flex;
  }

  .ax-main-nav-q2-menu {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
    transition: clip-path 0.35s ease-in-out;
  }

  .ax-main-nav-q2-menu.ax-main-nav-q2-menu-open {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .ax-main-nav-q2-list {
    flex-direction: column;
    width: 100%;
    padding: 1.5rem 0;
    gap: 1.25rem;
  }

  .ax-main-nav-q2-link {
    font-size: 1.05rem;
  }

  /* Hamburger transform animation on toggle */
  .ax-main-nav-q2-toggle-open .ax-main-nav-q2-bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .ax-main-nav-q2-toggle-open .ax-main-nav-q2-bar:nth-child(2) {
    opacity: 0;
  }

  .ax-main-nav-q2-toggle-open .ax-main-nav-q2-bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}
/* *************
header ends 
************** */

/* ********************
service page starts 
*********************** */
/* --- Global Business Solutions Hero Header (gbs-hero-x7) --- */
.gbs-hero-x7-stage {
  width: 100%;
  padding: 7.5rem 1.5rem;
  background-color: #0c0811;
  box-sizing: border-box;
}

.gbs-hero-x7-container {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Main Heading */
.gbs-hero-x7-title {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #ffffff;
  margin: 0 0 1.5rem 0;
  letter-spacing: -0.02em;
}

/* Subtitle Paragraph */
.gbs-hero-x7-subtitle {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  font-weight: 400;
  line-height: 1.6;
  color: #e2e8f0;
  margin: 0;
  max-width: 680px;
}

/* Responsive Viewports */
@media (max-width: 640px) {
  .gbs-hero-x7-stage {
    padding: 5rem 1.25rem;
  }

  .gbs-hero-x7-title {
    margin-bottom: 1rem;
  }
}
/* --- Global Business Solutions Feature Cards (gbs-cards-v4) --- */
.gbs-cards-v4-stage {
  width: 100%;
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.gbs-cards-v4-container {
  max-width: 1240px;
  margin: 0 auto;
}

/* Header Area */
.gbs-cards-v4-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3.5rem auto;
}

.gbs-cards-v4-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  color: #1a1a1a;
  margin: 0 0 1rem 0;
  letter-spacing: -0.02em;
}

.gbs-cards-v4-subtitle {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0;
}

/* Cards Layout Grid */
.gbs-cards-v4-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  align-items: stretch;
}

.gbs-cards-v4-card {
  display: flex;
  flex-direction: column;
}

/* Image Container */
.gbs-cards-v4-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 1.25rem;
  background-color: #f3f4f6;
}

.gbs-cards-v4-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.gbs-cards-v4-card:hover .gbs-cards-v4-img {
  transform: scale(1.03);
}

/* Card Content */
.gbs-cards-v4-content {
  display: flex;
  flex-direction: column;
}

.gbs-cards-v4-card-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #111111;
  margin: 0 0 0.5rem 0;
  line-height: 1.35;
}

.gbs-cards-v4-card-desc {
  font-size: 0.9rem;
  line-height: 1.55;
  color: #666666;
  margin: 0;
}

/* Responsive Viewports */
@media (max-width: 991px) {
  .gbs-cards-v4-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1.75rem;
  }
}

@media (max-width: 640px) {
  .gbs-cards-v4-stage {
    padding: 3.5rem 1.25rem;
  }

  .gbs-cards-v4-header {
    margin-bottom: 2.5rem;
  }

  .gbs-cards-v4-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gbs-cards-v4-media {
    border-radius: 16px;
  }
}

/* --- Services Page Testimonial Banner (srv-tst-p9) --- */
.srv-tst-p9-stage {
  width: 100%;
  padding: 5.5rem 1.5rem;
  background-color: #8c42f6;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.srv-tst-p9-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

/* Star Rating Formatting */
.srv-tst-p9-rating {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 1.5rem;
}

.srv-tst-p9-star {
  color: #ffffff;
  font-size: 1.35rem;
  line-height: 1;
}

/* Quote Formatting */
.srv-tst-p9-quote {
  margin: 0 0 2rem 0;
  padding: 0;
  border: none;
}

.srv-tst-p9-text {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 500;
  line-height: 1.5;
  color: #ffffff;
  margin: 0;
  max-width: 720px;
}

/* Client Avatar and Name Formatting */
.srv-tst-p9-client {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.srv-tst-p9-avatar-frame {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  background-color: #ffffff;
}

.srv-tst-p9-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.srv-tst-p9-name {
  font-size: 1rem;
  font-weight: 500;
  font-style: normal;
  color: #ffffff;
  letter-spacing: 0.01em;
}

/* Responsive Viewports */
@media (max-width: 640px) {
  .srv-tst-p9-stage {
    padding: 3.75rem 1.25rem;
  }

  .srv-tst-p9-rating {
    margin-bottom: 1.25rem;
  }

  .srv-tst-p9-quote {
    margin-bottom: 1.5rem;
  }

  .srv-tst-p9-avatar-frame {
    width: 58px;
    height: 58px;
  }
}
/* *********************
service page ends 
********************** */

/* *********************
about page starts 
********************** */
/* --- About Page Overview (abt-intro-w5) --- */
.abt-intro-w5-stage {
  width: 100%;
  padding: 5rem 1.5rem;
  background-color: #ffffff;
  box-sizing: border-box;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.abt-intro-w5-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Two-column layout for top header section */
.abt-intro-w5-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
  margin-bottom: 3.5rem;
}

/* Left Title Column */
.abt-intro-w5-title {
  font-size: clamp(2.2rem, 3.8vw, 3.25rem);
  font-weight: 600;
  line-height: 1.15;
  color: #1a1a1a;
  margin: 0;
  letter-spacing: -0.02em;
}

/* Right Description & Stats Column */
.abt-intro-w5-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #666666;
  margin: 0 0 2rem 0;
  max-width: 540px;
}

.abt-intro-w5-stats-row {
  display: flex;
  gap: 4rem;
  align-items: flex-start;
}

.abt-intro-w5-stat-item {
  display: flex;
  flex-direction: column;
}

.abt-intro-w5-stat-number {
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #8c42f6;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.abt-intro-w5-stat-label {
  font-size: 0.85rem;
  color: #666666;
  font-weight: 500;
}

/* Banner Image Wrapper */
.abt-intro-w5-media-frame {
  width: 100%;
  max-height: 520px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: #f4f4f6;
}

.abt-intro-w5-banner-img {
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
  display: block;
}

/* Responsive Viewports */
@media (max-width: 991px) {
  .abt-intro-w5-header-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .abt-intro-w5-stats-row {
    gap: 2.5rem;
  }
}

@media (max-width: 640px) {
  .abt-intro-w5-stage {
    padding: 3.5rem 1.25rem;
  }

  .abt-intro-w5-stats-row {
    gap: 2rem;
  }

  .abt-intro-w5-media-frame {
    border-radius: 8px;
    max-height: 300px;
  }

  .abt-intro-w5-banner-img {
    max-height: 300px;
  }
}

/* Base Section Styling */
.aibc-about-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.aibc-about-container {
  max-width: 1080px;
  margin: 0 auto;
}

/* Header & Intro */
.aibc-about-header {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 50px auto;
}

.aibc-about-title {
  font-size: 2.25rem;
  font-weight: 600;
  color: #1f2937;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.aibc-about-description {
  font-size: 0.925rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0;
}

/* Feature Cards Grid Layout */
.aibc-about-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

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

/* Image Wrappers & Radius */
.aibc-about-image-wrapper {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 16px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.aibc-about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Card Content Details */
.aibc-about-card-info {
  grid-column: span 2;
  margin-top: 4px;
}

.aibc-about-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 6px 0;
}

.aibc-about-card-subtitle {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0;
}

/* Responsive Adjustments */
@media (max-width: 640px) {
  .aibc-about-section {
    padding: 40px 16px;
  }

  .aibc-about-title {
    font-size: 1.75rem;
  }

  .aibc-about-card {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .aibc-about-card-info {
    grid-column: span 1;
  }
}
/* *************************
about page ends 
************************* */

/* *****************************
contact page start 
**************************** */
/* Container & Section Layout */
.aibc-contact-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #1f2937;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.aibc-contact-container {
  max-width: 1080px;
  margin: 0 auto;
}

/* Section Header */
.aibc-contact-header {
  text-align: center;
  margin-bottom: 48px;
}

.aibc-contact-title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.25;
  color: #1a202c;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.aibc-contact-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin: 0;
}

/* Form and Image Side-by-Side Wrapper */
.aibc-contact-wrapper {
  display: flex;
  align-items: stretch;
  gap: 32px;
}

/* Light Gray Form Panel */
.aibc-contact-form-card {
  flex: 1;
  background-color: #f9fafb;
  border-radius: 20px;
  padding: 40px;
  box-sizing: border-box;
}

.aibc-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.aibc-contact-field-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.aibc-contact-label {
  font-size: 0.85rem;
  color: #4b5563;
  font-weight: 500;
}

.aibc-contact-input,
.aibc-contact-textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: #1f2937;
  background-color: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aibc-contact-input::placeholder,
.aibc-contact-textarea::placeholder {
  color: #9ca3af;
}

.aibc-contact-input:focus,
.aibc-contact-textarea:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.15);
}

.aibc-contact-textarea {
  resize: vertical;
  min-height: 100px;
}

/* Pill Submit Button */
.aibc-contact-submit-btn {
  align-self: flex-start;
  background-color: #8b5cf6;
  color: #ffffff;
  border: none;
  border-radius: 9999px;
  padding: 12px 32px;
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.1s ease;
  margin-top: 4px;
}

.aibc-contact-submit-btn:hover {
  background-color: #7c3aed;
}

.aibc-contact-submit-btn:active {
  transform: scale(0.98);
}

/* Right Image Panel */
.aibc-contact-image-card {
  flex: 1;
  border-radius: 20px;
  overflow: hidden;
  background-color: #f3f4f6;
  min-height: 400px;
}

.aibc-contact-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Mobile & Tablet Responsiveness */
@media (max-width: 868px) {
  .aibc-contact-wrapper {
    flex-direction: column;
  }

  .aibc-contact-image-card {
    min-height: 300px;
  }
}

@media (max-width: 640px) {
  .aibc-contact-section {
    padding: 40px 16px;
  }

  .aibc-contact-title {
    font-size: 1.75rem;
  }

  .aibc-contact-form-card {
    padding: 24px;
  }

  .aibc-contact-submit-btn {
    width: 100%;
  }
}

/* Layout & Container */
.aibc-map-info-section {
  width: 100%;
  padding: 60px 20px;
  background-color: #ffffff;
  color: #333333;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  box-sizing: border-box;
}

.aibc-map-info-container {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 48px;
}

/* Details Column */
.aibc-map-info-details {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.aibc-map-info-title {
  font-size: 2.75rem;
  font-weight: 600;
  color: #1a202c;
  margin: 0 0 16px 0;
  letter-spacing: -0.02em;
}

.aibc-map-info-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #6b7280;
  margin: 0 0 28px 0;
  max-width: 480px;
}

.aibc-map-info-block {
  margin-bottom: 20px;
}

.aibc-map-info-heading {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 4px 0;
}

.aibc-map-info-text {
  font-size: 0.925rem;
  color: #4b5563;
  margin: 0;
}

.aibc-map-info-list {
  list-style: disc;
  padding-left: 20px;
  margin: 4px 0 0 0;
}

.aibc-map-info-list li {
  margin-bottom: 4px;
  color: #4b5563;
}

.aibc-map-info-link {
  color: #4b5563;
  font-size: 0.925rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.aibc-map-info-link:hover {
  color: #8b5cf6;
}

/* Map Column */
.aibc-map-info-frame-wrapper {
  flex: 1;
  width: 100%;
  height: 480px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  background-color: #f3f4f6;
}

.aibc-map-info-iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
  .aibc-map-info-container {
    flex-direction: column;
    gap: 36px;
  }

  .aibc-map-info-frame-wrapper {
    height: 380px;
  }
}

@media (max-width: 640px) {
  .aibc-map-info-section {
    padding: 40px 16px;
  }

  .aibc-map-info-title {
    font-size: 2rem;
  }

  .aibc-map-info-frame-wrapper {
    height: 300px;
  }
}
/* ****************************
contact page ends 
***************************** */

