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

body, html {
  height: 100%;
  width: 100%;
  background: url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1?auto=format&fit=crop&w=1400&q=80') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;
  color: white;
  scroll-behavior: smooth;
}

.frame-header {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 18px 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
  border-radius: 12px;
  box-shadow: 0 0 12px #FFD700;
}

.brand {
  position: absolute;
  left: 40px;
  font-size: 1.2rem;
  font-weight: bold;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.section-title {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

.section-title:hover {
  text-decoration: underline;
}

.scroll-inner {
  padding-top: 80px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px 20px 0 20px;
}

/* Hero Section */
.hero-section {
  text-align: center;
  max-width: 900px;
  margin: auto;
  padding-bottom: 0px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 1.2rem;
  color: #eee;
  margin-bottom: 30px;
}

.buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 30px;
  font-weight: bold;
  font-size: 1rem;
}

.btn.yellow {
  color: black !important;
  background-color: #FFD700;
  color: black !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

.btn.yellow {
  color: black !important;
  background-color: #FFD700;
  color: black !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

/* Services Section */
.services-section-horizontal {
  text-align: center;
  padding-top: 10px;
}

.services-section-horizontal h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.horizontal-boxes {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  justify-content: center;
}

.service-card {
  width: 250px;
  height: 250px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  font-size: 1rem;
  padding: 20px;
  text-align: center;
}
.symbol {
  font-size: 3rem;
  margin-bottom: 12px;
}

/* Fade-In Up Animation for Service Boxes */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
}

.service-card:nth-child(1) { animation-delay: 0.2s; }
.service-card:nth-child(2) { animation-delay: 0.4s; }
.service-card:nth-child(3) { animation-delay: 0.6s; }

/* Our Work Section */
.our-work-section {
  text-align: center;
  padding: 60px 20px;
}

.our-work-section h2 {
  font-size: 2.5rem;
  margin-bottom: 40px;
  font-weight: bold;
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1000px;
  margin: auto;
}

.work-box {
  background-color: rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
  border: 1px dashed rgba(255, 255, 255, 0.4);
}

/* === Animated Color Icons === */
.service-card img {
  width: 50px;
  margin-bottom: 1rem;
}

/* 🎥 pulse + float */
.service-card:nth-child(1) img {
  animation: pulseFloat 2.5s ease-in-out infinite;
}

/* ✂️ rotate */
.service-card:nth-child(2) img {
  animation: rotateIcon 2s linear infinite;
}

/* 🚀 bounce */
.service-card:nth-child(3) img {
  animation: bounceIcon 1.5s ease-in-out infinite;
}

@keyframes pulseFloat {
  0%, 100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  50% {
    transform: translateY(-8px) scale(1.2);
    opacity: 0.7;
  }
}

@keyframes rotateIcon {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes bounceIcon {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===============================
   MOBILE RESPONSIVE FIXES
   =============================== */

@media (max-width: 768px) {
  .frame-header {
  max-width: 1200px;
  margin: 20px auto 0 auto;
  padding: 18px 30px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 10;
  background: rgba(0, 0, 0, 0.3);
  border: 2px solid #FFD700;
  border-radius: 12px;
  box-shadow: 0 0 12px #FFD700;
}

  .brand {
    position: static;
    font-size: 1rem;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }

  .nav-links a {
    font-size: 0.95rem;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 2.5rem;
  }

  .hero-content p {
    font-size: 1rem;
    line-height: 1.5rem;
  }

  .buttons {
    flex-direction: column;
    gap: 12px;
  }

  .btn {
    width: 90%;
    text-align: center;
  }

  .work-grid {
    flex-direction: column;
    gap: 16px;
    align-items: center;
  }

  .work-box {
    width: 90%;
    max-width: 300px;
    height: 160px;
  }

  .services-section-horizontal h2,
  .our-work-section h2 {
    font-size: 1.8rem;
  }
}

body, html {
  height: 100%;
  width: 100%;
  margin: 0;
  padding: 0;
  background: url('https://images.unsplash.com/photo-1605296867304-46d5465a13f1?auto=format&fit=crop&w=1400&q=80') no-repeat center center fixed;
  background-size: cover;
  background-color: #000;
  font-family: sans-serif;
  scroll-behavior: smooth;
  overflow-x: hidden;
}

.page,
.services-section-horizontal,
.our-work-section {
  background: transparent !important;
}

@media (max-width: 768px) {
  .buttons {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }

  .btn {
    font-size: 1rem;
    padding: 12px 20px;
    width: 80%;
    max-width: 300px;
  }

  .btn.yellow {
  color: black !important;
  background-color: #FFD700;
  color: black !important;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: bold;
  text-decoration: none;
  display: inline-block;
}

  .hero-content {
    text-align: center;
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2rem;
    line-height: 2.4rem;
  }

  .hero-content p {
    font-size: 1rem;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  .service-card {
    width: 90%;
    max-width: 300px;
    padding: 20px 15px;
    margin: 10px auto;
    font-size: 0.95rem;
  }

  .service-card img {
    width: 40px;
    margin-bottom: 10px;
  }

  .services-section-horizontal h2 {
    font-size: 1.6rem;
  }
}

@media (max-width: 768px) {
  .service-card,
  .video-box {
    width: 90%;
    max-width: 60%;
    padding: 15px;
    font-size: 0.95rem;
    margin: 15px auto;
  }

  .service-card img,
  .video-box img {
    width: 36px;
    margin-bottom: 10px;
  }

  .section-divider {
    height: 1px;
    width: 80%;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.2);
  }
}


/* Updated glowing border for navigation */
nav {
    border: 2px solid #FFD700;
    border-radius: 8px;
    box-shadow: 0 0 10px #FFD700, 0 0 20px #FFD700 inset;
    padding: 10px 20px;
    width: fit-content;
    margin: auto;
}


@media (max-width: 768px) {
  .frame-header {
    flex-direction: column;
    align-items: center;
    padding: 16px 20px;
    text-align: center;
  }

  .brand {
    position: static;
    margin-bottom: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
}


@media (max-width: 768px) {
  .video-boxes {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .video-box {
    width: 90% !important;
    margin: 10px 0;
  }
}


.plans {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
}

.plan-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px dashed #FFD700;
  border-radius: 12px;
  padding: 20px;
  color: white;
  text-align: left;
}

.plan-card h3 {
  color: #FFD700;
  margin-bottom: 10px;
}

.section-heading {
  font-size: 2rem;
  text-align: center;
  margin-top: 20px;
  color: white;
}


@media (min-width: 769px) {
  .plans {
    flex-direction: row;
    justify-content: center;
  }

  .plan-card {
    width: 45%;
  }
}


.contact-container {
  display: flex;
  justify-content: center;
  padding: 20px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #FFD700;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  resize: vertical;
}

.contact-form button {
  background-color: #FFD700;
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: bold;
  cursor: pointer;
}

@media (max-width: 768px) {
  .contact-container {
    padding: 10px;
  }

  .contact-form {
    padding: 20px;
    width: 90%;
  }
}


.about-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  color: white;
  font-size: 1.1rem;
  line-height: 1.6;
}
.about-container ul {
  margin-top: 10px;
  margin-bottom: 10px;
  padding-left: 20px;
}
.about-container li {
  margin-bottom: 8px;
}


.about-us-section {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 60px 20px;
  color: white;
}

.about-wrapper {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.about-wrapper h3 {
  margin-top: 30px;
  font-size: 1.4rem;
  color: #FFD700;
}

.about-wrapper ul {
  text-align: left;
  padding-left: 20px;
  margin-top: 20px;
}

.about-wrapper li {
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.about-intro,
.about-closing,
.about-signoff {
  margin: 20px 0;
  font-size: 1.15rem;
  line-height: 1.6;
}


/* Testimonials Section */
.testimonials-section {
  padding: 60px 20px;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  text-align: center;
}

.testimonials-section h2 {
  font-size: 2em;
  color: #FFD700;
  margin-bottom: 40px;
}

.testimonial-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.testimonial {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid #FFD700;
  border-radius: 12px;
  padding: 25px;
  font-size: 1em;
}

.testimonial h4 {
  margin-top: 15px;
  color: #FFD700;
  font-weight: bold;
}

.section-bg {
  background: transparent;
  padding: 60px 20px;
  border-top: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
}

.yellow-heading {
  color: #FFD700;
  text-transform: uppercase;
}
.yellow-divider {
  border: none !important;
  border-top: 3px solid #FFD700 !important;
  margin: 0 !important;
  width: 100% !important;
}


.claim-offer {
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  color: #FFD700;
  font-weight: bold;
  font-size: 22px;
}
.claim-offer p {
  color: white;
  font-size: 16px;
  font-weight: normal;
  margin-top: 5px;
}


/* Mobile layout fix for video section */
@media (max-width: 768px) {
  .video-container {
    width: 100%;
    max-width: 320px;
    margin: 0 auto 30px auto;
  }

  .video-box {
    width: 100%;
    height: 180px;
  }

  .flex-video-wrapper {
    flex-direction: column;
    align-items: center;
  }
}



.flex-video-wrapper {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

@media (max-width: 768px) {
  .flex-video-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    width: 90%;
    max-width: 360px;
    margin-bottom: 20px;
  }

  .video-box {
    width: 100%;
    height: 200px;
  }
}


/* Mobile fix for video section */
@media (max-width: 768px) {
  .flex-video-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .video-container {
    width: 90%;
    max-width: 360px;
    margin-bottom: 20px;
  }

  .video-box {
    width: 100%;
    height: 200px;
  }

  .video-title {
    text-align: center;
    font-weight: bold;
    color: white;
    margin-top: 10px;
  }
}


@media (max-width: 768px) {
  .creation-section {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video-box {
    margin: 10px auto;
  }
}


@media (min-width: 768px) {
  .creation-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: nowrap;
  }

  .creation-box {
    width: 220px !important;
    height: 220px !important;
  }
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-btn {
  background-color: #FFD700;
  color: black;
  border: none;
  padding: 16px 24px;
  font-size: 1rem;
  font-weight: bold;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s, background-color 0.3s;
  box-shadow: 0 0 10px #FFD700;
}

.cta-btn:hover {
  background-color: #fff9c4;
  transform: scale(1.05);
}


.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  left: 0; top: 0;
  width: 100%; height: 100%;
  background-color: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: #000;
  padding: 20px;
  border-radius: 12px;
  max-width: 80%;
  box-shadow: 0 0 20px #FFD700;
  position: relative;
}

.close-btn {
  position: absolute;
  top: 10px; right: 20px;
  font-size: 28px;
  color: #FFD700;
  cursor: pointer;
}


/* Desktop-specific modal improvements */
@media screen and (min-width: 768px) {
  .modal-content {
    max-width: 720px;
    max-height: 80vh;
  }

  .modal-content video {
    width: 100%;
    height: auto;
  }

  .close-btn {
    z-index: 1001;
  }
}

/* Fix close button visibility and z-index */
.close-btn {
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 28px;
  color: #FFD700;
  cursor: pointer;
  z-index: 1001;
}


/* Refined modal layout for large videos on desktop */
@media screen and (min-width: 768px) {
  .modal-content {
    max-width: 640px;
    max-height: 80vh;
    overflow: auto;
    padding: 10px;
  }

  .modal-content video {
    max-height: 75vh;
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;
  }

  .close-btn {
    z-index: 1001;
    top: 6px;
    right: 10px;
  }
}
