* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange: #ff7a00;
  --orange-dark: #f06500;
  --orange-light: #ffad4d;
  --orange-soft: #fff3e6;
  --grey: #f7f7f8;
  --grey-2: #eeeeee;
  --text: #202124;
  --muted: #6f6f76;
  --white: #ffffff;
  --shadow: 0 20px 55px rgba(255, 122, 0, 0.15);
  --radius: 24px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--white);
  color: var(--text);
  overflow-x: hidden;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

.cursor-glow {
  position: fixed;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.16), transparent 65%);
  pointer-events: none;
  transform: translate(-50%, -50%);
  z-index: 1;
}

/* NAVBAR */

.navbar {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1040px, 92%);
  height: 66px;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 122, 0, 0.14);
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px 0 18px;
  z-index: 99;
  box-shadow: 0 14px 45px rgba(0, 0, 0, 0.07);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.logo h3 {
  font-size: 20px;
  font-weight: 800;
  margin: 0;
}

.logo span {
  display: block;
  font-size: 11px;
  color: #777;
}

.nav-links {
  display: flex;
  gap: 26px;
}

.nav-links a {
  font-size: 13px;
  color: var(--muted);
  font-weight: 700;
  transition: 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--orange);
}

.nav-btn,
.primary-btn,
.secondary-btn {
  padding: 13px 21px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: 0.35s ease;
}

.nav-btn,
.primary-btn {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  box-shadow: var(--shadow);
}

.nav-btn:hover,
.primary-btn:hover {
  transform: translateY(-4px) scale(1.03);
  box-shadow: 0 25px 70px rgba(255, 122, 0, 0.32);
}

.secondary-btn {
  background: white;
  color: var(--orange);
  border: 1px solid rgba(255, 122, 0, 0.24);
}

.secondary-btn:hover {
  background: var(--orange-soft);
  transform: translateY(-4px);
}

.menu-btn {
  display: none;
  border: none;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

/* HERO */

.hero {
  min-height: 100vh;
  padding: 135px 7% 75px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 45px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 15%, rgba(255, 122, 0, 0.12), transparent 30%),
    linear-gradient(180deg, #ffffff, #fffaf4);
}


.hero-bg-shape {
  position: absolute;
  border-radius: 999px;
  background: var(--orange-soft);
  border: 1px solid rgba(255, 122, 0, 0.18);
  animation: morph 8s ease-in-out infinite;
}

.shape-one {
  width: 250px;
  height: 250px;
  top: 110px;
  right: -80px;
}

.shape-two {
  width: 160px;
  height: 160px;
  bottom: 80px;
  left: -60px;
  animation-delay: 1.4s;
}

.tag,
.section-heading span,
.founder-info span,
.contact-content span {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(42px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -3px;
  font-weight: 900;
  max-width: 700px;
}

.hero p {
  margin-top: 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 610px;
}

.hero-buttons,
.contact-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-visual {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
}

.main-card {
  width: min(355px, 92vw);
  min-height: 405px;
  background: linear-gradient(145deg, rgba(255,255,255,0.98), rgba(255,243,230,0.95));
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 34px;
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
  transform-style: preserve-3d;
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--orange);
  font-weight: 900;
}

.main-card h2 {
  margin-top: 58px;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -2px;
}

.main-card p {
  margin-top: 14px;
  font-size: 15px;
  color: var(--muted);
}

.mini-services {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.mini-services div {
  background: white;
  padding: 13px;
  border-radius: 15px;
  display: flex;
  gap: 9px;
  align-items: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

.mini-services i,
.small-card i {
  color: var(--orange);
}

.small-card {
  position: absolute;
  background: white;
  padding: 15px 18px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.09);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 900;
  animation: float 4.8s ease-in-out infinite;
}

.card-a {
  top: 62px;
  right: 15px;
}

.card-b {
  bottom: 72px;
  left: 8px;
  animation-delay: 1s;
}

/* COMMON SECTIONS */

.section {
  padding: 88px 7%;
}

.section-heading {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 45px;
}

.section-heading h2 {
  font-size: clamp(30px, 3.4vw, 48px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  font-weight: 900;
}

.section-heading p {
  margin-top: 16px;
  color: var(--muted);
  line-height: 1.8;
  font-size: 15.5px;
}
@media (max-width: 768px) {

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    min-height: auto;
  }

  .hero-visual {
    display: none !important;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }
}

/* STATS */

.stats {
  width: min(980px, 90%);
  margin: -34px auto 0;
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  position: relative;
  z-index: 5;
}

.stat-box {
  background: var(--grey);
  padding: 26px;
  border-radius: 20px;
  text-align: center;
}

.stat-box h3 {
  font-size: 36px;
  color: var(--orange);
  font-weight: 900;
}

.stat-box h3::after {
  content: "+";
}

.stat-box:first-child h3::after {
  content: "%";
}

.stat-box p {
  color: var(--muted);
  margin-top: 7px;
  font-weight: 700;
}

/* CARDS */

.about-grid,
.services-grid,
.portfolio-grid,
.process-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.about-grid {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.portfolio-grid,
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.process-grid {
  grid-template-columns: repeat(4, 1fr);
}

.about-card,
.service-card,
.portfolio-card,
.process-step,
.testimonial-card {
  background: white;
  border: 1px solid rgba(255, 122, 0, 0.12);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.04);
  transition: 0.4s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before,
.service-card::before,
.process-step::before {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 0;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  transition: 0.4s;
  z-index: 0;
}

.about-card:hover::before,
.service-card:hover::before,
.process-step:hover::before {
  height: 100%;
}

.about-card > *,
.service-card > *,
.process-step > * {
  position: relative;
  z-index: 1;
}

.about-card:hover,
.service-card:hover,
.process-step:hover {
  transform: translateY(-10px);
  color: white;
}

.about-card:hover p,
.service-card:hover p,
.process-step:hover p,
.process-step:hover span {
  color: white;
}

.about-card i,
.service-card i {
  width: 42px;
  height: 42px;
  color: var(--orange);
  margin-bottom: 20px;
  transition: 0.3s;
}

.about-card:hover i,
.service-card:hover i {
  color: white;
}

.about-card h3,
.service-card h3,
.portfolio-card h3,
.process-step h3 {
  font-size: 20px;
  margin-bottom: 11px;
}

.about-card p,
.service-card p,
.portfolio-card p,
.process-step p,
.testimonial-card p {
  color: var(--muted);
  line-height: 1.72;
  font-size: 14.5px;
}

.services {
  background: linear-gradient(180deg, var(--grey), white);
}

/* .portfolio-preview {
  height: 190px;
  border-radius: 22px;
  margin-bottom: 22px;
  display: grid;
  place-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.portfolio-preview i {
  width: 68px;
  height: 68px;
  color: white;
  z-index: 2;
}

.portfolio-preview::after {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  top: -50px;
  right: -45px;
  animation: pulse 3s ease-in-out infinite;
} */

.process {
  background: var(--orange-soft);
}

.process-step span {
  color: var(--orange);
  font-size: 36px;
  font-weight: 900;
  display: block;
  margin-bottom: 18px;
}

/* FOUNDER */

.founder-card {
  background:
    radial-gradient(circle at 85% 20%, rgba(255, 122, 0, 0.14), transparent 28%),
    linear-gradient(135deg, white, #fff8f0);
  border: 1px solid rgba(255, 122, 0, 0.18);
  border-radius: 38px;
  padding: 52px;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  align-items: center;
  gap: 48px;
  box-shadow: 0 24px 75px rgba(255, 122, 0, 0.14);
  position: relative;
  overflow: hidden;
}

.founder-card::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 122, 0, 0.08);
  left: -90px;
  bottom: -100px;
}

.founder-info {
  position: relative;
  z-index: 2;
}

.founder-info span {
  display: inline-block;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.founder-info h2 {
  font-size: clamp(34px, 4.5vw, 58px);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 12px;
}

.founder-info h4 {
  color: var(--orange);
  font-size: 17px;
  margin-bottom: 20px;
}

.founder-info p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 15.5px;
  margin-bottom: 16px;
}

.founder-info .primary-btn {
  margin-top: 14px;
}

.founder-image-wrap {
  position: relative;
  min-height: 430px;
  display: grid;
  place-items: center;
  z-index: 2;
}

.founder-glow {
  position: absolute;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(255, 122, 0, 0.32), transparent 65%);
  border-radius: 50%;
  animation: pulse 4s ease-in-out infinite;
}

.founder-image {
  width: min(360px, 100%);
  height: 430px;
  border-radius: 30px;
  overflow: hidden;
  border: 5px solid white;
  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.12),
    0 20px 70px rgba(255, 122, 0, 0.22);
  position: relative;
  animation: founderFloat 4s ease-in-out infinite;
}

.founder-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.founder-badge {
  position: absolute;
  left: 10px;
  bottom: 35px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 122, 0, 0.2);
  border-radius: 20px;
  padding: 14px 18px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.08);
}

.founder-badge strong {
  display: block;
  color: var(--orange);
  font-size: 16px;
  font-weight: 900;
}

.founder-badge span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

@keyframes founderFloat {
  0%, 100% {
    transform: translateY(0) rotate(-1deg);
  }

  50% {
    transform: translateY(-12px) rotate(1deg);
  }
}

@media (max-width: 950px) {
  .founder-card {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 38px 26px;
  }

  .founder-image-wrap {
    min-height: 390px;
  }

  .founder-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: 20px;
  }
}

@media (max-width: 700px) {
  .founder-card {
    padding: 30px 20px;
    border-radius: 28px;
  }

  .founder-info h2 {
    font-size: 34px;
  }

  .founder-image-wrap {
    min-height: 350px;
  }

  .founder-image {
    width: 100%;
    max-width: 280px;
    height: 340px;
    border-radius: 24px;
  }

  .founder-badge {
    width: max-content;
    max-width: 90%;
  }
}

/* TESTIMONIALS */

.testimonials {
  background: var(--grey);
}

.testimonial-card h4 {
  margin-top: 20px;
  color: var(--orange);
}

/* FAQ */

.faq-grid {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 13px;
}

.faq-item {
  background: white;
  border: 1px solid rgba(255, 122, 0, 0.14);
  border-radius: 18px;
  padding: 17px 21px;
}

.faq-item button {
  width: 100%;
  background: none;
  border: none;
  font-family: inherit;
  font-weight: 800;
  display: flex;
  justify-content: space-between;
  gap: 15px;
  cursor: pointer;
  color: var(--text);
  text-align: left;
}

.faq-item p {
  color: var(--muted);
  line-height: 1.7;
  max-height: 0;
  overflow: hidden;
  transition: 0.35s;
}

.faq-item.active p {
  max-height: 180px;
  margin-top: 15px;
}

.faq-item.active svg {
  transform: rotate(180deg);
}

/* CONTACT FORM */

.contact-wrapper {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 38px;
  padding: 42px;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.contact-wrapper::before {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(255,255,255,0.16);
  border-radius: 50%;
  top: -140px;
  left: -100px;
  animation: pulse 4s ease-in-out infinite;
}

.contact-content {
  position: relative;
  color: white;
}

.contact-content span {
  background: rgba(255,255,255,0.22);
  color: white;
}

.contact-content h2 {
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -2px;
}

.contact-content p {
  margin-top: 18px;
  line-height: 1.8;
  opacity: 0.95;
}

.quick-contact {
  margin-top: 24px;
  display: grid;
  gap: 10px;
}

.quick-contact a {
  color: white;
  font-weight: 700;
}

.contact-form {
  position: relative;
  background: white;
  padding: 28px;
  border-radius: 28px;
  display: grid;
  gap: 16px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 800;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(255,122,0,0.22);
  background: #fffaf4;
  border-radius: 15px;
  padding: 14px 15px;
  font-family: inherit;
  font-size: 14px;
  outline: none;
  transition: 0.3s;
  color: var(--text);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange);
  background: white;
  box-shadow: 0 0 0 4px rgba(255,122,0,0.12);
}

.form-group textarea {
  resize: none;
}

.form-btn {
  border: none;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 15px 22px;
  border-radius: 50px;
  font-family: inherit;
  font-weight: 900;
  cursor: pointer;
  transition: 0.35s;
  box-shadow: var(--shadow);
}

.form-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 25px 70px rgba(255,122,0,0.32);
}

/* FOOTER */

.footer {
  padding: 36px 7%;
  border-top: 1px solid var(--grey-2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 18px;
}

.footer-links a,
.footer p {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
}

/* ANIMATIONS */

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition: 0.85s cubic-bezier(.2,.8,.2,1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.floating {
  animation: float 4s ease-in-out infinite;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-16px) rotate(1deg);
  }
}

@keyframes morph {
  0%, 100% {
    border-radius: 45% 55% 60% 40%;
  }
  50% {
    border-radius: 60% 40% 45% 55%;
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.16);
    opacity: 0.45;
  }
}

@keyframes rotate {
  to {
    transform: rotate(360deg);
  }
}

/* RESPONSIVE */

@media (max-width: 1150px) {
  .services-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero h1 {
    font-size: clamp(40px, 5.4vw, 60px);
  }
}

@media (max-width: 950px) {
  .navbar {
    width: 94%;
  }

  .nav-links {
    display: none;
  }

  .menu-btn {
    display: grid;
    place-items: center;
    background: var(--orange-soft);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: var(--orange);
  }

  .mobile-menu {
    position: fixed;
    top: 92px;
    left: 50%;
    transform: translateX(-50%) translateY(-15px);
    width: 90%;
    background: white;
    border: 1px solid rgba(255,122,0,0.14);
    border-radius: 24px;
    padding: 18px;
    display: grid;
    gap: 6px;
    z-index: 90;
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    box-shadow: var(--shadow);
  }

  .mobile-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }

  .mobile-menu a {
    padding: 14px 16px;
    border-radius: 14px;
    color: var(--muted);
    font-weight: 800;
  }

  .mobile-menu a:hover {
    background: var(--orange-soft);
    color: var(--orange);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 125px;
    text-align: center;
  }

  .hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-visual {
    min-height: 420px;
  }

  .about-grid,
  .portfolio-grid,
  .testimonial-grid,
  .founder-card,
  .contact-wrapper {
    grid-template-columns: 1fr;
  }

  .founder-card,
  .contact-wrapper {
    text-align: center;
  }

  .quick-contact {
    justify-items: center;
  }
}

@media (max-width: 700px) {
  .cursor-glow {
    display: none;
  }

  .navbar {
    top: 10px;
    height: 62px;
  }

  .nav-btn {
    display: none;
  }

  .hero {
    padding: 110px 5% 65px;
  }

  .hero h1 {
    font-size: clamp(36px, 12vw, 50px);
    letter-spacing: -2px;
  }

  .hero p {
    font-size: 15px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .stats {
    grid-template-columns: 1fr;
    width: 92%;
  }

  .services-grid,
  .process-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 70px 5%;
  }

  .section-heading h2 {
    font-size: 32px;
  }

  .main-card {
    width: 100%;
    min-height: auto;
  }

  .main-card h2 {
    font-size: 34px;
  }

  .mini-services {
    grid-template-columns: 1fr;
  }

  .small-card {
    display: none;
  }

  .founder-card,
  .contact-wrapper {
    padding: 28px 20px;
    border-radius: 28px;
  }

  .contact-form {
    padding: 20px;
    border-radius: 22px;
  }

  .footer {
    flex-direction: column;
    text-align: center;
  }
}
/* FINAL MOBILE RESPONSIVE FIX */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden !important;
}

main,
section,
header,
footer {
  max-width: 100%;
  overflow-x: hidden;
}

@media (max-width: 700px) {
  body {
    width: 100%;
  }

  .navbar {
    width: calc(100% - 24px);
    left: 12px;
    right: 12px;
    transform: none;
    padding: 0 10px;
  }

  .logo {
    max-width: 180px;
  }

  .logo h3 {
    font-size: 14px;
  }

  .logo span {
    font-size: 9px;
  }

  .logo-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
  }

  .hero {
    width: 100%;
    min-height: auto;
    padding: 105px 18px 55px;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .tag {
    font-size: 10px;
    padding: 7px 12px;
    margin-bottom: 14px;
  }

  .hero h1 {
    width: 100%;
    max-width: 100%;
    font-size: clamp(32px, 10vw, 42px);
    line-height: 1.05;
    letter-spacing: -1.5px;
    word-break: normal;
  }

  .hero p {
    width: 100%;
    max-width: 100%;
    font-size: 13.5px;
    line-height: 1.75;
    margin-top: 18px;
    padding: 0;
  }

  .hero-buttons {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-top: 24px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    max-width: 100%;
    padding: 14px 16px;
  }

  .hero-visual {
    width: 100%;
    min-height: auto;
  }

  .main-card {
    width: 100%;
    max-width: 100%;
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .main-card h2 {
    font-size: 30px;
    letter-spacing: -1px;
    margin-top: 35px;
  }

  .main-card p {
    font-size: 13px;
  }

  .mini-services {
    grid-template-columns: 1fr;
  }

  .shape-one {
    width: 150px;
    height: 150px;
    right: -70px;
  }

  .shape-two {
    width: 120px;
    height: 120px;
    left: -70px;
  }

  .stats,
  .section,
  .about-grid,
  .services-grid,
  .portfolio-grid,
  .process-grid,
  .testimonial-grid,
  .founder-card,
  .contact-wrapper,
  .contact-form,
  .footer {
    width: 100%;
    max-width: 100%;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .stats {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-wrapper {
    padding: 24px 18px;
  }

  .mobile-menu {
    width: calc(100% - 24px);
  }
}
/* INTERACTIVE SERVICE SELECTOR */

.service-selector {
  background: linear-gradient(180deg, white, var(--orange-soft));
}

.selector-wrapper {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 24px;
  max-width: 1050px;
  margin: auto;
}

.selector-tabs {
  display: grid;
  gap: 14px;
}

.selector-btn {
  border: 1px solid rgba(255, 122, 0, 0.16);
  background: white;
  padding: 18px 20px;
  border-radius: 20px;
  font-family: inherit;
  font-weight: 900;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  transition: 0.35s;
  box-shadow: 0 12px 35px rgba(0,0,0,0.04);
}

.selector-btn i {
  color: var(--orange);
}

.selector-btn:hover,
.selector-btn.active {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  transform: translateX(8px);
  box-shadow: 0 22px 60px rgba(255,122,0,0.25);
}

.selector-btn:hover i,
.selector-btn.active i {
  color: white;
}

.selector-content {
  background: white;
  border: 1px solid rgba(255,122,0,0.14);
  border-radius: 34px;
  padding: 42px;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
  min-height: 390px;
}

.selector-content::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  background: var(--orange-soft);
  border-radius: 50%;
  right: -80px;
  top: -80px;
  animation: pulse 4s ease-in-out infinite;
}

.selector-content > * {
  position: relative;
  z-index: 1;
}

.selector-icon {
  width: 74px;
  height: 74px;
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  border-radius: 24px;
  display: grid;
  place-items: center;
  color: white;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.selector-icon i {
  width: 38px;
  height: 38px;
}

.selector-content span {
  color: var(--orange);
  font-weight: 900;
  font-size: 14px;
}

.selector-content h3 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -1.5px;
  margin-top: 12px;
}

.selector-content p {
  color: var(--muted);
  line-height: 1.8;
  margin-top: 18px;
}

.selector-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.selector-points p {
  margin: 0;
  background: #fffaf4;
  border: 1px solid rgba(255,122,0,0.14);
  border-radius: 16px;
  padding: 14px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
}

/* PREMIUM TIMELINE */

.timeline {
  max-width: 950px;
  margin: auto;
  position: relative;
  display: grid;
  gap: 34px;
}

.timeline-line {
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 50%;
  width: 3px;
  background: linear-gradient(var(--orange), var(--orange-light));
  transform: translateX(-50%);
  border-radius: 20px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  align-items: center;
}

.timeline-item:nth-child(even) .timeline-card {
  grid-column: 3;
}

.timeline-item:nth-child(even) .timeline-dot {
  grid-column: 2;
}

.timeline-item:nth-child(odd) .timeline-card {
  grid-column: 1;
}

.timeline-item:nth-child(odd) .timeline-dot {
  grid-column: 2;
}

.timeline-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin: auto;
  box-shadow: 0 18px 45px rgba(255,122,0,0.32);
  z-index: 2;
}

.timeline-card {
  background: white;
  border: 1px solid rgba(255,122,0,0.14);
  border-radius: 24px;
  padding: 26px;
  box-shadow: 0 14px 40px rgba(0,0,0,0.05);
  transition: 0.35s;
}

.timeline-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.timeline-card h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.timeline-card p {
  color: var(--muted);
  line-height: 1.75;
}

/* FLOATING CHATBOT BUTTON */

.chatbot-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border: none;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 120;
  box-shadow:
    0 0 0 8px rgba(255,122,0,0.12),
    0 0 35px rgba(255,122,0,0.55),
    0 20px 45px rgba(255,122,0,0.35);
  animation: chatbotFloat 3s ease-in-out infinite;
}

.bot-face {
  font-size: 32px;
  line-height: 1;
}

.chatbot-btn::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 2px solid rgba(255,122,0,0.25);
  animation: chatbotPulse 2.2s infinite;
}

@keyframes chatbotFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes chatbotPulse {
  0% {
    transform: scale(0.9);
    opacity: 0.9;
  }

  100% {
    transform: scale(1.35);
    opacity: 0;
  }
}

/* MOBILE FIX FOR NEW SECTIONS */

@media (max-width: 950px) {
  .selector-wrapper {
    grid-template-columns: 1fr;
  }

  .selector-btn:hover,
  .selector-btn.active {
    transform: translateY(-4px);
  }

  .selector-points {
    grid-template-columns: 1fr;
  }

  .timeline-line {
    left: 32px;
  }

  .timeline-item {
    grid-template-columns: 64px 1fr;
    gap: 18px;
  }

  .timeline-item:nth-child(even) .timeline-card,
  .timeline-item:nth-child(odd) .timeline-card {
    grid-column: 2;
  }

  .timeline-item:nth-child(even) .timeline-dot,
  .timeline-item:nth-child(odd) .timeline-dot {
    grid-column: 1;
  }

  .timeline-dot {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 700px) {
  .selector-content {
    padding: 28px 20px;
    border-radius: 26px;
    min-height: auto;
  }

  .selector-content h3 {
    font-size: 30px;
  }

  .selector-btn {
    padding: 16px;
  }

  .timeline {
    gap: 26px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card h3 {
    font-size: 20px;
  }

  .chatbot-btn {
    width: 58px;
    height: 58px;
    right: 18px;
    bottom: 18px;
  }

  .bot-face {
    font-size: 27px;
  }
}
/* PRICING SECTION */

.pricing {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,122,0,0.08), transparent 28%),
    radial-gradient(circle at 85% 80%, rgba(255,122,0,0.10), transparent 30%),
    linear-gradient(180deg, #ffffff, #fff8f0);
}

.pricing-grid {
  max-width: 1080px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.pricing-card {
  position: relative;
  background: rgba(255,255,255,0.86);
  backdrop-filter: blur(18px);
  border: 1.8px solid rgba(255,122,0,0.28);
  border-radius: 32px;
  padding: 34px 28px 28px;
  overflow: hidden;
  box-shadow:
    0 18px 55px rgba(0,0,0,0.055),
    inset 0 1px 0 rgba(255,255,255,0.9);
  transition: 0.4s ease;
}

.pricing-card::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: -110px;
  bottom: -110px;
  background: radial-gradient(circle, rgba(255,122,0,0.14), transparent 68%);
  transition: 0.4s ease;
}

.pricing-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow:
    0 28px 80px rgba(255,122,0,0.16),
    inset 0 1px 0 rgba(255,255,255,1);
}

.pricing-top {
  position: absolute;
  inset: 0 0 auto 0;
  height: 7px;
  background: linear-gradient(90deg, var(--orange), var(--orange-light));
}

.pricing-card.featured {
  border: 2.5px solid var(--orange);
  box-shadow:
    0 0 0 7px rgba(255,122,0,0.06),
    0 28px 85px rgba(255,122,0,0.20);
  transform: translateY(-12px);
}

.pricing-card.featured:hover {
  transform: translateY(-18px);
}

.popular-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 9px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 900;
  z-index: 4;
  box-shadow: 0 12px 30px rgba(255,122,0,0.28);
}

.plan-tag {
  display: inline-flex;
  background: var(--orange-soft);
  color: var(--orange);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 18px;
}

.pricing-card h3 {
  font-size: 25px;
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -0.8px;
}

.price-box {
  background: linear-gradient(180deg, #fffaf4, #ffffff);
  border: 1px solid rgba(255,122,0,0.18);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 20px;
}

.price {
  color: var(--orange);
  font-size: 38px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -1.8px;
}

.price-box span {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.plan-desc {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 22px;
  font-size: 14.5px;
}

.pricing-card ul {
  list-style: none;
  display: grid;
  gap: 11px;
  margin-bottom: 26px;
}

.pricing-card li {
  background: #fffaf4;
  border: 1px solid rgba(255,122,0,0.13);
  border-radius: 14px;
  padding: 12px 13px 12px 38px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
  position: relative;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background: var(--orange);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}

.pricing-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: white;
  padding: 15px 18px;
  border-radius: 50px;
  display: grid;
  place-items: center;
  font-weight: 900;
  transition: 0.35s;
  box-shadow: 0 18px 45px rgba(255,122,0,0.22);
}

.pricing-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 65px rgba(255,122,0,0.32);
}

@media (max-width: 950px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }

  .pricing-card.featured:hover {
    transform: translateY(-10px);
  }
}
/* ==========================
   THEME TOGGLE BUTTON
========================== */

.theme-toggle {
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: grid;
  place-items: center;
  background: var(--orange-soft);
  color: var(--orange);
  transition: 0.35s ease;
  margin-left: 10px;
}

.theme-toggle:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(255,122,0,0.25);
}

.theme-toggle svg {
  width: 20px;
  height: 20px;
}

/* ==========================
   DARK MODE
========================== */

body.dark-mode {
  --orange: #ff7a00;
  --orange-dark: #f06500;
  --orange-light: #ffad4d;
  --orange-soft: rgba(255,122,0,0.12);

  --white: #121316;
  --grey: #1b1d22;
  --grey-2: #2a2d34;
  --text: #f5f5f7;
  --muted: #a9adb7;
  --shadow: 0 22px 70px rgba(255,122,0,0.16);

  background:
    radial-gradient(circle at 15% 10%, rgba(255,122,0,0.08), transparent 30%),
    linear-gradient(180deg, #121316, #17191e);
  color: var(--text);
}

body.dark-mode .navbar {
  background: rgba(24,26,31,0.9);
  border-color: rgba(255,122,0,0.22);
  box-shadow: 0 18px 55px rgba(0,0,0,0.42);
}

body.dark-mode .logo h3,
body.dark-mode .hero h1,
body.dark-mode .section-heading h2,
body.dark-mode .founder-info h2,
body.dark-mode .contact-content h2 {
  color: #ffffff;
  text-shadow:
    0 0 16px rgba(255,122,0,0.35),
    0 0 42px rgba(255,122,0,0.14);
}

body.dark-mode .logo span,
body.dark-mode .nav-links a,
body.dark-mode p,
body.dark-mode .section-heading p,
body.dark-mode .plan-desc,
body.dark-mode .footer p,
body.dark-mode .footer-links a {
  color: var(--muted);
}

body.dark-mode .hero,
body.dark-mode .section,
body.dark-mode .about,
body.dark-mode .services,
body.dark-mode .process,
body.dark-mode .pricing,
body.dark-mode .testimonials {
  background:
    radial-gradient(circle at 18% 10%, rgba(255,122,0,0.08), transparent 30%),
    radial-gradient(circle at 85% 80%, rgba(255,122,0,0.06), transparent 30%),
    linear-gradient(180deg, #121316, #17191e);
}

body.dark-mode .main-card,
body.dark-mode .stats,
body.dark-mode .about-card,
body.dark-mode .service-card,
body.dark-mode .timeline-card,
body.dark-mode .testimonial-card,
body.dark-mode .faq-item,
body.dark-mode .pricing-card,
body.dark-mode .contact-form,
body.dark-mode .founder-card,
body.dark-mode .selector-content {
  background: rgba(27,29,34,0.94);
  border-color: rgba(255,122,0,0.22);
  box-shadow:
    0 22px 70px rgba(0,0,0,0.38),
    0 0 35px rgba(255,122,0,0.06);
}

body.dark-mode .stat-box,
body.dark-mode .mini-services div,
body.dark-mode .small-card,
body.dark-mode .price-box,
body.dark-mode .pricing-card li,
body.dark-mode .selector-points p {
  background: #24272c;
  border-color: rgba(255,122,0,0.18);
  color: #ffffff;
}

body.dark-mode .about-card h3,
body.dark-mode .service-card h3,
body.dark-mode .timeline-card h3,
body.dark-mode .testimonial-card h4,
body.dark-mode .faq-item button,
body.dark-mode .pricing-card h3,
body.dark-mode .main-card h2 {
  color: #ffffff;
}

body.dark-mode .tag,
body.dark-mode .section-heading span,
body.dark-mode .founder-info span,
body.dark-mode .plan-tag {
  background: rgba(255,122,0,0.14);
  color: var(--orange-light);
  border: 1px solid rgba(255,122,0,0.24);
}

body.dark-mode .price {
  color: var(--orange-light);
  text-shadow: 0 0 24px rgba(255,122,0,0.32);
}

body.dark-mode .mobile-menu {
  background: rgba(27,29,34,0.96);
  border-color: rgba(255,122,0,0.24);
}

body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
  background: #24272c;
  border-color: rgba(255,122,0,0.24);
  color: #ffffff;
}

body.dark-mode .form-group label {
  color: #ffffff;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
  color: #8f939b;
}

body.dark-mode .footer {
  background: #121316;
  border-top-color: rgba(255,122,0,0.14);
}

body.dark-mode .theme-toggle {
  background: rgba(255,122,0,0.16);
  color: var(--orange-light);
}

@media (max-width: 700px) {
  .theme-toggle {
    width: 42px;
    height: 42px;
  }
}
/* ==========================
   SCROLL PROGRESS BAR
========================== */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  z-index: 9999;
  background: transparent;
}

.scroll-progress-bar {
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--orange-light)
  );
  box-shadow:
    0 0 12px rgba(255,122,0,.55),
    0 0 25px rgba(255,122,0,.25);
  transition: width .08s linear;
}

/* DARK MODE */

body.dark-mode .scroll-progress-bar {
  box-shadow:
    0 0 18px rgba(255,122,0,.75),
    0 0 35px rgba(255,122,0,.35);
}

/* ==========================
   PAGE LOADER
========================== */

.page-loader {
  position: fixed;
  inset: 0;
  background:
    radial-gradient(
      circle at center,
      rgba(255,122,0,0.08),
      transparent 45%
    ),
    #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100000;
  transition:
    opacity .8s ease,
    visibility .8s ease;
}

.page-loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 125px;
  height: 125px;
  object-fit: contain;
  animation: loaderFloat 1.8s ease-in-out infinite;
  filter: drop-shadow(0 0 20px rgba(255,122,0,.18));
}

.loader-content h2 {
  margin-top: 16px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -1px;
  color: var(--text);
  text-shadow:
    0 0 15px rgba(255,122,0,.18);
}

.loader-line {
  width: 220px;
  height: 6px;
  background: rgba(255,122,0,0.12);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 24px;
}

.loader-line span {
  display: block;
  width: 0%;
  height: 100%;
  background: linear-gradient(
    90deg,
    var(--orange),
    var(--orange-light)
  );
  border-radius: 999px;
  box-shadow:
    0 0 15px rgba(255,122,0,.45),
    0 0 35px rgba(255,122,0,.25);
  animation: loadingBar 1.5s linear forwards;
}



@keyframes loadingBar {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

@keyframes loaderFloat {
  0%,100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* DARK MODE LOADER */

body.dark-mode .page-loader {
  background:
    radial-gradient(
      circle at center,
      rgba(255,122,0,0.12),
      transparent 45%
    ),
    #121316;
}

body.dark-mode .loader-content h2 {
  color: #ffffff;
}