html {
  scroll-behavior: smooth;


}


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

body {

  margin: 0;
  font-family: 'Roboto';
  background: linear-gradient(to right, #e3f2fd, #f8f9fa);
  overflow-x: hidden;
    padding-top: env(safe-area-inset-top);

}


/* Loading screen */
#loading-screen {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, #e3f2fd, #f8f9fa);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  font-family: 'SF Pro Display', sans-serif;
  transition: opacity 0.5s ease-out;
}

#loading-line {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: linear-gradient(45deg, #1a1a1a, #1a1a1a, #1a1a1a);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmer 3s linear infinite;
  text-align: center;
}

@keyframes shimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Navbar Styles */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 20px 30px;
  /* background: #fff; */
  z-index: 10000;
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* box-shadow: 0 1px 10px rgba(0, 0, 0, 0.05); */
}



.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  display: flex;
  align-items: center;
  font-size: 30px;
  font-weight: 100;
  color: #333;
  gap: 1px;
}

.logo-icon {
  height: 40px;
  width: 40px;
  border-radius: 8px;
}





.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}

.nav-links li a {
  text-decoration: none;
  font-size: 16px;
  color: #333;
  font-weight: 400;
  transition: color 0.2s ease;
}

.nav-links li a:hover {
  color: #3e3e3e; /* Change to your desired hover color */
  border-bottom: 2px solid #00bcd4;
}



.text-section {
  flex: 1;
  text-align: left;
}

.text-section h1 {
  font-size: 60px;
  margin-bottom: 10px;
  color: #1a1a1a;
  font-weight: 500;
}

.text-section h1 span {
  font-size: 60px;
  margin-bottom: 10px;
  background: linear-gradient(45deg, #00ffe0, #6e78ff, #ff4ecb, #00ffe0);
  background-size: 100% 400%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientScroll 6s ease-in-out infinite;

}

@keyframes gradientScroll {
  0% { background-position: 0% 0%; }
  50% { background-position: 0% 100%; }
  100% { background-position: 0% 0%; }
}


.text-section p {
  font-size: 24px;
  color: #333;
}

.text-section a {
  display: inline-block;
  margin-top: 20px;
 padding: 12px 24px;
 text-decoration: none;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}


@media (max-width: 768px) {
  

  .text-section h1 {
    font-size: 36px;
  }

  .text-section p {
    font-size: 18px;
  }
}




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





.ziggy-center {
  width: 220px;
  opacity: 0;
  transform: scale(0.5);
  transition: all 1s ease;
  margin: 0 auto;
}




.main-container {
  display: flex;
  justify-content: space-between;
  align-items: center; /* ✅ centers vertically */
  height: 100vh;
  padding: 0 50px;
  position: relative;
}


.ziggy-img-wrapper {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%; /* necessary to match main-container height */
}



.ziggy-scroll-img {
  height: 400px;
  width: auto;
  animation: float 3s ease-in-out infinite;
}





#about-ziggy {
  background: #fff;
  padding: 100px 40px;
  text-align: center;
}

.about-heading {
  font-size: 56px;
  font-weight: 600;
  margin-bottom: 10px;
  color: #111;
  font-family: 'DM Sans', sans-serif;
}

.about-subtext {
  font-size: 18px;
  color: #666;
  margin-bottom: 60px;
}

.about-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto 80px;
}

.about-box {
  padding: 20px 24px;
  border-radius: 16px;
  background: #f9f9f9;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.about-box h3 {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.about-box p {
  font-size: 15px;
  color: #444;
  line-height: 1.6;
}

.about-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
}

.about-cta {
  max-width: 600px;
  margin: 0 auto;
}

.about-cta h3 {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 20px;
}

.about-cta button {
  padding: 12px 24px;
  background-color: #222;
  color: white;
  border: none;
  border-radius: 10px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.about-cta button:hover {
  background-color: #000;
}


#features-page-elegant {
  font-family: 'DM Sans', sans-serif;
  padding: 100px 30px;
  background: linear-gradient(45deg, #a7d3ff, #ffffff);
}

.features-elegant-hero {
  
  text-align: center;
  max-width: 800px;
  margin: 0 auto 80px;
}

.features-elegant-hero h2 {
  font-size: 52px;
  font-weight: 700;
  letter-spacing: -0.5px;
  background: linear-gradient(to right, #111, #444);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 18px;
}

.features-elegant-hero p {
  font-size: 18px;
  color: #555;
  max-width: 600px;
  margin: auto;
}

.feature-row {
  padding: 60px 40px;
  max-width: 900px;
  margin: 0 auto 40px;
  border-radius: 20px;
  transition: background 0.4s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.03);
  position: relative;
}

.feature-row.light {
  background: #ffff;
}

.feature-row.white {
  background: #ffffff;
}

.feature-row::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border-radius: inherit;
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
  background: radial-gradient(circle at 30% 30%, rgba(0,0,0,0.02), transparent 60%);
}

.feature-row:hover::before {
  opacity: 1;
}

.feature-text h3 {
  font-size: 24px;
  font-weight: 600;
  color: #222;
  margin-bottom: 12px;
}

.feature-text p {
  font-size: 16px;
  color: #555;
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
}

.features-elegant-cta {
  text-align: center;
  margin-top: 100px;
}

.features-elegant-cta h3 {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;
}

.features-elegant-cta button {
  padding: 14px 32px;
  font-size: 16px;
  background: #111;
  color: white;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.features-elegant-cta button:hover {
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

#maker-section {
  padding: 100px 30px;
  font-family: 'DM Sans', sans-serif;
background: #fff;
  position: relative;
  z-index: 1;
  animation: gradientScroll 6s ease-in-out infinite;
}


.maker-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

.maker-card {
  background:#fff;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 5px 5px 5px 5px rgba(0, 174, 255, 0.35);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 60px;
  flex-wrap: wrap;
}


.maker-img-wrapper {
  position: relative;
  width: 220px;
  height: 220px;
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.maker-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
  z-index: 2;
  position: relative;
}

.maker-glow {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.2), transparent 60%);
  z-index: 1;
}

.maker-text-box {
  flex: 1;
}

.maker-text-box h2 {
  font-size: 32px;
  font-weight: 700;
  color: #111;
  margin-bottom: 8px;
}

.maker-text-box hr {
  width: 40px;
  border: none;
  border-top: 3px solid #00bcd4;
  margin: 12px 0 20px;
}

.maker-text-box p {
  font-size: 16.5px;
  color: #444;
  line-height: 1.75;
  margin-bottom: 24px;
}

.maker-socials a {
  display: inline-block;
  margin-right: 20px;
  font-size: 15px;
  color: #00bcd4;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.maker-socials a:hover {
  color: #0097a7;
  font-weight: 600;
}

@media (max-width: 768px) {
  .maker-card {
    flex-direction: column;
    text-align: center;
    padding: 30px;
  }

  .maker-text-box hr {
    margin: 12px auto 20px;
  }

  .maker-img-wrapper {
    margin-bottom: 24px;
  }
}


.elegant-footer {
  background-color: #0e0e0e;
  padding: 60px 30px 40px;
  color: #aaa;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-left {
  flex: 1;
}

.footer-logo {
  width: 42px;
  height: auto;
  margin-bottom: 14px;
}

.footer-tagline {
  font-size: 15px;
  color: #777;
}

.footer-nav {
  flex: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 32px;
  justify-content: center;
  align-items: center;
}

.footer-nav a {
  color: #ccc;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: #0097a7;
}

.footer-right {
  flex: 1;
  text-align: right;
  color: #555;
  font-size: 13px;
}

@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .footer-right {
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}



.howto-detailed-section {
  padding: 100px 30px;
  background: #f9f9f9;
  font-family: 'DM Sans', sans-serif;
  border-bottom: 1px solid #eee;
}

.howto-content-wrapper {
  max-width: 1200px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  align-items: flex-start;
}

.howto-text-block {
  flex: 1 1 600px;
}

.howto-text-block h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.howto-text-block h3 {
  font-size: 20px;
  margin-top: 28px;
  color: #333;
}

.howto-text-block p {
  font-size: 16.5px;
  line-height: 1.75;
  color: #444;
  margin: 10px 0;
}

.howto-text-block ul {
  padding-left: 20px;
  margin-top: 6px;
}

.howto-text-block li {
  font-size: 15.5px;
  line-height: 1.6;
  color: #444;
  margin-bottom: 6px;
}

.howto-tip-box {
  background: #e0f7fa;
  padding: 12px 18px;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 15.5px;
  color: #006064;
  box-shadow: 0 4px 16px rgba(0,0,0,0.04);
}

/* Light Mode Body */
.howto-body-light {
  margin: 0;
  background: #fafbff;
  font-family: 'DM Sans', sans-serif;
  color: #111;
}

/* Hero Section */
.howto-hero-light {
  text-align: center;
  padding: 100px 30px 60px;
  background: linear-gradient(145deg, #e3f2fd, #f0f0f0);
  box-shadow: inset 0 -1px 0 rgba(0,0,0,0.05);
}

.howto-hero-light h1 span {
  font-size: 52px;
  font-weight: 800;
  background: linear-gradient(to right, #ff4ecb, #6e78ff, #00c6ff);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: lightWave 8s ease infinite;
}

.howto-hero-light p {
  font-size: 18px;
  color: #444;
  margin-top: 12px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@keyframes lightWave {
  0% { background-position: 0% 50% }
  50% { background-position: 100% 50% }
  100% { background-position: 0% 50% }
}

/* Guide Section */
.howto-guide-section-light {
  padding: 100px 30px;
  background: #ffffff;
  display: flex;
  justify-content: center;
}
.howto-card-light {
   display: flex;
  flex-wrap: nowrap; /* force side-by-side layout */
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  padding: 50px;
  max-width: 1200px;
  background: #ffffff;
  border-radius: 24px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.07);
  border: 1px solid #eee;
  transition: all 0.3s ease;
}



/* Text */
.howto-text-block {
  flex: 1 1 520px;
}

.howto-text-block h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #111;
}

.howto-text-block h3 {
  font-size: 18px;
  margin-top: 28px;
  color: #333;
}

.howto-text-block ul {
  margin-left: 20px;
  color: #555;
  font-size: 15.5px;
  line-height: 1.7;
}

.howto-protip-light {
  background: #e0f7fa;
  color: #006064;
  padding: 14px 20px;
  border-left: 5px solid #00acc1;
  border-radius: 10px;
  margin-top: 30px;
  font-size: 15px;
}

/* Video */
.howto-video-block {
  flex: 1 1 400px;
  text-align: center;
}

.howto-video {
  width: 100%;
  max-width: 500px;
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}

.video-caption {
  font-size: 13px;
  color: #666;
  margin-top: 10px;
}


.howto-text-block, .howto-video-block {
  flex: 1 1 50%;
}

.howto-text-block {
  padding-right: 20px;
}

.howto-video-block {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 900px) {
  .howto-card-light {
    flex-wrap: wrap;
  }

  .howto-text-block, .howto-video-block {
    flex: 1 1 100%;
    padding: 0;
    text-align: center;
  }

  .howto-text-block {
    margin-bottom: 30px;
  }
}


/* Hamburger icon */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 80px;
    right: 30px;
    background: #fff;
    padding: 20px 30px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav-menu.active {
    display: block;
  }

  .nav-links {
    flex-direction: column;
    gap: 16px;
  }

  .nav-links li a {
    color: #222;
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .ziggy-img-wrapper {
    display: none !important;
  }

  .main-container {
    
    text-align: center;
    height: 100vh;
  }

  .text-section {
    width: 100%;
  }

  .text-section h1 span {
    font-size: 42px;
  }

  .text-section h1 {
    font-size: 42px;
  }

  .text-section p {
    font-size: 18px;
    margin-top: 12px;
  }
}
@media (max-width: 768px) {
  .main-container {
    animation: fadeInMobile 0.6s ease-out;
  }

  @keyframes fadeInMobile {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
}

