:root {
  --bg: #000000f5;
  --panel: #000000a8;
  --text: #e7ecf5;
  --muted: #c7c7c7;
  --brand: #ffc400;
  --brand-2: #d46525da;
  --ring: #2a3a6a;
  --danger: #ff6b6b
}
* {
  box-sizing: border-box
}
body,
html {
  height: 100%
}
body {
  margin: 0;
  font-family: Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: var(--text);
  background-color: #000000f5;
  line-height: 1.6;
  overflow-x: hidden;
}
.container {
  width: min(1100px,92%);
  margin: 0 auto;
  padding: 10px;
  font-family: 'Inter', system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
}
.top-banner {
  width: 100%;
  overflow: hidden;
  background: #f4c542;
  color: #fff;
  font-size: 15px;
  font-family: 'Montserrat', system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  padding: 1px;
  position: relative;
}

.scrolling-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: #080808;
  border-radius: 12px;
  padding: 30px 20px;
  border: 1px solid #202020;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card i {
  font-size: 20px;
  color: #e6ae14;
  justify-content: center;
  display: flex;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 15px;
  color: #d39b23;
}

.feature-card p {
  color: #a5a5a5;
  font-size: 16px;
  line-height: 1.5;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
}

.scrolling-text {
  display: inline-block;
  white-space: nowrap;
  padding-left: 100%; /* Start off-screen */
  animation: scroll-left 15s linear infinite;
}

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

html, body {
  height: 100%;
}

#smooth-wrapper {
  overflow: hidden;
}

#smooth-content {
  will-change: transform;
}

.top-banner {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}
.top-banner p {
    margin: 0; /* remove default margin */
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid rgba(236,9,9,0)
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0
}
.logo {
  color: var(--text);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .5px;
}
.nav-toggle {
  display: none;
  background: 0 0;
  border: 0;
  cursor: pointer;
  padding: 6px
}
.nav-toggle .bar {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px
}
.nav-menu {
  font-family: 'Inter', system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  display: flex;
  gap: 50px;
  text-transform: uppercase;
  list-style: none;
  font-weight: 300;
  letter-spacing: 2px; /* Increase for spacing, negative to tighten */
  margin: 0;
  padding: 0
}
.nav-menu a {
  position: relative;
  color: var(--muted);
  text-decoration: none;
  padding: 8px 10px;
}

/* underline base */
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 10%;
  bottom: 2px;
  width: 80%;
  height: 2px;
  background-color: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

/* hover underline */
.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

/* active page underline */
.nav-menu a[aria-current="page"] {
  color: var(--text);
}

.nav-menu a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-menu a.highlight-contact {
  background: linear-gradient(135deg, rgba(247, 190, 2, 0.952), rgb(255, 153, 0));
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  font-weight: bold;
  color: var(--accent-color);
  padding: 0.6em 1.2em;
  text-decoration: none;
  position: relative;
  z-index: 1;
}
.services-container {
  padding-top: 60px;
}

.nav-menu a.highlight-contact:hover {
  background: rgba(255, 255, 255, 0.205);
  color: white;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.site-main {
  display: block;
  background: 0 0
}
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 20% 20%,rgba(0, 0, 0, 0.37),transparent 50%),radial-gradient(circle at 80% 60%,rgba(116, 100, 56, 0.692),transparent 50%),linear-gradient(180deg,rgba(75, 75, 75, 0.9),rgba(19, 19, 19, 0.95)),var(--bg);
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: inset 0 0 120px rgba(0,0,0,.6)
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/Macbook.webp") center/cover no-repeat;
  opacity: .2;
  pointer-events: none
  
}

.parent {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 12px;
    padding: 16px;
    font-size: 2.5rem;
}

.text {
    position: relative;       /* can also use absolute if you want text in a corner */
    color: #fff;              /* default text color */
    font-size: 2.5rem;
    font-family: "Bebas Neue", sans-serif;
    text-align: center;
    padding: 8px 12px;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.6); /* improves readability on images */
}

/* Div common styles */
.parent > div {
    display: flex;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    min-height: 40vh;
}

.parent > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.2);
}

/* Individual div colors */
.div1 {
    grid-row: span 4;
    background-image: url(assets/speak.jpg);
    background-size: contain;
    background-position: center;
}

.div2 {
    grid-column: span 2;
    grid-row: span 4;
    background-image: url(assets/Planning.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.div3 {
    grid-column: span 3;
    grid-row: 5 / span 5;
    background-image: url(assets/Review.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.div4 {
    grid-column: span 2;
    grid-row: 10 / span 3;
    background-image: url(assets/Launch.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.div5 {
    grid-column: 3;
    grid-row: 10 / span 3;
        background-image: url(assets/Support.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}
@media (max-width: 768px) {
    .parent {
        grid-template-columns: 1fr; /* single column on mobile */
        grid-template-rows: none;  /* auto rows */
    }

    /* Make each div full width */
    .div1, .div2, .div3, .div4, .div5 {
        grid-column: auto;
        grid-row: auto;
        background-size: cover;
    }

    .text {
        font-size: 1.4rem; /* slightly bigger for readability */
        padding: 12px 16px;
    }

    .parent > div {
        min-height: 180px; /* taller for mobile */
    }
}
        
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 48px;
  align-items: center;
  z-index: 2
}
.hero-content {
  text-align: left;
  max-width: 700px;
  width: 100%;
}
.bend {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}

.box {
  width: 900px;
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(15px, 5vw, 25px);
  padding: 40px;
  font-weight: 500;
  letter-spacing: 0.2px;
  line-height: 1.3;
  text-align: left;

  /* RADIAL TEXT GRADIENT */
  background: radial-gradient(
    circle at bottom left,
    #e0b641 0%,
    #fff1b2 35%,
    #ffffff 70%
  );

  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
/* ROOT */
.services-web {
  background: #000;
}
.service {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0 10vw;
  background: #000;
  overflow: hidden;
}

/* MAIN SERVICE NAME */
.servicename {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(48px, 6vw, 96px);
  font-weight: 500;
  line-height: 1.1;
  max-width: 900px;
  margin: 0 0 32px 0;

  /* LUXURY GRADIENT */
  background: radial-gradient(
    circle at bottom left,
    #f8f8f8 0%,
    #f8f8f8 35%,
    #ffffff 70%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.service.dark {
background-image: url("assets/bg11.webp");
background-size: cover;
background-repeat: no-repeat;
background-position: center;

}
.service.light {
background-image: url("assets/bendingbg.webp");
background-size: cover;
background-repeat: no-repeat;
background-position: center;
}

/* TAGLINE */
.service-tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.55);
}
.service-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  justify-content: center; /* vertical center */
  align-items: center;
  padding: 0 20px;
  overflow: hidden; /* prevents scroll overflow */
  background: #000; /* or a gradient/background of your choice */
}

.services-hero p {
  max-width: 1000px;
  margin: 0 auto 40px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.6;
}
.services-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  width: 100%;
  max-width: 1200px;
  justify-items: center;
  align-items: stretch;
}

.services-card {
  background: #fff;
  color: #333;
  border: 1px solid #e0e0e0;
  border-radius: 12px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Price section sticks to bottom */
  align-items: stretch;
  min-height: 320px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  text-align: center;
}

.price-section {
  margin-top: auto;               /* Push price block to bottom of card */
  text-align: left;               /* Keep price aligned left inside card */
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-card:hover {

  transform: translateY(-5px);
}
.services-card p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 10px;
}
.services-card h2 {
  font-size: 1.3rem;
}
.services-card .price-button {
  display: inline-block;
  padding: 12px 20px;
  background: #000;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
  text-decoration: none;
  font-weight: 600;
}
.price {
  font-size: 3rem;
  font-weight: 700;
  color: #000;
  margin: 0; /* reset default h2 margins so it sits directly under the whisper */
  line-height: 1;
}
.price-whisper {
  font-size: 0.9rem; /* readable whisper size */
  color: rgba(0, 0, 0, 0.6);
  font-style: italic;
  margin: 0; /* no gap between whisper and price */
  line-height: 1;
  display: block;
}
.price-section .price-button {
  margin-top: 0.4rem; /* small separation from price */
}
.services-card .price-button:hover {
  background: #ffdd00;
  color: #000;
}
.features-list {
    list-style: none; /* Remove default bullets */
    padding: 0;
    margin: 15px 0 20px;
    text-align: left; /* Align features nicely */
}

.features-list li {
    font-size: 0.95rem;
    color: #555;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

/* Add custom checkmark icon */
.features-list li::before {
    content: "✔"; /* Unicode checkmark character */
    position: absolute;
    left: 0;
    color: #ffa600; /* Blue checkmark */
    font-weight: bold;
}
#typewriter {
  white-space: nowrap;
  overflow: hidden;
  border-right: 2px solid black;
  width: fit-content;
  animation: blink-caret 0.75s step-end infinite;
}
@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: rgb(252, 252, 252); }
}
.PurposeHero {
  text-align: center;
  padding: 10px;
  margin-bottom: 40px;
  background: rgba(0, 0, 0, 0);
  /*background: radial-gradient(circle at 20% 20%,rgba(255, 255, 255, 0.137),transparent 50%),radial-gradient(circle at 80% 60%,rgba(0, 0, 0, 0.363),transparent 50%),linear-gradient(180deg,rgba(0, 0, 0, 0.9),rgba(25, 25, 26, 0.95)),var(--bg)
*/
  }
.hero h1 {
  font-size: clamp(40px, 7vw, 72px);
  line-height: 1.1;
  margin-bottom: 18px;
  background: linear-gradient(135deg,var(--brand),var(--brand-2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent
}
.subtitle {
  color: var(--muted);
  font-size: 16px;
  margin-bottom: 32px
}
.cta-group .btn.primary {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 20px;
  cursor: pointer;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 32px;
  align-items: center
}
.hero h1 {
  font-size: clamp(28px, 5vw, 44px);
  line-height: 1.1;
  margin: 0 0 10px
}
.subtitle {
  color: var(--muted);
  margin: 0 0 22px
}
.cta-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 16px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .3px;
  border: 1px solid transparent
}
.btn.primary {
  background: rgb(221, 174, 18);
  color: #081225;
  cursor: pointer;
}
.btn.ghost {
  color: var(--text);
  border-color: rgba(255,255,255,.16);
  background: rgba(255,255,255,.04)
}
.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,0,0,.25)
}
.btn:active {
  transform: translateY(0);
  box-shadow: none
}
.hero-illustration {
  display: grid;
  place-items: center
}
.section {
  padding: 56px 0
}
.features.section {
  padding-top: 0;
  padding-bottom: 0
}
.section-features {
  background: 0 0;
  min-height: 100vh
}
.section-purpose {
  background: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  padding-bottom: 50px;
  position: relative; /* needed for absolute positioning of the blob */
}
.section-about {
  background: rgba(0, 0, 0, 0.7);
  min-height: 100vh;
  padding-bottom: 50px;
  position: relative;
}

.aboutContent {
  background: #080808e1;
  padding: 30px;
  border-radius: 15px;
}
.aboutHeader {
  text-align: center;
}

.numbers {
  font-size: 18px;
  font-weight: bold;
  color: rgba(255, 196, 0, 0.952);
  margin-bottom: 12px;
}

.section-experience {
  background: rgba(0, 0, 0, 0.7);
  min-height: 100vh
}
.section h2 {
  margin: 0 0 18px;
  font-size: 26px
}
.grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px
}
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  justify-content: center
}
.feature {
  border: 1px solid rgba(194, 194, 194, 0.08);
  border-radius: 14px;
  padding: 18px;
  background: rgba(32, 32, 32, 0.103);
  /*
  background: radial-gradient(circle at 20% 20%,rgba(36, 36, 36, 0.137),transparent 50%),radial-gradient(circle at 80% 60%,rgba(0, 0, 0, 0.2),transparent 50%),linear-gradient(180deg,rgba(36, 36, 36, 0.9),rgba(0, 0, 0, 0.95)),var(--bg);
  box-shadow: 2px 2px 24px rgba(255, 255, 255, 0.219)
  */
}
.feature:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 30px rgba(0,0,0,0.18);
    border-color: rgba(241, 187, 8, 0.3);
}
.scroll-container {
  display: block; /* Remove flex */
  align-items: center;
  justify-content: center;
  height: fit-content;
  width: 100%;
  flex-direction: column;
}
.section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  width: 100%;
  background-position: center center;
  background-size: cover;
  flex-direction: column;
}
.section-1 {
  background: url(assets/mydigiclub.png);
}

.section-2 {
  background: rgb(51, 51, 51);
}
.section-3 {
  background: url(assets/matchup.png);
}
.section-4 {
  background: rgb(168, 168, 168);
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 18px
}
.feature p {
  margin: 0;
  color: var(--muted)
}
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,320px));
  gap: 50px;
  justify-content: center
}
.project-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr
}
.project-media {
  aspect-ratio: 940/788;
  background: #0e1226;
  overflow: hidden
}
.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block
}
.cards-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: stretch;
    width: 100%;
}

.card {
    flex: 1;
    min-width: 300px;
}

/* Mobile-friendly stacking */
@media (max-width: 900px) {
    .cards-grid {
        flex-direction: column;
    }
}

.project-content {
  padding: 12px
}
.project-content h3 {
  margin: 0 0 6px;
  font-size: 13px
}
.project-content p {
  font-size: 12px
}
.project-content p {
  margin: 0;
  color: var(--muted)
}
.tech-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px
}
.badge.tech {
  background: rgba(255,255,255,.04);
  border-color: rgba(255,255,255,.12);
  font-size: 9px;
  height: 15px;
  padding: 0 5px
}
.timeline {
  position: relative;
  display: grid;
  gap: 12px;
  margin-top: 12px
}
.timeline::before {
  content: "";
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: rgba(255,255,255,.1)
}
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 10px;
  align-items: start
}
.timeline-marker {
  position: absolute;
  left: 12px;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg,var(--brand),var(--brand-2));
  box-shadow: 0 0 0 3px rgba(91,140,255,.25)
}
.timeline-meta {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2px;
  padding-left: 28px
}
.timeline-body {
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 12px
}
.timeline-body strong {
  display: block;
  margin-bottom: 4px;
  font-size: 12px
}
.badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding: 0 8px;
  font-weight: 600;
  border-radius: 999px;
  background: var(--panel);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.16);
  font-size: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.3)
}
.cards-two {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 18px;
  align-items: start
}
.card-wrap {
  display: grid;
  gap: 10px
}
.AboutUs {
  padding-top: 50px;
  text-align: center;
  font-size: 24px;
  font-family: 'Story Script', system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color: rgba(255,255,255,.466);
  margin-bottom: 0px;
  font-weight: 300;
  text-shadow: 0 1px 5px rgba(0,0,0,.301)
}
.AboutUsExp {
  font-size: 32px;
  text-align: center;
  color: var(--text);
  padding-bottom: 30px;
  font-weight: 600;
  text-shadow: 0 1px 5px rgba(0,0,0,.144)
}
.card-head {
  margin: 0;
  font-size: 18px;
  color: var(--text);
  font-weight: 600
}
.about p {
  color: var(--muted)
}
.contact-section {
  display: block;
  padding: 0px 0 80px;
  min-height: auto;
}
.section.contact-section {
  display: block;
  align-items: initial;
  justify-content: flex-start;
  flex-direction: initial;
  height: auto;
}

.contact-container {
  max-width: 1200px;
}

.contact-title {
  text-align: center;
  font-size: 34px;
  margin-bottom: 48px;
  color: var(--text);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.contact-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 14px;
  padding: 32px;
}

.contact-card h2 {
  font-size: 22px;
  margin: 0 0 8px 0;
  color: var(--text);
}

.card-subtext {
  color: var(--muted);
  margin: 0 0 24px 0;
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}

.contact-info-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0 0;
  display: grid;
  gap: 16px;
}

.contact-info-list li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-info-list li:last-child {
  border-bottom: none;
}

.contact-info-list strong {
  display: block;
  margin-bottom: 4px;
  color: var(--text);
  font-size: 14px;
}

.contact-info-list a {
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
}

.contact-info-list a:hover {
  color: var(--text);
  text-decoration: underline;
}
.form-row {
  display: grid;
  gap: 6px
}
label {
  font-size: 14px;
  color: var(--muted)
}
input,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline: 0
}
input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(91,140,255,.2)
}
.form-status {
  margin-top: 6px;
  min-height: 20px;
  color: var(--muted)
}
.form-status.error {
  color: var(--danger)
}
.form-status.success {
  color: var(--brand-2)
}
.site-footer {
  margin-top: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -1px 0 rgba(0,0,0,.25) inset;
  padding: 24px 0;
  color: var(--muted);
  background: linear-gradient(180deg,#00000033,rgba(0, 0, 0, 0)),var(--bg)
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 12px
}
.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center
}
.footer-social img {
  width: 22px;
  height: 22px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,.35));
  opacity: .9
}
.footer-social img:hover {
  opacity: 1;
  transform: translateY(-1px)
}
@media (max-width:1120px) {
  .cards-two {
    grid-template-columns: 1fr 1fr
  }
  .projects-grid {
    grid-template-columns: 1fr
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width:900px) {
  .hero {
    padding: 60px 16px; /* smaller top/bottom and side padding */
  }

  .hero-inner {
    grid-template-columns: 1fr
  }
  .cards-two {
    grid-template-columns: 1fr
  }
  .features {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  .card, .card1, .card2 {
    max-width: 100%;
    margin: 0 auto;
  }
  .contact-card {
    padding: 24px;
  }
  .contact-section {
    padding: 40px 0;
  }
  .aboutWrapper {
    background: blue;
  }
  
}
@media (max-width:720px) {
  .nav-toggle {
    display: inline-block
  }
  .nav-menu {
    position: absolute;
    right: 4%;
    top: 56px;
    background: rgba(0, 0, 0, 0.98);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 12px;
    padding: 15px;
    display: none;
    flex-direction: column;
    min-width: 100px
  }
  .nav-menu.open {
    display: flex
  }
}
/* Make services grid 4 columns on large screens so 4 cards fit side-by-side */
@media (min-width: 1100px) {
  .services-cards {
    grid-template-columns: repeat(4, 1fr);
  }
}