/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

/* BODY */
body {
  /* OVERFLOW-X: hidden; */
  overflow-x: hidden;
  background-color: #f4f6f8;
  color: #222;
}

/* HERO */
.hero {
  min-height: 100vh;
  display: flex;
  padding: 60px;
  background-color: #127F9A;
  background-image:  linear-gradient(120deg, #127F97);
  color: #fff;
}

.highlight {
  color: #f6763c;
}

/* LEFT CONTENT */
.hero-left {
  width: 55%;
  padding-right: 40px;
}

.hero-left h1 {
  font-size: 38px;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
  margin-bottom: 30px;
  max-width: 640px;
}

/* CTA */
.cta-group {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 22px;
  border-radius: 6px;
  font-weight: bold;
  text-decoration: none;
}

.primary {
  border: 2px solid #f6763c;
  color: #fff;
}

.secondary {
  border: 2px solid #f6763c;
  color: #fff;
}

/* FORM */
.hero-form {
  width: 45%;
  background: #ffffff;
  color: #000;
  padding: 30px;
  border-radius: 12px;
}

.hero-form h2 {
  margin-bottom: 10px;
}

.form-info {
  font-size: 14px;
  margin-bottom: 20px;
  color: #555;
}

.hero-form input,
.hero-form select,
.hero-form textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.row {
  display: flex;
  gap: 10px;
}

.captcha-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #d3d3d3;
  padding: 15px;
  border-radius: 4px;
  background: #f9f9f9;
  margin-bottom: 15px;
}

.captcha-check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
}

.captcha-check input {
  width: 18px;
  height: auto;
}

.captcha-logo {
  text-align: right;
  font-size: 11px;
  color: #555;
}

.hero-form button {
  width: 100%;
  padding: 12px;
  background: #f6763c;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  cursor: pointer;
}

/* page 2 */

:root {
  --primary: #f6763c;
  --secondary: #127f97;
  --white: #fff;
  --black: #000;
  --gray: #555;
}

/* SECTION */
.services-section {
  padding: 80px 80px;
}

.services-header {
  max-width: 2000px;
  margin-left: 0px;
  margin-bottom: 60px;
}

.services-header h2 {
  font-size: 34px;
  color: var(--black);
  margin-bottom: 20px;
}

.services-header span {
  margin-left: 0px;
  color: var(--primary);
  margin-right: 0px;
}

.services-header p {
  color: var(--gray);
  margin-right: 0px;
  line-height: 1.7;
}

/* BOX */
.services-box {
  display: flex;
  overflow: visible;
  border: 1px solid #127f97;
  border-radius: 4px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* HIDE RADIOS */
.services-box input {
  display: none;
}

/* LEFT PANEL */
.services-list {
  width: 40%;
  background: linear-gradient(180deg, var(--secondary), #0e6b82);
  padding: 40px;
}

.service-item {
  display: block;
  padding: 20px 0;
  color: var(--white);
  font-size: 18px;
  opacity: 0.6;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: 0.3s ease;
}

.service-item span {
  color: var(--primary);
  font-weight: bold;
  margin-right: 10px;
}

.service-item:hover {
  opacity: 1;
  transform: translateX(6px);
}

/* RIGHT PANEL */
.services-content {
  width: 60%;
  padding: 50px;
  background: var(--white);
  border: #127f97;
}

.content {
  display: none;
}

.content h3 {
  color: var(--black);
  font-size: 24px;
  margin-bottom: 15px;
}

.content p {
  color: var(--gray);
  line-height: 1.8;
}

/* CLICK LOGIC (THIS FIXES YOUR ISSUE) */
#tab1:checked~.services-content .content-1,
#tab2:checked~.services-content .content-2,
#tab3:checked~.services-content .content-3,
#tab4:checked~.services-content .content-4 {
  display: block;
}

/* ACTIVE LEFT ITEM */
#tab1:checked~.services-list label[for="tab1"],
#tab2:checked~.services-list label[for="tab2"],
#tab3:checked~.services-list label[for="tab3"],
#tab4:checked~.services-list label[for="tab4"] {
  opacity: 1;
  font-weight: bold;
  transform: translateX(6px);
}

/*  page 3  */

/* ===== THIRD PAGE (SAAS SECTION) ===== */

.saas-section {
  padding: 80px 0;
  background: #fff;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.saas-header {
  text-align: center;
  margin-bottom: 40px;
}

.saas-header h1 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
}

.column p {
  margin-bottom: 18px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
}

.column h3 {
  text-align: left;
  margin-bottom: 10px;
}

.benefits-list {
  list-style: none;
}

.benefits-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
  text-align: left;
}

.benefits-list li::before {
  content: "→";
  position: absolute;
  left: 0;
  color: #127f97;
  font-weight: bold;
}

/* page 4 */

/* ===== SAAS BACKGROUND SECTION ===== */

.saas-bg-section {
  width: 100%;
  padding: 4rem 0 4rem 1.5rem;
  background: #f9fafb;
  display: flex;
  flex: 2;
  justify-content: center;
}

.saas-content {
  max-width: 100vw;

  display: flex;
  align-items: center;
  /* vertical center */
  justify-content: space-between;
  gap: 3rem;
}

.saas-left {
  flex: 1;
}

.saas-left h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #222;
}

.saas-left p {
  font-size: 17px;
  color: #666;
  margin-bottom: 1.2rem;
  line-height: 1.6;
}

/* LIST STYLE */
.saas-list {
  list-style: none;
  padding-left: 1.2rem;
}

.saas-list li {
  background: #f6763c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 400;
  font-size: 20px;
  width: fit-content;
  max-width: 100%;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  position: relative;
  margin-bottom: 0.6rem;
}

/* ARROW */
.saas-list li::before {
  content: "➜";
  margin-right: 10px;
  font-weight: 900;
}

/* RIGHT IMAGE */
.saas-rigth {
  flex: 1;
  display: flex;
  justify-content: center;
}

.saas-rigth img {
  max-width: 100%;
  height: auto;
}

/*  page 5 */

/* Reset and General Setup */

.ai-section {
  text-align: center;
  padding: 60px 20px;
}

.ai-section h1 {
  font-size: 37px;
  font-weight: 700;
  color: #000;
  margin-bottom: 90px;
}

.flow-wrapper {
  position: relative;
  width: 116%;
  max-width: 68.75rem;
  /* 1100px ÷ 16 */
  aspect-ratio: 1100 / 450;
  /* keeps exact proportion */
  margin-inline: auto;
}

/* SVG Line Alignment */
.curve-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.flow-path {
  display: none;
  /* Desktop */
}

/* Individual Item Boxes */
.item {
  position: absolute;
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

.item p {
  font-size: 16px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
}

/* The Main Circles */
.main-circle {
  width: 155px;
  height: 155px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  /* 3D depth effect */
  position: relative;
}

.main-circle img {
  width: 60px;
  height: 60px;
}

/* The Connection Dots on the Dotted Line */
.anchor-dot {
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  margin: 15px 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
  position: relative;
}

.anchor-dot::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* THEMED COLORS */
.orange-theme .anchor-dot::after {
  background-color: #f58220;
}

.orange-theme .main-circle {
  border-bottom: 8px solid #f58220;
}

.teal-theme .anchor-dot::after {
  background-color: #127f97;
}

.teal-theme .main-circle {
  border-top: 8px solid #127f97;
}

/* arrangement of circle*/
.item1 {
  left: 0;
  top: 0;
}

.item2 {
  left: 220px;
  bottom: 0;
}

.item3 {
  left: 440px;
  top: 0;
}

.item4 {
  left: 660px;
  bottom: 0;
}

.item5 {
  left: 880px;
  top: 0;
}

/* Spacing Adjustments */
.item-top p {
  margin-bottom: 5px;
}

.item-bottom p {
  margin-top: 5px;
}

/* Our Work */

/* ===== OUR WORK SECTION ===== */
.our-Work {
  padding: 4rem 1rem;
  background: #fff;
  overflow: hidden;
}

/* ===== TITLE ===== */
.Work-Title {
  text-align: center;
  max-width: 900px;
  margin: auto;
}

.Work-section-title {
  font-size: 2.4rem;
  font-weight: 700;
}

.work-title-line {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.8rem 0 1.2rem;
}

.Work-line-one {
  width: 40px;
  height: 4px;
  background: #ff6a00;
}

.Work-line-two {
  width: 12px;
  height: 4px;
  background: #ddd;
}

.Work-Tital-secont {
  font-size: 1rem;
  color: #666;
}

.our-work-redirect {
  margin-top: 1rem;
  background: none;
  border: none;
  color: #ff6a00;
  font-weight: 600;
  cursor: pointer;
}

/* ===== CARD SCROLL CONTAINER ===== */
.Work-Card-Container {
  margin-top: 3rem;
  position: relative;

  display: flex;
  gap: 1.5rem;

  height: 430px;
  overflow-x: auto;
  overflow-y: hidden;

  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 1rem;
}

/* Hide scrollbar */
.Work-Card-Container::-webkit-scrollbar {
  display: none;
}

.Work-Card-Container {
  scrollbar-width: none;
}

/* ===== CARD ===== */
.Work-Card {
  min-width: 320px;
  max-width: 320px;
  height: 100%;

  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;

  transition: transform 0.3s ease;
}

.Work-Card:hover {
  transform: translateY(-6px);
}

/* ===== IMAGE ===== */
.CardImage img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* ===== CONTENT ===== */
.Card-Contant {
  padding: 1.2rem;
  flex: 1;
}

.Card-Title {
  font-size: 1.2rem;
  font-weight: 700;
}

.Card-Second-Title {
  font-size: 0.95rem;
  color: #555;
  margin: 0.4rem 0;
}

.Card-pera {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
}

/* ===== BUTTON ===== */
.study {
  margin-top: 1rem;
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
}

/* ===== NAV BUTTONS ===== */
.work-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);

  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;

  opacity: 0;
  transition: 0.3s;
}

.work-nav-btn.left {
  left: 10px;
}

.work-nav-btn.right {
  right: 10px;
}

.Work-Card-Container:hover+.work-nav-btn,
.work-nav-btn:hover {
  opacity: 1;
}

/* ===== MOBILE ===== */
@media (max-width: 768px) {
  .Work-Card {
    min-width: 260px;
  }

  .Work-Card-Container {
    height: 420px;
  }
}

/* page 6 */

/* Header Text */
.header-section {
  margin-bottom: 60px;
  margin-top: 100px;
  text-align: center;
  padding: 0 20px;
}

.header-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
}

.header-section p {
  font-size: 16px;
  color: #666;
  max-width: 800px;
  margin: 0 auto;
}

/* Grid Layout - 3 Columns */
.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  border-color: #f58220;
}

/* Card Styling */
.card {
  padding: 30px 20px;
  border-radius: 15px;
  border: 1px solid #f58220;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05);
}

/* WHITE CIRCULAR ICON BOX */
.icon-box {
  width: 60px;
  height: 60px;
  background-color: #ffffff;

  border-radius: 50%;
  display: flex;

  align-items: center;
  justify-content: center;
  margin-bottom: 25px;

  /* 3D shadow effect matching your image */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.material-symbols-outlined {
  font-size: 30px;
}

.card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: #f58220;
}

.card p {
  font-size: 15px;
  line-height: 1.4;
  color: #555;
  margin: 0;
  text-align: center;
}

/* SPECIFIC BACKGROUND AND ICON COLORS */
.healthcare {
  background-color: white;
}

.healthcare .material-symbols-outlined {
  color: #f58220;
}

.retail {
  background-color: #fcf1e7;
}

.retail .material-symbols-outlined {
  color: #4caf50;
}

.realestate {
  background-color: white;
}

.realestate .material-symbols-outlined {
  color: #f58220;
}

.finance {
  background-color: #fcf1e7;
}

.finance .material-symbols-outlined {
  color: #dff9ff;
}

.ecommerce {
  background-color: white;
}

/* Soft Red/Coral */
.ecommerce .material-symbols-outlined {
  color: #f58220;
}

.hospitality {
  background-color: #fcf1e7;
}

/* Soft Purple/Blue */
.hospitality .material-symbols-outlined {
  color: #3f51b5;
}

/* page 7 */

:root {
  --bg-color: #f0fdfe;
  --accent-teal: #f58220;
  --text-main: #333;
  --shadow-light: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-heavy: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.expertise-section {
  padding: 80px 20px;
  text-align: center;
  background-color: white;
}

.section-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 50px;
}

.tabs-container {
  max-width: 1000px;
  margin: 0 auto;
}

/* Tab Navigation */
.tab-controls {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 50px;
  border-bottom: 1px solid #d1d1d1;
  flex-wrap: wrap;
}

input[type="radio"] {
  display: none;
}

.tab-label {
  padding: 12px 15px;
  font-size: 17px;
  font-weight: 600;
  color: #888;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tab-label:hover {
  color: var(--accent-teal);
}

/* Logic for active tab underline */
#front-end:checked~.tab-controls label[for="front-end"],
#back-end:checked~.tab-controls label[for="back-end"],
#mobile:checked~.tab-controls label[for="mobile"],
#db:checked~.tab-controls label[for="db"] {
  color: var(--text-main);
  border-bottom: 3px solid var(--accent-teal);
}

/* Content Layout */
.tab-content {
  display: none;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  animation: fadeIn 0.4s ease-in-out;
}

/* Toggle Display */
#front-end:checked~.content-front-end,
#back-end:checked~.content-back-end,
#mobile:checked~.content-mobile,
#db:checked~.content-db {
  display: flex;
}

/* Tech Card Design */
.tech-card {
  background: #ffffff;
  width: 170px;
  height: 170px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-light);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.tech-card img {
  width: 70px;
  height: 70px;
  transition: all 0.4s ease;
}

/* Hover Name Label */
.tech-name {
  position: absolute;
  bottom: 20px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-teal);
  opacity: 0;
  transform: translateY(15px);
  transition: all 0.4s ease;
}

/* Card Hover States */
.tech-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-heavy);
}

.tech-card:hover img {
  transform: translateY(-12px) scale(0.85);
}

.tech-card:hover .tech-name {
  opacity: 1;
  transform: translateY(0);
}

/* Animation */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* page 8 */

.why-choose-saas {
  background: #ffffff;
  padding: 80px 20px;
}

.why-choose-saas h2 {
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  color: #222;
  margin-bottom: 60px;
  line-height: 1.3;
}

.features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px 60px;
}

.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.emoji {
  width: 46px;
  height: 46px;
  min-width: 46px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.emoji svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: #f58220;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.text h3 {
  font-size: 18px;
  font-weight: 600;
  color: #222;
  margin-bottom: 6px;
  text-align: left;
}

.text p {
  font-size: 14px;
  line-height: 1.6;
  text-align: left;
  color: #555;
}

/* page 9 */

/* SECTION */
.faq-section {
  background: linear-gradient(180deg, #fcf0e9, #fcf0e9);
  padding: 100px 15px;
  margin-bottom: 50px;
}

.faq-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 0.5fr 1.2fr;
  gap: 60px;
}

/* LEFT */
.faq-tag {
  letter-spacing: 2px;
  font-weight: 600;
  font-size: 20px;
  color: #f36b2b;
}

.faq-left {
  position: relative;
}

.faq-left h2 {
  font-size: 40px;
  margin: 14px 0;
  text-align: left;
}

.faq-left p {
  max-width: 420px;
  line-height: 1.6;
  text-align: left;
}

.faq-Title {
  position: sticky;
  top: 0;
  left: 0;
  padding-top: 22px;
  padding-bottom: 45px;
}

/* RIGHT */
.faq-right details {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 18px;
  transition: background 0.3s ease;
}

.faq-right details[open] {
  background: rgba(255, 255, 255, 0.22);
}

.faq-right summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 17px;
  font-weight: 600;
}

.faq-right summary::-webkit-details-marker {
  display: none;
}

/* PLUS / MINUS */
.sign {
  width: 20px;
  height: 20px;
  min-width: 20px;
  position: relative;
}

.sign::before,
.sign::after {
  content: "";
  position: absolute;
  background: #f36b2b;
  transition: 0.3s;
}

.sign::before {
  width: 100%;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.sign::after {
  width: 2px;
  height: 100%;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}

details[open] .icon::after {
  opacity: 0;
}

/* ANSWER */
.faq-right p {
  margin-top: 14px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  text-align: left;
}

/* page 10 */

.talk-section {
  padding: 60px 20px;
  background: #f6f7f9;
}

.talk-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* LEFT */
.left-area {
  width: 50%;
}

.left-area h2 {
  font-size: 32px;
  margin-bottom: 10px;
}

.sub-text {
  color: #666;
  margin-bottom: 30px;
}

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

.step-card {
  background: #fff;
  padding: 25px;
  border-radius: 14px;
  position: relative;
  min-height: 200px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.step-no {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #f36b2b;
  color: #fff;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.step-card h4 {
  margin-top: 40px;
}

.step-card p {
  color: #666;
  line-height: 1.6;
}

/* COLOR VARIANTS */
.step-card {
  background: #fcf0e9;
}

/* RIGHT */
.right-area {
  width: 50%;
}

.contact-form {
  background: #fff;
  padding: 30px;
  border-radius: 14px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
}

textarea {
  height: 120px;
  resize: none;
}

.talk-section .captcha-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 1px solid #ccc;
  padding: 12px;
  border-radius: 8px;
  margin: 20px 0;
}

.talk-section .captcha-logo {
  font-size: 12px;
  color: #666;
}

button {
  background: #f36b2b;
  color: #fff;
  padding: 14px 22px;
  border-radius: 30px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}

.contact-info {
  margin-top: 20px;
  font-size: 14px;
  color: #444;
}

.inner-column {
  width: 45vw;
}

.outer-box {
  width: fit-content;
}

/* ===============================================
   RESPONSIVE STYLES - ALL MEDIA QUERIES
   =============================================== */
/* TABLET - 1362px and above */
@media (min-width: 1362px) {
  .inner-column {
    width: 32vw;
  }
}

/* TABLET - 1024px and below */
@media (max-width: 1024px) {
  .inner-column {
    width: 45vw;
  }

  /* Hero Section */
  .hero {
    padding: 40px 30px;
    flex-direction: column;
    min-height: auto;
  }

  .hero-left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 40px;
  }

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

  .hero-form {
    width: 100%;
  }

  /* Services Section */
  .services-section {
    padding: 60px 30px;
  }

  .services-header h2 {
    font-size: 28px;
  }

  .services-box {
    flex-direction: column;
  }

  .services-list {
    width: 100%;
    padding: 30px;
  }

  .services-content {
    width: 100%;
    padding: 30px;
  }

  /* SaaS Section */
  .content-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .saas-header h1 {
    font-size: 28px;
  }

  /* SaaS Background Section */
  .saas-bg-section {
    min-height: auto;
    padding: 60px 0;
  }

  .saas-content {
    margin-left: 0;
    flex-direction: column;
  }

  .saas-left {
    background: rgba(255, 255, 255, 0.95);
    padding: 30px;
    border-radius: 12px;
    max-width: 100%;
  }

  .saas-left h2 {
    font-size: 28px;
  }

  .saas-left p {
    margin-right: 0;
  }

  .saas-list li {
    font-size: 16px;
    width: 100%;
  }

  /* AI Steps Section */
  .ai-section {
    height: 100rem;
  }

  .ai-section h1 {
    font-size: 28px;
    margin-bottom: 50px;
  }

  .flow-wrapper {
    width: 100%;
    height: auto;
    min-height: 800px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
  }

  .curve-svg {
    display: none;
  }

  .flow-path {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 170%;
    z-index: 1;
  }

  .item {
    position: relative;
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    width: 200px;
  }

  .item-bottom {
    flex-direction: column-reverse;
  }

  .item:nth-child(odd) {
    rotate: -90deg;
    margin-left: 25%;

    p {
      rotate: 90deg;
      padding-right: 5rem;
    }

    .main-circle {
      rotate: 180deg;
    }

    .main-circle img {
      rotate: 270deg;
    }
  }

  .item:nth-child(even) {
    rotate: 90deg;
    margin-right: 25%;

    p {
      rotate: 270deg;
      padding-left: 5rem;
    }

    .main-circle img {
      rotate: 270deg;
    }
  }

  .item5 {
    padding-right: 5%;
  }

  /* Industries Grid */
  .grid-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .header-section {
    margin-top: 60px;
  }

  .header-section h2 {
    font-size: 28px;
  }

  /* Technical Expertise */
  .tab-controls {
    gap: 10px;
  }

  .tab-label {
    font-size: 14px;
    padding: 10px;
  }

  .tech-card {
    width: 140px;
    height: 140px;
  }

  /* Why Choose Section */
  .features {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px 30px;
  }

  .why-choose-saas h2 {
    font-size: 26px;
  }

  /* FAQ Section */
  .faq-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-Title {
    position: static;
  }

  .faq-left h2 {
    font-size: 32px;
  }

  /* Talk/Contact Section */
  .talk-container {
    flex-direction: column;
  }

  .left-area,
  .right-area {
    width: 100%;
  }

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

/* MOBILE - 768px and below */
@media (max-width: 768px) {

  /* Hero Section */
  .hero {
    padding: 30px 20px;
  }

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

  .hero-left p {
    font-size: 15px;
  }

  .cta-group {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    text-align: center;
    width: 100%;
  }

  .hero-form {
    padding: 20px;
  }

  .hero-form h2 {
    font-size: 22px;
  }

  .row {
    flex-direction: column;
    gap: 0;
  }

  /* Services Section */
  .services-section {
    padding: 40px 20px;
  }

  .services-header h2 {
    font-size: 24px;
  }

  .service-item {
    font-size: 16px;
    padding: 15px 0;
  }

  .content h3 {
    font-size: 20px;
  }

  /* SaaS Section */
  .saas-section {
    padding: 50px 0;
  }

  .saas-header h1 {
    font-size: 24px;
    padding: 0 10px;
  }

  /* SaaS Background Section */
  .saas-bg-section {
    padding: 40px 0;
  }

  .saas-left h2 {
    font-size: 24px;
  }

  .saas-left p {
    font-size: 15px;
  }

  .saas-list li {
    font-size: 14px;
    padding: 10px 14px;
  }

  /* AI Steps Section */
  .ai-section {
    padding: 40px 15px;
    height: 80rem;
  }

  .ai-section h1 {
    font-size: 22px;
    margin-bottom: 40px;
    line-height: 1.4;
  }

  .flow-wrapper {
    min-height: 700px;
    gap: 25px;
  }

  .flow-path {
    width: 95%;
    height: 155%;
  }

  .item:nth-child(odd) {
    margin-left: 18%;
  }

  .item {
    width: 160px;
  }

  .main-circle {
    width: 120px;
    height: 120px;
  }

  .main-circle img {
    width: 45px;
    height: 45px;
  }

  .item p {
    font-size: 14px;
  }

  .item5 {
    padding-right: 0px;
  }

  .anchor-dot {
    width: 20px;
    height: 20px;
    margin: 10px 0;
  }

  /* Industries Grid */
  .grid-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .header-section {
    margin-top: 40px;
    margin-bottom: 40px;
  }

  .header-section h2 {
    font-size: 24px;
  }

  .card {
    padding: 25px 20px;
  }

  /* Technical Expertise */
  .expertise-section {
    padding: 50px 15px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 30px;
  }

  .tab-controls {
    gap: 5px;
    margin-bottom: 30px;
  }

  .tab-label {
    font-size: 12px;
    padding: 8px 6px;
  }

  .tech-card {
    width: 130px;
    height: 130px;
  }

  .tech-card img {
    width: 55px;
    height: 55px;
  }

  /* Why Choose Section */
  .why-choose-saas {
    padding: 50px 20px;
  }

  .why-choose-saas h2 {
    font-size: 22px;
    margin-bottom: 40px;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .feature-item {
    gap: 12px;
  }

  .emoji {
    width: 40px;
    height: 40px;
    min-width: 40px;
  }

  .text h3 {
    font-size: 14px;
  }

  .text p {
    font-size: 13px;
  }

  /* FAQ Section */
  .faq-section {
    padding: 60px 15px;
    margin-bottom: 30px;
  }

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

  .faq-left h2 {
    font-size: 28px;
  }

  .faq-left p {
    font-size: 14px;
  }

  .faq-right details {
    padding: 16px 18px;
    margin-bottom: 14px;
  }

  .faq-right summary {
    font-size: 15px;
    gap: 10px;
  }

  .faq-right p {
    font-size: 14px;
  }

  /* Talk/Contact Section */
  .talk-section {
    padding: 40px 15px;
  }

  .left-area h2 {
    font-size: 26px;
  }

  .sub-text {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .step-card {
    min-height: 160px;
    padding: 20px;
  }

  .step-no {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }

  .step-card h4 {
    font-size: 16px;
    margin-top: 30px;
  }

  .step-card p {
    font-size: 14px;
  }

  .contact-form {
    padding: 20px;
  }

  .contact-form .row {
    flex-direction: column;
  }

  button {
    width: 100%;
    padding: 14px;
  }
}

/* SMALL MOBILE - 480px and below */
@media (max-width: 480px) {

  /* Hero Section */
  .hero {
    padding: 25px 15px;
  }

  .hero-left h1 {
    font-size: 22px;
  }

  .hero-left p {
    font-size: 14px;
    margin-bottom: 20px;
  }

  .hero-form {
    padding: 15px;
  }

  .hero-form h2 {
    font-size: 20px;
  }

  .form-info {
    font-size: 13px;
  }

  .hero-form input,
  .hero-form select,
  .hero-form textarea {
    padding: 8px;
    font-size: 14px;
  }

  .captcha-box {
    flex-direction: column;
    gap: 10px;
    padding: 12px;
  }

  .captcha-logo {
    text-align: center;
  }

  /* Services Section */
  .services-section {
    padding: 30px 15px;
  }

  .services-header {
    margin-bottom: 30px;
  }

  .services-header h2 {
    font-size: 20px;
  }

  .services-header p {
    font-size: 14px;
  }

  .services-list {
    padding: 20px;
  }

  .service-item {
    font-size: 14px;
  }

  .services-content {
    padding: 20px;
  }

  .content h3 {
    font-size: 18px;
  }

  .content p {
    font-size: 14px;
  }

  /* SaaS Section */
  .saas-section {
    padding: 30px 0;
  }

  .container {
    padding: 0 15px;
  }

  .saas-header h1 {
    font-size: 20px;
  }

  .column p {
    font-size: 14px;
  }

  .column h3 {
    font-size: 16px;
  }

  .benefits-list li {
    font-size: 14px;
    padding-left: 25px;
  }

  /* SaaS Background Section */
  .saas-bg-section {
    padding: 30px 0;
  }

  .saas-left {
    padding: 20px;
  }

  .saas-left h2 {
    font-size: 20px;
  }

  .saas-left p {
    font-size: 14px;
  }

  .saas-list li {
    font-size: 13px;
    padding: 10px 12px;
  }

  /* AI Steps Section */

  .ai-section {
    height: 70rem;
  }

  .ai-section h1 {
    font-size: 18px;
    margin-bottom: 30px;
  }

  .flow-wrapper {
    gap: 20px;
    min-height: 600px;
  }

  .flow-path {
    display: block;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 150%;
    z-index: 1;
  }

  .item {
    width: 140px;
  }

  .main-circle {
    width: 100px;
    height: 100px;
  }

  .main-circle img {
    width: 40px;
    height: 40px;
  }

  .item p {
    font-size: 12px;
  }

  .item:nth-child(odd) {
    margin-left: 21%;
  }

  .item5 {
    padding-top: 3%;
    padding-left: 3%;
  }

  .anchor-dot {
    width: 16px;
    height: 16px;
    margin: 8px 0;
  }

  .anchor-dot::after {
    width: 10px;
    height: 10px;
  }

  /* Industries Grid */
  .header-section {
    margin-top: 30px;
    margin-bottom: 30px;
    padding: 0 15px;
  }

  .header-section h2 {
    font-size: 20px;
  }

  .header-section p {
    font-size: 14px;
  }

  .grid-container {
    padding: 0 15px;
    gap: 15px;
  }

  .card {
    padding: 20px 15px;
  }

  .card h3 {
    font-size: 16px;
  }

  .card p {
    font-size: 14px;
  }

  /* Technical Expertise */
  .expertise-section {
    padding: 40px 15px;
  }

  .section-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .tab-controls {
    gap: 3px;
    margin-bottom: 25px;
    padding-bottom: 10px;
  }

  .tab-label {
    font-size: 11px;
    padding: 6px 4px;
  }

  .tab-content {
    gap: 15px;
  }

  .tech-card {
    width: 100px;
    height: 100px;
  }

  .tech-card img {
    width: 40px;
    height: 40px;
  }

  .tech-name {
    font-size: 10px;
    bottom: 10px;
  }

  /* Why Choose Section */
  .why-choose-saas {
    padding: 40px 15px;
  }

  .why-choose-saas h2 {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .text h3,
  .text p {
    text-align: center;
  }

  /* FAQ Section */
  .faq-section {
    padding: 40px 15px;
    margin-bottom: 20px;
  }

  .faq-container {
    gap: 30px;
  }

  .faq-tag {
    font-size: 14px;
  }

  .faq-left h2 {
    font-size: 24px;
  }

  .faq-left p {
    font-size: 13px;
  }

  .faq-right details {
    padding: 14px 16px;
    margin-bottom: 12px;
  }

  .faq-right summary {
    font-size: 14px;
  }

  .faq-right p {
    font-size: 13px;
    margin-top: 12px;
  }

  /* Talk/Contact Section */
  .talk-section {
    padding: 30px 15px;
  }

  .talk-container {
    gap: 30px;
  }

  .left-area h2 {
    font-size: 22px;
  }

  .sub-text {
    font-size: 13px;
  }

  .step-card {
    min-height: 140px;
    padding: 15px;
  }

  .step-no {
    width: 32px;
    height: 32px;
    font-size: 12px;
    top: 15px;
    right: 15px;
  }

  .step-card h4 {
    font-size: 14px;
    margin-top: 25px;
  }

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

  .contact-form {
    padding: 15px;
  }

  input,
  textarea {
    padding: 10px;
    font-size: 14px;
  }

  textarea {
    height: 100px;
  }

  .talk-section .captcha-box {
    flex-direction: column;
    gap: 10px;
    padding: 10px;
  }

  button {
    font-size: 14px;
    padding: 12px;
  }

  .contact-info {
    font-size: 13px;
  }

  .contact-info p {
    margin-bottom: 5px;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f4f6f8;
}

/* ===== OUR WORK SECTION ===== */
.our-Work {
  padding: 4rem 1rem;
  background: #fff;
  overflow: hidden;
  position: relative;
}

/* ===== TITLE ===== */
.Work-Title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.Work-section-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.work-title-line {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
  margin: 0.8rem 0 1.2rem;
}

.Work-line-one {
  width: 40px;
  height: 4px;
  background: #ff6a00;
}

.Work-line-two {
  width: 12px;
  height: 4px;
  background: #ddd;
}

.Work-Tital-secont {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.our-work-redirect {
  margin-top: 1rem;
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
}

.our-work-redirect:hover {
  background: #e55f00;
}

/* ===== CARD SCROLL WRAPPER ===== */
.Work-Card-Wrapper {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  /* Space for nav buttons */
}

/* ===== CARD SCROLL CONTAINER ===== */
.Work-Card-Container {
  display: flex;
  height: fit-content;
  gap: 1.5rem;
  overflow-x: auto;
  overflow-y: hidden;
  /* scroll-behavior: smooth; */
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding: 1rem 0 2rem;
  /* scroll-snap-type: x mandatory; */
}

.Work-Card-Container:active {
  cursor: grabbing;
}

/* Hide Scrollbar */
.Work-Card-Container::-webkit-scrollbar {
  display: none;
}

.Work-Card-Container {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== CARD ===== */
.Work-Card {
  min-width: 320px;
  max-width: 320px;
  height: 480px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  flex-shrink: 0;
  scroll-snap-align: start;
}

.Work-Card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

/* ===== IMAGE ===== */
.CardImage {
  width: 100%;
  height: 180px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px 12px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
}

.CardImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

/* ===== CONTENT ===== */
.Card-Contant {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.Card-Title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #222;
  margin-bottom: 0.4rem;
  line-height: 1.3;
}

.Card-Second-Title {
  font-size: 0.95rem;
  color: #555;
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.Card-pera {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.5;
  flex: 1;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 1rem;
}

/* ===== BUTTON ===== */
.study {
  margin-top: auto;
  background: #ff6a00;
  color: #fff;
  border: none;
  padding: 0.6rem 1rem;
  border-radius: 6px;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
  align-self: flex-start;
  flex-shrink: 0;
}

.study:hover {
  background: #e55f00;
}

/* ===== NAV BUTTONS ===== */
.work-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    background 0.3s ease;
  font-size: 1.5rem;
  font-weight: bold;
  color: #ff6a00;
  user-select: none;
}

.work-nav-btn:hover {
  background: #ff6a00;
  color: #fff;
}

.work-nav-btn.left {
  left: 0;
}

.work-nav-btn.right {
  right: 0;
}

/* Show nav buttons on hover and when needed */
.Work-Card-Wrapper:hover .work-nav-btn {
  opacity: 1;
}

.work-nav-btn.visible {
  opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .Work-section-title {
    font-size: 1.8rem;
  }

  .Work-Card-Wrapper {
    padding: 0 20px;
  }

  .Work-Card {
    min-width: 280px;
    max-width: 280px;
    height: 460px;
  }

  .CardImage {
    height: 160px;
  }

  .work-nav-btn {
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }

  /* Always show nav buttons on mobile */
  .work-nav-btn {
    opacity: 1;
  }

  .work-nav-btn:active {
    opacity: 1;
    transform: translateY(-50%) scale(0.95);
  }
}

@media (max-width: 480px) {
  .our-Work {
    padding: 2rem 0.5rem;
  }

  .Work-section-title {
    font-size: 1.5rem;
  }

  .Work-Tital-secont {
    font-size: 0.9rem;
    padding: 0 1rem;
  }

  .Work-Card-Wrapper {
    padding: 0 10px;
  }

  .Work-Card {
    min-width: 260px;
    max-width: 260px;
    height: 440px;
  }

  .CardImage {
    height: 150px;
  }

  .Card-Contant {
    padding: 1rem;
  }

  .Card-Title {
    font-size: 1.1rem;
  }

  .work-nav-btn {
    width: 36px;
    height: 36px;
    font-size: 1.2rem;
  }
}

/* Add these styles to your existing CSS */

/* Prevent text selection during drag */
.Work-Card-Container {
  user-select: none;
}

/* Smooth transitions */
.Work-Card-Container {
  scroll-behavior: smooth;
  transition: scroll-behavior 0.3s ease;
}

/* Active state for better UX */
.Work-Card-Container.dragging {
  cursor: grabbing;
}

/* Ensure buttons are always visible on mobile */
@media (max-width: 768px) {
  .work-nav-btn {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.9);
  }

  .work-nav-btn:active {
    transform: translateY(-50%) scale(0.95);
    background: #ff6a00;
    color: white;
  }
}

/* Better scrollbar for debugging (optional) */
.Work-Card-Container.debug-scrollbar::-webkit-scrollbar {
  display: block;
  height: 6px;
}

.Work-Card-Container.debug-scrollbar::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

.Work-Card-Container.debug-scrollbar::-webkit-scrollbar-thumb {
  background: #ff6a00;
  border-radius: 3px;
}



/* ===== testimonial =====*/

.testimonial-section {
  padding: 80px 0;
  background: #fff;
}

.testimonial-container {
  max-width: 1100px;
  margin: auto;
  display: flex;
  border: 1px solid #eaeaea;
}

/* LEFT PANEL */
.testimonial-left {
  background: #006b7f;
  color: #fff;
  padding: 50px;
  width: 40%;
}

.testimonial-left .tag {
  color: #ff7a45;
  font-weight: 600;
}

.testimonial-left h2 {
  margin: 15px 0;
  font-size: 28px;
}

.testimonial-left .line {
  width: 50px;
  height: 3px;
  background: #ff7a45;
  margin: 15px 0;
}

.testimonial-left p {
  font-size: 14px;
  line-height: 1.7;
}

/* RIGHT PANEL */
.testimonial-right {
  width: 60%;
  padding: 50px;
  position: relative;
}

.testimonial-content img {
  width: 90px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.testimonial-content h4 {
  margin-bottom: 5px;
}

.stars {
  color: #006b7f;
  margin-bottom: 10px;
}

.testimonial-content p {
  font-size: 14px;
  line-height: 1.6;
  color: #555;
  max-width: 420px;
}

/* NAV BUTTONS */
.testimonial-nav {
  margin-top: 30px;
}

.testimonial-nav button {
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  margin-right: 10px;
}

/* ORANGE QUOTE BAR */
.quote-bar {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 45px;
  height: 90px;
  background: #ff7a45;
  color: #fff;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== TESTIMONIAL LAYOUT ===== */
.testimonial-section {
  padding: 80px 0;
}

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

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-block {
  min-width: 100%;
  padding: 20px;
  box-sizing: border-box;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 15px;
}

.info-box img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.name {
  margin: 0;
  font-size: 18px;
}

.rating {
  color: #ff7a45;
  font-size: 14px;
}

.text {
  margin-top: 7px;
  line-height: 1.6;
}

/* ARROWS */
.nav-btn {
  /* position: absolute; */
  /* bottom: 10px; */
  background: #fff;
  border: 1px solid #ccc;
  width: 40px;
  height: 40px;
  cursor: pointer;
}

.nav-btn.prev {
  left: 40%;
}

.nav-btn.next {
  right: 40%;
}

/* ===== MOBILE FIX (361px PERFECT) ===== */
@media (max-width: 480px) {
  .row {
    flex-direction: column;
  }

  .title-column {
    margin-bottom: 30px;
    text-align: left;
  }

  .nav-btn.prev {
    left: 30%;
  }

  .nav-btn.next {
    right: 30%;
  }

  .inner-column {
    width: fit-content;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: #f4f6f8;
}

/* ===== TESTIMONIAL LAYOUT ===== */
.testimonial-section {
  padding: 80px 20px;
  background: #fff;
}

.testimonial-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  gap: 0;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* LEFT PANEL */
.testimonial-left {
  background: #0e6f84;
  color: #fff;
  padding: 60px 50px;
  width: 45%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-left .tag {
  color: #f6763c;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-left h2 {
  font-size: 36px;
  line-height: 1.3;
  font-weight: 700;
  margin-bottom: 25px;
}

.testimonial-left .line {
  width: 60px;
  height: 3px;
  background: #f6763c;
  margin-bottom: 25px;
}

.testimonial-left p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
}

/* RIGHT PANEL */
.testimonial-right {
  width: 55%;
  padding: 60px 50px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-block {
  min-width: 100%;
  box-sizing: border-box;
}

.testimonial-content {
  position: relative;
}

.info-box {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
}

.info-box img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.info-details {
  flex: 1;
}

.name {
  font-size: 24px;
  font-weight: 700;
  color: #002121;
  margin-bottom: 8px;
}

.rating {
  color: #0e6f84;
  font-size: 16px;
}

.rating span {
  margin-right: 3px;
}

.testimonial-text {
  font-size: 15px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 30px;
}

/* NAVIGATION BUTTONS */
.testimonial-nav {
  display: flex;
  gap: 10px;
  margin-top: 20px;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

.nav-btn {
  transition: all 0.3s ease;
  /* flex-shrink:0; */
  color: #242424ea;
  width: 35px;
  height: 35px;
  border: 1px solid #000;
  background: transparent;
  cursor: pointer;
  font-size: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-btn:hover {
  background: #f6763c;
  border-color: #f6763c;
  color: #fff;
}

/* ORANGE QUOTE BAR */
.quote-bar {
  position: absolute;
  right: 5%;
  bottom: 0;
  width: 50px;
  height: 100px;
  background: #f6763c;
  color: #fff;
  font-size: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 25px 25px 0 0;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonial-container {
    flex-direction: column;
  }

  .testimonial-left,
  .testimonial-right {
    width: 100%;
  }

  .testimonial-left {
    padding: 50px 40px;
  }

  .testimonial-right {
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .testimonial-section {
    padding: 60px 15px;
  }

  .testimonial-left {
    padding: 40px 30px;
  }

  .testimonial-left h2 {
    font-size: 28px;
  }

  .testimonial-right {
    padding: 40px 30px;
  }

  .info-box {
    flex-direction: column;
    text-align: center;
  }

  .name {
    font-size: 20px;
  }

  .quote-bar {
    right: 0;
    width: 45px;
    height: 80px;
    font-size: 32px;
  }
}

@media (max-width: 480px) {
  .testimonial-left {
    padding: 30px 20px;
  }

  .testimonial-left h2 {
    font-size: 24px;
  }

  .testimonial-right {
    padding: 30px 20px;
  }

  .testimonial-text {
    font-size: 14px;
  }

  .info-box img {
    width: 70px;
    height: 70px;
  }

  .quote-bar {
    width: 40px;
    height: 70px;
    font-size: 28px;
  }
}

.industries-section {
  padding: 80px 0;
  background: #fff;
  font-family: 'Roboto', sans-serif;
}

.industries-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

.industries-tag {
  color: #ff6b35;
  font-weight: 500;
}

.industries-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b2b2c;
  margin: 8px 0;
}

.industries-line {
  display: flex;
  gap: 8px;
  margin: 10px 0 20px;
}

.industries-line span:first-child {
  width: 40px;
  height: 3px;
  background: #ff6b35;
}

.industries-line span:last-child {
  width: 12px;
  height: 3px;
  background: #cfcfcf;
}

.industries-desc {
  color: #6f6f6f;
  max-width: 700px;
  margin-bottom: 40px;
}

/* SCROLL AREA */
.industries-scroll {
  overflow-x: auto;
  scrollbar-width: none;
}

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

/* TRACK */
.industry-track {
  display: flex;
  gap: 24px;
  width: max-content;
  padding-bottom: 10px;
}

/* CARD */
.industry-card {
  min-width: 220px;
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 40px 20px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}

.industry-card i {
  font-size: 34px;
  color: #0a7c86;
  margin-bottom: 20px;
}

.industry-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0b2b2c;
  line-height: 1.4;
}

.industry-card:hover,
.industry-card.active {
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  border-color: transparent;
  transform: translateY(-4px);
}

.industry-card.active h4 {
  color: #ff6b35;
}

/* Unique Modal Styles */
.ucp-modal-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: ucp-fadeIn 0.3s ease;
}

.ucp-modal-overlay.active {
  display: flex;
}

@keyframes ucp-fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.ucp-modal-container {
  background: white;
  border-radius: 12px;
  padding: 2rem;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
  animation: ucp-slideUp 0.4s ease;
}

@keyframes ucp-slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ucp-close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #666;
  cursor: pointer;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
  z-index: 1;
}

.ucp-close-btn:hover {
  background: #f0f0f0;
  color: #ff0000;
}

.ucp-form-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #333;
  text-align: center;
}

.ucp-form-subtitle {
  text-align: center;
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

/* Form Styles */
#ucp-contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

#ucp-contact-form input,
#ucp-contact-form select,
#ucp-contact-form textarea {
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 0.95rem;
  transition: border 0.3s ease;
}

#ucp-contact-form input:focus,
#ucp-contact-form select:focus,
#ucp-contact-form textarea:focus {
  outline: none;
  border-color: #ff6a00;
  box-shadow: 0 0 0 2px rgba(255, 106, 0, 0.1);
}

#ucp-contact-form input::placeholder,
#ucp-contact-form textarea::placeholder {
  color: #999;
}

.ucp-input-row {
  display: flex;
  gap: 10px;
}

.ucp-input-row select {
  flex: 1;
  min-width: 120px;
}

.ucp-input-row input {
  flex: 2;
}

#ucp-contact-form textarea {
  resize: vertical;
  min-height: 100px;
  font-family: inherit;
}

/* File Input Styling */
#ucp-contact-form input[type="file"] {
  padding: 10px;
  background: #f9f9f9;
  border: 1px dashed #ddd;
}

#ucp-contact-form input[type="file"]::file-selector-button {
  padding: 8px 12px;
  background: #f0f0f0;
  border: 1px solid #ddd;
  border-radius: 4px;
  cursor: pointer;
  margin-right: 10px;
  transition: background 0.2s ease;
}

#ucp-contact-form input[type="file"]::file-selector-button:hover {
  background: #e0e0e0;
}

/* CAPTCHA Styles */
.ucp-captcha-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 15px;
  background: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 6px;
  margin: 10px 0;
}

.ucp-captcha-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: 0.9rem;
  color: #333;
}

.ucp-captcha-checkbox {
  display: none;
}

.ucp-captcha-checkmark {
  width: 20px;
  height: 20px;
  border: 2px solid #ddd;
  border-radius: 3px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.ucp-captcha-checkbox:checked+.ucp-captcha-checkmark {
  background: #4285f4;
  border-color: #4285f4;
}

.ucp-captcha-checkbox:checked+.ucp-captcha-checkmark::after {
  content: '✓';
  color: white;
  font-size: 14px;
  font-weight: bold;
}

.ucp-captcha-brand {
  text-align: right;
  font-size: 0.8rem;
  color: #666;
  line-height: 1.3;
}

.ucp-captcha-brand small {
  font-size: 0.7rem;
  color: #999;
}

/* Submit Button */
#ucp-submit-btn {
  background: #ff6a00;
  color: white;
  border: none;
  padding: 14px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  margin-top: 10px;
}

#ucp-submit-btn:hover {
  background: #e55f00;
}

#ucp-submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 600px) {
  .ucp-modal-container {
    padding: 1.5rem;
    width: 95%;
  }

  .ucp-form-title {
    font-size: 1.5rem;
  }

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

  .ucp-input-row select,
  .ucp-input-row input {
    width: 100%;
  }

  .ucp-captcha-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .ucp-captcha-brand {
    text-align: left;
  }
}

/* Loading indicator for form submission */
.ucp-loading-spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 3px solid rgba(255, 255, 255, .3);
  border-radius: 50%;
  border-top-color: #fff;
  animation: ucp-spin 1s ease-in-out infinite;
  margin-right: 10px;
  vertical-align: middle;
}

@keyframes ucp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* Form success/error messages */
.ucp-form-message {
  padding: 10px 15px;
  border-radius: 6px;
  margin-top: 15px;
  text-align: center;
  display: none;
}

.ucp-form-message.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

.ucp-form-message.error {
  background: #f8d7da;
  color: #721c24;
  border: 1px solid #f5c6cb;
  display: block;
}

/* File size info */
.ucp-file-info {
  color: #666;
  font-size: 0.8rem;
  margin-top: -8px;
}

/* FAQ RIGHT SIDE - UPDATED STYLES */

/* FAQ Item Container */
.faq-right .faq-item {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 18px;
  padding: 22px 26px;
  margin-bottom: 18px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.faq-right .faq-item:hover {
  background: rgba(255, 255, 255, 0.22);
  transform: translateY(-2px);
}

/* FAQ Heading */
.faq-right .faq-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  cursor: default;
}

/* Orange Tickmark */
.faq-right .faq-tickmark {
  color: #f36b2b;
  font-size: 18px;
  font-weight: bold;
  min-width: 20px;
  margin-top: 2px;
  text-shadow: 0 0 8px rgba(243, 107, 43, 0.3);
}

/* FAQ Question/Heading */
.faq-right .faq-heading h3 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  color: inherit;
}

/* FAQ Content */
.faq-right .faq-content {
  padding-left: 32px;
  /* Align with tickmark */
  animation: fadeInUp 0.4s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* FAQ Answer */
.faq-right .faq-content p {
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.95;
  text-align: left;
  margin: 0;
}

/* Optional: Add bullet points if you have lists */
.faq-right .faq-content ul {
  margin: 10px 0;
  padding-left: 20px;
}

.faq-right .faq-content li {
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 8px;
  opacity: 0.9;
}

/* Responsive Design */
@media (max-width: 768px) {
  .faq-right .faq-item {
    padding: 18px 20px;
    margin-bottom: 15px;
  }

  .faq-right .faq-heading h3 {
    font-size: 16px;
  }

  .faq-right .faq-content {
    padding-left: 28px;
  }

  .faq-right .faq-content p {
    font-size: 14px;
  }

  .faq-right .faq-tickmark {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .faq-right .faq-item {
    padding: 15px 18px;
    border-radius: 14px;
  }

  .faq-right .faq-heading {
    gap: 10px;
  }

  .faq-right .faq-heading h3 {
    font-size: 15px;
  }

  .faq-right .faq-content {
    padding-left: 26px;
  }

  .faq-right .faq-tickmark {
    font-size: 15px;
    min-width: 18px;
  }
}

/* Optional: Add subtle divider between items */
.faq-right .faq-item:not(:last-child) {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 22px;
}

/* Optional: Different background for odd/even items */
.faq-right .faq-item:nth-child(odd) {
  background: rgba(255, 255, 255, 0.12);
}

.faq-right .faq-item:nth-child(even) {
  background: rgba(255, 255, 255, 0.18);
}

/* Optional: Highlight on hover */
.faq-right .faq-item:hover .faq-tickmark {
  color: #ff8c42;
  /* Lighter orange on hover */
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

/* TALK SECTION (keep your existing styles, just adding here for context) */
.talk-section {
  padding: 60px 20px;
  background: #f6f7f9;
}

.talk-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  gap: 40px;
}

/* If you want to add icons instead of checkmark */
/* Uncomment and use this if you prefer icon fonts */
/*
.faq-right .faq-tickmark::before {
  content: "✓";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: #f36b2b;
  font-size: 16px;
  margin-right: 8px;
}
*/

@media (min-width: 770px) {
  .Work-Card-Container {
    width: 100vw;
  }

  .Work-Card-Wrapper {
    width: 100vw;
    margin-left: 9vw;
  }
}