/* =========================================================
   ADITYA DARJI PORTFOLIO
   HERO SECTION
========================================================= */

.aditya-portfolio {
  --aditya-navy: #06162d;
  --aditya-navy-light: #0e2953;
  --aditya-blue: #6fa9df;
  --aditya-blue-light: #c1e8ff;
  --aditya-text: #f4f7fb;
  --aditya-text-muted: #aebed1;
  --aditya-border: rgba(139, 166, 193, 0.18);

  color: var(--aditya-text);
}

/* =========================================================
   HERO
========================================================= */

.aditya-hero {
  position: relative;
  min-height: calc(100vh - 80px);

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 100px 24px 120px;

  overflow: hidden;

  background: transparent;
  /*radial-gradient(
      circle at 20% 65%,
      rgba(37, 99, 235, 0.18),
      transparent 32%
    ),
    radial-gradient(
      circle at 80% 25%,
      rgba(111, 169, 223, 0.1),
      transparent 30%
    ),
    linear-gradient(180deg, #0b1f3a 0%, #06162d 55%, #031225 100%);*/
}

/* =========================================================
   BACKGROUND GLOWS
========================================================= */

.aditya-hero-glow {
  position: absolute;

  width: 420px;
  height: 420px;

  border-radius: 50%;

  filter: blur(100px);

  pointer-events: none;

  opacity: 0.35;
}

.aditya-hero-glow-one {
  top: 20%;
  left: -180px;

  background: rgba(37, 99, 235, 0.45);
}

.aditya-hero-glow-two {
  right: -180px;
  bottom: 5%;

  background: rgba(111, 169, 223, 0.25);
}

/* =========================================================
   HERO CONTENT
========================================================= */

.aditya-hero-content {
  position: relative;
  z-index: 2;

  width: min(100%, 1050px);

  margin: 0 auto;

  text-align: center;
}

/* =========================================================
   EYEBROW
========================================================= */

.aditya-hero-eyebrow {
  display: inline-flex;
  align-items: center;

  margin: 0 0 24px;
  padding: 9px 18px;

  border: 1px solid var(--aditya-border);
  border-radius: 999px;

  background: rgba(139, 166, 193, 0.07);

  color: #b9d1e8;

  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1.4;

  backdrop-filter: blur(10px);
}

/* =========================================================
   H1
========================================================= */

.aditya-hero h1 {
  margin: 0;

  color: var(--aditya-text);

  font-size: clamp(3.2rem, 7vw, 6.5rem);
  font-weight: 700;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

/* =========================================================
   HERO HEADING
========================================================= */

.aditya-hero h2 {
  max-width: 850px;

  margin: 24px auto 0;

  color: #f4f7fb;

  font-size: clamp(2rem, 4.5vw, 4rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.aditya-hero h2 span {
  display: inline;

  color: var(--aditya-blue-light);

  text-shadow: 0 0 30px rgba(193, 232, 255, 0.16);
}

/* =========================================================
   DESCRIPTION
========================================================= */

.aditya-hero-description {
  max-width: 760px;

  margin: 30px auto 0;

  color: var(--aditya-text-muted);

  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.8;
}

/* =========================================================
   CTA BUTTONS
========================================================= */

.aditya-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-top: 38px;
}

.aditya-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 26px;

  border-radius: 8px;

  font-size: 0.95rem;
  font-weight: 600;

  text-decoration: none;

  transition:
    transform 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.aditya-btn:hover {
  transform: translateY(-2px);
}

.aditya-btn-primary {
  border: 1px solid #6fa9df;

  background: #6fa9df;

  color: #06162d;

  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.18);
}

.aditya-btn-primary:hover {
  background: #82b9ea;
  border-color: #82b9ea;

  box-shadow: 0 14px 35px rgba(37, 99, 235, 0.28);
}

.aditya-btn-secondary {
  border: 1px solid rgba(139, 166, 193, 0.35);

  background: rgba(139, 166, 193, 0.05);

  color: #e5eef7;

  backdrop-filter: blur(10px);
}

.aditya-btn-secondary:hover {
  border-color: rgba(193, 232, 255, 0.55);

  background: rgba(139, 166, 193, 0.1);
}

/* =========================================================
   EXPERTISE TAGS
========================================================= */

.aditya-hero-focus {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;

  margin-top: 34px;
}

.aditya-hero-focus span {
  padding: 9px 16px;

  border: 1px solid rgba(139, 166, 193, 0.14);
  border-radius: 999px;

  background: rgba(139, 166, 193, 0.045);

  color: #91a8bf;

  font-size: 0.82rem;
  line-height: 1.4;

  backdrop-filter: blur(8px);
}

/* =========================================================
   SCROLL INDICATOR
========================================================= */

.aditya-scroll-indicator {
  position: absolute;

  left: 50%;
  bottom: 30px;

  width: 28px;
  height: 48px;

  display: flex;
  justify-content: center;

  transform: translateX(-50%);

  border: 1px solid rgba(193, 232, 255, 0.45);
  border-radius: 20px;

  text-decoration: none;

  opacity: 0.8;
}

.aditya-scroll-indicator span {
  width: 4px;
  height: 8px;

  margin-top: 9px;

  border-radius: 4px;

  background: #c1e8ff;

  animation: aditya-scroll-down 1.8s ease-in-out infinite;
}

@keyframes aditya-scroll-down {
  0% {
    opacity: 0;
    transform: translateY(0);
  }

  30% {
    opacity: 1;
  }

  70% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translateY(20px);
  }
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .aditya-hero {
    min-height: calc(100vh - 70px);

    padding: 90px 22px 110px;
  }

  .aditya-hero h1 {
    font-size: clamp(3rem, 10vw, 5rem);
  }

  .aditya-hero h2 {
    font-size: clamp(1.9rem, 6vw, 3.2rem);
  }

  .aditya-hero-description {
    max-width: 650px;

    font-size: 1rem;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .aditya-hero {
    min-height: calc(100svh - 64px);

    padding: 75px 18px 100px;

    align-items: center;
  }

  .aditya-hero-content {
    width: 100%;
  }

  .aditya-hero-eyebrow {
    margin-bottom: 20px;

    padding: 8px 13px;

    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .aditya-hero h1 {
    font-size: clamp(2.8rem, 15vw, 4.2rem);

    letter-spacing: -0.04em;
  }

  .aditya-hero h2 {
    margin-top: 18px;

    font-size: clamp(1.75rem, 8vw, 2.5rem);

    line-height: 1.18;
  }

  .aditya-hero h2 span {
    display: block;

    margin-top: 4px;
  }

  .aditya-hero-description {
    margin-top: 22px;

    font-size: 0.95rem;
    line-height: 1.7;
  }

  .aditya-hero-actions {
    flex-direction: column;

    width: 100%;

    margin-top: 30px;
  }

  .aditya-btn {
    width: min(100%, 320px);

    min-height: 52px;
  }

  .aditya-hero-focus {
    gap: 7px;

    margin-top: 28px;
  }

  .aditya-hero-focus span {
    padding: 7px 11px;

    font-size: 0.72rem;
  }

  .aditya-hero-glow {
    width: 280px;
    height: 280px;

    filter: blur(75px);

    opacity: 0.25;
  }

  .aditya-hero-glow-one {
    left: -150px;
  }

  .aditya-hero-glow-two {
    right: -150px;
  }

  .aditya-scroll-indicator {
    bottom: 22px;

    width: 25px;
    height: 42px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .aditya-btn {
    transition: none;
  }

  .aditya-scroll-indicator span {
    animation: none;
  }
}

/* =========================================================
   ABOUT / POSITIONING
========================================================= */

.aditya-about {
  position: relative;

  padding: 130px 24px;

  background: transparent;
  /*radial-gradient(
      circle at 85% 40%,
      rgba(37, 99, 235, 0.08),
      transparent 30%
    ),
    #06162d;*/

  overflow: hidden;
}

/* =========================================================
   SECTION CONTAINER
========================================================= */

.aditya-section-container {
  width: min(100%, 1150px);

  margin: 0 auto;
}

/* =========================================================
   ABOUT GRID
========================================================= */

.aditya-about-grid {
  display: grid;

  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);

  gap: 90px;

  align-items: start;
}

/* =========================================================
   SECTION LABEL
========================================================= */

.aditya-section-label {
  margin: 0 0 20px;

  color: #8ba6c1;

  font-size: 0.76rem;
  font-weight: 600;

  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* =========================================================
   SECTION HEADING
========================================================= */

.aditya-about-heading h2 {
  max-width: 480px;

  margin: 0;

  color: #f4f7fb;

  font-size: clamp(2.2rem, 4vw, 3.5rem);

  font-weight: 600;

  line-height: 1.15;

  letter-spacing: -0.035em;
}

/* =========================================================
   ABOUT CONTENT
========================================================= */

.aditya-about-content {
  max-width: 680px;
}

.aditya-about-content p {
  margin: 0 0 22px;

  color: #aebed1;

  font-size: 1rem;

  line-height: 1.8;
}

.aditya-about-content .aditya-about-lead {
  margin-bottom: 26px;

  color: #dce8f4;

  font-size: 1.35rem;

  line-height: 1.55;

  font-weight: 500;
}

/* =========================================================
   HIGHLIGHTS
========================================================= */

.aditya-about-highlights {
  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 12px;

  margin-top: 38px;
}

.aditya-about-highlight {
  padding: 20px;

  border: 1px solid rgba(139, 166, 193, 0.15);

  border-radius: 12px;

  background: rgba(139, 166, 193, 0.045);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.aditya-about-highlight:hover {
  transform: translateY(-3px);

  border-color: rgba(139, 166, 193, 0.28);

  background: rgba(139, 166, 193, 0.07);
}

.aditya-about-highlight strong {
  display: block;

  margin-bottom: 9px;

  color: #dce8f4;

  font-size: 0.92rem;

  font-weight: 600;
}

.aditya-about-highlight span {
  display: block;

  color: #8fa5ba;

  font-size: 0.78rem;

  line-height: 1.55;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .aditya-about {
    padding: 100px 22px;
  }

  .aditya-about-grid {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .aditya-about-heading h2 {
    max-width: 700px;
  }

  .aditya-about-content {
    max-width: 750px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .aditya-about {
    padding: 85px 18px;
  }

  .aditya-about-grid {
    gap: 32px;
  }

  .aditya-section-label {
    margin-bottom: 14px;

    font-size: 0.68rem;
  }

  .aditya-about-heading h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);

    line-height: 1.18;
  }

  .aditya-about-content .aditya-about-lead {
    font-size: 1.15rem;

    line-height: 1.6;
  }

  .aditya-about-content p {
    font-size: 0.94rem;

    line-height: 1.75;
  }

  .aditya-about-highlights {
    grid-template-columns: 1fr;

    gap: 10px;

    margin-top: 30px;
  }

  .aditya-about-highlight {
    padding: 17px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .aditya-about-highlight {
    transition: none;
  }
}

/* =========================================================
   EXPERTISE
========================================================= */

.aditya-expertise {
  position: relative;

  padding: 130px 24px;

  background: transparent;
  /*radial-gradient(
      circle at 15% 50%,
      rgba(37, 99, 235, 0.08),
      transparent 32%
    ),
    #071a34;*/

  overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.aditya-expertise-header {
  max-width: 760px;

  margin-bottom: 65px;
}

.aditya-expertise-header h2 {
  max-width: 700px;

  margin: 0 0 24px;

  color: #f4f7fb;

  font-size: clamp(2.3rem, 4vw, 3.6rem);

  line-height: 1.15;

  font-weight: 600;

  letter-spacing: -0.035em;
}

.aditya-expertise-intro {
  max-width: 650px;

  margin: 0;

  color: #aebed1;

  font-size: 1.05rem;

  line-height: 1.75;
}

/* =========================================================
   EXPERTISE GRID
========================================================= */

.aditya-expertise-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

/* =========================================================
   CARD
========================================================= */

.aditya-expertise-card {
  position: relative;

  display: flex;

  gap: 28px;

  min-height: 300px;

  padding: 34px;

  border: 1px solid rgba(139, 166, 193, 0.14);

  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(30, 62, 96, 0.35),
    rgba(7, 26, 52, 0.65)
  );

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* subtle light effect */

.aditya-expertise-card::before {
  content: "";

  position: absolute;

  width: 180px;
  height: 180px;

  top: -100px;
  right: -80px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.12);

  filter: blur(50px);

  pointer-events: none;
}

.aditya-expertise-card:hover {
  transform: translateY(-5px);

  border-color: rgba(139, 166, 193, 0.3);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.18);
}

/* =========================================================
   NUMBER
========================================================= */

.aditya-expertise-number {
  flex: 0 0 auto;

  color: #6f91b1;

  font-size: 0.78rem;

  font-weight: 600;

  letter-spacing: 0.12em;
}

/* =========================================================
   CONTENT
========================================================= */

.aditya-expertise-card-content {
  position: relative;

  z-index: 1;
}

.aditya-expertise-card h3 {
  margin: 0 0 15px;

  color: #eaf2fa;

  font-size: 1.45rem;

  line-height: 1.3;

  font-weight: 600;
}

.aditya-expertise-card p {
  margin: 0 0 22px;

  color: #a9bbcf;

  font-size: 0.94rem;

  line-height: 1.7;
}

/* =========================================================
   LIST
========================================================= */
/* =========================================================
   EXPERTISE LIST
========================================================= */

.aditya-expertise-card ul {
  display: flex;
  flex-direction: column;
  gap: 13px;

  margin: 0;
  padding: 0;

  list-style: none;
}

.aditya-expertise-card li {
  position: relative;

  display: flex;
  align-items: center;

  padding-left: 30px;

  color: #9db1c6;

  font-size: 0.84rem;
  line-height: 1.5;
}

/* Glowing checkmark */

.aditya-expertise-card li::before {
  content: "✓";

  position: absolute;
  left: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;

  /*border: 1px solid rgba(111, 169, 220, 0.45);
  border-radius: 50%;*/

  color: #8fd3ff;

  font-size: 0.68rem;
  font-weight: 700;

  /*background: rgba(111, 169, 220, 0.08);

  box-shadow: 0 0 8px rgba(111, 169, 220, 0.25);

  text-shadow: 0 0 6px rgba(143, 211, 255, 0.8);*/

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

/* Slight interaction when card is hovered */

.aditya-expertise-card:hover li::before {
  /* background: rgba(111, 169, 220, 0.15);

  box-shadow: 0 0 10px rgba(111, 169, 220, 0.4);*/

  transform: scale(1.05);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .aditya-expertise {
    padding: 100px 22px;
  }

  .aditya-expertise-header {
    margin-bottom: 45px;
  }

  .aditya-expertise-grid {
    grid-template-columns: 1fr;
  }

  .aditya-expertise-card {
    min-height: auto;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .aditya-expertise {
    padding: 85px 18px;
  }

  .aditya-expertise-header {
    margin-bottom: 35px;
  }

  .aditya-expertise-header h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .aditya-expertise-intro {
    font-size: 0.94rem;

    line-height: 1.7;
  }

  .aditya-expertise-card {
    display: block;

    padding: 26px 22px;

    border-radius: 15px;
  }

  .aditya-expertise-number {
    margin-bottom: 20px;
  }

  .aditya-expertise-card h3 {
    font-size: 1.3rem;
  }

  .aditya-expertise-card p {
    font-size: 0.9rem;

    line-height: 1.7;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .aditya-expertise-card {
    transition: none;
  }
}

/* =========================================================
   CONSULTING APPROACH
========================================================= */

.aditya-approach {
  position: relative;

  padding: 130px 24px;

  background: transparent;
  /*radial-gradient(
      circle at 85% 45%,
      rgba(37, 99, 235, 0.08),
      transparent 32%
    ),
    #06182f;*/

  overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.aditya-approach-header {
  max-width: 760px;

  margin-bottom: 70px;
}

.aditya-approach-header h2 {
  max-width: 700px;

  margin: 0 0 24px;

  color: #f4f7fb;

  font-size: clamp(2.3rem, 4vw, 3.6rem);

  line-height: 1.15;

  font-weight: 600;

  letter-spacing: -0.035em;
}

.aditya-approach-intro {
  max-width: 650px;

  margin: 0;

  color: #aebed1;

  font-size: 1.05rem;

  line-height: 1.75;
}

/* =========================================================
   PROCESS GRID
========================================================= */

.aditya-approach-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 0;
}

/* =========================================================
   CARD
========================================================= */

.aditya-approach-card {
  position: relative;

  padding: 0 32px;

  border-left: 1px solid rgba(139, 166, 193, 0.16);

  transition: transform 0.3s ease;
}

.aditya-approach-card:first-child {
  padding-left: 0;

  border-left: none;
}

.aditya-approach-card:last-child {
  padding-right: 0;
}

/* =========================================================
   TOP / NUMBER
========================================================= */

.aditya-approach-top {
  display: flex;

  align-items: center;

  min-height: 34px;

  margin-bottom: 32px;
}

.aditya-approach-number {
  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(111, 169, 220, 0.3);

  border-radius: 50%;

  background: rgba(111, 169, 220, 0.07);

  color: #8fd3ff;

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 0.04em;

  box-shadow: 0 0 12px rgba(111, 169, 220, 0.12);
}

/* =========================================================
   CONNECTING LINE
========================================================= */

.aditya-approach-line {
  flex: 1;

  height: 1px;

  margin-left: 15px;

  background: linear-gradient(90deg, rgba(111, 169, 220, 0.25), transparent);
}

/* =========================================================
   CONTENT
========================================================= */

.aditya-approach-card h3 {
  margin: 0 0 15px;

  color: #eaf2fa;

  font-size: 1.35rem;

  line-height: 1.3;

  font-weight: 600;
}

.aditya-approach-card p {
  max-width: 270px;

  margin: 0;

  color: #9fb2c7;

  font-size: 0.9rem;

  line-height: 1.75;
}

/* =========================================================
   HOVER
========================================================= */

.aditya-approach-card:hover {
  transform: translateY(-4px);
}

.aditya-approach-card:hover .aditya-approach-number {
  border-color: rgba(143, 211, 255, 0.55);

  box-shadow: 0 0 18px rgba(111, 169, 220, 0.25);
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1000px) {
  .aditya-approach {
    padding: 100px 22px;
  }

  .aditya-approach-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));

    gap: 55px 0;
  }

  .aditya-approach-card {
    padding: 0 28px;
  }

  .aditya-approach-card:nth-child(3) {
    padding-left: 0;

    border-left: none;
  }

  .aditya-approach-card p {
    max-width: 340px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .aditya-approach {
    padding-left: 18px;
    padding-right: 18px;
  }

  .aditya-approach-header {
    margin-bottom: 45px;
  }

  .aditya-approach-header h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .aditya-approach-intro {
    font-size: 0.94rem;
  }

  .aditya-approach-grid {
    grid-template-columns: 1fr;
    padding-right: 18px;
    padding-left: 18px;

    gap: 42px;
  }

  .aditya-approach-card,
  .aditya-approach-card:nth-child(3) {
    padding: 0 0 0 25px;

    border-left: 1px solid rgba(139, 166, 193, 0.16);
  }

  .aditya-approach-card:first-child {
    padding-left: 25px;

    border-left: 1px solid rgba(139, 166, 193, 0.16);
  }

  .aditya-approach-card:last-child {
    padding-right: 0;
  }

  .aditya-approach-top {
    margin-left: -45px;

    margin-bottom: 24px;
  }

  .aditya-approach-line {
    display: none;
  }

  .aditya-approach-card p {
    max-width: none;

    font-size: 0.9rem;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .aditya-approach-card {
    transition: none;
  }
}

/* =========================================================
   SELECTED WORK
========================================================= */

.aditya-work {
  position: relative;

  padding: 130px 24px;

  background: transparent;
  /*radial-gradient(
      circle at 10% 50%,
      rgba(37, 99, 235, 0.07),
      transparent 32%
    ),
    #071a34;*/

  overflow: hidden;
}

/* =========================================================
   HEADER
========================================================= */

.aditya-work-header {
  max-width: 760px;

  margin-bottom: 65px;
}

.aditya-work-header h2 {
  max-width: 700px;

  margin: 0 0 24px;

  color: #f4f7fb;

  font-size: clamp(2.3rem, 4vw, 3.6rem);

  line-height: 1.15;

  font-weight: 600;

  letter-spacing: -0.035em;
}

.aditya-work-intro {
  max-width: 650px;

  margin: 0;

  color: #aebed1;

  font-size: 1.05rem;

  line-height: 1.75;
}

/* =========================================================
   PROJECT GRID
========================================================= */

.aditya-work-grid {
  display: grid;

  grid-template-columns: repeat(2, minmax(0, 1fr));

  gap: 18px;
}

/* =========================================================
   PROJECT CARD
========================================================= */

.aditya-work-card {
  position: relative;

  min-height: 360px;

  display: flex;

  flex-direction: column;

  padding: 25px 22px;

  border: 1px solid rgba(139, 166, 193, 0.14);

  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(30, 62, 96, 0.32),
    rgba(7, 26, 52, 0.72)
  );

  overflow: hidden;

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

/* subtle glow */

.aditya-work-card::before {
  content: "";

  position: absolute;

  width: 240px;
  height: 240px;

  right: -120px;
  bottom: -130px;

  border-radius: 50%;

  background: rgba(37, 99, 235, 0.1);

  filter: blur(55px);

  pointer-events: none;
}

.aditya-work-card:hover {
  transform: translateY(-5px);

  border-color: rgba(139, 166, 193, 0.3);

  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

/* =========================================================
   CARD TOP
========================================================= */

.aditya-work-card-top {
  position: relative;

  z-index: 1;

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 48px;
}

.aditya-work-category {
  color: #7fa6ca;

  font-size: 0.68rem;

  font-weight: 600;

  letter-spacing: 0.13em;
}

.aditya-work-index {
  color: #607e9c;

  font-size: 0.75rem;

  font-weight: 600;
}

/* =========================================================
   CONTENT
========================================================= */

.aditya-work-content {
  position: relative;

  z-index: 1;

  flex: 1;
}

.aditya-work-content h3 {
  margin: 0 0 16px;

  color: #eaf2fa;

  font-size: 1.55rem;

  line-height: 1.3;

  font-weight: 600;
}

.aditya-work-content p {
  max-width: 520px;

  margin: 0 0 25px;

  color: #a3b6ca;

  font-size: 0.92rem;

  line-height: 1.75;
}

/* =========================================================
   TAGS
========================================================= */

.aditya-work-tags {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin: 0;

  padding: 0;

  list-style: none;
}

.aditya-work-tags li {
  padding: 7px 11px;

  border: 1px solid rgba(111, 169, 220, 0.15);

  border-radius: 20px;

  background: rgba(111, 169, 220, 0.05);

  color: #8da7c0;

  font-size: 0.7rem;
}

.aditya-work-tags li::before {
  content: none;
}

/* =========================================================
   ARROW
========================================================= */

.aditya-work-arrow {
  position: absolute;

  right: 28px;
  bottom: 25px;

  z-index: 2;

  display: flex;

  align-items: center;
  justify-content: center;

  width: 38px;
  height: 38px;

  border: 1px solid rgba(111, 169, 220, 0.18);

  border-radius: 50%;

  color: #8fd3ff;

  font-size: 1rem;

  background: rgba(111, 169, 220, 0.05);

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.aditya-work-card:hover .aditya-work-arrow {
  transform: translate(3px, -3px);

  background: rgba(111, 169, 220, 0.12);
}

/* =========================================================
   CTA
========================================================= */

.aditya-work-cta {
  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  margin-top: 55px;

  padding-top: 30px;

  border-top: 1px solid rgba(139, 166, 193, 0.12);
}

.aditya-work-cta p {
  margin: 0;

  color: #93a9be;

  font-size: 0.9rem;
}

.aditya-work-cta-link {
  display: inline-flex;

  align-items: center;

  gap: 10px;

  color: #9ed7ff;

  font-size: 0.9rem;

  font-weight: 600;

  text-decoration: none;

  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.aditya-work-cta-link:hover {
  gap: 14px;

  color: #c1e8ff;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {
  .aditya-work {
    padding: 100px 22px;
  }

  .aditya-work-grid {
    grid-template-columns: 1fr;
  }

  .aditya-work-card {
    min-height: 320px;
  }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .aditya-work {
    padding: 85px 18px;
  }

  .aditya-work-header {
    margin-bottom: 40px;
  }

  .aditya-work-header h2 {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .aditya-work-intro {
    font-size: 0.94rem;
  }

  .aditya-work-card {
    min-height: auto;

    padding: 25px 22px;

    border-radius: 15px;
  }

  .aditya-work-card-top {
    margin-bottom: 35px;
  }

  .aditya-work-content h3 {
    font-size: 1.3rem;
  }

  .aditya-work-content p {
    font-size: 0.9rem;
  }

  .aditya-work-cta {
    align-items: flex-start;

    flex-direction: column;

    gap: 15px;

    margin-top: 40px;
  }
}

/* =========================================================
   REDUCED MOTION
========================================================= */

@media (prefers-reduced-motion: reduce) {
  .aditya-work-card,
  .aditya-work-arrow,
  .aditya-work-cta-link {
    transition: none;
  }
}

/* =========================================
   FAQ SECTION
========================================= */

.aditya-faq {
  position: relative;
  padding: 120px 0;
  background: transparent;
}

.aditya-faq-container {
  width: min(100% - 48px, 1050px);
  margin: 0 auto;
}

/* ---------- Heading ---------- */

.aditya-faq-heading {
  max-width: 720px;
  margin-bottom: 55px;
}

.aditya-faq-heading .aditya-section-label {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--aditya-blue);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

.aditya-faq-heading h2 {
  margin: 0 0 18px;
  color: var(--aditya-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
}

.aditya-faq-heading p {
  max-width: 650px;
  margin: 0;
  color: var(--aditya-text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* ---------- FAQ List ---------- */

.aditya-faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

/* ---------- FAQ Item ---------- */

.aditya-faq-item {
  border: 1px solid rgba(139, 166, 193, 0.18);
  border-radius: 16px;
  background: rgba(14, 41, 83, 0.28);
  overflow: hidden;
  transition:
    border-color 250ms ease,
    background 250ms ease,
    box-shadow 250ms ease;
}

.aditya-faq-item:hover {
  border-color: rgba(106, 169, 255, 0.35);
  background: rgba(14, 41, 83, 0.4);
}

/* ---------- Question ---------- */

.aditya-faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;

  padding: 24px 28px;

  color: var(--aditya-text);
  font-size: 1.05rem;
  font-weight: 600;
  line-height: 1.5;

  cursor: pointer;
  list-style: none;
}

.aditya-faq-item summary::-webkit-details-marker {
  display: none;
}

/* ---------- Plus Icon ---------- */

.aditya-faq-icon {
  flex: 0 0 auto;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 34px;
  height: 34px;

  border: 1px solid rgba(106, 169, 255, 0.3);
  border-radius: 50%;

  color: var(--aditya-blue);
  font-size: 1.35rem;
  font-weight: 400;

  transition:
    transform 250ms ease,
    background 250ms ease;
}

/* Rotate + when open */

.aditya-faq-item[open] .aditya-faq-icon {
  transform: rotate(45deg);
  background: rgba(106, 169, 255, 0.08);
}

/* ---------- Answer ---------- */

.aditya-faq-answer {
  padding: 0 28px 26px;
}

.aditya-faq-answer p {
  max-width: 850px;
  margin: 0;

  color: var(--aditya-text-muted);
  font-size: 0.98rem;
  line-height: 1.8;
}

/* =========================================
   MOBILE
========================================= */

@media (max-width: 768px) {
  .aditya-faq {
    padding: 85px 0;
  }

  .aditya-faq-container {
    width: min(100% - 32px, 650px);
  }

  .aditya-faq-heading {
    margin-bottom: 38px;
  }

  .aditya-faq-heading h2 {
    font-size: 2rem;
  }

  .aditya-faq-heading p {
    font-size: 0.95rem;
    line-height: 1.7;
  }

  .aditya-faq-item {
    border-radius: 14px;
  }

  .aditya-faq-item summary {
    padding: 20px;
    gap: 16px;
    font-size: 0.98rem;
  }

  .aditya-faq-icon {
    width: 30px;
    height: 30px;
    font-size: 1.2rem;
  }

  .aditya-faq-answer {
    padding: 0 20px 22px;
  }

  .aditya-faq-answer p {
    font-size: 0.92rem;
    line-height: 1.75;
  }
}

/* =========================================================
   CONSULTATION CTA
========================================================= */

.aditya-cta {
  position: relative;

  padding: 120px 24px;

  overflow: hidden;

  border-top: 1px solid rgba(139, 166, 193, 0.1);
}

/* -----------------------------------------
   BACKGROUND GLOW
----------------------------------------- */

.aditya-cta::before {
  content: "";

  position: absolute;

  width: 500px;
  height: 500px;

  top: 50%;
  left: 50%;

  transform: translate(-50%, -50%);

  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.18) 0%,
    rgba(37, 99, 235, 0.06) 35%,
    transparent 70%
  );

  pointer-events: none;
}

/* -----------------------------------------
   INNER CONTAINER
----------------------------------------- */

.aditya-cta-inner {
  position: relative;

  z-index: 1;

  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}

/* -----------------------------------------
   LABEL
----------------------------------------- */

.aditya-cta .aditya-section-label {
  display: inline-block;

  margin-bottom: 22px;

  color: #8fd3ff;

  font-size: 0.72rem;

  font-weight: 600;

  letter-spacing: 0.18em;
}

/* -----------------------------------------
   HEADING
----------------------------------------- */

.aditya-cta h2 {
  margin: 0;

  color: #f4f7fb;

  font-size: clamp(2.4rem, 5vw, 4.5rem);

  line-height: 1.08;

  font-weight: 700;

  letter-spacing: -0.035em;
}

.aditya-cta h2 span {
  display: block;

  color: #8fd3ff;

  text-shadow: 0 0 25px rgba(143, 211, 255, 0.18);
}

/* -----------------------------------------
   DESCRIPTION
----------------------------------------- */

.aditya-cta-description {
  max-width: 680px;

  margin: 28px auto 0;

  color: #aebfd2;

  font-size: 1.05rem;

  line-height: 1.8;
}

/* -----------------------------------------
   ACTIONS
----------------------------------------- */

.aditya-cta-actions {
  display: flex;

  justify-content: center;
  align-items: center;

  gap: 14px;

  margin-top: 38px;
}

/* -----------------------------------------
   PRIMARY BUTTON
----------------------------------------- */

.aditya-cta-primary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 50px;

  padding: 0 24px;

  border-radius: 8px;

  background: #6fa9dc;

  color: #ffffff;

  font-size: 0.92rem;

  font-weight: 600;

  text-decoration: none;

  box-shadow: 0 8px 25px rgba(37, 99, 235, 0.16);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.aditya-cta-primary:hover {
  transform: translateY(-2px);

  background: #82b9e8;

  box-shadow: 0 12px 30px rgba(37, 99, 235, 0.25);

  color: #ffffff;
}

.aditya-cta-primary span {
  font-size: 1.1rem;

  transition: transform 0.25s ease;
}

.aditya-cta-primary:hover span {
  transform: translateX(3px);
}

/* -----------------------------------------
   SECONDARY BUTTON
----------------------------------------- */

.aditya-cta-secondary {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  min-height: 50px;

  padding: 0 22px;

  border: 1px solid rgba(111, 169, 220, 0.35);

  border-radius: 8px;

  color: #c8d8e8;

  font-size: 0.92rem;

  font-weight: 500;

  text-decoration: none;

  background: rgba(111, 169, 220, 0.04);

  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.aditya-cta-secondary:hover {
  transform: translateY(-2px);

  background: rgba(111, 169, 220, 0.09);

  border-color: rgba(111, 169, 220, 0.55);

  color: #ffffff;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 600px) {
  .aditya-cta {
    padding: 85px 20px;
  }

  .aditya-cta-inner {
    width: 100%;
  }

  .aditya-cta h2 {
    font-size: clamp(2.2rem, 10vw, 3rem);

    line-height: 1.12;
  }

  .aditya-cta-description {
    margin-top: 22px;

    font-size: 0.95rem;

    line-height: 1.7;
  }

  .aditya-cta-actions {
    flex-direction: column;

    width: 100%;

    margin-top: 30px;
  }

  .aditya-cta-primary,
  .aditya-cta-secondary {
    width: 100%;
    max-width: 320px;
  }
}
