@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,200..800&display=swap');

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Bricolage Grotesque', sans-serif;
  background: #000000;
  color: #ffffff;
  line-height: 1.7;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

body.loaded {
  opacity: 1;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease, transform 0.3s ease;
}

img {
  max-width: 100%;
  display: block;
  transition: transform 0.5s ease, opacity 0.5s ease;
}

section {
  padding: clamp(3rem, 8vw, 6rem) 5%;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h1 {
  font-size: clamp(2.8rem, 7vw, 4.2rem);
  font-weight: 800;
  line-height: 1.1;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 2.8rem);
  font-weight: 700;
}

h3 {
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 700;
}

h5 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 600;
}


:root {
  --bg: #000000;
  --text: #ffffff;
  --pink: #fc03fc;
  --pink-dark: #c300c3;
  --orange: #ffae00;
  --gray-dark: #111111;
  --gray-darker: #0a0a0a;
}


header {
  position: sticky;
  top: 0;
  background: var(--bg);
  z-index: 1000;
  padding: 1rem 5%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s ease;
}

header:hover {
  background: #0f000f;
}

.logo img {
  height: clamp(36px, 6vw, 48px);
  transition: transform 0.4s ease;
}

.logo img:hover {
  transform: scale(1.1) rotate(8deg);
}

.navbar ul {
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.5rem);
  list-style: none;
}

.navbar a {
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  color: var(--text);
}

.navbar a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: width 0.3s ease;
}

.navbar a:hover::after {
  width: 100%;
}

.navbar a:hover {
  color: var(--orange);
}

.toggle_btn {
  display: none;
  font-size: 1.6rem;
  cursor: pointer;
  z-index: 1001;
  color: var(--pink);
  transition: transform 0.3s ease;
}

.toggle_btn:hover {
  transform: rotate(90deg);
  color: var(--orange);
}


.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(6rem, 0, 8rem) 5% clamp(3rem, 6vw, 5rem);
  overflow: hidden;
  background: linear-gradient(135deg, #000000 0%, #1a001a 60%, #2a002a 100%);
  color: var(--text);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(252,3,252,0.12) 0%, transparent 60%);
  opacity: 0.6;
  animation: pulse 6s infinite ease-in-out;
  z-index: 0;
  pointer-events: none;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.6; }
  50% { transform: scale(1.15); opacity: 0.3; }
  100% { transform: scale(1); opacity: 0.6; }
}

.hero-content, .hero-img {
  position: relative;
  z-index: 1;
}

.hero h1 span {
  color: var(--orange);
  border-bottom: 6px solid var(--pink);
}

.hero p {
  font-size: clamp(1rem, 2.5vw, 1.1rem);
  color: #e0e0e0;
  margin: 1.5rem 0 2rem;
  max-width: 520px;
}

.hero .btn {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btnA, .btnB {
  padding: 0.9rem 2rem;
  font-weight: 600;
  border: 2.5px solid var(--orange);
  border-radius: 50px;
  transition: all 0.4s ease, transform 0.4s ease;
  min-width: 160px;
  text-align: center;
  font-size: 0.95rem;
}

.btnA {
  background: var(--orange);
  color: white;
}

.btnA:hover {
  background: var(--pink);
  border-color: var(--pink);
  transform: translateY(-3px) scale(1.05);
}

.btnB {
  background: transparent;
  color: white;
}

.btnB:hover {
  background: var(--pink);
  color: #000000;
  transform: translateY(-3px) scale(1.05);
}

.hero-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(252, 3, 252, 0.25);
  transition: all 0.6s ease;
  background: #111111;
}

.hero-img:hover {
  transform: translateY(-10px) scale(1.02) rotate(2deg);
  box-shadow: 0 30px 60px rgba(252, 3, 252, 0.4);
}


.about {
  background: var(--gray-darker);
  color: var(--text);
  text-align: center;
  border-radius: 30px;
  margin: 2rem 5%;
  padding: 4rem 2rem;
  border: 1px solid rgba(252, 3, 252, 0.15);
}

.about h1 span {
  display: block;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--orange);
  margin-top: 0.5rem;
}

.about p {
  max-width: 700px;
  margin: 1.5rem auto;
  color: #cccccc;
  font-size: 1.05rem;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(252, 3, 252, 0.12);
  color: white;
  padding: 0.75rem 1.3rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(252, 3, 252, 0.3);
}

.social-links a:hover {
  background: var(--orange);
  color: #000;
  transform: translateY(-5px) rotate(3deg);
  box-shadow: 0 12px 25px rgba(252, 3, 252, 0.5);
}



.services {
  background: var(--gray-darker);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h5 {
  color: var(--pink);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--gray-dark);
  padding: 2rem;
  text-align: center;
  border: 1px solid rgba(252, 3, 252, 0.2);
  transition: all 0.4s ease, box-shadow 0.4s ease;
}

.service-card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: var(--pink);
  box-shadow: 0 20px 40px rgba(252, 3, 252, 0.25);
}

.service-card i {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: white;
  transition: transform 0.3s ease;
}

.service-card:hover i {
  transform: scale(1.2);
}

.service-card h5 {
  color: var(--orange);
  margin-bottom: 0.5rem;
}

.service-card p {
  color: #cccccc;
  font-size: 0.9rem;
}



.projects {
  background: var(--bg);
}

.projects-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
  gap: 1rem;
}

.projects-header h5 {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  color: var(--pink);
}

.view-all-btn {
  background: var(--pink);
  color: #000;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: var(--orange);
  transform: translateY(-2px) scale(1.05);
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.project-card {
  border-radius: 18px;
  overflow: hidden;
  background: var(--gray-dark);
  border: 1px solid rgba(252, 3, 252, 0.15);
  transition: all 0.4s ease;
}

.project-card:hover {
  transform: translateY(-10px) rotate(1deg);
  border-color: var(--pink);
  box-shadow: 0 20px 40px rgba(252, 3, 252, 0.3);
}

.project-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 4px solid var(--pink);
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.1);
}

.project-info {
  padding: 1.5rem;
}

.project-info h5 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--pink);
}

.project-info p {
  color: #cccccc;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.tech-stack {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.tech-item {
  background: orange;
  color: white;
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  transition: all 0.3s ease;
}

.tech-item:hover {
  background: var(--pink);
  color: #000;
}

.project-links {
  display: flex;
  gap: 1rem;
}

.project-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  border-bottom: 1px solid var(--pink);
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.project-links a:hover {
  color: var(--orange);
  border-color: var(--orange);
}



.approach {
  background: linear-gradient(135deg, #000000, #140014);
  color: var(--text);
}

.approach-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: rgba(252, 3, 252, 0.08);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(252, 3, 252, 0.2);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(252, 3, 252, 0.15);
  transform: translateX(10px);
}

.step-number {
  background: white;
  color: #000;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step h5 {
  margin-bottom: 0.5rem;
  color: var(--orange);
}

.approach-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(252, 3, 252, 0.3);
  transition: transform 0.5s ease;
}

.approach-img:hover {
  transform: scale(1.05);
}

.schedule-btn {
  margin-top: 2rem;
  display: inline-block;
  background: var(--pink);
  color: #000;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.schedule-btn:hover {
  background: var(--orange);
  transform: translateY(-3px) scale(1.05);
}



.cta {
  background: #0a000a;
  text-align: center;
  color: var(--text);
}

.cta-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 1rem;
}

.cta p {
  color: #cccccc;
  margin-bottom: 2rem;
  max-width: 500px;
}

.cta-btn {
  background: var(--pink);
  color: #000;
  padding: 1rem 2.5rem;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
}

.cta-btn:hover {
  background: var(--orange);
  transform: scale(1.05) rotate(-2deg);
}

.cta-img {
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(252, 3, 252, 0.25);
  transition: transform 0.5s ease;
}

.cta-img:hover {
  transform: translateY(-10px);
}



.contact {
  background: var(--bg);
  text-align: center;
}

.contact h2 {
  color: var(--pink);
}

.contact p {
  color: #cccccc;
  margin-bottom: 2rem;
}

.contact-form {
  max-width: 600px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}

.contact-form input,
.contact-form textarea {
  padding: 1rem;
  background: var(--gray-dark);
  border: 1px solid rgba(252, 3, 252, 0.3);
  border-radius: 8px;
  color: var(--text);
  font-family: inherit;
  transition: all 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  background: #140014;
  box-shadow: 0 0 15px rgba(252, 3, 252, 0.4);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #999999;
}

.contact-form button {
  background: var(--pink);
  color: #000;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-form button:hover {
  background: var(--orange);
  transform: scale(1.05);
}



footer {
  background: var(--gray-darker);
  color: #cccccc;
  padding: 3rem 5% 1.5rem;
  border-top: 1px solid rgba(252, 3, 252, 0.3);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-col h4 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--pink);
}


.footer-col ul li {
    list-style-type: none;;
}
.footer-col ul li a {
  color: #cccccc;
  list-style-type: none;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--orange);
  transform: translateX(5px);
}

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  color: var(--pink);
  font-size: 1.4rem;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  color: var(--orange);
  transform: translateY(-3px) scale(1.15);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(252, 3, 252, 0.3);
  font-size: 0.9rem;
  color: #999999;
}



@media (max-width: 992px) {
  .hero,
  .approach-container,
  .cta-container {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero .btn {
    justify-content: center;
  }

  .hero-img {
    max-width: 380px;
    margin: 0 auto;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .toggle_btn {
    display: block;
  }

  .navbar ul {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    background: var(--gray-darker);
    flex-direction: column;
    padding: 2rem 5%;
    gap: 1.5rem;
    border-top: 1px solid var(--pink-dark);
    transition: left 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 999;
  }

  .navbar ul.active {
    left: 0;
  }

  .projects-header {
    flex-direction: column;
    text-align: center;
  }

  .footer-container {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2.2rem;
  }

  .btnA, .btnB {
    width: 100%;
  }
}