@font-face {
  font-family: "Azonix";
  src: url("/assets/fonts/Azonix.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Android";
  src: url("/assets/fonts/Android.ttf") format("opentype");
  font-weight: normal;
  font-style: normal;
}

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Inter", sans-serif;
  background: #000000;
  color: #ffffff;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

.container {
  position: relative;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 40px;
}

.nav-left .hamburger-menu {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
}

.hamburger-menu span {
  width: 25px;
  height: 2px;
  background: #ffffff;
  transition: all 0.3s ease;
}

.hamburger-menu:hover span {
  background: #00ff00;
}

.nav-center .logo {
  height: 60px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-center .logo:hover {
  transform: scale(1.1);
}

/* Right Sidebar Social Icons */
.right-sidebar {
  position: fixed;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.social-icons-vertical {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.social-icon {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-icon:hover {
  color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
  border-color: #00ff00;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 255, 0, 0.3);
}

.behance-text {
  font-weight: 600;
  font-size: 16px;
}

/* Main Content */
.main-content {
  position: relative;
}

/* Section 1: Hero Section with Smoke and Watermark */
/* Watermark Background */
.watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/2.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 100vw;
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
.gd-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/gd-watermark.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 100vw;
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
.vd-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/EditVideowithAdobePremiereProvr.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  aspect-ratio: 16 / 9;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
.visual-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/visual-watermark.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 100vw;
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
.threed-watermark-bg{
 position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/3d-watermark-text.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 100vw;
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
.social-watermark-bg{
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/social-watermark.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left;
  width: 100vw;
  height: auto;
  aspect-ratio: 16 / 9;
  opacity: 1;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
.twod-watermark-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 200;
  transform: translate(-50%, -50%);
  background-image: url("/assets/2d-bg-image.png");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100vw;
  height: 100vh;
  aspect-ratio: 16 / 9;
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
  animation: watermarkEntrance 2s ease-out forwards;
}
@keyframes vdwatermarkEntrance {
  0% {
    transform: translate(-50%, -50%) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 40px 40px;
  z-index: 10;
}

/* Smoke Background Video (only for hero section) */
#smoke-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.5;
}
#gd-smoke-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  opacity: 0.5;
}
.video-bottom-fade {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 80%);
  z-index: 200;
  pointer-events: none;
}

/* Full-screen Statue Background (only for hero section) */
.statue-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.statue-background .statue-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 3;
  object-fit: cover;
  object-position: center;
}

/* Hero Content */
.hero-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  z-index: 2;
}

.hero-text {
  margin-bottom: 60px;
}

.company-name {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 3px;
  opacity: 0.8;
  animation: fadeInUp 1s ease 0.2s both;
}

.main-title-image {
  width: 100%;
  height: auto;
  animation: fadeInUp 1s ease 0.4s both;
  transform: translateZ(-50%);
  display: block;
}

.tagline {
  font-size: 20px;
  font-weight: 300;
  line-height: 1.4;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

.highlight {
  color: #bdff00;
  font-weight: 500;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: left;
  animation: fadeInUp 1s ease 1s both;
}

.btn {
  background: none;
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: #ffffff;
  padding: 15px 30px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
}

.btn-portfolio {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  text-decoration: none;
  cursor: pointer;
}

.btn-portfolio:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-contact {
  /* border-color: #00ff00; */
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  position: relative;
  text-decoration: none;
}

.btn-contact .btn-accent {
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: 20px;
  height: 20px;
  background: #87be3d;
  border-radius: 0px 100px 0px 0px;
  cursor: pointer;
}

.btn-contact:hover {
  border-color: #87be3d;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* intro video */
.intro-video-section {
  position: relative;
  /* min-height: 100vh; */
  display: flex;
  align-items: center;
  padding: 40px;
  background: #000000;
  z-index: 10;
}

.intro-video-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.intro-video-wrapper {
  position: relative;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 255, 0, 0.1);
  border: 2px solid rgba(135, 190, 61, 0.3);
  animation: fadeInUp 1s ease 0.6s both;
}

.intro-video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    45deg,
    rgba(135, 190, 61, 0.1) 0%,
    rgba(0, 255, 0, 0.05) 100%
  );
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.intro-video-wrapper:hover .video-overlay {
  opacity: 1;
}

/* Section 2: What We Do */
.what-we-do-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px;
  background: #000000;
  z-index: 10;
}

.what-we-do-content {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.statue-figure {
  flex: 0 0 400px;
  height: 600px;
  position: relative;
}

.statue-figure img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.content-text {
  flex: 1;
  max-width: 600px;
}

.section-title {
  font-size: clamp(48px, 8vw, 50px);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: #87be3d;
  margin: 0px 0px 30px 0px;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s both;
}

.description-text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.4s both;
  margin-left: -100px;
  z-index: -20;
}

.description-text .highlight {
  color: #87be3d;
  font-weight: 600;
}

/* Section 3: Services Grid */
.services-section {
  position: relative;
  min-height: 100vh;
  padding: 40px;
  background: #000000;
  z-index: 10;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
}

.services-title {
  font-size: clamp(48px, 8vw, 50px);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: #87be3d;
  text-align: center;
  margin-bottom: 80px;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s both;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-bottom: 60px;
}

.service-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 15px;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  animation: fadeInUp 1s ease both;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.service-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 255, 0, 0.3);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 255, 0, 0.1);
}

.service-card:hover::before {
  left: 100%;
}

.service-title {
  font-size: 24px;
  font-weight: 700;
  color: #87be3d;
  margin-bottom: 15px;
  line-height: 1.2;
}

.service-description {
  font-size: 16px;
  line-height: 1.5;
  color: #ffffff;
  opacity: 0.9;
}

/* Section 4: Services List */
.services-list-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px;
  background: #000000;
  z-index: 10;
}

.services-list-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.services-list-text {
  flex: 1;
  padding: 40px 80px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 100px;
  box-shadow: inset -24px 0px 20px #4a5e17;
}
.services-list-title {
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: #87be3d;
  margin-bottom: 40px;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s both;
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-item {
  font-size: 18px;
  color: #ffffff;
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  opacity: 0.9;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease both;
}

.service-item::before {
  content: "•";
  font-size: 24px;
  position: absolute;
  left: 0;
  top: -2px;
}

.service-item:hover {
  color: #87be3d;
  transform: translateX(10px);
}

.statue-figure-right {
  flex: 0 0 600px;
}

.statue-figure-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  position: relative;
  transition: transform 0.3s ease;
  margin-left: -100px;
  z-index: 20;
}

.statue-figure-right:hover img {
  transform: scale(1.05);
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(
    circle,
    rgba(0, 255, 0, 0.3) 0%,
    rgba(0, 255, 0, 0.1) 40%,
    transparent 70%
  );
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  pointer-events: none;
}

/* Section 7: Contact */

.contact-section {
  border-top: 10px solid #8bc33e;
  border-bottom: 10px solid #8bc33e;
  background-size: cover;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  z-index: 10;
}
.contact-section::before {
  content: "";
  position: absolute;
  background: url("/assets/contact-bg.jpg") no-repeat center center;
  background-size: cover;
  top: 0;
  left: 0;
  z-index: -100;
  width: 100%;
  height: 100%;
  opacity: 0.4;
}
.contact-figure-left {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  z-index: 20;
  flex: 0 0 auto;
}

.contact-figure-left img {
  max-width: 75%;
}

.contact-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 80px 40px 80px 80px;
  background: rgba(255, 255, 255, 0.18);
  border-radius: 70px;
  box-shadow: inset 0px 10px 0px -6px #90b35f;;
  margin-left: -170px;
  flex: 1;
}

.phone-hanging {
  margin-top: -80px;
}

.phone-hanging img {
  max-width: 190px;
  height: auto;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.contact-item {
  font-size: 16px;
  color: #ffffff;
  margin: 20px 10px;
  position: relative;
  text-wrap: wrap;
  opacity: 1;
  transition: all 0.3s ease;
  animation: fadeInUp 1s ease both;
}

.contact-item:hover {
  color: #87be3d;
  transform: translateX(10px);
}

.contact-icon {
  background-color: #bdff00;
  color: black;
  border: 1px soli #bdff00;
  border-radius: 50%;
  padding: 7px;
  margin: 20px;
}

/* Navigation Menu Styles */
.nav-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 300px;
  height: 100vh;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  border-right: 1px solid rgba(0, 255, 0, 0.3);
  z-index: 999;
  transition: left 0.3s ease;
  padding-top: 100px;
}

.nav-menu-open {
  left: 0;
}

.nav-menu-content {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
}

.nav-link {
  color: #ffffff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  padding: 15px 20px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.nav-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 255, 0, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.nav-link:hover {
  color: #00ff00;
  background: rgba(0, 255, 0, 0.1);
  transform: translateX(10px);
}

.nav-link:hover::before {
  left: 100%;
}

/* Active navigation link styles */
.nav-link.active {
  color: #87be3d;
  background: rgba(127, 219, 7, 0.2);
  border: 1px solid rgba(135, 190, 61, 0.4);
  font-weight: 600;
  transform: translateX(5px);
}

.nav-link.active::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(135, 190, 61, 0.2),
    transparent
  );
}

/* Section active state for hash navigation */
.nav-link.section-active {
  color: #bdff00;
  background: rgba(189, 255, 0, 0.15);
  border: 1px solid rgba(189, 255, 0, 0.3);
  font-weight: 600;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.05);
  }
}

.mobile-img img {
  display: none;
}

/* Responsive Design */
@media (max-width: 1023px) {
  .statue-background img {
    display: none;
  }
  .gd-statue-background img {
    display: none;
  }
  .mobile-img img {
    display: block;
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0 auto 30px auto;
  }

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

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-text {
    margin-bottom: 40px;
  }

  .main-title-image {
    width: 90%;
    max-width: 500px;
    margin: 20px auto;
  }

  .company-name {
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 15px;
  }

  .tagline {
    font-size: 18px;
    line-height: 1.5;
    margin: 20px auto;
    max-width: 90%;
  }

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

  .what-we-do-content,
  .services-list-content {
    flex-direction: column;
    text-align: center;
  }
  .contact-section {
    flex-direction: column;
  }

  .contact-content {
    flex-direction: column;
    gap: 30px;
  }

  .contact-text {
    margin-left: 0;
    max-width: 100%;
    border-radius: 30px;
    flex-direction: column;
  }

  .phone-hanging {
    margin-left: 0;
    order: -1;
  }

  .phone-hanging img {
    max-width: 120px;
  }

  .statue-figure {
    flex: none;
    margin: 0 auto;
  }

  .statue-figure-right {
    flex: none;
    width: 350px;
    height: 450px;
    margin: 0 auto;
  }

  .content-text,
  .services-list-text {
    max-width: 100%;
  }
  .description-text {
    font-size: 16px;
    margin-left: 0px;
  }
  .section-title,
  .services-list-title {
    font-size: clamp(36px, 10vw, 40px);
    text-align: center;
  }

  .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
  }

  .service-card {
    padding: 25px;
  }

  .services-title {
    font-size: clamp(36px, 10vw, 56px);
    margin-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .statue-background img {
    display: none;
  }
  .gd-statue-background img {
    display: none;
  }
  .mobile-img img {
    display: block;
    width: 100%;
    max-width: 350px;
    height: auto;
    margin: 0 auto 25px auto;
  }

  .header {
    padding: 15px 25px;
  }

  .hero-section {
    padding: 100px 20px 20px 20px;
    min-height: 90vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    margin-bottom: 35px;
  }

  .company-name {
    font-size: 14px;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
  }

  .main-title-image {
    width: 95%;
    max-width: 400px;
    margin: 15px auto;
  }

  .tagline {
    font-size: 16px;
    line-height: 1.4;
    margin: 15px auto;
    max-width: 95%;
  }

  .action-buttons {
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
  }

  .btn {
    padding: 12px 25px;
    font-size: 14px;
  }

  .contact-text {
    border-radius: 25px;
  }

  .contact-item {
    font-size: 14px;
    margin: 15px 5px;
  }

  .contact-icon {
    padding: 4px;
    margin: 8px 15px;
  }

  .phone-hanging img {
    max-width: 100px;
  }

  .what-we-do-section,
  .services-list-section {
    padding: 80px 20px 20px 20px;
  }

  .services-section {
    padding: 100px 20px 40px 20px;
  }

  .statue-figure-right {
    width: 280px;
    height: 360px;
  }

  .section-title,
  .services-title,
  .services-list-title {
    font-size: clamp(28px, 12vw, 42px);
    margin-bottom: 30px;
  }

  .description-text {
    font-size: 16px;
    margin-left: 0px;
  }

  .service-item {
    font-size: 15px;
    margin-bottom: 12px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card {
    padding: 20px;
  }

  .service-title {
    font-size: 20px;
  }

  .service-description {
    font-size: 15px;
  }

  .right-sidebar {
    right: 15px;
  }

  .social-icons-vertical {
    gap: 15px;
  }

  .social-icon {
    width: 40px;
    height: 40px;
  }

  .nav-menu {
    width: 250px;
  }

  .nav-menu-content {
    padding: 30px 20px;
    gap: 25px;
  }

  .nav-link {
    font-size: 16px;
    padding: 12px 15px;
  }
}

@media (max-width: 575px) {
  .statue-background img {
    display: none;
  }
  .gd-statue-background img {
    display: none;
  }
  .mobile-img img {
    display: block;
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: 0 auto 20px auto;
  }

  .hero-section {
    padding: 80px 15px 15px 15px;
    min-height: 85vh;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-text {
    margin-bottom: 30px;
  }

  .company-name {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 10px;
  }

  .main-title-image {
    width: 100%;
    max-width: 320px;
    margin: 10px auto;
  }

  .tagline {
    font-size: 14px;
    line-height: 1.3;
    margin: 12px auto;
    max-width: 100%;
  }

  .action-buttons {
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  .phone-hanging {
  margin-top: -20px;
}

  .btn {
    padding: 10px 20px;
    font-size: 13px;
  }

  .what-we-do-section,
  .services-list-section {
    padding: 60px 15px 15px 15px;
  }

  .contact-text {
    padding: 20px 15px;
    border-radius: 20px;
    gap: 12px;
  }

  .contact-item {
    font-size: 13px;
    margin: 12px 3px;
  }

  .contact-icon {
    padding: 3px;
    margin: 6px 12px;
  }

  .phone-hanging img {
    max-width: 80px;
  }

  .services-section {
    padding: 80px 15px 30px 15px;
  }

  .statue-figure-right {
    width: 250px;
    height: 320px;
  }

  .section-title,
  .services-title,
  .services-list-title {
    margin-bottom: 25px;
  }

  .description-text {
    font-size: 15px;
  }

  .service-item {
    font-size: 14px;
    margin-bottom: 10px;
    padding-left: 15px;
  }

  .service-item::before {
    font-size: 20px;
  }

  .service-card {
    padding: 18px;
  }

  .service-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .service-description {
    font-size: 14px;
    line-height: 1.4;
  }

  .right-sidebar {
    right: 8px;
    transform: translateY(-50%) scale(0.8);
  }

  .social-icons-vertical {
    gap: 10px;
  }

  .social-icon {
    width: 30px;
    height: 30px;
  }

  .social-icon svg {
    width: 18px;
    height: 18px;
  }

  .behance-text {
    font-size: 11px;
  }

  .nav-menu {
    width: 220px;
  }

  .nav-menu-content {
    padding: 25px 15px;
    gap: 20px;
  }

  .nav-link {
    font-size: 15px;
    padding: 10px 12px;
  }
}

/* Print Styles */
@media print {
  .header,
  .action-buttons,
  .right-sidebar,
  .watermark-bg,
  .statue-background,
  .gd-statue-background,
  #smoke-video {
    display: none;
  }

  .main-content {
    background: white;
    color: black;
    padding: 20px;
  }

  .section-title,
  .services-title,
  .services-list-title {
    color: black;
  }
}
/* Section 6: Why Choose Us */

.why-choose-us-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 40px;
  background: #000000;
  z-index: 10;
}

.why-choose-us-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 100%;
}

.choose-us-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.choose-us-left img {
  width: 80%;
}

.choose-us-right {
  flex: 1;
  max-width: 600px;
}

.choose-us-title {
  font-size: clamp(48px, 8vw, 40px);
  font-family: "Inter", sans-serif;
  font-weight: 900;
  color: #87be3d;
  margin-bottom: 20px;
  line-height: 1.1;
  animation: fadeInUp 1s ease 0.2s both;
}

.choose-us-subtitle {
  font-size: 24px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease 0.4s both;
}

.choose-us-description {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  opacity: 0.9;
  animation: fadeInUp 1s ease 0.6s both;
}

/* gd page design */
.gd-hero-section {
  background: url('/assets/soft-shadow.png') no-repeat center bottom;
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 40px 40px 40px;
  z-index: 10;
}

.gd-statue-background {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gd-statue-background .gd-statue-image {
  position: absolute;
  top: 0;
  right: 0;
  height: 100vh;
  z-index: 3;
  object-fit: cover;
  object-position: center;
}

/* Hero Content */
.gd-hero-content {
  position: relative;
  text-align: center;
  max-width: 1100px;
  z-index: 2;
}

.gd-main-title-image {
  width: 90%;
  height: auto;
  animation: fadeInUp 1s ease 0.4s both;
  display: block;
}
.gd-portfolio-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("/assets/slider-background.png") no-repeat center top;
  background-size: cover; 
  opacity: 0.4;
  z-index: -1;
}
.gd-portfolio-section {
  position: relative;
  text-align: center;
  padding: 40px;
  width: 100%;
  overflow: hidden;
}
.gd-services-section {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: end;
  overflow: hidden;
  flex-wrap: wrap-reverse;
}

.gd-services-content {
  flex: 1;
  max-width: 50%;
  z-index: 2;
}
.gd-portfolio-statue-image {
  width: 100%;
  height: auto;
  filter: brightness(1.1) contrast(1.2);
}
.gd-services-title {
  font-size: 3.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.gd-services-title .highlight {
  font-size: 2rem;
  font-weight: bold;
  color: #bdff00;
}

.gd-services-description {
  font-size: 1.1rem;
  color: #cccccc;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 90%;
}

.gd-services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  text-align: center;
}

.gd-service-item {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(154, 255, 0, 0.2);
  padding: 0.8rem 1.5rem;
  text-align: center;
  color: #9aff00;
  font-weight: 500;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  cursor: pointer;
  backdrop-filter: blur(10px);
}

.gd-service-item:hover {
  background: rgba(154, 255, 0, 0.1);
  border-color: #9aff00;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(154, 255, 0, 0.2);
}
.gd-video-statue-container {
  position: relative;
  max-width: 600px;
  width: 100%;
}
.gd-statue-container {
  background: url("/assets/gd-about-background.png") no-repeat left center;
  position: relative;
  max-width: 600px;
  width: 100%;
}
.gd-portfolio-explore-section {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  max-height: 100vh;
  width: 100%;
}
.gd-portfolio-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.gd-portfolio-subtitle {
  font-size: 3.5rem;
  font-weight: 800;
  color: #9aff00;
  margin-bottom: 3rem;
  line-height: 1.1;
  text-transform: lowercase;
}
.gd-portfolio-content {
  /* position: relative; */
  display: flex;
  text-align: center;
}
.gd-portfolio-btn-section {
  display: flex;
  align-items: center;
  justify-content: center;
  /* position: relative; */
}
.gd-portfolio-btn {
  position: absolute;
  z-index: 200;
}
.gd-portfolio-image img{
  width: 100vw;
}
.portfolio-explore-section {
  min-height: 100vh;
  background: #0a0a0a;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.grid-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.1) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 1;
}

.portfolio-content {
  z-index: 2;
  position: relative;
  display: flex;
}

.arrow-logo {
  width: 200px;
  height: 200px;
  position: relative;
}

.arrow-shape {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #9aff00 0%, #7acc00 50%, #9aff00 100%);
  clip-path: polygon(0 0, 70% 0, 100% 50%, 70% 100%, 0 100%, 30% 50%);
  filter: drop-shadow(0 0 30px rgba(154, 255, 0, 0.5));
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    filter: drop-shadow(0 0 30px rgba(154, 255, 0, 0.5));
  }
  50% {
    transform: scale(1.05);
    filter: drop-shadow(0 0 50px rgba(154, 255, 0, 0.8));
  }
}

.portfolio-title {
  font-size: 3rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.portfolio-subtitle {
  font-size: 3.5rem;
  font-weight: 800;
  color: #9aff00;
  margin-bottom: 3rem;
  line-height: 1.1;
  text-transform: lowercase;
}

.portfolio-btn {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  color: rgb(255, 255, 255);
  position: relative;
  text-decoration: none;
}

.portfolio-btn .btn-accent {
  position: absolute;
  bottom: 1px;
  left: 1px;
  width: 20px;
  height: 20px;
  background: #87be3d;
  border-radius: 0px 100px 0px 0px;
  cursor: pointer;
}

.portfolio-btn:hover {
  border-color: #87be3d;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes bounce {
  0%,
  100% {
    transform: translateY(0px) scale(1);
  }
  50% {
    transform: translateY(-20px) scale(1.1);
  }
}

.radial-gradient {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: radial-gradient(
    circle,
    rgba(154, 255, 0, 0.1) 0%,
    transparent 70%
  );
  transform: translate(-50%, -50%);
  z-index: 1;
}

@media (max-width: 768px) {
  .arrow-logo {
    width: 150px;
    height: 150px;
  }

  .portfolio-title {
    font-size: 2rem;
  }

  .portfolio-subtitle {
    font-size: 2.5rem;
  }

  .portfolio-btn {
    padding: 0.8rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .portfolio-title {
    font-size: 1.5rem;
  }

  .portfolio-subtitle {
    font-size: 2rem;
  }

  .arrow-logo {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .gd-services-section {
    flex-direction: column;
    text-align: center;
    align-items: end;
    padding: 1rem;
    flex-wrap: wrap-reverse;
  }

  .gd-services-content {
    max-width: 100%;
    margin-bottom: 2rem;
  }

  .gd-services-title {
    font-size: 2.5rem;
  }

  .gd-services-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }

  .gd-video-statue-container {
    max-width: 300px;
  }
  .gd-statue-container {
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .gd-services-grid {
    grid-template-columns: 1fr;
  }

  .gd-services-title {
    font-size: 2rem;
  }
}

/* Responsive Design for New Sections */
@media (max-width: 1023px) {
  .why-choose-us-content {
    flex-direction: column;
    text-align: center;
    gap: 40px;
  }

  .choose-us-left {
    flex: none;
  }

  .choose-us-title {
    font-size: clamp(36px, 10vw, 56px);
  }

  .choose-us-subtitle {
    font-size: 20px;
  }

  /* .slider-container {
    height: 300px;
  } */
}

@media (max-width: 767px) {
  /* .car-slider-section,
    .why-choose-us-section {
        padding: 80px 20px 20px 20px;
    } */

  /* .car-slider-title, */
  .choose-us-title {
    font-size: clamp(28px, 12vw, 42px);
    margin-bottom: 40px;
  }

  .choose-us-subtitle {
    font-size: 18px;
  }

  .choose-us-description {
    font-size: 15px;
  }

  /* .slider-container {
    height: 250px;
  } */
}

@media (max-width: 575px) {
  /* .car-slider-section,
    .why-choose-us-section {
        padding: 60px 15px 15px 15px;
    } */

  /* .car-slider-title, */
  .choose-us-title {
    font-size: clamp(24px, 14vw, 36px);
    margin-bottom: 30px;
  }

  .choose-us-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .choose-us-description {
    font-size: 14px;
    line-height: 1.5;
  }

  /* .slider-container {
    height: 200px;
  } */

  /* .slider-controls {
    margin-top: 20px;
    gap: 15px;
  }

  .dot {
    width: 10px;
    height: 10px;
  } */
}
