/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Mutive Digital style dark theme */
body {
  background: #18191A;
  color: #fff;
  font-family: 'Inter', Arial, sans-serif;
  min-height: 100vh;
}

/* Navbar */
.navbar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 60px;
  background: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.logo {
  font-family: 'Montserrat', Arial, sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: #FFD363;
  letter-spacing: 1px;
}
.logo span {
  background: linear-gradient(90deg, #ffd363 20%, #ff9873 60%, #ff715b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.navbar ul {
  list-style: none;
  display: flex;
  gap: 38px;
}
.navbar ul li a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: color 0.2s;
}
.navbar ul li a:hover {
  color: #FFD363;
}

/* HERO SECTION */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 20px 0 20px;
}
.hero h1 {
  font-family: 'Montserrat', Arial, sans-serif;
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.12;
  margin-bottom: 28px;
}
.hero .highlight {
  background: linear-gradient(90deg, #FFD363 10%, #ff9873 70%, #ff715b 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
}
.hero .secondary {
  color: #fff;
}
.subtitle {
  color: #D0D2D6;
  font-size: 1.3rem;
  margin-bottom: 40px;
  letter-spacing: 0.2px;
}

/* Call to Action Button */
.cta-btn {
  background: #FFD363;
  color: #18191A;
  font-weight: bold;
  font-size: 1.2rem;
  padding: 18px 40px;
  border-radius: 40px;
  box-shadow: 0 6px 28px 0 rgba(255, 211, 99, 0.2);
  text-decoration: none;
  transition: box-shadow 0.2s, transform 0.15s;
  display: inline-block;
  margin-top: 10px;
}
.cta-btn:hover {
  box-shadow: 0 2px 12px 0 rgba(255, 211, 99, 0.28);
  transform: translateY(-2px) scale(1.05);
  background: #ff9873;
  color: #fff;
}

/* Responsive for mobile */
@media (max-width: 768px) {
  .navbar {
    flex-direction: column;
    padding: 24px 10px;
    gap: 10px;
  }
  .navbar ul {
    gap: 16px;
  }
  .hero h1 {
    font-size: 2.1rem;
  }
  .cta-btn {
    font-size: 1rem;
    padding: 13px 28px;
  }
}
.trusted-by {
  width: 100%;
  background: transparent;
  margin: 0 auto 32px auto;
  padding: 30px 0 20px 0;
  text-align: center;
}

.trusted-by-title span {
  font-size: 1.3rem;
  color: #ffd363;
  font-weight: bold;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  display: inline-block;
}

.logo-slider {
  overflow: hidden;
  width: 100%;
  position: relative;
  margin-top: 10px;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 60px;
  animation: slide-logos 18s linear infinite;
}

.logos-slide img {
  height: 48px;
  width: auto;
  opacity: 0.7;
  transition: opacity 0.2s, transform 0.2s;
  filter: grayscale(100%);
}

.logos-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.07);
}

/* Animate logos to slide leftwards infinitely */
@keyframes slide-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Responsive */
@media (max-width: 700px) {
  .logos-slide {
    gap: 32px;
  }
  .logos-slide img {
    height: 36px;
  }
}
.trusted-by {
  width: 100%;
  background: transparent;
  margin: 48px 0 8px 0;
  padding: 10px 0 20px 0;
  text-align: center;
}

.trusted-by-title span {
  font-size: 1.5rem;
  color: #ffd363;
  font-weight: bold;
  letter-spacing: 0.01em;
  margin-bottom: 30px;
  display: inline-block;
}

.logo-slider {
  width: 100vw;
  overflow: hidden;
  position: relative;
  margin: 0 auto;
}

.logos-slide {
  display: flex;
  align-items: center;
  gap: 80px;
  animation: slide-logos 16s linear infinite;
  will-change: transform;
}

.logos-slide img {
  height: 56px;
  width: auto;
  opacity: 0.8;
  filter: grayscale(80%);
  transition: filter 0.2s, opacity 0.2s, transform 0.2s;
  margin: 0 16px;
  vertical-align: middle;
}

.logos-slide img:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.08);
}

@keyframes slide-logos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@media (max-width: 700px) {
  .logos-slide { gap: 36px; }
  .logos-slide img { height: 32px; }
}
.project-grid-section {
  background: transparent;
  padding: 70px 0 60px 0;
  width: 100vw;
}

.section-title {
  text-align: center;
  font-size: 2.3rem;
  font-weight: bold;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 38px;
}

.project-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 38px;
  width: 95vw;
  margin: 0 auto;
}

.project-card {
  background: #232323;
  border-radius: 18px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  width: 340px;
  padding: 32px 24px 22px 24px;
  text-align: left;
  transition: box-shadow 0.3s, transform 0.2s;
  cursor: pointer;
}

.project-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 16px;
}

.project-card h3 {
  color: #ffd363;
  font-size: 1.22rem;
  margin: 8px 0 7px 0;
}

.project-card p {
  color: #dedede;
  font-size: 1rem;
  margin: 0;
}

.project-card:hover {
  box-shadow: 0 8px 28px 0 #ff7d46a9;
  transform: translateY(-8px) scale(1.03);
}
.aboutus-section {
  background: #fff;
  color: #191a1c;
  width: 100vw;
  min-height: 520px;
  padding: 60px 0 0 0;
  display: flex;
  justify-content: center;
}

.aboutus-grid {
  display: flex;
  flex-wrap: wrap;
  width: 1150px;
  max-width: 95vw;
  margin: 0 auto;
  gap: 30px 44px;
}

.aboutus-left {
  flex: 1 1 370px;
  min-width: 320px;
  max-width: 440px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.aboutus-subtitle {
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  margin-bottom: 8px;
}

.aboutus-title {
  font-size: 2.7rem;
  line-height: 1.1;
  font-weight: bold;
  color: #1e8876;
  margin-bottom: 16px;
}

.aboutus-title span {
  display: block;
}

.aboutus-desc {
  font-size: 1.03rem;
  color: #333;
  margin-bottom: 34px;
}

.aboutus-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  border: 1px solid #4442;
  border-radius: 2px;
  overflow: hidden;
}

.stat-block {
  border: 1px solid #bbb;
  border-width: 0 1px 1px 0;
  background: #fff;
  padding: 34px 16px 19px 18px;
  text-align: left;
  min-width: 110px;
  min-height: 74px;
}

.stat-block:nth-child(2),
.stat-block:nth-child(4) {
  border-right: 0;
}
.stat-block:nth-child(3),
.stat-block:nth-child(4) {
  border-bottom: 0;
}

.stat-number {
  font-size: 2.2rem;
  font-weight: bold;
  color: #191a1c;
  letter-spacing: -2px;
  margin-bottom: 7px;
}
.stat-number.accent {
  color: #1e8876;
}
.stat-label {
  font-size: 1rem;
  color: #aaa;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.aboutus-right {
  flex: 1 1 460px;
  min-width: 330px;
  max-width: 590px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
}

.founded-block {
  text-align: right;
  margin-bottom: 18px;
}

.founded-title {
  font-size: 2.1rem;
  font-weight: bold;
  letter-spacing: -0.5px;
  color: #191a1c;
}

.founded-year {
  font-size: 8rem;
  font-weight: bold;
  letter-spacing: -8px;
  color: #191a1c;
  margin-top: -28px;
}

.aboutus-image {
  width: 100%;
  max-width: 520px;
  border-radius: 4px;
  margin-top: 20px;
  box-shadow: 0 6px 28px #3333;
  object-fit: cover;
}

@media (max-width: 1050px) {
  .aboutus-grid {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }
  .aboutus-left, .aboutus-right {
    max-width: 99vw;
  }
  .aboutus-right {
    align-items: flex-start;
    text-align: left;
  }
  .founded-block {
    text-align: left;
  }
}

@media (max-width: 670px) {
  .aboutus-title {
    font-size: 1.5rem;
  }
  .founded-title {
    font-size: 1.25rem;
  }
  .founded-year {
    font-size: 4rem;
    margin-top: 0;
  }
  .aboutus-section {
    padding: 20px 0 0 0;
  }
}
.services-section {
  max-width: 1400px;
  margin: 80px auto 0 auto;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.service-card {
  display: flex;
  align-items: center;
  border-radius: 32px;
  padding: 48px;
  margin-bottom: 32px;
  box-shadow: 0 6px 32px 0 rgba(0,0,0,0.10);
  justify-content: space-between;
  flex-wrap: wrap;
  min-height: 360px;
}
.gradient-cyan {
  background: linear-gradient(135deg, #00dbc6 0%, #13c1a5 100%);
}
.gradient-mint {
  background: linear-gradient(135deg, #c6ece9 0%, #69c6b7 100%);
}
.service-content {
  flex: 1 1 420px;
  min-width: 320px;
}
.service-content h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 24px;
}
.service-content p {
  font-size: 1.25rem;
  margin-bottom: 28px;
  font-weight: 400;
}
.tech-icons {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
  margin-top: 12px;
}
.tech-icons img {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.10));
}
.service-btn {
  padding: 12px 32px;
  font-size: 1.1rem;
  background: #fff;
  color: #1b1b1d;
  border-radius: 28px;
  border: 2px solid #111;
  box-shadow: 0 2px 12px 0 rgba(0,0,0,0.07);
  cursor: pointer;
  transition: all 0.2s;
  margin-top: 10px;
}
.service-btn:hover {
  background: #1b1b1d;
  color: #fff;
}
.service-img {
  flex: 1 1 360px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.service-img img {
  width: 430px;
  max-width: 100%;
  border-radius: 18px;
  margin-left: 32px;
  box-shadow: 0 8px 32px 0 rgba(0,0,0,0.15);
}

@media (max-width: 900px) {
  .service-card {
    flex-direction: column;
    padding: 32px 16px;
    text-align: left;
  }
  .service-img {
    margin: 24px 0 0 0;
    width: 100%;
  }
  .service-img img {
    width: 100%;
    margin-left: 0;
  }
}
.portfolio-section {
  background: linear-gradient(135deg, #04394b 0%, #13c1a5 100%);
  padding: 80px 0 60px 0;
  color: #fff;
  text-align: center;
}

.portfolio-title {
  font-size: 4rem;
  letter-spacing: 3px;
  font-weight: 900;
  margin-bottom: 14px;
  margin-top: 0;
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.portfolio-intro {
  max-width: 900px;
  margin: 0 auto 36px auto;
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.6;
}

.portfolio-divider {
  border: none;
  border-top: 2px solid #fff;
  margin: 30px auto 40px auto;
  width: 95%;
}



.trust-section {
  width: 100%;
  padding: 60px 0;
  background: #fff;
  display: flex;
  justify-content: center;
}

.trust-content {
  display: flex;
  max-width: 1400px;
  width: 90%;
  align-items: flex-start;
  gap: 60px;
  justify-content: space-between;
}

.trust-text {
  flex: 1.3;
  text-align: left;
}

.trust-text h3 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 24px;
  line-height: 1.12;
}

.trust-text .highlighted {
  color: #08b6a8;
  font-weight: 900;
}

.trust-text p {
  font-size: 1.2rem;
  margin-bottom: 18px;
  color: #181818;
  line-height: 1.6;
}

.trust-awards {
  flex: 1;
  display: flex;
  gap: 30px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.award-card {
  width: 160px;
  height: 160px;
  background: #262626;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-shadow: 0 4px 16px 0 rgba(30,30,30,0.06);
}

.award-card img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .trust-content {
    flex-direction: column;
    align-items: center;
    gap: 38px;
  }
  .trust-awards {
    justify-content: flex-start;
  }
  .trust-text {
    text-align: center;
  }
}

@media (max-width: 700px) {
  .trust-text h3 {
    font-size: 1.3rem;
  }
  .trust-section {
    padding: 30px 0;
  }
  .award-card {
    width: 110px;
    height: 110px;
  }
  .award-card img {
    width: 66px;
    height: 66px;
  }
}
.faq-section {
  width: 100%;
  background: #fff;
  padding: 70px 0 40px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 32px;
  color: #18505a;
  text-align: center;
}

.faq-container {
  width: 80%;
  max-width: 1000px;
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.faq-item {
  background: linear-gradient(135deg, #1a2b2f 80%, #18817f 100%);
  border-radius: 38px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(28,54,61,0.07);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 2rem;
  text-align: left;
  padding: 32px 42px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.2s;
  font-weight: 400;
}

.faq-icon {
  font-size: 2.4rem;
  font-weight: 900;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  background: none;
  color: #fff;
  padding: 0 42px 22px 42px;
  font-size: 1.35rem;
  border-top: 1px solid rgba(255,255,255,0.13);
  animation: fadeIn 0.3s;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-12px);}
  to { opacity: 1; transform: translateY(0);}
}

@media (max-width: 800px) {
  .faq-title {
    font-size: 2.5rem;
  }
  .faq-container {
    width: 98%;
  }
  .faq-question {
    font-size: 1.25rem;
    padding: 24px 16px;
  }
  .faq-answer {
    font-size: 1rem;
    padding: 0 16px 16px 16px;
  }
}
.testimonials-section {
  background: #181818;
  padding: 70px 0 60px 0;
}
.testimonials-title {
  color: #fff;
  font-size: 3rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 42px;
}
.testimonial-carousel {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
}
.carousel-arrow {
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.18s;
  opacity: 0.7;
}
.carousel-arrow:hover { background: #ffd76c; opacity: 1;}
.testimonial-track {
  display: flex;
  gap: 32px;
  overflow: hidden;
  width: 900px;
  scroll-behavior: smooth;
}
.testimonial-card {
  background: #232d36;
  color: #fff;
  border-radius: 22px;
  padding: 36px 30px 24px 30px;
  min-width: 390px;
  max-width: 390px;
  box-shadow: 0 6px 32px rgba(0,0,0,0.09);
  display: flex;
  flex-direction: column;
  margin: 0;
}
.testimonial-stars {
  color: #ffc553;
  font-size: 1.6rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-text {
  color: #fff;
  font-size: 1.09rem;
  font-weight: 400;
  margin-bottom: 32px;
  line-height: 1.5;
  min-height: 88px;
}
.testimonial-client {
  margin-top: auto;
  font-size: 1.12rem;
  color: #ffe8ab;
  font-weight: 700;
  letter-spacing: 0.3px;
}
@media (max-width: 1000px) {
  .testimonial-track {
    width: 90vw;
    gap: 14px;
  }
  .testimonial-card {
    min-width: 85vw;
    max-width: 90vw;
    padding: 22px 14px 18px 14px;
  }
  .testimonials-title { font-size: 2.2rem;}
}
.contact-buttons {
  display: flex;
  gap: 16px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.contact-buttons a {
  padding: 12px 32px;
  border-radius: 30px;
  background: #fff;
  color: #222;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s;
  border: none;
}
.contact-hero {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin: 50px auto;
  max-width: 1200px;
  gap: 40px;
}

.contact-left {
  flex: 1 1 45%;
  min-width: 300px;
}

.contact-left h1 {
  font-size: 2.7rem;
  font-weight: bold;
  margin-bottom: 15px;
}

.contact-left .accent {
  color: #1ab8a6;
  font-weight: bold;
}
.contact-left .accent2 {
  color: #13bfa6;
  font-weight: bold;
}

.contact-left ul {
  margin-top: 25px;
  list-style: none;
  padding-left: 0;
}
.contact-left ul li {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #dfdcdc;
  letter-spacing: 0.02em;
}

.contact-right {
  flex: 1 1 42%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.07);
  padding: 32px 32px 22px 32px;
  min-width: 300px;
}

.contact-right h2 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  color: #222;
  letter-spacing: 0.02em;
}

.contact-buttons {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-bottom: 18px;
}
.contact-buttons a {
  padding: 14px 28px;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 600;
  background: #f5f6fa;
  color: #222;
  border: none;
  text-decoration: none;
  box-shadow: 0 1px 5px rgba(0,0,0,0.06);
  transition: 0.2s;
  text-align: center;
}
.btn-form { background: #4285F4; color: #fff; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-instagram { background: #e4405f; color: #fff; }
.contact-buttons a:hover { opacity: 0.85; }

.cta-info {
  margin-top: 18px;
  color: #222;
  font-size: 1rem;
  text-align: left;
}
.cta-info a { color: #13bfa6; text-decoration: underline; }

@media (max-width: 900px) {
  .contact-hero { flex-direction: column; gap: 32px; }
  .contact-left, .contact-right { min-width: 100%; }
}
.lets-talk-section {
  background: #171918;
  color: #fff;
  padding: 0 0 0 0;
  font-family: 'Montserrat', Arial, sans-serif;
}

.lets-talk-header {
  text-align: center;
  padding: 50px 0 30px 0;
}
.lets-talk-header h1 {
  font-size: 4rem;
  font-weight: 700;
  margin-bottom: 40px;
}
.lets-talk-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
}
.talk-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  padding: 16px 36px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  outline: none;
  transition: 0.18s;
  margin-bottom: 18px;
}
.btn-call {
  background: #fff;
  color: #171918;
  border: 1.8px solid #171918;
}
.btn-instagram {
  background: linear-gradient(90deg, #ee0979 0%, #ff6a00 100%);
  color: #fff;
  border: none;
}
.btn-whatsapp {
  background: #4fd366;
  color: #fff;
  border: none;
}
.talk-btn:hover {
  opacity: 0.87;
  transform: translateY(-2px) scale(1.025);
}

.footer-main {
  padding: 0 0 60px 0;
}
.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 16px 0 16px;
}
.footer-logo img {
  max-height: 70px;
  margin-bottom: 24px;
}
.footer-cols {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  flex: 2;
}
.footer-cols div {
  min-width: 170px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.footer-cols h3 {
  font-size: 1.25rem;
  margin-bottom: 9px;
  font-weight: 700;
}
.footer-cols a, .footer-cols p {
  color: #fff;
  font-size: 1rem;
  text-decoration: none;
  opacity: 0.92;
}
.footer-cols a:hover { text-decoration: underline; opacity: 1; }
.footer-address {
  font-size: 1.1rem;
  font-weight: 600;
  margin-top: 8px;
  min-width: 150px;
}
.footer-cta {
  margin-top: 16px;
}
.lets-talk-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: #fff;
  color: #171918;
  border-radius: 32px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.8px solid #171918;
  transition: 0.18s;
}
.lets-talk-action:hover {
  background: #13bfa6;
  color: #fff;
  border-color: #13bfa6;
}
@media (max-width: 900px) {
  .footer-content { flex-direction: column; align-items: flex-start; gap: 18px;}
  .footer-cols { flex-direction: column; gap: 28px;}
}
.hero-section {
  position: relative;
  width: 100vw;
  min-height: 95vh;
  overflow: hidden;
  background: #18191a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blob-bg {
  position: absolute;
  width: 100vw;
  height: 100vh;
  top: 0; left: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.blob-bg .blob {
  position: absolute;
  opacity: 0.45;
  filter: blur(5px) brightness(1.25);
  transform: scale(1);
  transition: filter 1s;
}

.blob1 {
  left: -6vw;
  top: 2vh;
  width: 490px;
  animation: blobAnim1 12s infinite alternate ease-in-out;
}
.blob2 {
  right: -8vw;
  bottom: -8vh;
  width: 420px;
  animation: blobAnim2 14s infinite alternate ease-in-out;
}

@keyframes blobAnim1 {
  0% { transform: scale(1) rotate(-5deg);}
  100% { transform: scale(1.14) translateY(-35px) rotate(6deg);}
}
@keyframes blobAnim2 {
  0% { transform: scale(1) rotate(3deg);}
  100% { transform: scale(1.13) translateY(30px) rotate(-7deg);}
}

/* Main Hero Content */
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #fff;
  max-width: 700px;
  margin: auto;
}

.rooks-gradient, .highlight {
  background: linear-gradient(90deg, #ffb34b, #fd5c63, #00ffd0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 700;
  font-size: 3.5rem;
}

.secondary {
  color: #ffe066;
  font-weight: 600;
}

.hero-content h1 {
  font-size: 2.8rem;
  font-weight: 700;
  margin: 1rem 0;
}

.subtitle {
  font-size: 1.3rem;
  margin-bottom: 2.5rem;
  color: #d6dde5;
}

.hero-btn, .cta-btn {
  display: inline-block;
  background: #ffe066;
  color: #262626;
  font-weight: 700;
  padding: 1rem 2.5rem;
  font-size: 1.25rem;
  border-radius: 32px;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,0,0,0.13);
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
}
.hero-btn:hover, .cta-btn:hover {
  background: #ffb34b;
  color: #fff;
  box-shadow: 0 10px 28px 0 rgba(255,179,75,0.25);
}

/* Responsive */
@media (max-width: 800px) {
  .blob1, .blob2 { width: 260px;}
  .rooks-gradient, .highlight { font-size: 2.2rem;}
  .hero-content h1 { font-size: 1.5rem;}
}
.footer-logo img {
  height: 200px;        /* Or try 120px, 150px as needed */
  width: auto;
  display: block;
  margin-bottom: 24px;  /* Optional: extra spacing below the logo */
}
@media (max-width: 600px) {
  .footer-logo img {
    height: 60px;       /* Smaller logo for mobile screens */
  }
}
.portfolio-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.portfolio-item {
  background: #111;
  border-radius: 1.2rem;
  width: 270px;
  height: 230px;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
  transition: transform 0.15s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.14);
}

.portfolio-item:hover {
  transform: translateY(-5px) scale(1.03);
}

.portfolio-label {
  text-align: center;
  color: #fff;
  font-size: 1.15rem;
  margin: 1.3rem 0 1rem;
  letter-spacing: 1px;
}

.portfolio-video-placeholder {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon {
  font-size: 3.3rem;
  color: #ccc;
  border: 4px solid #ccc;
  border-radius: 50%;
  padding: 24px 30px;
  background: #222;
}

.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0; top: 0; right: 0; bottom: 0;
  width: 100vw; height: 100vh;
  background: rgba(10,16,30,0.93);
  align-items: center;
  justify-content: center;
}

.video-modal.active {
  display: flex;
}

.video-modal-content {
  position: relative;
  background: #1b232b;
  padding: 1rem;
  border-radius: 18px;
  box-shadow: 0 8px 36px rgba(0,0,0,0.5);
  max-width: 90vw;
  max-height: 80vh;
  width: 600px;
}

.video-modal video {
  width: 100%;
  max-height: 60vh;
  border-radius: 14px;
  outline: none;
}

.video-close {
  position: absolute;
  top: 8px; right: 18px;
  font-size: 2.2rem;
  color: #fff;
  cursor: pointer;
  z-index: 2;
  transition: color 0.2s;
}
.video-close:hover { color: #e85e5e; }

@media (max-width: 900px) {
  .portfolio-grid {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
  }
  .video-modal-content {
    width: 96vw;
    padding: 0.7rem;
  }
}
.hero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Background Video Styles */
.hero-bg-video {
  position: absolute;
  top: 0; left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 1;
  opacity: 0.7; /* Optional: adjust for better overlay visibility */
  pointer-events: none; /* So video doesn't block clicks */
}

/* Blobs and Content Overlay */
.blob-bg,
.hero-content {
  position: relative;
  z-index: 2; /* Above the video */
}

/* You may already have these styles, just make sure their z-index is > 1 */

/* If your blobs are too bright, lower their opacity for better video visibility */
.blob-bg .blob {
  opacity: 0.7;
}
