/* ================= GLOBAL ================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  font-family: "Inter", sans-serif;
  color: #fff;
  overflow-x: hidden;
}

/* ================= NAVBAR ================= */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: 100;
}

.nav-left .logo {
  height: 28px;
}

.nav-center {
  display: flex;
  gap: 40px;
}

.nav-center a {
  color: #fff;
  font-weight: 400;
  text-decoration: none;
  position: relative;
}

.nav-center a:hover,
.nav-center a.active {
  color: #2721f6;
}

.contact-btn {
  color: #efefef;
  border: 2px solid #2721f6;
  padding: 10px 24px;
  border-radius: 20px;
  text-decoration: none;
}

.contact-btn:hover {
  background: #2721f6;
  color: #fff;
}



/* ================= HERO ================= */
.hero {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 120px 60px 120px;
  min-height: 100vh;
}

.hero-left {
  width: 50%;
}

.hero-left h1 {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-left p {
  font-size: 1rem;
  max-width: 620px;
  margin-bottom: 30px;
  color: #ccc;
}

.cta-group {
  display: flex;
  gap: 20px;
}

.btn-primary {
  background: #2721f6;
  color: white;
  padding: 14px 32px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 500;
  border: solid 2px #2721f6;
}


.btn-primary:hover{
  display: inline;
  background-color: #00000000;
  color: rgb(255, 255, 255);
 
}

.btn-outline {
  border: 2px solid #ffffff;
  color: #ffffff;
  padding: 14px 32px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 600;
}

.btn-outline:hover {
  background: #fff;
  color: #2721f6;
}


/* ================= HERO — RIGHT CARDS ================= */
.hero-right {
  width: 50%;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

/* ==========================
   SHUFFLED STACK LAYOUT
========================== */

.card-stack {
    position: relative;
    width: 450px;
    height: 500px;
    margin-top: 20px;
  }
  
  /* EXISTING card style */
  .stack-card {
    position: absolute;
    width: 300px;
    height: 350px;
    border-radius: 22px;
    overflow: hidden;  
    cursor: pointer;
    transition: all 0.35s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.18);
  }
  
  /* Match existing image styling */
  .stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* ===== Shuffled positions ===== */
  .card-1 {
    top: 0;
    left: 0;
    transform: rotate(-6deg);
    z-index: 3;
  }
  
  .card-2 {
    top: 70px;
    left: 260px;
    transform: rotate(5deg);
    z-index: 2;
  }
  
  .card-3 {
    top: 220px;
    left: 70px;
    transform: rotate(5deg);
    z-index: 1;
  }
  
  /* ===== Hover effect ===== */
  .stack-card:hover {
    transform: rotate(0deg) scale(1.05);
    z-index: 10;
    box-shadow: 0 35px 60px rgba(0,0,0,0.28);
  }

/* =========================== SCROLL GALLERY ============================ */
.scroll-gallery {
    position: relative;
    height: 120vh; /* Makes the scroll effect visible */
    overflow: hidden;
    width: 100%;
    margin-top: 100px;
  }
  
  .gallery-track {
    position: sticky;
    top: 120px;  /* stays in place while the page scrolls */
    display: flex;
    gap: 30px;
    padding: 0 5vw;
    transform: translateX(0);
    transition: transform 0.1s ease-out;
  }
  
  .gallery-card {
    width: 260px;
    height: 360px;
    object-fit: cover;
    border-radius: 30px;
    flex-shrink: 0;
    box-shadow: 0 15px 35px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
  }
  
  .gallery-card:hover {
    transform: translateY(-10px) scale(1.05);
  }


/* ================= PORTFOLIO CARDS ================= */
  
.portfolio-card {
  width: 340px;
  height: 420px;
  overflow: hidden;
  border-radius: 20px;
  transform: rotate(-6deg);
  transition: all 0.4s ease;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-card:hover {
  transform: scale(1.05) rotate(0deg);
}

/* === Infinite Scroll Loop Gallery === */

.scroll-loop-gallery {
    width: 100%;
    overflow: hidden;
    padding: 120px 0;
    position: relative;
  }
  
  .gallery-track {
    display: flex;
    gap: 40px;
    will-change: transform;
  }
  
  .g-card {
    width: 260px;
    height: 360px;
    border-radius: 28px;
    overflow: hidden;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
  }
  
  .g-card:hover {
    transform: scale(1.05) rotate(-2deg);
  }
  
  .g-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  

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

#contactForm
 {
  padding-top: 3rem;
}

.contact-section {
  padding: 80px 60px 120px 60px;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.4rem;
}

.contact-form {
  max-width: 800px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 30px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px;
  border-radius: 12px;
  border: none;
  outline: none;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.contact-form textarea {
  height: 120px;
}

html {
  scroll-behavior: smooth;
}

#contact {
  scroll-margin-top: 140px; /* adjust depending on navbar height */
}

.contact-section {
  padding: 120px 10%;
  background: #000;
  color: white;
  text-align: center;
}

.contact-title {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.contact-subtext {
  color: #b8b8ff;
  font-size: 1rem;
  margin-bottom: 40px;
}

.contact-form {
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-form input,
.contact-form textarea {
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(255,255,255,0.06);
  color: white;
  font-size: 1rem;
}

.contact-form textarea {
  height: 140px;
}

.form-message {
  margin-top: 10px;
  font-size: 0.9rem;
}

.hidden {
  display: none;
}

/* ================= FAQ SECTION ================= */

.faq-section {
  padding: 80px 10%;
  background: #000;
  color: #fff;
  margin-top: 60px;
}

.faq-inner {
  max-width: 900px;
  margin: 0 auto;
}

.faq-title {
  font-size: 2.4rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 10px;
}

.faq-subtitle {
  text-align: center;
  color: #b8b8ff;
  font-size: 1rem;
  margin-bottom: 50px;
}

/* FAQ container */
.faq-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Each FAQ card */
.faq-item {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

/* Question button */
.faq-question {
  width: 100%;
  padding: 18px 22px;
  border: none;
  outline: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
  color: #fff;
  text-align: left;
}

.faq-question span:first-child {
  font-size: 1.05rem;
  font-weight: 600;
}

/* Icon */
.faq-icon {
  font-size: 1.4rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* Answer content */
.faq-answer {
  padding: 0 22px 18px 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.faq-answer p {
  margin-top: 12px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #e5e5e5;
}

.faq-answer a {
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  text-decoration: underline;
}

.faq-answer a:hover {
  text-decoration: underline;
}

/* Hover + active state */
.faq-item:hover {
  transform: translateY(-2px);
  border-color: #ffffff;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.35);
}

/* Expanded state */
.faq-item.is-open .faq-icon {
  transform: rotate(45deg); /* turns + into x-ish */
}
 
/* ================= FOOTER ================= */
footer {
  padding: 40px;
  text-align: center;
  color: #aaa;
}

.socials {
  margin-top: 10px;
}

.socials a {
  color: #fff;
  margin: 0 10px;
  text-decoration: none;
}


