* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}


.hide {
  display: none !important;
}

/* Light ray effect */
.hero {
  position: relative;
  overflow: hidden;
}

.light-rays {
  position: fixed;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: -1;
}

/* Base Ray Style */
.ray {
  position: absolute;
  top: -8%;
  left: -22px;
  width: 80px;
  height: 906px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 1) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(300deg);
  opacity: 1;
  filter: blur(11px);
  /* mask: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);*/
}

/* Individual Rays Positioned Differently */
.ray1 {
  left: 330px;
}
.ray2 {
  left: 360px;
  top: -247px;
  height: 1020px;
  width: 151px;
}
.ray3 {
  left: 595px;
  top: -253px;
}

body {
  font-family: "DM Sans", sans-serif;
  background: #e5e5e5;
  min-height: 100vh;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 50px;
  position: relative;
  z-index: 100;
}

.logo {
  background: #000;
  padding: 12px 24px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo img {
  width: 108px;
}

.nav-links {
  display: flex;
  gap: 0;
  background: #232323;
  border-radius: 50px;
  padding: 4px;
}

.nav-links a {
  text-decoration: none;
  color: #fff;
  padding: 12px 28px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 15px;
}

.nav-links a.active {
  background: #757575;
}

.nav-links a:hover {
  background: #757575;
}

.connect-btn {
  background: #eff83f;
  color: #000;
  padding: 12px 32px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}

.connect-btn:hover {
  background: #f7fe7d;
  transform: translateY(-2px);
}

.hero {
  text-align: center;
  padding: 100px 20px;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.hero-title {
  font-size: 108px;
  font-weight: bold;
  line-height: 1.1;
  margin-bottom: 40px;
  letter-spacing: -7px;
  font-family: "Inter", sans-serif;
  z-index: 100;
  position: relative;
}

.hero-title .brands {
  color: #000;
  display: inline-block;
  font-weight: bold;
}

.hero-title .grow {
  color: #808080;
  display: inline-block;
  font-weight: normal;
}

.hero-title .fast {
  color: #808080;
  font-weight: normal;
  display: inline-block;
}

.hero-title .with-us {
  color: #000;
  display: inline-block;
  font-weight: bold;
}

.icon {
  width: 142px;
  height: 97px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 3px solid #333;
  border-radius: 15px;
  vertical-align: middle;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  margin: 0 5px;
}

.icon img {
  height: 100%;
  width: 100%;
  object-fit: contain;
}

.growth-icon {
  transform: rotate(-4deg);
  position: relative;
}

.speed-icon {
  position: relative;
  background: #4a4a4a;
  transform: rotate(4deg);
  border-radius: 10px;
}

.hero-subtitle {
  font-size: 20px;
  color: #333;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #eff83f;
  color: #000;
  padding: 5px 7px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: #f7fe7d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 255, 0, 0.4);
}

.cta-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-circle img {
  width: 22px;
}

.cta-text {
  padding-right: 10px;
}

.hamburger {
  display: none;
  width: 30px;
  height: 22px;
  position: relative;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  z-index: 100;
}

.line {
  height: 3px;
  width: 100%;
  background: #000;
  border-radius: 2px;
  transition: all 0.4s ease;
}

/* Animation to X */
.hamburger.active .line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .line:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Menu styles */
.menu {
  position: fixed;
  top: 50px;
  right: 0;
  border-radius: 20px;
  height: 22rem;
  width: 100%;
  margin: auto auto;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s ease-in-out;
  z-index: 50;
}

.menu ul {
  list-style: none;
  text-align: center;
  background: #ffffff;
  width: 80%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 20px;
  padding: 10px 50px;
}

.menu ul li {
  margin: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.menu ul li a {
  color: black;
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 1px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.menu-icons a {
  border: solid rgb(170, 170, 170) 1px;
  width: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
}

.menu-icons a img {
  width: 24px;
}

/* Menu open state */
.menu.active {
  opacity: 1;
  display: flex;
}

/* Animate links on open */
.menu.active ul li a {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(0.1s * var(--i));
}
/* services section */

.services-section {
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
  position: relative;
  padding: 80px 40px;
}

.services-container {
  background: #0f0f0f;
  color: white;
  border-radius: 20px;
  box-shadow: 0 0 40px rgba(0, 0, 0, 0.797);
  padding: 80px 60px;
  width: 100%;
  text-align: center;
}

.services-title {
  font-family: "Inter", sans-serif;
  font-size: 80px;
  letter-spacing: -5px;
  margin-bottom: 10px;
}

.services-subtitle {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  font-weight: 400;
  color: #d5d5d5;
  margin-bottom: 60px;
  line-height: 1.5;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 25px;
}

.service-card {
  background: #1b1b1b;
  border: 1px solid #2d2d2d;
  border-radius: 16px;
  padding: 22px 25px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.3s ease;
}

/* Targets the last .service-card */
.services-grid .service-card:last-child {
  grid-column: 3 / 5;
  grid-row: 2;
}

/* Targets the second last .service-card */
.services-grid .service-card:nth-last-child(2) {
  grid-column: 1 / 3;
  grid-row: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  background: #202020;
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.05);
}

.service-icon {
  width: 100px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-family: "Inter", sans-serif;
  font-size: 22px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 16px;
  color: #cfcfcf;
  line-height: 1.5;
  text-align: start;
}

/* intro css */

.intro-section {
  padding: 150px 80px;
  display: flex;
  justify-content: space-between;
}

.intro-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.intro-left {
  flex: 1;
  max-width: 623px;
}

.hello-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 60px;
}

.hello-line span {
  width: 100px;
  height: 1px;
  background: linear-gradient(45deg, #808080, transparent);
}

.hello-line p {
  font-family: "Playfair", serif;
  color: #666;
  font-size: 24px;
  font-style: italic;
}

.intro-left h2 {
  font-size: 44px;
  line-height: 1.4;
  font-weight: 400;
  letter-spacing: -2px;
  text-align: center;
  max-width: 623px;
  font-family: "Inter";
  color: #888;
}

.intro-right {
  justify-content: flex-end;
  display: grid;
  grid-template-columns: 250px 250px;
  grid-template-rows: 1fr 1fr 1fr;
  row-gap: 57px;
  column-gap: 30px;
}

.tag {
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  padding: 8px;
  border-radius: 30px;
  background-color: #f0f0f0;
  display: flex;
}

.tag-content {
  display: flex;
  align-items: center;
  gap: 8px;
  background: white;
  padding: 5px 8px;
  border-radius: 30px;
  font-size: 15px;
  font-family: "DM Sans", sans-serif;
  width: 179px;
}

.tag-content span {
  border-radius: 50%;
  display: flex;
  width: 35px;
  height: 35px;
  align-items: center;
  justify-content: center;
}

.tag-content img {
  width: 22px;
  height: 22px;
}

.tag:hover {
  transform: translateY(-4px);
}

.intro-right .tag:nth-child(1),
.intro-right .tag:nth-child(5),
.intro-right .tag:nth-child(4) {
  justify-self: start;
}

.intro-right .tag:nth-child(2),
.intro-right .tag:nth-child(6),
.intro-right .tag:nth-child(3) {
  justify-self: end;
}

/* process css */

.process-section {
  padding: 150px 80px;
}

.process-container {
  display: flex;
  justify-content: space-between;
  margin: auto;
  gap: 80px;
}

/* LEFT SECTION */
.process-left {
  flex: 1;
  position: sticky;
  top: 150px;
  max-width: 586px;
  align-self: flex-start;
}

.process-left h2 {
  font-size: 44px;
  letter-spacing: -1px;
  font-weight: 500;
  margin-bottom: 15px;
}

.process-left p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
}

/* RIGHT SECTION */
.process-right {
  flex: 1.2;
  position: relative;
  max-width: 541px;
}

/* EACH STEP */
.step {
  display: flex;
  gap: 97px;
  align-items: flex-start;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(40px);
}

.step:last-child {
  margin-bottom: 0;
}

.step-number {
  font-size: 35px;
  font-weight: 500;
  font-family: "inter";
  width: 40px;
  flex-shrink: 0;
  text-align: right;
  position: relative;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.step-content {
  flex: 1;
}

.step-content h3 {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 8px;
}

.step-content p {
  font-family: "DM Sans", sans-serif;
  font-size: 18px;
  color: #555;
  line-height: 1.7;
}

.step-number span {
  display: flex;
  height: 176px;
  width: 3px;
  border-radius: 2px;
  background: linear-gradient(357deg, #808080, #e5e5e5);
}

/* projects css */
.projects-section {
  margin: 60px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 0 80px;
}

.project {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch;
}

.project-info {
  background: #111;
  color: #fff;
  border-radius: 12px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.project-info h2 {
  font-size: 1.5rem;
  margin: 0;
}

.project-info .subtitle {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin: 5px 0 15px;
}

.project-info .description {
  font-size: 16px;
  line-height: 1.6;
  color: #bdbdbd;
}

.project-tags {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}

.tag-group div {
  display: flex;
  align-items: center;
  gap: 11px;
  width: 100%;
}

.tag-group {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  width: 100%;
}

.tag-group .tag-line {
  background: linear-gradient(45deg, #8b8989, transparent);
  width: 100%;
  height: 1px;
}

.tag-group h4 {
  font-size: 16px;
  color: white;
  font-weight: 400;
  white-space: nowrap;
  line-height: 1;
  padding-bottom: 2px;
}

.project-tag {
  display: inline-block;
  background: #f5f5f5;
  color: #000;
  font-size: 0.8rem;
  padding: 3px 10px;
  border-radius: 4px;
  font-weight: 600;
}

.project-tag.yellow {
  background: #f8f533;
}

.project-image {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  position: relative;
  overflow: hidden;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  display: flex;
  gap: 20px;
}

.project-image img {
  width: 100%;
  border-radius: 10px;
  display: block;
}

.visit-btn {
  align-self: start;
  text-decoration: none;
  background: #e8fc35;
  color: #000;
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 30px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: all 0.3s ease;
}

.visit-btn .cta-circle {
  width: 30px;
  height: 30px;
}

.visit-btn .cta-circle img {
  width: 19px;
  transform: rotate(336deg);
}

.visit-btn:hover {
  background: #d7eb00;
  transform: translateY(-2px);
}

.projects-section .hello-line {
  margin-bottom: 20px;
}

/* footer css */

.footer-light-rays {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

/* Base Ray Style */
.footer-ray {
  position: absolute;
  top: -8%;
  left: -22px;
  width: 64px;
  height: 800px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.28) 0%,
    rgba(255, 255, 255, 0) 100%
  );
  transform: rotate(300deg);
  opacity: 1;
  filter: blur(11px);
  /* mask: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.6) 30%, rgba(0, 0, 0, 0.2) 70%, transparent 100%);*/
}

/* Individual Rays Positioned Differently */
.footer-ray1 {
  left: 234px;
  top: -153px;
  transform: rotate(303deg);
}
.footer-ray2 {
  left: 170px;
  top: -317px;
  height: 866px;
  width: 53px;
}
.footer-ray3 {
  left: 377px;
  top: -241px;
}

.footer-section {
  position: relative;
  width: 97%;
  margin: 30px auto;
  background: #0d0d0d;
  color: white;
  border-radius: 20px;
  padding: 100px 0 60px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.3);
  background-image: url("./assets/images/Rectangle.png");
}

/* ===== SUBTITLE ===== */
.footer-subtitle {
  font-family: "DM Sans", sans-serif;
  color: #a7a7a7;
  font-style: italic;
  font-size: 16px;
  position: relative;
  display: inline-block;
}

.footer-subtitle::before,
.footer-subtitle::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 60px;
  height: 1px;
  background: #777;
}

.footer-subtitle::before {
  left: -75px;
}

.footer-subtitle::after {
  right: -75px;
}

/* ===== MAIN HEADING ===== */
.footer-heading {
  font-size: 80px;
  font-weight: 700;
  letter-spacing: -4px;
  margin: 40px 0 20px;
}

.footer-heading span {
  color: #8f8f8f;
  font-weight: 600;
}

/* ===== DESCRIPTION ===== */
.footer-desc {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  color: #d1d1d1;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* ===== BOTTOM FOOTER ===== */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 100px;
  padding: 0 60px;
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: #8c8c8c;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 6px;
}

.footer-logo span {
  color: #f8f533;
  font-weight: 600;
}

.footer-logo strong {
  font-weight: 700;
  color: white;
}

.footer-social {
  display: flex;
  gap: 25px;
}

.footer-social a {
  color: #ccc;
  text-decoration: none;
  font-size: 22px;
  transition: 0.3s;
}

.footer-social a:hover {
  color: #f8f533;
}

@media (max-width: 768px) {
  .footer-heading {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .footer-desc {
    font-size: 14px;
    padding: 0 20px;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }
}

/* Responsive */
@media (max-width: 900px) {
  .project {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 20px;
  }

 

  .logo {
    font-size: 16px;
    padding: 10px 18px;
  }

  .nav-links {
    display: none;
  }

  .connect-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-title {
    font-size: 55px;
    letter-spacing: -2px;
    line-height: 1.5;
  }

  .icon {
    width: 96px;
    height: 69px;
  }

  .cta-btn {
    padding: 8px 10px;
    font-size: 15px;
    gap: 19px;
  }

  .services-section {
    padding: 48px 11px;
  }

  .service-card {
    width: 100%;
  }

  .services-grid {
    display: flex;
    flex-wrap: wrap;
  }

  .services-title {
    font-size: 35px;
    letter-spacing: -1.5px;
  }

  .services-subtitle {
    font-size: 16px;
    margin-bottom: 33px;
  }

  .services-container {
    padding: 46px 16px;
  }

  .intro-section {
    padding: 20px 20px;
  }

  .intro-content {
    flex-direction: column;
    gap: 53px;
  }

  .hello-line {
    font-size: 22px;
    margin-bottom: 10px;
  }

  .hello-line p {
    font-size: 22px;
    white-space: nowrap;
  }

  .intro-left h2 {
    font-size: 35px;
  }

  .intro-right {
    column-gap: 11px;
    row-gap: 29px;
    grid-template-columns: 1fr 1fr;
  }

  .tag-content {
    width: 100%;
  }

  .tag {
    width: 100%;
  }

  .process-section {
    padding: 50px 20px;
  }

  .process-container {
    flex-direction: column;
  }

  .process-left {
    position: static;
  }

  .process-left h2 {
    font-size: 35px;
  }

  .step {
    gap: 24px;
  }

  .projects-section {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 46px;
    letter-spacing: -2.5px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 11px;
  }

  .icon {
    padding: 10px 12px;
    margin: 0 8px;
  }

  .growth-icon {
    width: 72px;
    height: 54px;
  }

  .speed-icon {
    width: 72px;
    height: 54px;
  }

  .speed-lines div {
    width: 16px;
    height: 2px;
    margin: 3px 0;
  }

  .speed-lines div:nth-child(1) {
    width: 16px;
  }
  .speed-lines div:nth-child(2) {
    width: 13px;
  }
  .speed-lines div:nth-child(3) {
    width: 10px;
  }
}
