* {
  box-sizing: border-box;
}
:root {
  /* 🎨 Theme Colors */
  --bg: #0b0d12;
  --panel: #121620;
  --text: #e6e9ef;
  --muted: #aab0bf;
  --primary: #6c7cff;
  --accent: #6ff7c7;
  --card: #151a26;
  --border: rgba(255, 255, 255, 0.08);

  /* ✨ Shadows */
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);

  /* 📏 Spacing scale */
  --space-xs: 6px;
  --space-s: 12px;
  --space-m: 18px;
  --space-l: 24px;
  --space-xl: 48px;
  --space-xxl: 96px;
}

/* --------------------------- */
/*       GENERAL ELEMENTS      */
html,
body {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
  background: linear-gradient(
      120deg,
      rgba(11, 13, 18, 0.95),
      rgba(18, 22, 32, 0.95)
    ),
    url("../img/back1.jpg") no-repeat center center fixed;
  background-size: cover;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  transition: background 0.3s ease, color 0.3s ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at 20% 20%,
    rgba(255, 255, 255, 0.02),
    transparent 60%
  );
  pointer-events: none;
}

img {
  max-width: 100%;
  display: block;
}
a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}
.section {
  padding: var(--space-xxl) 0;
}
.section.alt {
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.02),
    rgba(255, 255, 255, 0)
  );
}
.section-title {
  font-size: 32px;
  margin: 0 0 var(--space-l);
  letter-spacing: -0.02em;
}
/*     END GENERAL ELEMENTS    */
/* --------------------------- */

/* --------------------------- */
/*           BUTTONS           */
.btn {
  display: inline-block;
  padding: var(--space-s) var(--space-l); /* More horizontal padding for a modern look */
  border-radius: 24px; /* More rounded for a pill shape */
  border: none;
  background: linear-gradient(110deg, var(--primary), #9aa4ff);
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 12px rgba(108, 124, 255, 0.1);
  cursor: pointer;
  transition: background 0.3s, color 0.2s,
    transform 0.18s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.18s;
}
.btn.primary {
  background: linear-gradient(110deg, var(--primary), #6ff7c7);
  color: #0b0d12;
}
.btn.ghost {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn:hover,
.btn:focus {
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 6px 24px 0 var(--primary), 0 2px 8px rgba(44, 108, 223, 0.18);
  background: linear-gradient(110deg, #6ff7c7, var(--primary));
  color: #0b0d12;
}
/*         END BUTTONS         */
/* --------------------------- */

/* --------------------------- */
/*           HEADER            */
.site-header {
  position: relative;
  /* top: 0; */
  /* z-index: 50; */
  /* backdrop-filter: saturate(120%) blur(12px); */
  background: rgb(11, 13, 18);
  border-bottom: 1px solid var(--border);
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.site-header::after,
.site-header::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(
    from var(--angle),
    #6ff7c7,
    #6c7cff,
    #6ff7c7
  );
  inset: 0;
  z-index: -1;
  padding: 0 0 3px 0;
  animation: 1s spin linear infinite;
}
.site-header::before {
  filter: blur(1.5rem);
  opacity: 0.5;
}
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: -360deg;
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-m) 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.logo {
  width: 92px;
  height: 92px;
}
.nav {
  display: flex;
  gap: var(--space-m);
  align-items: center;
}
.nav .cta {
  background: rgba(255, 255, 255, 0.06);
  padding: var(--space-xs) var(--space-s);
  border-radius: 10px;
}
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-direction: column;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
}
/*          END HEADER         */
/* --------------------------- */

/* --------------------------- */
/*           ABOUT US          */
.about_items {
  padding: 5% 0;
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.callToAction {
  background: #aab0bf;
  text-align: center;
  padding: 2%;
  color: #121620;
}
#about-card {
  margin: 0 auto;
  padding: 2.2rem 1.7rem 2rem 1.7rem;
  flex: 1 1 260px;
  min-width: 420px;
  max-width: 320px;
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s;
  position: relative;
  /* overflow: hidden; */
  color: #fff;
  text-align: left;
}
.about_heading {
  text-align: center;
  padding: 2% 0;
  width: 550px;
  margin: 0 auto;
}
.section-title {
  text-align: center;
  color: #cccede;
  margin-bottom: 2.5rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

@media screen and (max-width: 600px) {
  #about-card {
    width: 90%;
  }
  .about_heading {
    width: 95%;
  }
}
/*         END ABOUT          */
/* -------------------------- */

/* --------------------------- */
/*         HERO SECTION        */
.hero .grid-2 {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-l);
  align-items: center;
}
.hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 var(--space-s);
}
.hero p {
  color: var(--muted);
  margin: 0 0 var(--space-m);
  font-size: 18px;
}
.actions {
  display: flex;
  gap: var(--space-s);
}
.hero-art {
  position: relative;
  height: 360px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.03),
    rgba(255, 255, 255, 0.01)
  );
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.glow {
  position: absolute;
  inset: -20% -10% auto -10%;
  height: 60%;
  background: radial-gradient(
    600px 300px at 40% 40%,
    rgba(111, 247, 199, 0.35),
    transparent 65%
  );
  filter: blur(18px);
}
.orb {
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(108, 124, 255, 0.9),
    rgba(108, 124, 255, 0.1)
  );
  top: 40%;
  left: 12%;
  filter: blur(0.5px);
}
.orb.small {
  width: 90px;
  height: 90px;
  top: 20%;
  left: 60%;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(111, 247, 199, 0.9),
    rgba(111, 247, 199, 0.1)
  );
}
@media screen and (max-width: 960px) {
  .hero-content {
    text-align: center;
  }
  .actions {
    display: block;
    text-align: center;
  }
}
/*          END HERO          */
/* -------------------------- */

/* -------------------------- */
/*          SERVICES          */
.cards {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 2rem;
}
.card {
  background: linear-gradient(135deg, #6c7cff 0%, #6ff7c7 100%);
  background: #232a3b;
  /* 151a26 */
  border-radius: 22px;
  box-shadow: 0 4px 5px 0 rgba(108, 124, 255, 0.13);
  border: none;
  padding: 2.2rem 1.7rem 2rem 1.7rem;
  flex: 1 1 260px;
  min-width: 220px;
  max-width: 320px;
  transition: transform 0.22s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.22s;
  position: relative;
  /* overflow: hidden; */
  color: #fff;
  text-align: center;
}
.card:hover,
.card:focus {
  box-shadow: 0 8px 32px 0 #6c7cff44, 0 2px 8px #6ff7c733;
}
@property --angle {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}
.card::after,
.card::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 100%;
  background-image: conic-gradient(
    from var(--angle),
    transparent 30%,
    #6c7cff 70%,
    #6ff7c7
  );
  /* background-image: conic-gradient(from var(--angle), red, green, blue, red); */
  top: -1.1%;
  left: -1.1%;
  z-index: -1;
  padding: 3px;
  border-radius: 22px;
  animation: 3s spin linear infinite;
  animation-delay: calc(var(--i, 0) * 0.3s);
}
.cards .card:nth-child(1) {
  --i: 0;
}
.cards .card:nth-child(2) {
  --i: 0.6;
}
.cards .card:nth-child(3) {
  --i: 1.5;
}
.card::before {
  filter: blur(1rem);
  opacity: 0.5;
}
@keyframes spin {
  from {
    --angle: 0deg;
  }
  to {
    --angle: 360deg;
  }
}
.card h3 {
  margin-top: 0;
  /* color: #232a3b; */
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 0.7rem;
  letter-spacing: -0.01em;
}
.card p {
  /* color: #232a3b; */
  font-size: 1.05rem;
  margin: 0;
  opacity: 0.85;
}

@media (max-width: 900px) {
  .cards {
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
  }
  .card {
    max-width: 100%;
    width: 100%;
  }
}
/*        END SERVICES        */
/* -------------------------- */

/* ---------------------------*/
/*          PORTFOLIO         */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-m);
}
.shot {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 200px auto;
  transition: transform 0.15s ease, border-color 0.2s ease;
  will-change: transform;
}
.shot:hover {
  transform: translateY(-3px) scale(1.02);
  border-color: rgba(255, 255, 255, 0.18);
}
.shot-img {
  position: relative;
}

.gradient-a {
  background: linear-gradient(135deg, #6c7cff, #9aa4ff);
}
.gradient-b {
  background: linear-gradient(135deg, #6ff7c7, #84ffd8);
}
.gradient-c {
  background: linear-gradient(135deg, #ffb86b, #ffd2a3);
}
.shot-meta {
  padding: var(--space-m);
  border-top: 1px solid var(--border);
}
.shot-meta h3 {
  margin: 0 0 var(--space-xs);
  font-size: 18px;
}
.shot-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
/*       END PORTFOLIO        */
/* -------------------------- */

/* -------------------------- */
/*        TESTIMONIALS        */
#testimonials {
  padding: 4rem 0;
}

.container.narrow {
  /* max-width: 700px; */
  margin: 0 auto;
  display: flex;
}
.narrow {
  /* width: min(820px, 92%); */
  width: 85%;
  gap: 25px;
  flex-wrap: wrap;
}
.testimonial {
  background: rgba(108, 124, 255, 0.1);
  border-radius: 18px;
  box-shadow: 0 4px 24px 0 rgba(108, 124, 255, 0.1);
  padding: 2.2rem 2rem 1.5rem 2rem;
  margin-bottom: 2rem;
  border-left: 5px solid #6c7cff;
  /* position: relative; */
  width: 600px;
  margin: 0 auto;
  /* height: 400px; */
  display: flex;
  flex-direction: column;
  transition: transform 0.18s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.18s;
}
/* .testimonial:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px 0 #6c7cff44, 0 2px 8px #6ff7c733;
} */

.testimonial blockquote {
  font-size: 1.18rem;
  color: #e6e9ef;
  font-style: italic;
  margin: 0 0 1.2rem 0;
  line-height: 1.7;
  position: relative;
}
.testimonial blockquote:before {
  content: "“";
  font-size: 2.5rem;
  color: #6c7cff;
  /* position: absolute; */
  left: -1.2rem;
  top: -1.2rem;
  opacity: 0.3;
}
.testimonial figcaption {
  color: #6ff7c7;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  margin-left: 0.5rem;
}

/* .testimonial {
  margin: 0 0 var(--space-l);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: var(--space-m);
  box-shadow: var(--shadow);
} */
.testimonial blockquote {
  margin: 0 0 var(--space-s);
  font-size: 18px;
}
.testimonial figcaption {
  color: var(--muted);
  font-size: 14px;
}
/*       END TESTIMONIALS        */
/* ----------------------------- */

/* ----------------------------- */
/*            CONTACT            */
.contact {
  align-items: start;
  gap: var(--space-l);
}
.contact-list {
  margin: var(--space-m) 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: var(--space-s);
}
.contact-form {
  display: grid;
  gap: var(--space-s);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 700px;
  margin: 0 auto;
  padding: var(--space-m);
  box-shadow: var(--shadow);
}
@media screen and (max-width: 800px) {
  .contact-form {
    width: 90%;
  }
}
.contact-form label {
  display: grid;
  gap: 6px;
  font-size: 14px;
  color: var(--muted);
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: var(--space-s) var(--space-m);
  border-radius: 12px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font: inherit;
  transition: border-color 0.3s ease;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.22);
}
/*         END CONTACT           */
/* ----------------------------- */

/* ----------------------------- */
/*            FOOTER             */
.site-footer {
  border-top: 1px solid var(--border);
  padding: var(--space-l) 0;
  background: var(--bg); /* optional */
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--space-m);
  padding: 3% 0;
  /* flex-wrap: wrap; */
}
.footer-inner div {
  /* border: 1px solid lime; */
  flex: 1 1 110px; /* allows sections to shrink on smaller screens */
  padding: 0 15px;
}
.footer-inner h4 {
  margin-bottom: var(--space-s);
  color: var(--text);
}
.footer-inner p {
  margin: 0.3em 0;
  color: var(--muted);
}
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-links ul li {
  margin-bottom: 0.5em;
}
.footer-links ul li a {
  color: var(--muted);
  text-decoration: none;
}
.footer-links ul li a:hover {
  text-decoration: underline;
}
.socials {
  display: flex;
  gap: var(--space-m);
  margin-top: var(--space-s);
}
.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  font-size: 1.3rem;
  margin-right: 8px;
  transition: background 0.2s, color 0.2s,
    transform 0.25s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.25s;
  box-shadow: 0 2px 8px rgba(44, 108, 223, 0.1);
}
.socials a:hover {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-7px) scale(1.18) rotate(-6deg);
  box-shadow: 0 8px 24px 0 var(--primary), 0 2px 8px rgba(44, 108, 223, 0.18);
  z-index: 2;
}
.footer-bottom {
  text-align: center;
  margin-top: var(--space-l);
  color: var(--muted);
  font-size: 0.9rem;
  border-top: 1px solid #cccede;
  margin: 0 5%;
  padding: 20px 0 0;
}

@media screen and (max-width: 900px) {
  .footer-inner {
    flex-direction: column;
  }
  .footer-links {
    width: 100%;
    border-bottom: 1px solid grey;
  }
  .footer-about {
    border-bottom: 1px solid grey;
  }
}

/* -------------------------- */
/*         NAVIGATION         */
.nav a {
  font-weight: 500;
  color: var(--text);
  position: relative;
  padding: 0.3em 0.8em;
  border-radius: 22px;
  transition: background 0.2s, color 0.2s,
    transform 0.25s cubic-bezier(0.4, 2, 0.6, 1), box-shadow 0.25s;
}
.nav a:hover,
.nav a:focus {
  background: var(--primary);
  color: #fff;
  transform: translateY(-4px) scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(44, 108, 223, 0.18);
  text-decoration: none;
  z-index: 2;
}
.nav a.cta {
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  border-radius: 22px;
  padding: 0.5em 1.2em;
  transition: background 0.2s, color 0.2s;
}
.nav a.cta:hover,
.nav a.cta:focus {
  background: var(--accent);
  color: var(--bg);
  transform: translateY(-4px) scale(1.08) rotate(-3deg);
  box-shadow: 0 4px 16px rgba(44, 108, 223, 0.18);
}

/* Highlight active nav link */
.nav a.active,
.nav a.active:focus {
  background: var(--accent);
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(44, 108, 223, 0.18);
  font-weight: 700;
  transform: none;
}

/* Responsive */
@media (max-width: 960px) {
  .hero .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3,
  .cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 680px) {
  .nav {
    display: none;
    position: absolute;
    right: 4%;
    top: 64px;
    background: rgba(11, 13, 18, 0.9);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: var(--space-s);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }
  .nav a {
    display: block;
    padding: var(--space-s) var(--space-m);
  }
  .nav.open {
    display: block;
    opacity: 1;
    transform: translateY(0);
  }
  .nav-toggle {
    display: inline-flex;
  }
  .grid-3,
  .cards {
    grid-template-columns: 1fr;
  }
  .section {
    padding: var(--space-xl) 0;
  }
}
@media (max-width: 400px) {
  .hero-art {
    height: 280px;
  }
}

/*       END NAVIGATION       */
/* -------------------------- */

/* Team Section */
/* #team {
  padding: 60px 20px;
  background: #051d14;
  text-align: center;
}

#team .section-title {
  font-size: 2rem;
  margin-bottom: 40px;
  color: #222;
} */

/* Team Cards container */
/* #team .cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
} */

/* Individual card */
/* #team .card {
  background: #f4f3f1;
  border-radius: 16px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

#team .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
} */

/* Profile image */
/* #team .card img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
} */

/* Card content */
/* #team .card h3 {
  margin: 0 0 8px;
  font-size: 1.3rem;
  color: #111;
}

#team .card p {
  margin: 0;
  font-size: 0.95rem;
  color: #666;
} */
