.hero-outer {
  background-color: var(--bg2); /* Ensures outer bounds have background */
  padding-bottom: 60px;
}
.hero-section {
  padding: 100px 20px 40px;
  max-width: 1500px;
  margin: 0 auto;
  font-family: var(--font-main);
  min-height: 100vh;
}

.hero-container {
  display: flex;
  align-items: center;
  margin-bottom: 60px;
  position: relative;
  min-height: 450px;
}

.hero-text {
  position: relative;
  z-index: 10;
  pointer-events: none;
  max-width: 850px;
}

.hero-text > * {
  pointer-events: auto;
}

.hero-text h1 {
  font-family: "DM Sans", var(--font-heading);
  font-size: 5.8rem;
  font-weight: 700;
  color: #bed2ff;
  line-height: 1.1;
  letter-spacing: -2px;
}

.hero-spline {
  position: absolute;
  left: 55%; /* Slightly offset to balance with text */
  top: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  height: 800px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 0;
}

.hero-spline .spline {
  position: relative;
  width: 100%; /* Oversize to prevent edge cutting */
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-spline iframe {
  width: 100%;
  height: 100%;
  pointer-events: none;
  mix-blend-mode: screen;
  border: none;
}

.spline-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  transition: opacity 0.3s;
  background: transparent;
  z-index: 5;
}

.watermark-hider {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 160px;
  height: 40px;
  background-color: var(--bg2, #061329);
  z-index: 10;
  border-radius: 8px;
}

/* Talk Button */
.talk-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #f4ffec;
  color: #0c1a10;
  text-decoration: none;
  padding: 12px 16px 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(102, 204, 1, 0.4);
  transition: transform 0.3s;
  margin-top: 30px;
}

.talk-btn:hover {
  transform: translateY(-3px);
}

.talk-icon {
  width: 24px;
  height: 24px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.talk-icon svg {
  width: 12px;
  height: 12px;
  color: var(--nav-btn, #66cc01);
}

/* Glassmorphic Stats Container */
.stats-container {
  background: rgba(10, 31, 68, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  justify-content: space-around;
  padding: 40px 20px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  margin-top: 100px;
}

.stat-box {
  text-align: center;
}

.stat-box h2 {
  color: var(--nav-btn, #66cc01);
  font-size: 2.25rem;
  font-weight: 900;
  margin-bottom: 5px;
  font-family: var(--font-heading);
}

.stat-box p {
  color: #cccccc;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.9;
}
/* Chat Button */
.chat-btn {
  display: none;
  align-items: center;
  gap: 12px;
  background: #f4ffec;
  color: #0c1a10;
  text-decoration: none;
  padding: 12px 16px 12px 24px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(102, 204, 1, 0.4);
  transition: transform 0.3s;
  margin-top: 30px;
}

.chat-btn:hover {
  transform: translateY(-3px);
}

/* Icon Circle */
.chat-circle {
  width: 24px;
  height: 24px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Icon */
.chat-circle svg {
  width: 12px;
  height: 12px;
  color: var(--nav-btn, #66cc01);
}

/* Responsive constraints */
@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
  }
  .gb {
    display: none;
  }
  .hero-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
  }
  .hero-spline {
    position: relative;
    top: auto;
    left: -15%; /* Clear the 55% offset from desktop */
    transform: none;
    height: 400px;
    width: 100%;
    margin-bottom: 20px;
  }

  .hero-spline .spline {
    right: 0;
    width: 100%;
    height: 100%;
  }
  .stats-container {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .hero-text h1 {
    font-size: 3.2rem;
  }
  .hero-spline {
    height: 300px; /* Compress the 3D element height on phones */
  }
  .stats-container {
    flex-wrap: nowrap; /* KEEP THEM IN ONE ROW ON MOBILE */
    padding: 25px 10px;
    gap: 5px;
    border-radius: 12px;
  }
  .stat-box h2 {
    font-size: 1.4rem; /* Tiny text so it fits */
  }
  .stat-box p {
    font-size: 0.6rem; /* Tiny text so it fits */
  }
}
/* Small screens (mobile) */
@media (max-width: 600px) {
  .talk-btn {
    gap: 8px;
    padding: 8px 12px;
    font-size: 0.8rem;
    margin-top: 20px;
    box-shadow: 0 0 12px rgba(102, 204, 1, 0.3);
  }

  .talk-icon {
    width: 20px;
    height: 20px;
  }

  .talk-icon svg {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .hero-outer {
    padding-bottom: 0;
  }
  .chat-btn {
    display: inline-flex;
    margin-top: -100px;
    margin-bottom: 50px;
  }
  .hero-container {
    margin-bottom: 0;
  }
  .hero-section {
    padding: 40px 15px;
    min-height: auto;
  }
  .stats-container {
    padding: 0;
    gap: 20px;
    background: transparent;
    border: 0px;
  }
  .hero-text h1 {
    font-size: 32px;
    line-height: 1.2;
  }
  .hero-spline {
    height: 350px;
    left: -40%;
    width: 200%;
    margin-bottom: 0;
    margin-top: -50px;
  }
  /* .talk-btn{
        display: none;
    } */
}

@media (max-width: 389px) {
  .stats-container {
    flex-wrap: wrap; /* Only wrap on super tiny screens */
    padding: 20px;
    gap: 20px;
    background: transparent;
    border: 0px;
  }
  .stat-box {
    width: 40%;
  }
  .stat-box h2 {
    font-size: 1.8rem;
  }
  .stat-box p {
    font-size: 0.8rem;
  }
}
/* end of home section */

/* WHO WE ARE SECTION */
.about-section {
  background: var(--grad1);
  padding: 0px 20px;
  padding-top: 60px;
  color: #fff;
  /* overflow: hidden; */
  margin-bottom: 30px;
  font-family: var(--font-main);
}

.about-container {
  max-width: 1500px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 80px;
}

.about-image-wrapper {
  flex: 1;
  position: relative;
  /* padding: 20px; */
}

.main-about-img {
  width: 100%;
  max-width: 550px;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.5));
}

.floating-years {
  position: absolute;
  top: 10%;
  left: 10%;
  padding: 20px;
  border-radius: 15px;
  text-align: center;
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-years h3 {
  font-size: 2.5rem;
  color: var(--nav-btn);
  font-weight: 800;
}

.floating-years p {
  font-size: 0.8rem;
  color: #ddd;
}

.floating-profile {
  position: absolute;
  bottom: -30px;
  right: 10%;
  z-index: 99;
  width: 120px;
  height: 120px;
  border-radius: 20px;
  overflow: hidden;
  border: 5px solid #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.floating-profile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-content {
  flex: 1.2;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 4.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  text-align: right; /* To match desktop preview */
}

.about-desc {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 50px;
  color: #f0f0f0;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.check-icon {
  color: var(--nav-btn);
  font-weight: 900;
  font-size: 1.5rem;
  line-height: 1;
}

.feature-item p {
  font-size: 1.25rem;
  font-weight: 500;
  color: #f2ffe6;
}

/* RESPONSIVE ABOUT SECTION */
@media (max-width: 1024px) {
  .about-container {
    flex-direction: column;
    gap: 50px;
  }
  .section-title {
    text-align: right;
  }
  .about-desc {
    text-align: right;
  }
  .about-image-wrapper {
    order: 2;
    display: flex;
    justify-content: center;
  }
  .about-content {
    order: 1;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 3rem;
    text-align: center;
    font-weight: 700;
    margin-bottom: 10px;
  }
  .about-desc {
    font-size: 1.4rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
  }
}
@media (max-width: 480px) {
  .about-section {
    position: relative;
    padding: 40px 15px;
    margin-bottom: 15px;
  }
  .section-title {
    font-size: 2rem;
    text-align: right;
  }
  .about-desc {
    font-size: 14px;
    text-align: right;
  }
  .about-image-wrapper {
    position: absolute;
    bottom: 0;
    left: 5%;
  }

  .main-about-img {
    max-height: 170px;
    width: auto;
  }
  .feature-item p {
    font-size: 9px;
  }
  .check-icon {
    line-height: 0;
  }
  .check-icon svg {
    height: 12px;
    width: 12px;
  }
  .floating-years {
    top: 5%;
    left: 5%;
    padding: 5px;
    border-radius: 10px;
  }
  .floating-years p {
    font-size: 6px;
  }
  .floating-years h3 {
    font-size: 9px;
  }
  .floating-profile {
    border: 2px solid #fff;
    width: 50px;
    bottom: -15px;
    border-radius: 15px;
    height: 40px;
    right: 5%;
  }
  
    .features-grid {
        gap: 8px;
        max-width: 250px;
        display: flex;
        flex-direction: column;
        justify-content: start;
        text-align: start;
        align-items: flex-start;
        float: right;
    }
  .feature-item {
    display: flex;
    justify-content: end;
    position: relative;
    gap: 8px;
  }
}

/* slick slider */
.services-section {
  background: var(--bg2);
  padding: 80px 20px;
  font-family: var(--font-main);
}

.services-container {
  max-width: var(--container-max);
  margin: auto;
}

.services-title {
  font-size: 4.5rem;
  color: #88adee;
  font-weight: 700;
}

.services-subtitle {
  font-size: 2.5rem;
  color: #88adee;
  margin: 1px 0 50px;
}

.services-subtitle span {
  display: block;
  font-size: 3.4rem;
  color: var(--primary);
  font-weight: 700;
}

/* Slider spacing */
.services-slider {
  margin-top: 40px;
}

/* Card */
.service-card {
  position: relative;
  border-radius: 0 0px 20px 20px;
  overflow: hidden;
  margin: 0 15px;
  background: var(--glass);
}

.service-card img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.service-card img:hover{
  transform: scale(1.1);
}

/* Overlay */
.service-content {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 20px;
  border: 1px solid #88adee;
  border-radius: 0 0px 20px 20px;
  background: #0a1f44e6; /* ~90% opacity */
}

/* Tags */
.tags {
  font-size: 0.8rem;
  color: #7fff7f;
  margin-bottom: 10px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  text-align: center;
  justify-content: center;
}

.service-content h3 {
  font-size: 1.6rem;
  color: white;
  text-align: center;
}

/* Slick arrows fix */
.slick-slide {
  display: flex !important;
}
@media (max-width: 600px) {
  .services-section {
    text-align: center;
    padding: 40px 15px;
  }
  .service-card {
    border-radius: 20px;
  }
  .services-title {
    font-size: 2rem;
  }

  .services-subtitle {
    font-size: 1rem;
    line-height: 1.3;
    margin: 8px 0 -10px;
  }

  .services-subtitle span {
    font-size: 2rem;
  }
  .service-content h3 {
    font-size: 1rem;
  }
  .tags {
    font-size: 9px;
  }
  .service-content {
    padding: 16px 8px;
  }

  .service-card img {
    height: 280px;
  }

  .service-card {
    margin: 0 10px;
  }

  .services-slider .slick-list {
    overflow: visible !important;
  }

  .services-slider {
    margin-left: 10px;
    margin-right: 10px;
  }
}

/* grid */
.process-section {
  background: var(--grad1);
  padding: 80px 20px;
  text-align: center;
  font-family: var(--font-main);
}
.process-container {
  max-width: var(--container-max);
  margin: auto;
} /* ===== HEADING ===== */
.process-title {
  font-size: 4.5rem;
  color: #d8e6c3;
}
.process-subtitle {
  font-size: 2rem;
  color: #c0d0f5;
  margin: 10px 0 50px;
}
.process-subtitle span {
  color: var(--primary);
  font-weight: 700;
} /* ===== GRID ===== */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
} /* ===== CARD ===== */
.process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 20px;
  text-align: left;
  transition: 0.3s;
  overflow: hidden;
}
.process-card img {
  width: 100%;
  height: 250px;
  margin-bottom: -10px;
  transition: transform 0.4s ease;
}
.process-card img:hover{
  transform: scale(1.1);
}
.process-content {
  padding: 20px;
}
.process-card h3 {
  font-size: 1.5rem;
  color: #ffffff;
}
.process-card p {
  font-size: 0.9rem;
  color: #cbd5e1;
  margin-top: 5px;
} /* ===== FLOAT ICON ===== */
.process-icon {
  position: absolute;
  bottom: 20px;
  right: 10px;
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.process-icon img {
  width: 22px;
  height: 22px;
} /* ===== HOVER ===== */
.process-card:hover {
  transform: translateY(-8px);
}

/* ===== TABLET ===== */
@media (max-width: 992px) {
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }
} /* ===== MOBILE (2 CARDS) ===== */
@media (max-width: 600px) {
  .process-section {
    padding: 40px 15px;
  }
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .process-title {
    font-size: 2rem;
  }
  .process-subtitle {
    font-size: 1rem;
    margin: 8px 0 30px;
  }

  .process-card {
    border-radius: 24px 24px 0px 0px;
  }
  .process-content {
    padding: 10px;
  }
  .process-card img {
    height: 130px;
  }
  .process-card h3 {
    font-size: 1.25rem;
  }
  .process-card p {
    font-size: 9px;
  }
  .process-icon {
    width: 22px;
    height: 22px;
    /* bottom: 8px; */
    right: 8px;
  }
  .process-icon img {
    width: 18px;
    height: 18px;
  }
}

/* slider */
/* ── Section ── */
.testi-section {
  background: var(--grad1);
  width: 100%;
  padding: 70px 32px 80px;
  position: relative;
  overflow: hidden;
  font-family: var(--font-main);
}

/* decorative blobs */
.testi-section::before,
.testi-section::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}
.testi-section::before {
  width: 320px;
  height: 320px;
  top: -80px;
  left: -60px;
}
.testi-section::after {
  width: 260px;
  height: 260px;
  top: 20px;
  right: -40px;
}

.container {
  max-width: var(--container-max);
  margin: 0 auto;
}

/* ── Heading ── */
.testi-heading {
  font-family: var(--font-heading);
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  line-height: 1.15;
  margin-bottom: 52px;
}

/* ── Slider wrapper ── */
.slider-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* ── Arrow buttons ── */
.arrow-btn {
  background: transparent;
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  border: 0px;
  font-size: 18px;
  z-index: 2;
}

/* ── Slider viewport ── */
.slider-viewport {
  flex: 1;
  overflow: hidden;
  border-radius: 20px;
}

/* ── Slide track ── */
.slide-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

/* ── Card ── */
.testi-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  min-height: 240px;
}

/* ── Photo ── */
.testi-photo {
  width: 200px;
  height: 220px;
  border-radius: 16px;
  object-fit: cover;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.testi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* placeholder silhouette if no image */
.photo-placeholder {
  width: 200px;
  height: 220px;
  border-radius: 16px;
  background: linear-gradient(160deg, #3a6bd4 0%, #1a3a8f 100%);
  flex-shrink: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.photo-placeholder svg {
  width: 140px;
  opacity: 0.5;
}

/* ── Content ── */
.testi-content {
  flex: 1;
}

.testi-label {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.3;
}
.photo-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quote-icon {
  font-size: 38px;
  line-height: 1;
  color: var(--text);
  margin-bottom: 10px;
  font-family: Georgia, serif;
}

.testi-text {
  font-size: 14px;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 22px;
}

.testi-author-name {
  font-family: var(--font-heading);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}

.testi-author-role {
  font-size: 13px;
  color: black;
  font-weight: 600;
}

/* ── Dots ── */
.dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
}
.dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* ── Responsive — never wrap, just scale down ── */
@media (max-width: 768px) {
  .testi-section {
    padding: 40px 16px 50px;
  }
  .testi-card {
    padding: 20px 20px;
    gap: 20px;
  }
  .photo-placeholder {
    width: 120px;
    height: 140px;
    flex-shrink: 0;
  }
  .photo-placeholder svg {
    width: 100px;
  }
  .testi-label {
    font-size: 16px;
  }
  .testi-text {
    font-size: 12px;
    line-height: 1.65;
  }
  .testi-author-name {
    font-size: 13px;
  }
  .testi-author-role {
    font-size: 11px;
  }
  .quote-icon {
    font-size: 28px;
  }
  .arrow-btn {
    width: 36px;
    height: 36px;
    font-size: 15px;
    flex-shrink: 0;
  }
  .testi-heading {
    margin-bottom: 32px;
  }
}

@media (max-width: 480px) {
  .testi-card {
    min-height: 180px;
  }
  .testi-section::after {
    display: none;
  }
  .testi-heading {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .testi-section {
    padding: 30px 10px 40px;
  }
  .slider-wrapper {
    gap: 5px;
  }
  .testi-card {
    padding: 8px 8px;
    gap: 8px;
  }
  .photo-placeholder {
    width: 81px;
    height: 119.534px;
    border-radius: 10px;
  }
  .photo-placeholder svg {
    width: 70px;
  }
  .testi-label {
    font-size: 12px;
    margin-bottom: 5px;
  }
  .testi-text {
    font-size: 8px;
    line-height: 1.6;
    margin-bottom: 12px;
  }
  .testi-author-name {
    font-size: 10px;
  }
  .testi-author-role {
    font-size: 8px;
  }
  .quote-icon {
    font-size: 22px;
    margin-bottom: 0px;
  }
  .quote-icon svg {
    width: 18px;
    height: 18px;
  }
  .arrow-btn {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .dots {
    margin-top: 16px;
  }
}

/* skills */

.skill-section {
  max-width: 1500px;
  margin: 0 auto;
  width: 100%;
  height: 650px;
  position: relative;
  background: #ffffff;
  overflow: hidden;
  font-family: var(--font-main);
  padding: 60px 20px;
}

canvas {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

canvas:active {
  cursor: grabbing;
}

/* SEO text */
.seo-text {
  position: absolute;
  left: -9999px;
}
.skill-title {
  font-size: 4.5rem;
  color: #0a1f44;
  font-weight: 700;
  text-align: center;
  margin-bottom: 10px;
}

.skill-subtitle {
  font-size: 48px;
  color: #0a1f44;
  font-weight: 500;
  text-align: center;
  margin: 0 auto;
}

/* Tablet */
@media (max-width: 768px) {
  .skill-title {
    font-size: 32px;
  }

  .skill-subtitle {
    font-size: 24px;
    padding: 0 15px;
  }
}

/* Mobile */
@media (max-width: 480px) {
  .skill-title {
    font-size: 24px;
  }
  .skill-section {
    padding: 40px 15px;
    height: 550px;
  }

  .skill-subtitle {
    font-size: 16px;
    padding: 0 10px;
    margin-bottom: 10px;
  }
}
/* portfolio */
.project-section {
  background-color: var(--bg2); /* #061329 */
  padding: 80px 20px;
  font-family: var(--font-main);
  overflow: hidden;
}

.project-container {
  max-width: var(--container-max);
  margin: 0 auto;
}

.project-header {
  text-align: center;
  margin-bottom: 60px;
}

.project-title {
  font-size: 4.5rem;
  color: #c0d0f5;
  font-weight: 700;
  margin-bottom: 5px;
}

.project-subtitle {
  font-size: 1.5rem;
  color: #fff;
  font-weight: 600;
}

.project-subtitle span {
  color: var(--primary); /* #00ff41 */
}

.project-desc {
  font-size: 1rem;
  color: #9bb5e9;
  margin-top: 16px;
}

.portfolio-slider {
  margin-bottom: 40px;
}

.portfolio-slide {
  outline: none;
}

.portfolio-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1500px;
  margin: 0 auto;
}

.portfolio-info {
  flex: 1 1 400px;
  position: relative;
}

.portfolio-badge {
  display: inline-block;
  background: var(--nav-bg); /* #f2ffe6 */
  color: var(--bg2);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.portfolio-slide-title {
  font-size: 3.5rem;
  color: #9bb5e9;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
}

.portfolio-slide-title-bg {
  font-size: 3.5rem;
  color: #9bb5e9;
  opacity: 0.2;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
  margin-top: -30px;
}

.portfolio-desc {
  font-size: 1rem;
  color: #c0d0f5;
  line-height: 1.6;
  margin-bottom: 10px;
}

.portfolio-list {
  list-style: none;
  margin-bottom: 25px;
}

.portfolio-list li {
  font-size: 0.95rem;
  color: #c0d0f5;
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
}

.portfolio-list li::before {
  content: "•";
  color: #c0d0f5;
  margin-right: 10px;
  font-size: 1.2rem;
  line-height: 1;
}

.portfolio-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.portfolio-tags span {
  background: #a3c1ff;
  color: #061329;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.portfolio-mockups {
  flex: 1 1 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-height: 480px;
  width: 100%;
}

.mockup {
  position: relative;
  width: 260px;
  height: 520px;
  border-radius: 35px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 8px solid #111;
  background: #000;
  margin: 0 auto;
}

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

.mockup-1 {
  transform: scale(1);
}

.mockup-2 {
  display: none;
}

.portfolio-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  margin-top: 50px;
}

.view-project-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--nav-bg); /* #f2ffe6 */
  color: #0c1a10;
  text-decoration: none;
  padding: 12px 30px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid #22c55e;
  font-size: 1.1rem;
  box-shadow: 0 0 20px rgba(102, 204, 1, 0.4);
  transition: transform 0.3s;
}

.view-project-btn:hover {
  transform: translateY(-3px);
}

.view-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: #000;
  color: var(--nav-btn);
  border-radius: 50%;
  font-size: 1rem;
  font-weight: bold;
}

/* Slick Custom Dots for Portfolio */
.portfolio-slider .slick-list {
  overflow: hidden;
}

.portfolio-dots {
  display: flex;
  justify-content: center;
}

.portfolio-dots ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.portfolio-dots li {
  margin: 0;
}

.portfolio-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  padding: 0;
  font-size: 0;
  border: none;
  cursor: pointer;
  transition: 0.3s;
}

.portfolio-dots li.slick-active button {
  background: var(--primary); /* #00ff41 */
  transform: scale(1.2);
}
@media (max-width: 980px) {

  .portfolio-content-wrapper {
  flex-wrap: wrap;
}
}
@media (max-width: 768px) {
  .project-title {
    font-size: 3rem;
  }

  .portfolio-slide-title {
    font-size: 2.5rem;
  }
  .portfolio-slide-title-bg {
    font-size: 2.5rem;
    margin-top: -20px;
  }
  .portfolio-mockups {
    min-height: 300px;
  }
  .mockup {
    width: 220px;
    height: 440px;
  }
}
@media (max-width: 480px) {
  .portfolio-footer {
    margin-top: 2px;
  }
  .project-section {
    padding: 40px 15px;
  }
  .project-title {
    font-size: 24px;
  }
  .project-subtitle {
    font-size: 20px;
  }
  .project-desc {
    font-size: 10px;
  }
  .portfolio-badge {
    font-size: 8px;
    padding: 4px 8px;
    margin-bottom: 8px;
  }
  .portfolio-slide-title {
    font-size: 32px;
  }
  .project-header {
    margin-bottom: 20px;
  }
  .portfolio-desc,
  .portfolio-list li {
    font-size: 12px;
    line-height: 1.2;
  }
  .portfolio-list li {
    margin-bottom: 0;
  }
  .portfolio-tags span {
    font-size: 8px;
    padding: 4px 8px;
  }
  .view-project-btn {
    font-size: 16px;
    padding: 8px 12px;
  }
  .mockup {
    width: 250px;
    height: 350px;
  }
}
/* faq */
.faq-section {
  background: var(--bg2);
  padding: 80px 20px;
  text-align: center;
  font-family: var(--font-main);
}

/* Changed container name */
.faq-container {
  max-width: var(--container-max);
  margin: auto;
}

/* Heading */
.faq-title {
  font-size: 4.5rem;
  color: #7fa6ff;
}

.faq-subtitle {
  font-size: 3rem;
  color: #6c8cd5;
  margin-top: 10px;
  margin-bottom: 50px;
}

/* Wrapper */
.faq-wrapper {
  margin: auto;
  text-align: left;
}

/* Item */
.faq-item {
  border-bottom: 1px solid rgba(66, 71, 84, 0.2);
  padding: 20px 0;
}

/* Question */
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.faq-question h3 {
  font-size: 1.5rem;
  color: var(--text);
  font-weight: 600;
}

/* SVG Button */
.faq-toggle {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  border: 1px solid #f2ffe6;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
}

/* SVG */
.faq-toggle svg {
  width: 18px;
  height: 18px;
  stroke: #00ff41;
  stroke-width: 2;
  fill: none;
  transition: 0.3s;
}

/* Hover */
.faq-toggle:hover {
  background: var(--primary);
}

.faq-toggle:hover svg {
  stroke: black;
}

/* Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-answer p {
  color: var(--text);
  margin: 15px 0;
  line-height: 1.6;
  font-size: 1rem;
  font-weight: 400;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
}

.faq-item.active .faq-toggle svg {
  transform: rotate(180deg);
}

/* =========================
   MOBILE RESPONSIVE (FAQ)
========================= */

/* Tablets */
@media (max-width: 992px) {
  .faq-section {
    padding: 60px 20px;
  }

  .faq-title {
    font-size: 3.5rem;
  }

  .faq-subtitle {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .faq-question h3 {
    font-size: 1.3rem;
  }
}

/* Mobile */
@media (max-width: 600px) {
  .faq-section {
    padding: 50px 15px;
  }

  .faq-title {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .faq-subtitle {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .faq-item {
    padding: 15px 0;
  }

  .faq-question {
    gap: 10px;
  }

  .faq-question h3 {
    font-size: 1.1rem;
    line-height: 1.4;
  }

  .faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 10px;
  }

  .faq-toggle svg {
    width: 14px;
    height: 14px;
  }

  .faq-answer p {
    font-size: 1rem;
    margin: 10px 0;
  }

  /* Better expand for longer text */
  .faq-item.active .faq-answer {
    max-height: 300px;
  }
}

/* Extra Small Devices */
@media (max-width: 480px) {
  .faq-title {
    font-size: 24px;
  }

  .faq-subtitle {
    font-size: 16px;
  }

  .faq-question h3 {
    font-size: 12px;
  }
  .faq-answer p {
    font-size: 9px;
    margin: 10px 0;
  }
}

/* ========================
   CONTACT SECTION
======================== */
.contact-section {
  background: #ffffff;
  padding: 80px 20px;
  font-family: var(--font-main);
}

.contact-container {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

/* ---- LEFT COLUMN ---- */
.contact-left {
  flex: 1 1 360px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-graphic.top-graphic img {
  width: 170px;
  height: 170px;
  object-fit: cover;
  border-radius: 50%;
}

.contact-heading {
  font-size: 4rem;
  font-weight: 800;
  color: #66cc01;
  line-height: 1.25;
  font-family: var(--font-heading);
}

.contact-graphic.bottom-graphic {
  margin-top: auto;
}

.image-group {
  display: flex;
  align-items: flex-end;
  gap: 14px;
  justify-content: space-around;
}

.image-group .small-graphic {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border-radius: 50%;
}

.image-group .large-graphic {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 50%;
}

/* ---- RIGHT COLUMN (FORM) ---- */
.contact-right {
  flex: 1 1 500px;
}

.contact-title {
  font-size: 4.5rem;
  font-weight: 800;
  color: #66cc01;
  margin-bottom: 24px;
  text-align: right;
  font-family: var(--font-main);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-row input,
.form-row select,
.form-row textarea {
  flex: 1;
  padding: 12px 16px;
  border: 1.5px solid #b8d98a;
  border-radius: 6px;
  background: #fff;
  font-size: 0.95rem;
  font-family: var(--font-main);
  color: #333;
  outline: none;
  transition: border-color 0.25s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: #80ff01;
}

.form-row textarea {
  min-height: 110px;
  resize: vertical;
}

.select-wrapper {
  flex: 1;
  position: relative;
}

.select-wrapper select {
  width: 100%;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.select-wrapper::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: #80cc00;
  pointer-events: none;
  font-size: 1rem;
}

.form-submit {
  display: flex;
  justify-content: flex-start;
}

.submit-btn {
  background: var(--grad1);
  color: var(--text);
  border: none;
  padding: 12px 36px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-main);
  transition:
    background 0.25s,
    transform 0.2s;
}

.submit-btn:hover {
  background: #2c4a22;
  transform: translateY(-2px);
}

/* ========================= */
/* 🔥 TABLET + MOBILE CLEAN */
/* ========================= */
@media (max-width: 900px) {
  /* Remove left side completely */
  .contact-left {
    display: none;
  }

  /* Make right full width */
  .contact-container {
    flex-direction: column;
    gap: 20px;
  }

  .contact-right {
    width: 100%;
  }

  /* Title alignment */
  .contact-title {
    text-align: center;
  }

  /* Form layout */
  .form-row {
    flex-direction: column;
    gap: 10px;
  }

  /* Button alignment */
  .form-submit {
    justify-content: flex-start;
  }

  .submit-btn {
    width: auto; /* fit content */
    padding: 12px 28px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 40px 15px;
  }
  .contact-title {
    font-size: 2rem;
  }
  .submit-btn {
    padding: 8px 14px;
    font-size: 0.8rem;
    font-weight: 600;
  }
}

/* ========================= */
