/* ================================
   GLOBAL RESET
================================ */
@import url('https://fonts.googleapis.com/css2?family=Luckiest+Guy&family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Urbanist", sans-serif;
}

/* body {
    background: #000;
} */
/* ================================
   CONTAINER
================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ================================
   HEADER
================================ */
.site-header {
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 999;
    background: rgba(255, 255, 255);
     box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
}

.logo img {
    height: 60px;
}

/* Navigation */
.nav {
    display: flex;
    gap: 40px;
}

.nav a {
    color: #7e57c2;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    font-weight: 500;
}

.nav a.active::before {
    content: "";
    position: absolute;
    left: -24px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;

    background: url("../images/icons/card_circle_header.svg") no-repeat center;
    background-size: contain;

    opacity: 1;
}

/* .nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #7e57c2;
    transition: width 0.3s ease;
} */

.nav a:hover::after {
    width: 100%;
}

.search-icon {
    font-size: 16px;
    cursor: pointer;
    opacity: 0.9;
}

/* ================================
   HERO SECTION
================================ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    background: linear-gradient(135deg, #b993f3, #7e57c2);
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image: url("../images/bg_circular_lines.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;

    opacity: 0.35;
    /* control visibility */
    mix-blend-mode: overlay;
    /* blends with gradient */
    pointer-events: none;
}

/* GRID + DOT BACKGROUND */


.hero>* {
    position: relative;
    z-index: 2;
}

/* HERO CONTENT */
.hero-content {
    max-width: 760px;
    padding: 0 20px;
    animation: fadeUp 1s ease-out forwards;

}

.hero-content h1 {
    font-size: 68px;
    line-height: 1.2;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: #efe7ff;
}

.hero-content p {
    font-size: 16px;
    opacity: 0.9;
    margin-bottom: 34px;
}

/* CTA */
.cta {
    display: inline-block;
    background: #ffffff;
    color: #6a3cbc;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

/* FLOATING FEATURES */
.feature {
    position: absolute;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(12px);
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);

    /* 🔥 FIX */
    display: flex;
    align-items: center;
    /* vertical center */
    gap: 10px;
    /* space between icon & text */

    animation: float 4s ease-in-out infinite;
}

.feature.left::before {
    content: "";
    position: absolute;
    right: -28px;
    top: 50%;
    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    background: url("../images/icons/card_circle.svg") no-repeat center;
    background-size: contain;

    opacity: 0.9;
}

.feature.right::after {
    content: "";
    position: absolute;
    left: -28px;
    top: 50%;
    transform: translateY(-50%);

    width: 22px;
    height: 22px;

    background: url("../images/icons/card_circle.svg") no-repeat center;
    background-size: contain;

    opacity: 0.9;
}


.left.top {
    top: 40%;
    left: 6%;
}

.left.bottom {
    bottom: 22%;
    left: 10%;
    animation-delay: 0.5s;
}

.right.top {
    top: 40%;
    right: 6%;
    animation-delay: 0.3s;
}

.right.bottom {
    bottom: 22%;
    right: 10%;
    animation-delay: 0.8s;
}

/* ================================
   ANIMATIONS
================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0);
    }
}

@keyframes gridMove {
    from {
        background-position: 0 0, 0 0, 0 0;
    }

    to {
        background-position: 120px 120px, 120px 120px, 120px 120px;
    }
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .hero-content h1 {
        font-size: 34px;
    }

    .feature {
        display: none;
    }
}

.about{
    background: #281C3D;
    padding: 30px 0px;
    border-top-right-radius: 30px;
    border-top-left-radius: 30px;
}
.about-content{
    text-align: center;
    color: #fff;
    padding: 0px 0px 20px;
    
}

.about-content p{
    text-align: center;
    line-height: 30px;
}



/* ================================
   PARTICLES
================================ */
.particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.particles span {
  position: absolute;
  width: 6px;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: rotateParticle 20s linear infinite;
}

/* random placement */
.particles span:nth-child(1) { top: 20%; left: 15%; animation-duration: 22s; }
.particles span:nth-child(2) { top: 40%; left: 80%; animation-duration: 26s; }
.particles span:nth-child(3) { top: 70%; left: 30%; animation-duration: 18s; }
.particles span:nth-child(4) { top: 60%; left: 60%; animation-duration: 24s; }
.particles span:nth-child(5) { top: 30%; left: 50%; animation-duration: 28s; }
.particles span:nth-child(6) { top: 80%; left: 10%; animation-duration: 30s; }
.particles span:nth-child(7) { top: 15%; left: 70%; animation-duration: 21s; }
.particles span:nth-child(8) { top: 50%; left: 20%; animation-duration: 27s; }

@keyframes rotateParticle {
  from { transform: rotate(0deg) translateX(10px) rotate(0deg); }
  to { transform: rotate(360deg) translateX(10px) rotate(-360deg); }
}



/* ================================
   AI ICONS
================================ */
.ai-icons {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.ai-icon {
  position: absolute;
  width: 80px;
  opacity: 0.35;
  pointer-events: none;

  animation: particleMove 14s ease-in-out infinite,
             particleFade 6s ease-in-out infinite;
}
@keyframes particleMove {
  0% {
    transform: translate(0, 0);
  }
  25% {
    transform: translate(12px, -18px);
  }
  50% {
    transform: translate(-10px, 14px);
  }
  75% {
    transform: translate(16px, 8px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes particleFade {
  0%   { opacity: 0.25; }
  50%  { opacity: 0.5; }
  100% { opacity: 0.25; }
}

.ai-icon.one   { animation-duration: 16s, 7s; }
.ai-icon.two   { animation-duration: 20s, 9s; }
.ai-icon.three { animation-duration: 18s, 8s; }
.ai-icon.four  { animation-duration: 22s, 10s; }


/* Individual positions */
.ai-icon.one {
  top: 18%;
  left: 22%;
}

.ai-icon.two {
  top: 85%;
  left: 18%;
  animation-delay: 1s;
}

.ai-icon.three {
  top: 15%;
  right: 10%;
  animation-delay: 0.5s;
}

.ai-icon.four {
  bottom: 20%;
  right: 25%;
  animation-delay: 1.5s;
}

@keyframes floatIcon {
  0% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
  100% { transform: translateY(0); }
}

@keyframes rotateIcon {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}


/* ================================
   BREADCRUMBS
================================ */
.breadcrumbs-section {
  padding: 20px 0;
}

.breadcrumbs {
  font-size: 14px;
  color: #666;
}

.breadcrumbs a {
  color: #7e57c2;
  text-decoration: none;
}

.breadcrumbs span {
  margin: 0 6px;
}

.breadcrumbs .current {
  color: #333;
  font-weight: 500;
}

/* ================================
   PAGE HEADER
================================ */
.page-header {
  text-align: center;
  padding: 40px 0 20px;
}

.page-header h1 {
  font-size: 32px;
  font-weight: 600;
  color: #2a1b3f;
}

.page-subtitle {
  max-width: 700px;
  margin: 16px auto 0;
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/* ================================
   ABOUT CONTENT
================================ */
.about-content-section {
  padding: 40px 0;
}

.about-content-section p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ================================
   MISSION & VISION
================================ */
.mission-vision-section {
  padding: 60px 0;
  background: #faf9ff;
}

.mission-vision-flex {
  display: flex;
  gap: 32px;
}

.mv-card {
  flex: 1;
  border: 1.5px solid #9b7cf3;
  border-radius: 12px;
  padding: 32px;
  background: #fff;
}

.mv-card h3 {
  color: #7e57c2;
  font-size: 18px;
  font-weight: 600;
}

.card-line {
  width: 40px;
  height: 3px;
  margin: 12px 0 16px;
  background: #9b7cf3;
  border-radius: 4px;
}

.mv-card p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
}

/* ================================
   CORE OFFERINGS
================================ */
.core-offerings-section {
  padding: 80px 0 0px;
}

.offerings-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.offering-card {
  flex: 1 1 calc(50% - 32px);
  border: 1.5px solid #9b7cf3;
  border-radius: 12px;
  padding: 24px;
  background: #fff;
}

.offering-card h4 {
  font-size: 16px;
  font-weight: 600;
  color: #7e57c2;
  margin-bottom: 10px;
}

.offering-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .mission-vision-flex {
    flex-direction: column;
  }

  .offering-card {
    flex: 1 1 100%;
  }
}

/* MINI HEADER */
.page-mini-header {
  background: linear-gradient(135deg, #f6f2ff, #ffffff);
  padding: 36px 0;
  border-bottom: 1px solid #eee;
}

.breadcrumbs {
  font-size: 13px;
  color: #777;
  margin-bottom: 6px;
}

.breadcrumbs a {
  color: #7e57c2;
  text-decoration: none;
}

.page-mini-header h1 {
  font-size: 28px;
  color: #2a1b3f;
  font-weight: 600;
}

/* DIVIDER */
.page-divider {
  width: 60px;
  height: 3px;
  margin: 14px auto 24px;
  background: #9b7cf3;
  border-radius: 4px;
}

/* WHO WE ARE */
.about-section {
  padding: 70px 0;
  text-align: center;
}

.about-section h2 {
  font-size: 26px;
  color: #7e57c2;
}

.about-section p {
  max-width: 800px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* MISSION / VISION */
.mv-section {
  background: #faf9ff;
  padding: 80px 0;
}

.mv-grid {
  display: flex;
  gap: 32px;
}

.mv-card {
  flex: 1;
  background: #fff;
  padding: 32px;
  border-radius: 14px;
  border: 1.5px solid #9b7cf3;
  box-shadow: 0 12px 30px rgba(126,87,194,0.12);
  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(40px);
}

.mv-card h3 {
  color: #7e57c2;
  font-size: 18px;
}

.card-line {
  width: 40px;
  height: 3px;
  background: #9b7cf3;
  border-radius: 4px;
  margin: 12px 0 16px;
}

.mv-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #555;
}

.mv-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(126,87,194,0.22);
}

/* CORE OFFERINGS */
.core-offerings {
   padding: 90px 0 0;
}

.section-title {
  text-align: center;
  font-size: 26px;
  color: #7e57c2;
}

.offerings-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.offering-card {
  flex: 1 1 calc(50% - 32px);
  padding: 28px;
  border-radius: 14px;
  border: 1.5px solid #9b7cf3;
  box-shadow: 0 10px 28px rgba(126,87,194,0.12);
  transition: all 0.35s ease;

  opacity: 0;
  transform: translateY(40px);
}

.offering-card h4 {
  font-size: 18px;
  color: #7e57c2;
  margin-bottom: 10px;
}

.offering-card p {
  font-size: 16px;
  color: #555;
}

.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(126,87,194,0.22);
}

/* ANIMATION ACTIVE */
.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .mv-grid {
    flex-direction: column;
  }

  .offering-card {
    flex: 1 1 100%;
  }
}



/* ================================
   PAGE HEADING DIVIDER
================================ */
.page-divider {
  width: 90px;
  height: 4px;

  margin: 10px auto 24px;   /* 👈 auto centers horizontally */

  border-radius: 6px;

  background: linear-gradient(
    90deg,
    #f6c28b 0%,
    #e58a3c 50%,
    #c85a1e 100%
  );
}

.btn-view-more {
    display: inline-flex;
  align-items: center;
  gap: 8px;

  padding: 10px 18px;
  border-radius: 999px;

  background: #ffffff;
  color: #7e57c2;

  font-size: 14px;
  font-weight: 500;
  text-decoration: none;

  border: 1px solid rgba(126, 87, 194, 0.25);

  box-shadow: 0 4px 12px rgba(0,0,0,0.08);

  transition: all 0.3s ease;
}

/* Arrow */
.btn-view-more .arrow {
  font-size: 14px;
  transition: transform 0.3s ease;
}

/* Hover effect */
.btn-view-more:hover {
  box-shadow: 0 8px 22px rgba(0,0,0,0.15);
  transform: translateY(-1px);
}

.btn-view-more:hover .arrow {
  transform: translate(3px, -3px);
}



.btn-center {
  display: flex;
  justify-content: center;
}



/* ================================
   AI SOLUTIONS SECTION
================================ */
.ai-solutions {
  padding: 80px 0 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #7e57c2;
}

/* ================================
   FLEX WRAPPER
================================ */
.solutions-wrapper {
  display: flex;
  gap: 48px;
  margin-top: 48px;
  align-items: stretch; /* 🔥 IMPORTANT */
}

/* LEFT & MIDDLE COLUMNS */
.solutions-col {
  flex: 1;
  display: flex;
  flex-direction: column;
    justify-content: stretch;
}


/* RIGHT COLUMN */
.solutions-side {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* 🔥 KEY */

}

/* SIDE CONTENT */
.side-content h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.side-content p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* IMAGE */
.side-image {
  display: flex;
  /* justify-content: center; */
  margin: 16px 0;
}

.side-image img {
  width: 100%;
  max-width: 320px;   /* controls visual balance */
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* SOLUTION ITEM */
.solution-item {
  margin-bottom: 32px;
}

.solution-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #111;
}

.solution-item p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .solutions-wrapper {
    flex-direction: column;
  }
}

.solutions-side {
  justify-content: space-between;
}




/* ================================
   INDUSTRIES SECTION
================================ */
.industries {
  padding: 80px 0 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 600;
  color: #7e57c2;
}

/* FLEX CONTAINER */
/* .industries-flex {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
} */

/* CARD */
.industry-card {
  flex: 1 1 calc(25% - 32px);   /* 4 per row */
  max-width: calc(25% - 32px);

  background: #fff;
 border: 1px solid rgba(126, 87, 194, 0.25);
  border-radius: 16px;

  padding: 24px;
  text-align: left;

box-shadow:
    0 8px 20px rgba(126, 87, 194, 0.12),
    0 2px 6px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;

  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

/* ICON */
.industry-card img {
  width: 60px;
  margin-bottom: 16px;
}

/* TITLE */
.industry-card h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
}

/* TEXT */
.industry-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* HOVER EFFECT */
.industry-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 45px rgba(126, 87, 194, 0.2);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .industry-card {
    flex: 1 1 calc(50% - 32px); /* 2 per row */
    max-width: calc(50% - 32px);
  }
}

@media (max-width: 600px) {
  .industry-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

/* ================================
   CAROUSEL LAYOUT
================================ */
.carousel-wrapper {
  position: relative;
  margin-top: 48px;
}

/* Visible area */
.carousel-viewport {
  overflow: hidden;
  padding: 8px;              /* ✅ KEY FIX */
  box-sizing: border-box;
  position: relative;
}

/* Shadow-safe area */
.carousel-shadow-zone {
  padding: 20px;              /* 🔥 space for shadow */
  box-sizing: border-box;
}


/* Track */
.carousel-track {
  display: flex;
  gap: 24px;
  transition: transform 0.3s ease; /* NOT smooth scroll, just transform */
}

/* Card width = 3 visible */
.industry-card {
  flex: 0 0 calc((100% - 48px) / 3); /* 3 cards + 2 gaps */
  max-width: calc((100% - 48px) / 3);
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: 44px;
  height: 44px;
  border-radius: 50%;

  border: 1px solid rgba(126,87,194,0.3);
  background: #fff;
  color: #7e57c2;

  font-size: 24px;
  cursor: pointer;

  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.carousel-arrow.left {
  left: -54px;
}

.carousel-arrow.right {
  right: -54px;
}

.carousel-arrow:hover {
  background: #7e57c2;
  color: #fff;
}

.carousel-viewport::before,
.carousel-viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 24px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.carousel-viewport::before {
  left: 0;
  background: linear-gradient(to right, #fff, transparent);
}

.carousel-viewport::after {
  right: 0;
  background: linear-gradient(to left, #fff, transparent);
}


/* ================================
   WHY CHOOSE SECTION
================================ */
.why-choose {
  padding: 80px 0 0;
  background: #fff;
}

/* GRID USING FLEX */
.why-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  align-items: stretch;
}

/* EACH COLUMN = 3 PER ROW */
.why-grid > div {
  flex: 1 1 calc(33.333% - 32px);
  max-width: calc(33.333% - 32px);
}

/* CENTER BLOCK */
.why-center {
  text-align: center;
  padding: 12px;
}

.why-center h2 {
  font-size: 26px;
  font-weight: 600;
  color: #7e57c2;
}

.why-center p {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}

/* CARD STYLE */
.why-card {
  border: 1.5px solid #9b7cf3;   /* same purple outline */
  border-radius: 10px;
  padding: 24px;
  background: #fff;

  transition: all 0.3s ease;
}

.why-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #7e57c2;
  margin-bottom: 10px;
  transition: color 0.3s ease;
}

.why-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
  transition: color 0.3s ease;
}

.why-card:hover {
  background: #7e57c2;          /* purple fill */
  border-color: #7e57c2;
  box-shadow: 0 14px 35px rgba(126, 87, 194, 0.35);
  transform: translateY(-4px);
}

.why-card:hover h4,
.why-card:hover p {
  color: #ffffff;
}

/* HIGHLIGHT CARD */

.why-card.highlight h4,
.why-card.highlight p {
  color: #fff;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .why-grid > div {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
  }
}



/* ================================
   FOOTER
================================ */
.site-footer {
  background: #ffffff;
  margin-top: 80px;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

/* QUOTE STRIP */
.footer-quote {
  background: linear-gradient(135deg, #2a1b3f, #3a275c);
  color: #fff;
  text-align: center;
  padding: 28px 20px;
}

.footer-quote p {
  font-size: 26px;
  font-weight: 500;
}

.quote-divider {
  width: 60px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 4px;
  background: linear-gradient(90deg, #f6c28b, #c85a1e);
}

/* MAIN FOOTER */
.footer-main {
  display: flex;
  justify-content: space-between;
  padding: 40px 0 24px;
  gap: 40px;
}

/* LEFT */
.footer-left {
    max-width: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-logo {
    width: 170px;
    margin-bottom: 20px;
}

.tagline {
  font-size: 16px;
  color: #666;
  margin-bottom: 16px;
}

/* NAV */
.footer-nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-nav a {
  font-size: 16px;
  color: #333;
  text-decoration: none;
}

.footer-nav a:hover {
  color: #7e57c2;
}

/* RIGHT */
.footer-right p {
  font-size: 14px;
  color: #333;
  margin-bottom: 8px;
}

.footer-right strong {
  font-weight: 600;
}

/* BOTTOM BAR */
.footer-bottom {
  border-top: 1px solid #e6e6e6;
  padding: 16px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 14px;
  color: #666;
}

/* SOCIAL LINKS */
.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  font-size: 13px;
  color: #333;
  text-decoration: none;
}

.social-links a:hover {
  color: #7e57c2;
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .footer-main {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 10px;
  }
}


/* ================================
   ABOUT CONTENT (NO BORDER BOX)
================================ */
.about-content-section {
  padding: 100px 0 0;
  background: #ffffff;
}

/* FLEX LAYOUT */
.about-flex {
  display: flex;
  gap: 56px;
  align-items: center;

  /* animation start */
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

/* TEXT */
.about-text {
  flex: 1.2;
}

.about-text h2 {
  font-size: 28px;
  font-weight: 600;
  color: #7e57c2;
}

.about-text p {
  font-size: 16px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 18px;
}

/* IMAGE */
.about-image {
  flex: 1;
}

.about-image img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

/* Animation active */
.animate-on-scroll.in-view .about-flex {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .about-flex {
    flex-direction: column;
  }

  .about-text h2 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 14px;
  }
}




/* ================================
   SOLUTIONS PAGE
================================ */
.solutions-section {
  padding: 90px 0 0;
  background: #ffffff;
}

.solutions-section.alt-bg {
  background: #faf9ff;
}

.solutions-section h2 {
  font-size: 28px;
  color: #7e57c2;
  text-align: center;
}

.section-intro {
  max-width: 800px;
  margin: 0 auto 40px;
  font-size: 15px;
  color: #444;
  text-align: center;
  line-height: 1.8;
}

/* LIST */
.solutions-list {
  max-width: 900px;
  margin: auto;
  list-style: none;
}

.solutions-list li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 18px;
  font-size: 15px;
  line-height: 1.7;
  color: #444;
}

.solutions-list li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 12px;
  color: #7e57c2;
}

/* CLOUD GRID */
.cloud-grid {
  display: flex;
  gap: 32px;
  margin-top: 48px;
}

.cloud-card {
  flex: 1;
  padding: 32px;
  border-radius: 14px;
  border: 1.5px solid #9b7cf3;
  background: #fff;

  box-shadow: 0 12px 30px rgba(126,87,194,0.12);

  transition: all 0.35s ease;
}

.cloud-card h3 {
  font-size: 18px;
  color: #7e57c2;
  margin-bottom: 14px;
}

.cloud-card ul {
  list-style: none;
}

.cloud-card li {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}

.cloud-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(126,87,194,0.22);
}

/* ANIMATION */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s ease;
}

.animate-on-scroll.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .cloud-grid {
    flex-direction: column;
  }
}




.ai-solutions-section {
  padding: 100px 0;
  background: #ffffff;
}

.ai-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.ai-card {
  flex: 1 1 calc(33.333% - 32px);
  padding: 28px;
  border-radius: 14px;
  background: #faf9ff;

  transition: all 0.35s ease;
}

.ai-card h4 {
  font-size: 18px;
     color: #000000;
  margin-bottom: 10px;
}

.ai-card p {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.ai-card:hover {
  transform: translateY(-6px);
  background: #7e57c2;
}

.ai-card:hover h4,
.ai-card:hover p {
  color: #fff;
}

@media (max-width: 768px) {
  .ai-card {
    flex: 1 1 100%;
  }
}


.data-platforms-section {
  padding: 110px 0;
  background: #faf9ff;
}

.data-flex {
  display: flex;
  gap: 56px;
  align-items: center;
}

.data-text {
  flex: 1.2;
}

.data-text h2 {
  font-size: 28px;
  color: #7e57c2;
}

.page-divider.left {
  margin: 14px 0 24px;
}

.data-text p {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 24px;
}

.data-list {
  list-style: none;
}

.data-list li {
  position: relative;
  padding-left: 24px;
  margin-bottom: 14px;
  font-size: 16px;
  color: #555;
}

.data-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: #7e57c2;
}

.data-visual {
  flex: 1;
}

.data-visual img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.18);
}

@media (max-width: 768px) {
  .data-flex {
    flex-direction: column;
  }
}




/* ================================
   INDUSTRIES PAGE
================================ */
.industries-page {
  padding: 100px 0 0;
  background: #ffffff;
}

.section-title {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  color: #7e57c2;
}

/* GRID */
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 56px;
}

/* CARD */
.industries-card {
flex: 1 1 calc(30% - 32px);
 max-width: calc(110% - 32px);

  background: #ffffff;
  border-radius: 16px;
  padding: 28px;

  border: 1.5px solid #9b7cf3;
  box-shadow: 0 12px 30px rgba(126, 87, 194, 0.12);

  transition: all 0.35s ease;

  display: flex;
  flex-direction: column;
}

/* ICON */
.industries-card img {
  width: 44px;
  margin-bottom: 16px;
}

/* TITLE */
.industries-card h4 {
  font-size: 18px;
  font-weight: 600;
  color: #7e57c2;
  margin-bottom: 10px;
}

/* TEXT */
.industries-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
}

/* HOVER */
.industries-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(126, 87, 194, 0.22);
}

/* ================================
   RESPONSIVE
================================ */
@media (max-width: 1024px) {
  .industries-card {
    flex: 1 1 calc(50% - 32px); /* 2 per row */
    max-width: calc(50% - 32px);
  }
}

@media (max-width: 600px) {
  .industries-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
}


/* ================================
   SIMPLE CONTACT PAGE
================================ */
.contact-simple {
  padding: 90px 0 0;
  background: #ffffff;
  text-align: center;
}

.contact-simple h2 {
  font-size: 28px;
  font-weight: 600;
  color: #7e57c2;
}

.contact-intro {
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 16px;
  line-height: 1.8;
  color: #444;
}

/* DETAILS GRID */
.contact-details-simple {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin-bottom: 40px;
}

.contact-item {
  min-width: 200px;
}

.contact-item h4 {
  font-size: 18px;
  font-weight: 600;
  color: #2a1b3f;
  margin-bottom: 6px;
}

.contact-item p {
  font-size: 16px;
  color: #555;
}

/* NOTE */
.contact-note {
  font-size: 14px;
  color: #777;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-details-simple {
    flex-direction: column;
    gap: 24px;
  }
}


/* HEADER BASE */
.site-header {
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 1000;
}

/* HAMBURGER */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: #2a1b3f;
}

/* MOBILE */
@media (max-width: 768px) {

  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .menu-toggle {
    display: flex;
  }

  .nav {
      position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    padding: 12px 0;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
    z-index: 999;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 14px 20px;
    font-size: 15px;
  }
}





/* ===============================
   MOBILE RESPONSIVE (<= 768px)
================================ */
@media (max-width: 768px) {

  /* ---------- HEADER ---------- */
  .header-inner {
    flex-direction: row;
    gap: 12px;
    padding: 12px 16px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
  }

  .nav a {
    font-size: 14px;
  }

  /* ---------- HERO ---------- */
  .hero {
    padding: 120px 16px 80px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 15px;
  }

  /* Hide floating feature cards on mobile */
  .feature {
    display: none;
  }

  /* Reduce particles */
  .particles span {
    opacity: 0.4;
  }

  /* ---------- ABOUT ---------- */
  .about-content p {
    font-size: 14px;
    text-align: center;
  }

  /* ---------- AI SOLUTIONS ---------- */
  .solutions-wrapper {
    flex-direction: column;
    gap: 32px;
  }

  .solutions-col {
    width: 100%;
  }

  .solution-item {
    text-align: center;
  }

  .solution-item img {
    margin: 0 auto 12px;
    display: block;
  }

  /* ---------- INDUSTRIES (CAROUSEL) ---------- */
  .carousel-arrow {
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .industry-card {
    flex: 0 0 100%;
    max-width: 100%;
  }

  /* Only 1 visible card on mobile */
  .carousel-viewport {
    padding: 8px;
  }

  /* ---------- WHY CHOOSE ---------- */
  .why-grid {
    flex-direction: column;
    gap: 24px;
  }

  .why-center {
    order: -1;
    text-align: center;
  }

  .why-center p {
    font-size: 14px;
  }

  /* ---------- FOOTER ---------- */
  .footer-main {
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }

  .footer-nav {
    justify-content: center;
    gap: 16px;
  }

  .footer-right p {
    font-size: 13px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
  }

}

/* ===============================
   SMALL PHONES (<= 480px)
================================ */
@media (max-width: 480px) {

  .hero-content h1 {
    font-size: 26px;
  }

  .section-title {
    font-size: 24px;
  }

  .solution-item h4,
  .industry-card h4,
  .why-card h4 {
    font-size: 15px;
  }

  .solution-item p,
  .industry-card p,
  .why-card p {
    font-size: 13px;
  }
}

@media (hover: none) {
  .solution-item:hover,
  .industry-card:hover,
  .why-card:hover {
    transform: none;
    box-shadow: none;
  }
}


/* ===============================
   MOBILE MENU ENHANCEMENTS
================================ */

/* Overlay */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 998;
}

/* Lock body scroll */
body.menu-open {
  overflow: hidden;
}

/* Header menu positioning */
@media (max-width: 768px) {

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #ffffff;
    flex-direction: column;

    transform: translateY(-15px);
    opacity: 0;
    pointer-events: none;

    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .menu-overlay.active {
    opacity: 1;
    visibility: visible;
  }

  /* Hamburger animation */
  .menu-toggle span {
    transition: all 0.3s ease;
  }

  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}


@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}

.menu-toggle,
.nav a {
  -webkit-tap-highlight-color: transparent;
}


/* Hide by default (desktop already has floating cards) */
.hero-features-mobile {
  display: none;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-features-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 28px;
  }

  .hero-feature {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 10px;

    font-size: 14px;
    color: #2a1b3f;

    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
  }

  .hero-feature img {
    width: 24px;
    height: 24px;
  }
}


@media (max-width: 768px) {

  .hero-features-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .hero-feature {
    flex-direction: column;
    text-align: center;
  }
}


@media (max-width: 768px) {
  .hero-feature {
    animation: fadeUp 0.6s ease forwards;
  }

  .hero-feature:nth-child(2) { animation-delay: 0.1s; }
  .hero-feature:nth-child(3) { animation-delay: 0.2s; }
  .hero-feature:nth-child(4) { animation-delay: 0.3s; }

  @keyframes fadeUp {
    from {
      opacity: 0;
      transform: translateY(10px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}



/* ===============================
   TABLET VIEW (768px–1024px)
================================ */
@media (min-width: 768px) and (max-width: 1024px) {

  /* HEADER */
  .header-inner {
    padding: 14px 24px;
  }

  .nav a {
    font-size: 14px;
    margin: 0 8px;
  }

  /* HERO */
  .hero {
    padding: 140px 40px 100px;
  }

  .hero-content h1 {
    font-size: 38px;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 15px;
    max-width: 520px;
  }

  /* Hide floating cards (too crowded on tablets) */
  .feature {
    display: none;
  }

  /* Show mobile hero features in 2x2 grid */
  .hero-features-mobile {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    max-width: 520px;
    margin-top: 32px;
  }

  .hero-feature {
    font-size: 14px;
  }

  /* AI SOLUTIONS */
  .solutions-wrapper {
    gap: 28px;
  }

  .solution-item h4 {
    font-size: 15px;
  }

  .solution-item p {
    font-size: 13px;
  }

  /* INDUSTRIES */
  .industry-card {
    min-width: 300px;
  }

  /* WHY CHOOSE */
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .why-center {
    grid-column: span 2;
    text-align: center;
  }

}

/* ===============================
   MOBILE (481px–767px)
================================ */
@media (min-width: 481px) and (max-width: 767px) {

  /* HERO */
  .hero {
    padding: 120px 24px 80px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 30px;
  }

  .hero-content p {
    font-size: 14px;
  }

  /* HERO FEATURES */
  .hero-features-mobile {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  /* AI SOLUTIONS */
  .solutions-wrapper {
    flex-direction: column;
  }

  .solution-item {
    text-align: center;
  }

  /* INDUSTRIES */
  .industry-card {
    min-width: 85%;
  }

  /* WHY CHOOSE */
  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}


/* ===============================
   SMALL MOBILE (≤480px)
================================ */
@media (max-width: 480px) {

  /* HERO */
  .hero-content h1 {
    font-size: 26px;
    line-height: 1.3;
  }

  .hero-content p {
    font-size: 13px;
  }

  .cta {
    padding: 12px 18px;
    font-size: 14px;
  }

  /* HERO FEATURES */
  .hero-feature {
    padding: 10px 12px;
    font-size: 13px;
  }

  .hero-feature img {
    width: 20px;
  }

  /* AI SOLUTIONS */
  .solution-item h4 {
    font-size: 14px;
  }

  .solution-item p {
    font-size: 12.5px;
  }

  /* INDUSTRIES */
  .industry-card {
    min-width: 90%;
  }

  /* FOOTER */
  .footer-nav {
    flex-direction: column;
    gap: 10px;
  }

  .footer-right p {
    font-size: 12px;
  }
}


@media (hover: none) {
  .solution-item:hover,
  .industry-card:hover,
  .why-card:hover {
    transform: none;
    box-shadow: none;
  }
}
