@font-face {
  font-family: f1;
  src: url(fonts/GermaniaOne-Regular.ttf);
}
@font-face {
  font-family: f2;
  src: url(fonts/UncialAntiqua-Regular.ttf);
}

@font-face {
  font-family: f3;
  src: url(fonts/Gabarito-VariableFont_wght.ttf);
}
@font-face {
  font-family: f4;
  src: url(fonts/Inconsolata-VariableFont_wdth\wght.ttf);
}

:root {
  --bg: #000000;
  --text: #ffffff;
  --primary: #1e90ff;
  --card-bg: rgba(255, 255, 255, 0.05);
  --accent: #ff6a3d;
  --border: rgba(255, 255, 255, 0.08);
  --contact: rgba(170, 170, 170, 0.082);
  --primary-glow: rgba(99, 102, 241, 0.5);
  --glass-bg: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --text-dim: rgba(255, 255, 255, 0.6);
}

body.dark {
  --bg: #f4f4f4;
  --text: #000000;
  --primary: #0066ff;
  --card-bg: #ffffff;
  --accent: #ff6a3d;
  --border: rgba(0, 0, 0, 0.08);
  --contact: rgba(62, 62, 62, 0.082);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

/* html,
body {
  overflow-x: hidden;
} */

body {
  background: var(--bg);
  overflow-x: hidden;
  color: var(--text);
  transition: 0.3s ease;
  font-family: "Lexend Deca", sans-serif;
  font-weight: 600;
}

/* Navbar */
.navbar {
  width: 80%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 20px 7%;
  position: fixed;
  top: 0;
  margin-top: 20px;
  margin-left: 10%;
  margin-right: 5%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 100;
  border-radius: 50px;

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

/* Hidden state */
.navbar.hide {
  transform: translateY(-120%);
  opacity: 0;
}

.logo {
  font-weight: 700;
  font-size: 25px;
  font-family: "f2", sans-serif;
}

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

nav ul li a {
  color: var(--text);
  text-decoration: none;
  position: relative;
  font-family: "f3", monospace;
  font-weight: 500;
}

nav ul li a::after {
  content: "";
  width: 0;
  height: 2px;
  background: var(--primary);
  position: absolute;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

nav ul li a:hover::after {
  width: 100%;
}

#themeToggle {
  padding-right: 150px;
  background: none;
  border: none;
  font-size: 20px;
  cursor: pointer;
}

#themeToggle i {
  font-size: 25px;
  color: var(--text) !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text);
  transition: 0.3s ease;
}

/* Hamburger animation */
.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* =========================
   HAMBURGER BLUR OVERLAY
========================= */

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: 0.3s ease;
  z-index: 999;
}

/* Show overlay */
.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

/* Mobile Menu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links ul {
    position: fixed;
    top: 70px;
    right: -100px;
    width: 220px;
    height: calc(100vh - 70px);
    background: var(--bg);
    flex-direction: column;
    padding: 40px 20px;
    gap: 25px;
    z-index: 1000;
    display: flex;
    border-radius: 15px;

    /* 👇 KEY FIX */
    transform: translateX(100%);
    transition: transform 0.4s ease;
  }

  .nav-links ul.active {
    transform: translateX(0);
  }

  nav ul li a:hover {
    padding-left: 5px;
  }
}

/* Hero */

/* Hero must have */
.hero {
  position: relative;
  overflow: hidden;
  perspective: 1200px;
}

/* Background Layer */
.achievement-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  transform-style: preserve-3d;
}

/* Certificate Card */
.certificate {
  position: absolute;
  width: 220px;
  transform-style: preserve-3d;
  will-change: transform;
  opacity: 0.35;
}

/* Image styling */
.certificate img {
  width: 100%;
  border-radius: 14px;
  transform: rotateY(20deg) rotateX(10deg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6), 0 0 60px rgba(0, 150, 255, 0.25);
}

/* Gradient glow behind */
.certificate::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(0, 150, 255, 0.3), transparent 70%);
  z-index: -1;
  filter: blur(60px);
  opacity: 0.6;
}

/* Positioning */
.cert1 {
  top: 8%;
  left: 8%;
}
.cert2 {
  top: 75%;
  left: 18%;
}
.cert3 {
  top: 8%;
  right: 10%;
}
.cert4 {
  bottom: 15%;
  right: 8%;
}

/* Keep content above */
.hero-content {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .cert1 {
    display: none;
  }
  .cert2 {
    top: 60%;
    left: 5%;
  }
  .cert3 {
    display: none;

    .cert4 {
      bottom: 20%;
      right: 6%;
    }
  }
}

.hero {
  margin-top: 10vh;
  min-height: 110vh;
  display: flex;
  align-items: center;
  padding: 0 10%;
  gap: 10px;
  overflow: hidden;
  /* border-bottom: 1px solid gray; */
  /* margin-left: 5%;
  margin-right: 10%; */
}

.hero-text {
  flex: 1;
}

.hero-text h1 {
  font-size: 48px;
  font-family: "f2";
}

.hero-text h2 {
  font-size: 36px;
  font-family: "f3";
}

.hero-text span {
  color: var(--primary);
  font-family: "f1";
}

.hero-text p {
  margin: 20px 0;
  opacity: 0.8;
  font-family: "f3";
  font-weight: 600;
  line-height: 1.5;
}

.hero-text .tag {
  background-color: transparent;
  color: var(--text);
  font-family: "f3";
  font-weight: 100;
  font-size: 15px;
}

.buttons{
  display: flex;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
}

.btn {
  padding: 12px 25px;
  border: none;
  background: var(--primary);
  color: white;
  cursor: pointer;
  border-radius: 25px;
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
}

#downloadBtn{
  background-color:rgb(255, 255, 255);
}

#downloadBtn:hover{
  background-color: rgb(9, 9, 9);
  transform: scale(1.05);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
  border: 1px solid var(--primary);
}

#downloadBtn a{
  color: var(--primary) !important;
  text-decoration: none;
  font-weight: 600;
}

/* Image */
.hero-img {
  /* flex: 1; */
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img img {
  width: 110%;
  max-width: 1000px; /* controls desktop size */
  height: auto;
  border-radius: 20px;
  object-fit: cover;
  border-bottom: 2px solid white;
}

/* Sections */
.section {
  min-height: 80vh;
  padding: 30px 10%;
  opacity: 0;
  transform: translateY(50px);
  transition: 0.8s;
}

.section.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
  }

  nav ul {
    display: none;
  }

  .buttons {
    gap: 9px;
    justify-content: center;
  }

  .btn {
  padding: 5px 25px;
  font-size: 13px;
  font-weight: 600;
}
}

/* =========================
   ANIMATED BACKGROUND BLOBS
========================= */

.blobs {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}

.blob {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float 20s infinite alternate ease-in-out;
}

/* Blob Colors */
.blob1 {
  background: #1e90ff;
  top: 10%;
  left: 5%;
  animation-duration: 18s;
}

.blob2 {
  background: #00c6ff;
  top: 50%;
  right: 10%;
  animation-duration: 22s;
}

.blob3 {
  background: #6a5acd;
  bottom: 10%;
  left: 30%;
  animation-duration: 25s;
}

/* Floating animation */
@keyframes float {
  0% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(80px, -60px) scale(1.1);
  }
  100% {
    transform: translate(-60px, 40px) scale(1);
  }
}

/* Dark mode blob adjustment */
body.dark .blob {
  opacity: 0.35;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .blob {
    width: 200px;
    height: 200px;
    filter: blur(60px);
  }
}

/* ======================
   ABOUT SECTION
====================== */

.about {
  position: relative;
  min-height: 100vh;
  padding: 40px 10%;
  text-align: center;
  border-bottom: 1px solid gray;
  /* margin-left: 10%;
  margin-right: 10%; */
}

.about-title {
  font-size: 48px;
  margin-bottom: 25px;
  letter-spacing: 2px;
  font-family: "f2";
}

.about-text {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  font-family: "f4";
  font-weight: 500;
  font-size: 20px;
  display: 0;
}

.about-text1 {
  max-width: 720px;
  margin: auto;
  font-size: 16px;
  line-height: 1.8;
  opacity: 0.85;
  font-family: "f4";
  font-weight: 500;
  font-size: 20px;
  display: none;
}

.about-btn {
  margin-top: 35px;
  padding: 14px 32px;
  border-radius: 30px;
  border: none;
  background: var(--primary);
  color: var(--bg);
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
}

/* Floating Images */
.about-images .p3 {
  width: 20%;
}
.about-images img {
  position: absolute;
  width: 210px;
  border-radius: 14px;
  transition: 0.4s ease;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
}

/* Hover Shadow + Lift */
.about-images img:hover {
  transform: translateY(-8px) scale(1.05);
}

/* Image Positions */
.p1 {
  top: 15%;
  left: 7%;
}

.p2 {
  bottom: 20%;
  left: 7%;
}
/* 
.p3 {
  top: 15%;
  right: 12%;
} */

.p3 {
  top: 22%;
  right: 5%;
}

.p4 {
  bottom: 5%;
  right: 10%;
}

/* Responsive */
@media (max-width: 1024) {
  .about-text {
    display: 1;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 36px;
  }

  .about-text1 {
    display: block;
  }

  .about-text {
    display: none;
  }

  .about-images img {
    width: 90px;
  }

  .p1 {
    top: 8%;
    left: 5%;
    z-index: -10;
    opacity: 0.4;
  }
  .p2 {
    bottom: 10%;
    left: 5%;
    z-index: -10;
    opacity: 0.4;
  }
  .p4 {
    bottom: 10%;
    right: 5%;
    z-index: -10;
    opacity: 0.4;
  }
  .p3 {
    top: 10%;
    right: 5%;
    z-index: -10;
    opacity: 0.4;
  }
}

/*Project Section CSS */

.projects-section {
  padding: 30px 8%;
  background: transparent;
  color: #fff;
  /* border-bottom: 1px solid gray; */
}

.projects-section h2 {
  color: var(--primary);
  font-size: 3rem;
  font-weight: 400;
}

.section-title {
  text-align: center;
  font-size: 3rem;
  /* margin-bottom: 10px; */
  color: var(--text);
  font-family: "f1";
}

.section-subtitle {
  text-align: center;
  opacity: 0.7;
  /* margin-bottom: 10px; */
  color: var(--text);
  font-family: "f4";
  font-weight: 500;
  font-size: 25px;
  
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-left: 5%;
  margin-right: 5%;
}

.project-card {
  background: transparent;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--text);
}

.project-card:hover {
  transform: translateY(-10px) scale(1.08) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-content {
  padding: 15px;
}

.tag {
  display: inline-block;
  background: var(--primary) !important;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin-right: 8px;
  margin-bottom: 5px;
}

.project-content h3 {
  margin: 10px 0 5px;
  font-weight: 600;
  font-size: 20px;
  color: var(--text);
}

.project-content p {
  opacity: 0.7;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 400;
}

.project-content a{
  text-decoration: none;
  color: var(--primary);
  font-weight: 500;
  display: inline-block;
  margin-top: 10px;
}
/* MODAL */
.project-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
}

.modal-content {
  background: #141820;
  padding: 40px;
  border-radius: 20px;
  max-width: 500px;
  width: 90%;
  text-align: center;
}

.close-btn {
  position: absolute;
  top: 25px;
  right: 30px;
  cursor: pointer;
  font-size: 1.2rem;
}

@media (max-width: 768px) {
  .project-content h3 {
    font-size: 18px;
  }

  .project-content p {
    font-size: 0.85rem;
  }
  
}

/*Service */

.services {
  padding: 30px 5%;
  /* background: radial-gradient(circle at top, #0f172a, #020617); */
  color: #fff;
  text-align: center;
  /* border-bottom: 1px solid gray; */
}

.section-title {
  font-size: clamp(3rem, 4vw, 2.6rem);
  margin-bottom: 60px;
  font-weight: 500;
  font-family: "f2" !important;
}

.section-title span{
  color: var(--primary);
  font-family: "f2" !important;
  font-weight: 500;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  margin-top: 50px;
  margin-left: 10%;
  margin-right: 10%;
}

.service-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 35px 30px;
  text-align: left;
  border: 0.3px solid var(--text);
  transition: all 0.4s ease;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(56, 189, 248, 0.15),
    transparent
  );
  opacity: 0;
  transition: 0.4s;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover {
  transform: translateY(-12px) scale(1.06) !important;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}

.icon {
  width: 55px;
  height: 55px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.ui {
  background: #06b6d4;
}
.dev {
  background: #f97316;
}
.marketing {
  background: #eab308;
}
.branding {
  background: #fb7185;
}
.startup {
  background: #60a5fa;
}
.motion {
  background: #2dd4bf;
}

.service-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.6;
}

.read-more {
  display: inline-block;
  margin-top: 18px;
  color: #38bdf8;
  font-weight: 500;
  transition: transform 0.3s;
}

.service-card:hover .read-more {
  transform: translateX(6px);
}

/*Team section CSS */

.team {
  padding: 50px 6%;
  background: transparent;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.section-title {
  font-family: "f2" !important;
  color: var(--text);
  font-size: clamp(2rem, 4vw, 3rem);
}

.section-subtitle {
  font-size: 22px !important;
  max-width: 600px;
  margin: 12px auto 80px;
  color: var(--text);
  padding-bottom: 15px;
}

/* Floating avatars */
.team-floating {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 80px;
  position: relative;
}

.team-floating img {
  width: 170px;
  height: 270px;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: rotate(-8deg);
}

/* Team grid */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 30px;
  margin-left: 10%;
  margin-right: 10%;
}

.team-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 22px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: all 0.4s ease;
  cursor: pointer;
  border: 1px solid var(--text);
}

.team-card img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.team-card h3 {
  font-size: 1.5rem;
  margin-bottom: 5px;
  color: var(--text);
  font-weight: 600;
}

.team-card span {
  font-size: 0.85rem;
  color: var(--text);
}

.team-card h4 a {
  text-decoration: none;
  color: rgb(255, 157, 0);
  font-size: 20px;
  padding-top: 5px;
  font-weight: 500;
}

.team-card h4 a:hover {
  color: var(--primary);
}

.team-card p {
  font-size: 0.9rem;
  color: var(--text);
  margin-top: 10px;
}

.team-card:hover {
  transform: translateY(-14px) scale(1.03);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
}

/* Mobile */
@media (max-width: 768px) {
  .team-floating {
    flex-wrap: wrap;
  }

  .team-floating img {
    width: 140px;
    height: 180px;
  }

  .team-card {
    align-items: center;
  }
}

/* Conatct Section */

.contact-section {
  position: relative;
  padding: 120px 8%;
  /* background: radial-gradient(circle at top, #1f3f35, #000); */
  color: white;
  overflow: hidden;
}

.bg-text {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(6rem, 15vw, 14rem);
  font-weight: 800;
  color: var(--contact);
  pointer-events: none;
  user-select: none;
}

.contact-container {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  position: relative;
  z-index: 2;
}

/* LEFT */
.contact-left {
  flex: 1;
}

.contact-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.08);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.85rem;
  margin-bottom: 20px;
}

.contact-left h2 {
  font-size: 2.4rem;
  margin-bottom: 15px;
  color: var(--text);
}

.contact-left p {
  color: var(--text);
  margin-bottom: 40px;
}

.contact-left span {
  color: var(--text);
  background-color: var(--primary);
}

.contact-left a {
  text-decoration: none;
  color: var(--text);
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  padding: 20px 25px;
  margin-bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
  border: 1px solid var(--text);
}

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.contact-card h4 {
  margin-bottom: 4px;
  color: var(--text);
}

.contact-card span {
  font-size: 0.9rem;
  color: #94a3b8;
}

.contact-card button {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  padding: 10px 14px;
  border-radius: 50%;
  color: var(--text);
  cursor: pointer;
}

/* RIGHT */
.contact-right {
  flex: 1;
}

.contact-form {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  padding: 35px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--text);
}

.contact-form input,
.contact-form textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--text);
  padding: 14px 16px;
  border-radius: 14px;
  color: var(--text);
  outline: none;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 20px rgba(56, 189, 248, 0.3);
}

.submit-btn {
  background: var(--primary);
  color: var(--bg);
  padding: 14px;
  border-radius: 14px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }
}

.contact-section::before {
  content: "";
  position: absolute;
  width: 600px;
  height: 600px;
  /* background: radial-gradient(circle, rgba(34,197,94,0.3), transparent); */
  top: -200px;
  left: -200px;
  filter: blur(100px);
}

/* Footer */

.footer {
  /* background: linear-gradient(180deg, #000000, #0b168e); */
  background: transparent;
  color: white;
  position: relative;
  overflow: hidden;
  /* border-top: 1px solid rgb(58, 58, 58); */
  box-shadow: 0px 0px 100px #1a237e;
  clip-path: ellipse(80% 100% at 50% 100%);
}


/* Slanted top */
.footer::before {
  content: "";
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 120px;
  background: transparent;
  transform: skewY(-3deg);
}

/* CTA */
.footer-cta {
  text-align: center;
  padding: 120px 10% 80px;
  position: relative;
  z-index: 2;
}

.cta-badge {
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 18px;
  border-radius: 30px;
  font-size: 0.8rem;
}

.footer-cta h2 {
  margin: 20px 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.footer-cta span {
  color: #8ab4ff;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4c6fff;
  padding: 14px 26px;
  border-radius: 30px;
  color: white;
  text-decoration: none;
  transition: 0.3s;
  margin-top: 25px;
}

.cta-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

/* MAIN FOOTER GRID */
.footer-main {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  padding: 60px 10%;
}

.footer-col h4 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: #cbd5f5;
  text-decoration: none;
  transition: 0.3s;
}

.footer-col a:hover {
  color: white;
  padding-left: 6px;
}

.footer-bottom {
  text-align: center;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 768px) {
  .footer-cta {
    padding-top: 100px;
    padding: 30px 10px;
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding-top: 0px;
    padding-bottom: 60px;
  }
}

/* Footer particals animation */
.footer {
  position: relative;
  overflow: hidden;
}

#footerParticles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.footer > *:not(canvas) {
  position: relative;
  z-index: 2;
}
