/* =========================
   RESET + GLOBAL
========================= */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

:root {
  --white: #ffffff;
  --black: #111111;

  --primary: #5200A3;
  --accent: #962EFF;
  --accent-dark: #5512c8;

  --muted: #6e6e73;

  --card-bg: rgba(255, 255, 255, 0.9);
  --border-light: rgba(0, 0, 0, 0.06);

  --shadow-sm: 0 8px 30px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 18px 40px rgba(0, 0, 0, 0.08);

  --radius-lg: 28px;
  --radius-xl: 32px;
}

body {
  font-family: 'Inter', sans-serif;
  background: var(--white);
  color: var(--black);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* =========================
   LAYOUT
========================= */

section {
  min-height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 10%;
  position: relative;
}

.container {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

/* =========================
   TYPOGRAPHY
========================= */

h1 {
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -3px;
  font-weight: 800;
  color: var(--primary);
}

h2 {
  font-size: clamp(2rem, 5vw, 4rem);
  margin-bottom: 20px;
  letter-spacing: -2px;
  font-weight: 700;
  color: var(--primary);
}

p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
}

.highlight {
color:#7F00FF;
font-weight:bold;
}
/* =========================
   BUTTON
========================= */

.btn {
  position: relative;
  overflow: hidden;

  display: inline-block;
  margin-top: 30px;
  padding: 16px 34px;

  color: var(--white);
  text-decoration: none;

  border-radius: 999px;

  font-weight: 700;
  font-size: 1.1rem;

  border: 1px solid #722F37;

  box-shadow: 0 10px 30px rgba(124, 58, 237, 0.25);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;

  z-index: 1;
}

.btn::before,
.btn::after {
  content: "";
  position: absolute;
  inset: 0;
}

.btn::before {
  background: linear-gradient(
    135deg,
    #F3ECFF 0%,
    #5d2de6 45%,
    #a56aff 100%
  );

  z-index: -2;
}

.btn::after {
  background: linear-gradient(
    135deg,
    #5c14d8,
    #d63aed
  );

  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-3px) scale(1.07);

  box-shadow: 0 18px 50px rgba(39, 8, 91, 0.4);
}

.btn:hover::after {
  opacity: 1;
}

p.quote a {
  display: inline-block;
font-size:1.5em;
color: var(--primary);
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #FAEBF9;
  padding-top: 20px;

  transition:
    transform 0.35s ease,
    color 0.35s ease;
}

p.quote a:hover {
  transform: scale(1.08);
}

#process p {
  max-width: 600px;
  }
/* =========================
   PRICING BANNER
========================= */

.pricing-banner {
  background:
    linear-gradient(
      135deg,
      #f7f2ff,
      #ffffff
    );

  padding: 120px 10%;
}

.pricing-box {
  width: 100%;

  padding: 60px;

  border-radius: 32px;

  background:
    rgba(255,255,255,0.75);

  backdrop-filter: blur(20px);

  border: 1px solid rgba(0,0,0,0.06);

  box-shadow:
    0 20px 50px rgba(0,0,0,0.06);

  text-align: center;
}

.pricing-box h2 {
  margin-bottom: 24px;
}

.pricing-box p {
  max-width: 850px;

  margin: auto;

  font-size: 1.15rem;
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;

  background: radial-gradient(
    circle at top left,
    rgba(124, 58, 237, 0.08),
    rgba(255, 255, 255, 0.7)
  );

  z-index: 1;
  pointer-events: none;
}

.hero .container,
.hero-text {
  position: relative;
  z-index: 2;
}

.hero-text {
  flex: 1;
}

.hero-text p {
  font-weight: bold;
  color: var(--accent);
  font-size: 1.5rem;
  text-shadow:
  5px 5px 50px #fff,
  1px 1px 3px #fff;
}

.hero-text h1 {
  font-weight: bold;
  text-transform: uppercase;
  text-shadow: 1px 1px 2px #FAEBF9;
}

/* =========================
   PARTICLES CANVAS
========================= */

#c {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  display: block;

  z-index: 0;

  opacity: 0.9;

  pointer-events: none;
}

/* =========================
   HERO CONTACT
========================= */

.hero-contact {
  position: fixed;

  top: 24px;
  right: 40px;

  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;

  z-index: 2000;
}

.hero-contact a {
  text-decoration: none;
  color: var(--primary);

  font-weight: 700;
  font-size: 1.25rem;

  transition: color 0.25s ease;
}

.hero-contact a:hover {
  color: var(--accent);
}

/* =========================
   LOGO
========================= */

.site-logo {
  position: fixed;

  top: 20px;
  left: 40px;

  z-index: 2000;
}

.site-logo img {
  height: 190px;
  width: auto;

  display: block;

  padding-top: 50px;
  padding-left: 50px;

  transform-origin: center;

  transition: transform 0.25s ease;
}

.site-logo img:hover {
  animation: logoBounce 0.7s ease;
}

@keyframes logoBounce {
  0% {
    transform: scale(1) translateY(0);
  }

  20% {
    transform: scale(1.08, 0.92) translateY(0);
  }

  40% {
    transform: scale(0.92, 1.08) translateY(-14px);
  }

  60% {
    transform: scale(1.04, 0.96) translateY(0);
  }

  80% {
    transform: scale(0.98, 1.02) translateY(-4px);
  }

  100% {
    transform: scale(1) translateY(0);
  }
}

.site-logo img {
  transition: transform 0.25s ease, filter 0.25s ease;
}

.site-logo:active img {
  transform: scale(0.92) rotate(-1deg);
  filter: brightness(0.9);
}

/* =========================
   NAV
========================= */

nav {
  position: fixed;

  top: 20px;
  left: 50%;

  transform: translateX(-50%);

  background: rgba(255, 255, 255, 0.7);

  backdrop-filter: blur(20px);

  border: 1px solid var(--border-light);
  border-radius: 999px;

  padding: 12px 24px;

  z-index: 1000;

  box-shadow: var(--shadow-md);
}

nav ul {
  display: flex;
  gap: 24px;
  list-style: none;
}

nav a {
  color: var(--accent-dark);

  text-decoration: none;

  font-size: 0.95rem;
  font-weight: 600;

  transition: color 0.2s ease;
}

nav a:hover {
  color: #AE9FE9;
}

/* =========================
   LANGUAGE FLAGS
========================= */

.lang-switcher {
  position: absolute;
  right: -160px;
  top: 50%;
  transform: translateY(-50%);

  display: flex;
  align-items: center;
  gap: 10px;
}

.lang-flag {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;

  font-size: 1.4rem;

  border-radius: 50%;

  background: rgba(255,255,255,0.8);
  backdrop-filter: blur(12px);

  border: 1px solid var(--border-light);

  box-shadow: var(--shadow-sm);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.lang-flag:hover {
  transform: translateY(-2px) scale(1.08);
  box-shadow: var(--shadow-md);
}

.lang-flag.active {
  border-color: var(--accent);
  transform: scale(1.08);

  box-shadow:
    0 0 0 3px rgba(150, 46, 255, 0.15);
}
/* =========================
   TICKER
========================= */

.ticker {
  position: absolute;

  bottom: 40px;
  left: 0;

  width: 100%;

  overflow: hidden;

  white-space: nowrap;

  z-index: 5;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 80px;

  width: max-content;

  text-decoration: none;

  will-change: transform;

  animation: tickerMove 28s linear infinite;

  transition: opacity 0.3s ease;
}

.ticker:hover .ticker-track {
  animation-play-state: paused;
  opacity: 1;
}

.ticker span {
  font-size: 1.15rem;
  font-weight: 700;

  color: var(--primary);

  text-transform: uppercase;
  letter-spacing: 3px;

  white-space: nowrap;

  opacity: 0.72;

  transition:
    opacity 0.3s ease,
    transform 0.3s ease,
    color 0.3s ease;
}

.ticker span:hover {
  opacity: 1;
  transform: scale(1.04);
  color: #9424f6;
}

@keyframes tickerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

/* =========================
   SERVICES
========================= */

.services {
  background: #fafafa;
}

.cards,
.cards2 {
  display: grid;

  gap: 30px;

  width: 100%;

  margin-top: 40px;

}

.cards {
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.cards2 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card,
.card2,
.nofcard {
  position: relative;
  overflow: hidden;
  padding: 40px;
  border-radius: var(--radius-lg);
  background: var(--card-bg);
  border: 1px solid var(--border-light);
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
    height: 30em;
}

.card::before,
.nofcard {
  min-height: 30em;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.card:hover,
.card2:hover,
.nofcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.card h3,
.card2 h3 {
  margin-bottom: 16px;

  font-size: 1.5rem;

  color: var(--black);
}

.trailer-card {
  cursor: pointer;
}

.play-overlay {
  position: absolute;
  top: 20px;
  right: 20px;

  width: 58px;
  height: 58px;

  border-radius: 50%;

  background: rgba(255,255,255,0.18);

  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 1.4rem;
  color: white;

  z-index: 5;

  transition:
    transform 0.3s ease,
    background 0.3s ease;
}

.trailer-card:hover .play-overlay {
  transform: scale(1.1);
  background: rgba(255,255,255,0.3);
}

/* MODAL */

.trailer-modal {
  position: fixed;
  inset: 0;

  display: none;
  align-items: center;
  justify-content: center;

  z-index: 99999;
  margin-top:50%;
}

.trailer-modal.active {
  display: flex;
}

.trailer-backdrop {
  position: absolute;
  inset: 0;

  background: rgba(0,0,0,0.82);

  backdrop-filter: blur(8px);
}

.trailer-content {
  position: relative;

  width: min(1100px, 92%);
  aspect-ratio: 16 / 9;

  background: black;

  border-radius: 24px;

  overflow: hidden;

  z-index: 2;

  box-shadow:
    0 30px 100px rgba(0,0,0,0.55);
}

.trailer-content iframe {
  width: 100%;
  height: 100%;
}

.close-btn {
  position: absolute;

  top: 14px;
  right: 14px;

  width: 44px;
  height: 44px;

  border: none;
  border-radius: 50%;

  background: rgba(255,255,255,0.2);

  color: white;

  font-size: 1.2rem;

  cursor: pointer;

  z-index: 10;

  backdrop-filter: blur(10px);
}

/* =========================
   CARD BACKGROUNDS
========================= */

.card::before {
  content: "";

  position: absolute;
  inset: 0;

  filter: brightness(50%);

  border-radius: inherit;

  z-index: 0;
}

.web::before {
  background-image: url("images/web.jpg");
}

.video {
  background-image: url("images/video.jpg");
}

.wordpress::before {
  background-image: url("images/wordpress.jpg");
}

.design::before {
  background-image: url("images/design.jpg");
}

.satisfaction::before {
  background-image: url("images/satisfaction.jpg");
}

.seo::before {
  background-image: url("images/seo.jpg");
}

.movie1 {
  background-image: url("images/movie1.jpg");
}

.movie2 {
  background-image: url("images/movie2.jpg");
}

.movie3 {
  background-image: url("images/movie3.jpg");
}

/* =========================
   DARK CARD TEXT
========================= */
.card,
.card p,
.card h3  {
  position: relative;
  z-index: 2;

  color: #fff;

  text-shadow: 1px 1px 1px #555;
}

.nofcard,
.nofcard p {
text-shadow: 1px 1px 1px #555, 5px 2px 20px #000;
color:#fff;
}

/* =========================
   PROJECTS
========================= */

.projects {
  background: var(--white);
}

.project-box {
  width: 100%;

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 30px;

  margin-top: 50px;
}


/* =========================
   WEBSITE LIST
========================= */

.website-list p {
  transition: transform 0.35s ease;
  transform-origin: left center;
}

.website-list p:hover {
  transform: scale(1.12);
}

/* =========================
   CONTACT
========================= */

.contact {
  background: linear-gradient(to bottom, #ffffff, #f5f3ff);

  text-align: center;
}

.contact .container {
  justify-content: center;
  text-align: center;
}

/* =========================
   SCROLL REVEAL
========================= */

.reveal {
  opacity: 0;
  transform: translateY(80px);

  transition:
    opacity 1s ease,
    transform 1s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */

.site-footer {
  padding: 30px 20px;
  border-top: 1px solid #eee;
  background: #ede9ff;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.site-footer p,
.site-footer a {
  font-size: 14px;
  color: #A54DFF;
  text-decoration: none;
  font-weight:bold;
}

.site-footer a:hover {
  color: #AE9FE9;
}

/* PRIVACY PAGE */

.privacy-page {
  display: block;
}

.privacy-page .container {
  display: block;
}

.privacy-page .container > div {
  width: 100%;
}

.privacy-page h1 {
  font-size: 48px;
  margin-bottom: 40px;
}

.privacy-page p {
  font-size: 17px;
  line-height: 1.8;
  color: #000;
}

.privacy-page strong {
  display: block;
  margin-bottom: 10px;
  color: #000;
}

.privacy-page .btn {
  margin-top: 20px;
  display: inline-block;
}

@media (max-width: 1000px) {

  /* =========================
     GLOBAL MOBILE
  ========================= */

  section {
    padding: 120px 24px 80px;
  }

  p {
    margin: auto;
    font-size: 1rem;
    line-height: 1.7;
  }

  h1 {
    font-size: clamp(2.8rem, 14vw, 4.5rem);
    letter-spacing: -2px;
  }

  h2 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  /* =========================
     MOBILE TOP BAR
  ========================= */

  .hero-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;

    width: 100%;

    padding: 16px 18px 10px;

    position: relative;

    z-index: 3000;
  }

  /* =========================
     MOBILE LOGO
  ========================= */

  .site-logo {
    position: relative;

    top: auto;
    left: auto;

    width: auto;

    display: flex;
    align-items: center;
    justify-content: flex-start;
  }

  .site-logo img {
    height: 52px;
    width: auto;

    padding: 0;
    margin: 0;
  }

  /* =========================
     MOBILE CONTACT
  ========================= */

  .hero-contact {
    position: relative;

    top: auto;
    right: auto;

    width: auto;

    display: flex;
    flex-direction: column;
    align-items: flex-end;

    gap: 2px;

    text-align: right;
  }

  .hero-contact a {
    font-size: 0.8rem;
    line-height: 1.2;
  }
  

    /* =========================
     MOBILE NAV
  ========================= */

  nav {
    position: sticky;

    top: 0;

    width: 100%;

    transform: none;

    margin-top: 10px;

    border-radius: 0;

    padding: 12px 10px;

    border: none;

    background: rgba(255, 255, 255, 0.96);

    backdrop-filter: blur(14px);

    z-index: 4000;

    box-shadow: var(--shadow-sm);
  }

  nav ul {
    display: flex;

    justify-content: center;
    flex-wrap: wrap;

    gap: 14px;

    list-style: none;
  }

  nav a {
    font-size: 0.9rem;
  }

.lang-switcher {
  position: static;
  transform: none;

  margin-top: 12px;

  justify-content: center;
}

.lang-flag {
  width: 38px;
  height: 38px;

  font-size: 1.2rem;
}
  /* =========================
     MOBILE LAYOUT
  ========================= */

  .container {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  /* =========================
     MOBILE HERO
  ========================= */

  .hero {
    padding-top: 40px;
  }

  .hero-text p {
    font-size: 1.1rem;
  }

  .btn {
    font-size: 1rem;
    padding: 14px 28px;
  }

  /* =========================
     MOBILE TICKER
  ========================= */

  .ticker {
    display: none;
  }

  /* =========================
     MOBILE CARDS
  ========================= */

  .cards,
  .cards2 {
    grid-template-columns: 1fr;
  }

  .card,
  .card2,
  .nofcard {
    width: 100%;

    height: auto;

    min-height: auto;

    padding: 32px 24px;
  }

  .card h3,
  .card2 h3 {
    font-size: 1.3rem;
  }

  /* =========================
     MOBILE PROJECTS
  ========================= */

  .project-box {
    grid-template-columns: 1fr;
  }

  .project {
    height: 260px;
  }

  .project-content {
    left: 20px;
    bottom: 20px;
  }

  /* =========================
     MOBILE CONTACT SECTION
  ========================= */

  .contact {
    padding-bottom: 100px;
  }
  
    /* =========================
     MOBILE PRICING SECTION
  ========================= */
  
  .pricing-banner {
    padding: 80px 24px;
  }

  .pricing-box {
    padding: 40px 24px;
  }


}