
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Outfit', sans-serif ;
    /* border: 2px solid red; */
}


body {
  /* font-family: Arial, sans-serif; */
  background: black;

}


html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  background: #000;
}

section {
  margin: 0;
  padding: 0;
}

* {
  box-sizing: border-box;
}




/* end navbar style */



.hero-title{
  font-size: 3.5rem !important;
  margin-left: 70px;
}

.Main-Title{
  font-size: 75px !important;
  font-weight: 500 !important;
  margin-right: 300px !important;
      margin-top: 100px;
    margin-bottom: 54px;
}

.subtitle-hero{
  font-size: 21px !important;
  padding: 30px 100px 0px 100px;
  margin-right: -53px !important;
  color: #111 !important;
  font-weight: 300 !important;
  text-align: start;
}
.hero-btn{
  margin-left: 500px ;
  margin-bottom: 150px;

}

.Main-Title span img {
  height: 79px;
  width: auto;
  vertical-align: middle;
  margin: 0 10px;
}




/* ========== Tablet (≤ 991px) ========== */
@media (max-width: 991.98px) {
  .hero-title {
    font-size: 42px !important;
    margin-left: 40px;
  }
  .Main-Title {
    font-size: 50px !important;
    margin-right: 100px !important;
  }
  .subtitle-hero {
    font-size: 17px !important;
    padding: 20px 50px 0px 50px;
    margin-right: 60px !important;
    text-align: center;
  }
  .hero-btn {
    margin-left: 60px;
    margin-bottom: 100px;
  }
}

/* ========== Mobile (≤ 575px) ========== */
@media (max-width: 575.98px) {
  .hero-title {
    font-size: 28px !important;
    margin-left: 0;
    text-align: center;
  }
  .Main-Title {
    font-size: 34px !important;
    margin-right: 0 !important;
    text-align: center;
  }
  .subtitle-hero {
    font-size: 15px !important;
    padding: 10px 20px 0px 20px;
    margin-right: 0 !important;
    text-align: center;
  }
  .hero-btn {
    margin: 30px auto 60px;
    display: block;
  }
  .Main-Title span img {
    height: 63px;
    width: auto;
    vertical-align: middle;
    margin: 0 10px;
  }
  .icon-growth {
    font-size: 53px !important;
    color: black;
  }
}

/* 🔹 Base animation setup (hidden by default) */
.animate-left,
.animate-right {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1.5s ease;
}

/* Left and right specific directions */
.animate-left {
  transform: translateX(-80px);
}

.animate-right {
  transform: translateX(80px);
}

/* 🔹 When element becomes visible */
.animate-show {
  opacity: 1;
  transform: translateX(0) translateY(0);
}

/* Base hidden state */
.animate-fade-slide {
  opacity: 0;
  transform: translateY(-50px) scale(0.8); /* slide from top + slight shrink */
  transition: opacity 1s ease, transform 1s ease;
}

/* Visible state */
.animate-fade-slide.show {
  opacity: 1;
  transform: translateY(0) scale(1); /* normal position + size */
}



/* ========== Services section start ========== */
.services-section {
  background-color: #fff;
  background-image: 
    repeating-linear-gradient(0deg, #ccc 0, #ccc 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(90deg, #ccc 0, #ccc 1px, transparent 1px, transparent 10px);
  background-size: 20px 20px;
}

.services-section h1 {
  color: #1154e6; /* blue text */
  line-height: 1.3;
  
}

.services-section .icon-star {
  font-size: 40px;
  color: black;
}

.services-section .icon-growth {
  font-size: 65px;
  color: black;
}

.services-section p {
  font-size: 16px;
  line-height: 1.6;
}

.services-section .btn {
  background-color: #1154e6;
  border: none;
  font-size: 18px;
   transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}


.services-section .btn:hover{
  background-color: #0077cc; /* same as get-in-touch-btn hover */
  transform: scale(1.08);    /* zoom effect */
  box-shadow: 0 8px 20px rgba(0, 59, 181, 0.4); /* glowing shadow */
  color: #fff;
}

/* ========== Services section end ========== */

:root{
      --bg:#000;
      --accent:#ffffff;
    }

    /* Section wrapper */
    .svc-section {
      padding: 40px 36px 80px;
      text-align: center;
    }

    .svc-title {
      font-size: 3.5rem;
      font-weight: 700;
      margin-bottom: 100px;
      color: #fff;
    }

    /* Grid area */
    .svc-grid {
      position: relative;
      max-width: 1180px;
      margin: 0 auto;
    }

    /* Card style */
    .svc-card {
      background: transparent;
      border: 1.5px solid rgba(255,255,255,0.9);
      border-radius: 48px;
      padding: 45px 45px;
      min-height: 280px;
      transition: transform .28s ease, background .28s ease;
      text-align: left;
    }
    .svc-card:hover{
      transform: translateY(-6px);
      background: rgba(255,255,255,0.02);
    }

    /* header inside card: icon | line | title */
    .svc-card .svc-header {
      display:flex;
      align-items:center;
      gap:14px;
      margin-bottom:18px;
    }

    .svc-card .svc-icon {
      width:64px;
      height:56px;
      display:inline-flex;
      align-items:center;
      justify-content:center;
      font-size:28px;
      color:var(--accent);
      border-radius:6px;
      /* icon drawn white; keep icon background transparent */
    }

    .svc-card .svc-divider {
      width:3px;
      height:42px;
      background: rgba(255,255,255,0.95);
      border-radius:2px;
      margin-right:8px;
    }

    .svc-card h5 {
      font-size:26px;
      font-weight:600;
      margin:0;
      color: #fff;
    }

    .svc-card p {
      font-size:16px;
      color: rgba(255,255,255,0.78);
       line-height: 1.5;
        margin-top: 19px;
        margin-left: 82px;
        text-align: justify;
    }
/* Arrows left / right — vertically centered */
.svc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 96px;              /* increased size */
  height: 96px;             /* increased size */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  opacity: .75;
  cursor: pointer;
  user-select: none;
}

/* bigger SVG and thicker stroke for more presence */
.svc-arrow svg {
  width: 72px;
  height: 72px;
  stroke: rgba(255,255,255,0.95);
  stroke-width: 5;
  fill: none;
}

/* move arrows further from the content (tune -220px / -200px as needed) */
.svc-arrow--left { left: -160px; }
.svc-arrow--right { right: -160px; }

/* spacing between card rows */
.svc-row { margin-bottom: 28px; }



.svc-section {
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}




@media (max-width: 991.98px) {
  .svc-title { font-size: 40px; }
  .svc-card { min-height: 240px; padding:28px; border-radius:36px; }
  .svc-arrow { width:80px; height:80px; }
  
  /* hide both arrows on tablet */
  .svc-arrow--left,
  .svc-arrow--right {
    display: none;
  }
}


@media (max-width: 575.98px) {
  .svc-title { font-size: 28px; text-align:center; }
  .svc-card { min-height:210px; padding:20px; border-radius:28px; }
  .svc-card h5 { font-size:18px; }
  .svc-arrow { display: none; } /* hide arrows on small screens */
}









/* ===================== NEW ANIMATION SET: 3D Lift & Flow ===================== */

/* --- 1. Continuous Background Flow (subtle idle animation) --- */

/* Keyframes for a slow, continuous horizontal background movement */
 @keyframes backgroundFlow {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.svc-card {

  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94), box-shadow 0.6s ease, background-position 10s ease-in-out;
  position: relative;
 
  background: linear-gradient(90deg, rgba(255,255,255,0.01) 0%, rgba(255,255,255,0.03) 50%, rgba(255,255,255,0.01) 100%);
  background-size: 200% 100%;
  animation: backgroundFlow 20s infinite;
  
 
  transform-style: preserve-3d;
}

.svc-card:hover {
  transform: translateY(-15px) rotateX(2deg) rotateY(2deg); 
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5), 0 0 50px rgba(107, 187, 255, 0.3);
  background-position: 50% 50%;
}

.svc-card::before {
  content: none;
}


.svc-divider {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.15);
  overflow: hidden; 
  transition: background 0.4s ease;
}

.svc-divider::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #6bbcff;
  transition: left 0.4s ease;
}

.svc-card:hover .svc-divider::after {
  left: 0; 
}

.svc-card:hover .svc-icon {
    transform: scale(1.1) rotate(5deg);
    transition: transform 0.4s ease;
}



.svc-card h5,
.svc-card p {
  transition: transform 0.4s ease, color 0.4s ease;
}

.svc-card:hover h5 {
  transform: translateY(-6px);
  color: #6bbcff; 
}

.svc-card:hover p {
  transform: translateY(2px);
  color: rgba(255,255,255,0.95);
}

.svc-arrow {
    transition: transform 0.3s ease-out;
}

.svc-arrow:hover {
    transform: scale(1.1); }


.svc-arrow:hover svg polyline {
    stroke: #6bbcff;
    transition: stroke 0.3s ease;
}



.svc-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
}


.svc-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  opacity: 0;
  transform: translateX(100%);
  transition: transform 1.2s ease-in-out, opacity 1.2s ease-in-out;
}


.svc-slide.active {
  left: 0;
  transform: translateX(0);
  opacity: 1;
  position: relative;
}

.svc-slide.prev {
  transform: translateX(-100%);
  opacity: 0;
}




.svc-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.svc-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.3);
  cursor: pointer;
  transition: background 0.3s ease;
}

.svc-dot.active {
  background: #6bbcff;
}





/* === Fade in from top for the first slide === */
@keyframes fadeDownFromTop {
  0% {
    opacity: 0;
    transform: translateY(-40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.svc-slide.first-appear {
  animation: fadeDownFromTop 1.2s ease forwards;
}





/* ========== Processes section start ========== */

/* variables */
:root {
  --bg: #000;
  --white: #ffffff;
  --blue: #1154e6;
  --muted: rgba(255,255,255,0.78);
}
/* 
.process-section {
  background: var(--bg);
  color: var(--white);
  position: relative;
  overflow: hidden;
} */


.process-section {
  background: var(--bg);
  color: var(--white);
  position: relative;
  overflow: visible;
  text-align: center;
}

/* big decorative "8" background (double-border-like effect) */
.process-bg-number {

   
 position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    width: 43vw;
    max-width: 926px;
    height: 2705px;
    background: url(../images/8number-01.png) no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
}



/* Title */
.process-title {
  font-size: 73px;
  margin-bottom: 71px;
  font-weight: 600;
  color: var(--white);
  z-index: 2;
}

.blue-text{
  color: #195be9;
}



/* .process-step {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: -30px;  
  left: 50%;
  transform: translateX(-50%);
  width: 70%;      
  height: 1px;
  background: rgba(255,255,255,0.4); 
} */

/*==============animationa================*/

.process-step {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  padding-bottom: 40px;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 70%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  transition: transform 1s ease;
}

/* When step is animated (from AOS), grow the line */
.process-step.aos-animate:not(:last-child)::after {
  transform: translateX(-50%) scaleX(1);
}


/* Spotlight scroll effect */
.process-step {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  position: relative;
  z-index: 2;
}

.process-step.active {
  opacity: 1;
  transform: translateY(0);
  z-index: 3;
}

.process-step:not(.active) {
  opacity: 0;
  transform: translateY(60px);
}






/* 
.process-bg-number.bottom-eight {
 
  position: absolute;
    bottom: 280px;
    left: 50%;
    transform: translateX(-50%) translateY(0%);
    width:  43vw;
    max-width: 835px;
    height: 909px;
    background: url(../images/8number-01.png) no-repeat center center;
    background-size: contain;
    pointer-events: none;
    z-index: 0;
    opacity: 0.8;
} */





/*============================*=======================*/

/* Timeline vertical line */
.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 4px;
  height: 0; /* start hidden */
  background: linear-gradient(to bottom, #00c6ff, #0072ff); /* blue gradient line */
  transform: translateX(-50%);
  transition: height 0.4s ease-out;
  z-index: 0;
}

/* Ensure steps are above the line */
.process-step {
  position: relative;
  margin: 60px 0;
  z-index: 1;
}

/* Step numbers styled left side */
.step-number {
  display: block;
  font-size: 20px;
  font-weight: bold;
  color: #0072ff;
  margin-bottom: 10px;
}





.step-content {
  display: inline-flex;     /* number + heading inline */
  align-items: center;      /* vertical alignment */
  justify-content: center;  /* center horizontally */
  gap: 8px;                 /* space between number and heading */
  flex-direction: row;      /* number stays left, heading right */
  flex-wrap: wrap;          /* allow wrapping for small screens */
}

.step-number {
  font-size: 28px;
  font-weight: 300;
  color: #ccc;
}

.step-content h5 {
  font-size: 50px;
  font-weight: 600;
  color: #fff;
  margin: 0;
  display: inline-block;
}

.step-content p {
  width: 100%;
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 300;
  color: #fff;
}



/* skills sections*/
/* Skills Section */
.skills-section {
  background: url('../images/download.jpg') no-repeat center center/cover;
  height:42vh; /* full height like second image */
  width: 100%;
  display: flex;
  align-items: center; /* center vertically */
  justify-content: flex-start; /* text starts from left */
  color: white;
  position: relative;
  overflow: hidden;
  padding-left: 0%; /* add nice left spacing */
}

/* Dark overlay for readability */
.skills-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}

.skills-section .skills-container {
  position: relative;
  z-index: 2;
  max-width: 95%;
  white-space: normal;
}

/* Text styling to match second image */


/* Responsive */
@media (max-width: 1200px) {
  .skills-section h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 768px) {
  .skills-section h1 {
    font-size: 2.5rem;
    line-height: 1.4;
  }
}



@media (max-width: 991px) {
  .skills-section {
    height: 50vh; /* smaller height on tablets */
    margin-top: -20%;
  }
}

/* 📱 Mobile screens (≤ 575px) */
@media (max-width: 575px) {
  .skills-section {
    height: 40vh; /* even smaller on phones */
  }
}



/* .marquee {
 
  animation: scroll 20s  infinite;
  
}

@keyframes scroll {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
} */


.marquee {
  position: relative;
  width: 100%;
  min-height: 120px;
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
}

.marquee-inner {
  display: inline-flex;
  animation: scroll 25s linear infinite;
  margin-top: 9%;
  z-index: 2;
}

.marquee-inner span {
  font-weight: bold;
  font-size: 7.5rem;
  color: white;
  padding-right: 2rem;
}

/* Base scroll */
@keyframes scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Reverse scroll */
@keyframes scroll-reverse {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}

/* ✅ Tablet and smaller */
@media (max-width: 991px) {
  .marquee-inner span {
    font-size: 5rem;
    padding-right: 1.5rem;
  }

  .marquee-inner {
    animation-duration: 20s;
    margin-top: 10%;
  }

  .marquee::after {
    content: "HTML * CSS * ReactJS * Python * Java * C++ * JavaScript * PHP * TypeScript * SQL * HTML * CSS * ReactJS * Python * Java * C++ * JavaScript * PHP * TypeScript * SQL *";
    position: absolute;
    bottom: -80px;
    left: 0;
    white-space: nowrap;
    font-weight: bold;
    font-size: 5rem;
    color: white;
    padding-right: 1.5rem;
    animation: scroll-reverse 20s linear infinite;
  }
}

/* ✅ Phones */
@media (max-width: 575px) {
  .marquee-inner span {
    font-size: 3rem;
    padding-right: 1rem;
  }

  .marquee-inner {
    animation-duration: 20s;
    margin-top: 30%;
  }

  .marquee::after {
    font-size: 3rem;
    bottom: -0px;
    margin-bottom:20%;
    padding-right: 1rem;
    animation: scroll-reverse 20s linear infinite;
  }
}

/* Small screens: reduce size of image boxes */
@media (max-width: 991.98px) {
  .process-bg-number {
     font-size: 800px;
      right: 2%; 
      top: 8%;
     -webkit-text-stroke: 5px rgba(17,85,230,0.12); 
    
    }
  
  
    .process-image-box { width: 260px; height: 260px; }
  .step-number { min-width: 56px; font-size: 24px; }
  .step-number {
  font-size: 42px !important;
  font-weight: 600;
}

/* step content (title + paragraph) */
.step-content h5 {
  font-size: 22px;
}

.step-content p {
  font-size: 16px;
}

  
}

/* Mobile */
@media (max-width: 575px) {
  .process-bg-number { 
       display: block;
        position: absolute;
         bottom: 20;
         top: 36%;
        left: 50%;
        max-width: 450px;
        transform: translateX(-50%) translateY(-20%);
        width: 100vw; 
        height: 400px; 
        aspect-ratio: 1 / 3.3; 
        background: url(../images/8number-01.png) no-repeat center center;
        background-size: contain;
        pointer-events: none;
        user-select: none;
        z-index: 0;
        opacity: 1.5;
  
  
  } 
  
  /* hide giant bg number on small screens */
  .process-image-box { width: 180px; height: 180px; margin: 0 auto 10px; }
  .step-number { min-width: 46px; font-size: 20px; }
  .step-content p { max-width: 100%; }
  .process-title { 
    font-size: 25px;
    margin-top: -1px;    
    margin-bottom: 12px;
 }

.svc-section {
    padding: 39px 31px 31px;
    text-align: center;
}



  .step-number {
  font-size: 28px !important;
}

/* step content (title + paragraph) */
.step-content h5 {
  font-size: 31px;
}

.step-content p {
  color: white;
  font-size: 16px;
  font-weight: 300;
}



}

@media only screen and (max-width: 400px) {
  .process-bg-number {
        width: 92vw;
        height: 390px;
        top: 18%;     /* adjust vertical position */
    transform: translateX(-50%) translateY(-10%);
  }
}

/* helper: ensure content sits above bg number */
.process-section .container > .row,
.process-section .container > .row > .col-lg-6 {
  position: relative;
  z-index: 2;
}


/* industries-section.css  */

/* :root {
  --blue: #1154e6;
  --faint-blue: #deecff;
  --card-radius: 28px;
  --text-dark: #0b0b0b;
}

.industries-section {
  background: #fff;
  color: var(--text-dark);
}


.industries-card {
  background: var(--faint-blue);
  border-radius: var(--card-radius);
  padding: 44px 42px;
  min-height: 700px;
  box-shadow: 0 0 0 1px rgba(17,85,230,0.03) inset;
  overflow: visible;
  position: relative;
  margin-top: 30px;
}

.industries-card .card-title {
  color: var(--blue);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
  text-align: left;
}

.industry-item { margin-bottom: 60px; }

.industry-head {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 6px;
  color: #111;
}

.industry-desc {
  margin: 0;
  color: #333;
  font-size: 20px;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
}

.industries-card .card-accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 110px;
  height: 110px;
  pointer-events: none;
  z-index: 1;
}

.industries-card > * { position: relative; z-index: 2; }


 */


/* 
.left-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: 180px;
  gap: 0; 
  position: relative;
  overflow: hidden;
} */


:root {
  --blue: #1154e6;
  --faint-blue: #deecff;
  --card-radius: 28px;
  --text-dark: #0b0b0b;
}

/* SECTION BASE */
.industries-section {
  background: #fff;
  color: var(--text-dark);
  overflow: hidden;
}

/* === TWO-COLUMN SCROLL SETUP === */
.scroll-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px; /* spacing between columns */
  height: 847px;
  overflow: hidden;
  position: relative;
  padding-right: 5px;
  margin-top: -11%;
  width: 100%;
}



.scroll-column {
  overflow: hidden;
  position: relative;
}

.scroll-track {
  display: flex;
  flex-direction: column;
  gap: 12px; /* spacing between images vertically */
}

.scroll-track img {
  width: 100%;
  height: auto; /* natural height for each image */
  object-fit: contain; /* show entire image without cropping */
  display: block;
  border-radius: 10px;
}

/* === SCROLL ANIMATIONS === */
@keyframes scroll-up {
  from { transform: translateY(0); }
  to { transform: translateY(-50%); }
}

@keyframes scroll-down {
  from { transform: translateY(-50%); }
  to { transform: translateY(0); }
}

/* Assign animation to each column */
.scroll-up .scroll-track {
  animation: scroll-up 30s linear infinite;
}

.scroll-down .scroll-track {
  animation: scroll-down 30s linear infinite;
}

/* Pause animation on hover */
.scroll-column:hover .scroll-track {
  animation-play-state: paused;
}

/* Move the first column slightly down */
.scroll-up {
  transform: translateY(40px); /* adjust 20–60px as you like */
}


.scroll-columns {
  transform: translateX(-50px);
}

@media (max-width: 991px) {
  .scroll-columns {
    transform: translateX(0px);
  }
}

@media (max-width: 575px) {
  .scroll-columns {
    transform: translateX(0px);
  }
}



/* === RIGHT SIDE CARD === */
.industries-card {
    background: var(--faint-blue);
    border-radius: var(--card-radius);
    padding: 60px 60px 2px;
    min-height: 650px;
    width: 100%;
    max-width: 781px;
    box-shadow: 0 0 0 1px rgba(21, 88, 231, 0.03) inset;
    position: relative;
    margin-top: 5%;
    align-self: flex-start;     /* Keep top aligned in flex/grid */


}

.industries-card .card-title {
  color: var(--blue);
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 40px;
}

.industry-item { margin-bottom: 60px; }

.industry-head {
  font-size: 34px;
  font-weight: 500;
  color: #111;
}

.industry-desc {
  color: #333;
  font-size: 20px;
  font-weight: 300;
  max-width: 520px;
  line-height: 1.6;
}

.industries-card .card-accent {
  position: absolute;
  right: -18px;
  bottom: -18px;
  width: 110px;
  height: 110px;
  pointer-events: none;
}

.industries-card > * {
  position: relative;
  z-index: 2;
}



.scroll-up .scroll-track {
  animation: scroll-up 32s linear infinite;
}

.scroll-down .scroll-track {
  animation: scroll-down 32s linear infinite;
}


/* Move the entire first column slightly downward */
.scroll-up {
  transform: translateY(0px); /* adjust value as needed */
}

/* Add these adjustments below your existing .scroll-track img styles *


/* Responsive (mobile) */
/* @media (max-width: 575.98px) {
  .left-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 180px;
  }

  .left-grid .img-box {
    transform: none !important;
  }

  .left-grid .item1,
  .left-grid .item2,
  .left-grid .item3,
  .left-grid .item4,
  .left-grid .item5,
  .left-grid .item6 {
    grid-row: auto;
  }
} */




/* Responsive */
@media (max-width: 991.98px) {
  .industries-card {
    padding: 36px 30px;
    min-height: 400px;
  }
  .industry-head { font-size: 26px; }
  .industry-desc { font-size: 16px; }
  .left-grid { grid-auto-rows: 150px; gap: 14px; }
}

@media (max-width: 575.98px) {
  .left-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 140px;
    gap: 12px;
  }
  .industries-card .card-accent { display: none; }
  .yellow-box-text { font-size: 18px; padding: 14px; }
}


/* ================== START FAQ SECTION ================== */

.faq {
  background: #fff !important;
  text-align: center;
  padding: 0;
  margin: 0;
}

.faq-title {
  font-size: 60px !important;
  padding: 0px 25px 10px 140px;
}
.faq-title span {
  color: #1154e6 !important;
}

.faq-section {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px 0 20px; 
}

.faq-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* remove last subtitle margin */
.faq-subtitle {
  font-size: 16px;
  color: #000000;
  padding: 4px 50px;
  text-align: center;
  margin-bottom: 20px; /* reduce space */
}

.faq-subtitle:last-child {
  margin-bottom: 0;
}

.faq-item {
  border: 1px solid black;
  border-radius: 12px;
  margin: 15px 0;
  padding: 15px 20px;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-item.active {
  background: #f9f9f9;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 300;
  font-size: 24px;
}

.faq-answer {
  margin-top: 10px;
  font-weight: 300;
  display: none;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-toggle {
  font-size: 22px;
  font-weight: bold;
}

/* -------- Tablet (≤ 991px) -------- */
@media (max-width: 991.98px) {
  .faq-title {
    font-size: 32px !important;
    padding: 0px 20px 10px 40px; /* reduce left padding */
    text-align: center;
  }
}

/* -------- Mobile (≤ 575px) -------- */
@media (max-width: 575.98px) {
  .faq-title {
    font-size: 24px !important;
    padding: 0px 10px 8px 10px; /* minimal padding */
    text-align: center;
    margin-top: -30px;
  }
}

/* --------tablet Responsive (≤ 768px) -------- */
@media (max-width: 768px) {
  .faq-section {
    padding: 10px;
  }

  .faq-question {
    font-size: 16px;
  }

  .faq-answer {
    font-size: 13px;
  }
}

/* ================== END FAQ SECTION ================== */









/* ================== START CONTACT SECTION ================== */

.small-text {
  font-size: 22px !important;
  font-weight: 200 !important;
}

.cta-text h5 {
  font-size: 25px !important;
  font-weight: 400 !important;
}

.cta-text p {
  font-size: 18px !important;
  font-weight: 200 !important;
}

.contact-cta {
  padding: 50px 10px !important;
}

.contact-cta .cta-box {
  background-color: #1154e6;
  padding: 60px 40px;
  border-radius: 40px;
}

.contact-cta .cta-text p,
.contact-cta .cta-text h5 {
  color: #fff;
  line-height: 1.6;
}

.contact-cta .btn {
  font-weight: 500;
  color: #1154e6;
}

/* -------- Tablet (≤ 991px) -------- */
@media (max-width: 991.98px) {
  .small-text {
    font-size: 20px !important;
  }
  .cta-text h5 {
    font-size: 22px !important;
  }
  .cta-text p {
    font-size: 16px !important;
  }
  .contact-cta {
    padding: 70px 20px !important;
  }
  .contact-cta .cta-box {
    padding: 50px 30px;
    border-radius: 28px;
  }
}

/* -------- Mobile (≤ 575px) -------- */
@media (max-width: 575.98px) {
  .small-text {
    font-size: 18px !important;
    text-align: center;
  }
  .cta-text h5 {
    font-size: 20px !important;
    text-align: center;
  }
  .cta-text p {
    font-size: 15px !important;
    text-align: center;
  }
  .contact-cta {
    padding: 50px 15px !important;
  }
  .contact-cta .cta-box {
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    margin-top: -60px;
  }
  .contact-cta .btn {
    display: block;
    margin: 20px auto 0;
  }
}

/* ================== END CONTACT SECTION ================== */


  