
/* Templates */
.templates {
  padding: 4rem 1rem;
}
.templates h2 {
  text-align: center;
  font-size: 2.2rem;
  margin-bottom: 2rem;
  color: #004080;
}
.templates .template-gallery {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.templates .template-gallery img {
  width: 300px;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
}
.templates .template-gallery img:hover {
  transform: scale(1.05);
}
.templates .template-gallery svg {
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s ease;
  cursor: pointer;
}
.templates .template-gallery svg:hover {
  transform: scale(1.05);
}


/* Animations */
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
/* Responsive */
@media (max-width: 900px) {
  .hero {
    flex-direction: column;
  }
  .hero-content, .hero-image {
    max-width: 100%;
    flex: none;
  }
  .pricing .pricing-cards {
    flex-direction: column;
    align-items: center;
  }
}
@media (max-width: 480px) {
  .navbar nav ul {
    flex-direction: column;
    gap: 0.8rem;
  }
}

/*# sourceMappingURL=home.css.map */

/** start banner section */
.banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: white;
  padding: 80px 40px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  gap: 40px;
}

.banner-content {
  max-width: 600px;
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 0.3s;
  opacity: 0; 
}

.banner-content h1 {
  font-size: 3rem;
  margin: 0 0 20px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

.banner-content p {
  font-size: 1.25rem;
  margin-bottom: 36px;
  font-weight: 500;
  line-height: 1.5;
  opacity: 0.85;
}

.btn-primary {
  background-color: var(--logo-yellow);
  color: var(--logo-dark);
  border: none;
  padding: 16px 40px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: 0 6px 20px var(--logo-orange);
  animation: fadeSlideIn 1s ease forwards;
  animation-delay: 0.7s;
  opacity: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: var(--logo-green);
  transform: scale(1.05);
  outline: none;
}


/* Banner image */
.banner-image svg {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.15);

  animation: floatUpDown 6s ease-in-out infinite;
  transition: box-shadow 0.3s ease;
}

.banner-image svg:hover {
  box-shadow: 0 12px 36px rgb(0 0 0 / 0.25);
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 900px) {
  .banner {
    flex-direction: column;
    padding: 60px 24px;
    text-align: center;
    gap: 40px;
  }
  .banner-content h1 {
    font-size: 2.5rem;
  }
  .banner-content p {
    font-size: 1.1rem;
  }
  .banner-image svg {
    width: 80%;
  }
}

/* Animation keyframes */
@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Floating keyframes */
@keyframes floatUpDown {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}

/* Float the whole window */
#screen-window {
  animation: floatUpDown 6s ease-in-out infinite;
  transform-origin: center;
}

/* Pulse animation for circles */
.pulse-circle {
  animation: pulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
.pulse-circle:nth-child(4) { animation-delay: 0s; }
.pulse-circle:nth-child(5) { animation-delay: 0.8s; }
.pulse-circle:nth-child(6) { animation-delay: 1.6s; }

/* Fade-slide animation for content blocks */
.content-block {
  opacity: 0;
  animation: fadeSlideIn 1s ease forwards;
}
.content-block:nth-child(7) { animation-delay: 0.4s; }
.content-block:nth-child(8) { animation-delay: 0.6s; }
.content-block:nth-child(9) { animation-delay: 0.8s; }
.content-block:nth-child(10) { animation-delay: 1s; }
.content-block:nth-child(11) { animation-delay: 1.2s; }
.content-block:nth-child(12) { animation-delay: 1.4s; }

/* Animations */

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

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}

@keyframes fadeSlideIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.banner {
  position: relative;
  padding: 80px 40px;
  border-radius: 0 0 30px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--logo-dark);
  overflow: hidden;
  gap: 40px;
  background: linear-gradient(135deg, var(--background-primary) 0%, var(--background-primary) 100%); /* keep gradient */
}

/* Animated SVG as overlay */
.banner-bg {
  position: absolute;
  top: -50px;
  left: -100px;
  width: 110%;
  height: 110%;
  z-index: 0;
  opacity: 0.15; /* subtle visibility */
  pointer-events: none;
  mix-blend-mode: screen; /* blends nicely with background */
}

/* Ensure content is above */
.banner-content, .banner-image {
  position: relative;
  z-index: 1;
}
/** end banner section */
/** start feature section */
/* feature */
/* .features-section {
  background: var(--logo-dark);
  padding: 70px 60px 50px;  
  width: 100%;
  box-sizing: border-box;
  color: var(--logo-green);
  user-select: none;
}

.features-section .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 50px;
  color: white;
  position: relative;
  letter-spacing: 0.05em;
}

.features-section .section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 4px;
  background: #3b82f6;
  margin: 15px auto 0;
  border-radius: 2px;
}

.features-layout {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: none;  
  margin: 0 auto;
}

.features-animation {
  flex: 1 1 320px;
  max-width: 400px; 
  user-select: none;
  pointer-events: none;
}

.build-website-svg {
  width: 100%;
  height: auto;
  display: block;
}

.features-container {
  flex: 1 1 400px;
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: 600px; 
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: transform 0.3s ease, color 0.3s ease;
  cursor: default;
}

.feature-item:hover,
.feature-item:focus-within {
  color: #3b82f6;
  transform: translateY(-8px);
  outline: none;
}

.feature-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  stroke: #3b82f6;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.feature-item:hover .feature-icon {
  stroke: #60a5fa;
}

.feature-content h3 {
  margin: 0 0 8px;
  font-size: 1.4rem;
  font-weight: 600;
}

.feature-content p {
  margin: 0;
  font-size: 1rem;
  color: #475569;
  line-height: 1.5;
}


@media (max-width: 900px) {
  .features-layout {
    flex-direction: column;
    gap: 40px;
  }
  .features-animation,
  .features-container {
    max-width: 100%;
    flex: 1 1 100%;
  }
  .features-container {
    gap: 25px;
  }
}



.block1 {
            animation: fadeInSlide 0.8s ease forwards 1.3s;
          }
          .block2 {
            animation: fadeInSlide 0.8s ease forwards 1.8s;
          }
          .block3 {
            animation: fadeInSlide 0.8s ease forwards 2.3s;
          }
          .cursor {
            animation: cursorMove 2s ease-in-out infinite 2.8s;
            transform-origin: 275px 170px;
          }

          @keyframes fadeInSlide {
            0% {
              opacity: 0;
              transform: translateY(20px);
            }
            100% {
              opacity: 1;
              transform: translateY(0);
            }
          }

          @keyframes cursorMove {
            0%, 100% {
              transform: translate(0, 0);
              opacity: 1;
            }
            50% {
              transform: translate(-10px, 10px);
              opacity: 0.8;
            }
          } */


.features-section-modern {
  background: var(--logo-dark-light);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.features-section-modern .section-title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: whitesmoke;
}

.features-section-modern .section-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--logo-dark);
  max-width: 600px;
  margin: 0 auto 50px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
  position: relative;
  z-index: 2;
}

.feature-card {
  background: var(--logo-dark-light);
  padding: 25px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: fadeUp 0.6s ease forwards;
  animation-delay: var(--delay);
  opacity: 0;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 12px 25px var(--logo-dark-light);
}

.feature-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--logo-orange), var(--logo-yellow-light));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 15px;
}

.feature-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: whitesmoke
}

.feature-card p {
  font-size: 0.95rem;
  color: #cbd5e1;
  line-height: 1.5;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}         
/** end feature section */

/** start pricing section */
.pricing-section {
    position: relative;
    margin: 2rem 1rem;
    padding: 0 1rem 1rem;
    text-align: center;
    overflow: visible;
  }

  .section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
    font-weight: 700;
    color: #222;
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards;
    animation-delay: 0.1s;
  }

  .pricing-container {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeSlideUp 0.8s forwards;
    animation-delay: 0.3s;
    z-index: 1;
    position: relative;
  }

  /* Animations */
  @keyframes floatUpDown {
    0%, 100% {
      transform: translateY(0);
      box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    }
    50% {
      transform: translateY(-15px);
      box-shadow: 0 30px 50px rgba(0, 0, 0, 0.15);
    }
  }

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

  /* Card styles */
  .pricing-card {
    background: #fff;
    border-radius: 1.25rem;
    width: 300px;
    padding: 2.5rem 2rem 3rem;
    position: relative;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.1);
    animation: floatUpDown 6s ease-in-out infinite;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    z-index: 2;
  }

  .pricing-card:hover {
    transform: translateY(-25px) scale(1.05);
    box-shadow: 0 40px 60px rgba(37, 117, 252, 0.4);
    z-index: 10;
  }

  /* Stagger float animation delay for cards */
  .pricing-card:nth-child(1) {
    animation-delay: 0s;
  }
  .pricing-card:nth-child(2) {
    animation-delay: 2s;
  }
  .pricing-card:nth-child(3) {
    animation-delay: 4s;
  }

  /* Popular card */
  .popular {
    background: linear-gradient(135deg, #6a11cb, #2575fc);
    color: white;
    box-shadow: 0 35px 60px rgba(37, 117, 252, 0.6);
    transform: scale(1.1);
    
  }

  .popular .features-list li {
       color: white;
    }

  .popular:hover {
    transform: scale(1.15) translateY(-30px);
    box-shadow: 0 50px 75px rgba(37, 117, 252, 0.8);
  }

  .popular .price {
    color: #fff;
  }

  /* Card Header */
  .card-header h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
  }

  .price {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: #222;
  }

  .price span {
    font-size: 1.1rem;
    font-weight: 500;
    color: #666;
  }

  .popular .price span {
    color: rgba(255, 255, 255, 0.85);
  }

  /* Features list */
  .features-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem 0;
    width: 100%;
    text-align: left;
  }

  .features-list li {
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
    position: relative;
    padding-left: 1.75rem;
    color: #555;
    font-weight: 500;
  }

  .features-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #4caf50;
    font-weight: 700;
    font-size: 1.2rem;
    line-height: 1;
  }

  /* Button styles */
  .btn-select {
    background: #2575fc;
    border: none;
    border-radius: 50px;
    padding: 0.85rem 3rem;
    color: #fff;
    font-weight: 700;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s ease, box-shadow 0.4s ease, transform 0.3s ease;
    outline-offset: 4px;
    box-shadow: 0 8px 15px rgba(37, 117, 252, 0.5);
  }

  .btn-select:hover {
    background: #1a52d1;
    box-shadow: 0 12px 20px rgba(37, 117, 252, 0.8);
    transform: scale(1.1);
  }

  /* Popular button with glowing effect */
  .popular .btn-select {
    background: #fff;
    color: #2575fc;
    box-shadow: 0 0 10px 3px #2575fcaa;
  }

  .popular .btn-select:hover {
    background: #e6e6ff;
    color: #1a52d1;
    box-shadow: 0 0 18px 6px #2575fcee;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .pricing-container {
      flex-direction: column;
      align-items: center;
    }

    .pricing-card {
      width: 90%;
      max-width: 350px;
      margin-bottom: 3rem;
    }
  }
/** end pricing section */
/** start bottom get start section */
.build-start-section {
  width: 100%;
  padding: 10px 20px 10px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
}

/* Inner container - flex column now to fit title + row content */
.build-start-inner {
  max-width: 100%;
  background: var(--logo-dark-light);
  border-radius: var(--border-radius);
  padding: 40px 50px;
  display: flex;
  flex-direction: column;
  gap: 48px;
  color: whitesmoke;
  animation: fadeInUp 0.8s ease forwards;
  opacity: 0;
  transform: translateY(30px);
}

.text-content-and-svg {
  display: flex;
  align-items: center;
  gap: 60px;
}

/* Adjusted for the new wrapper */
.text-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* Titles and paragraph remain the same */
.text-content h2 {
  font-size: 2.8rem;
  font-weight: 800;
  margin: 0;
  letter-spacing: 0.03em;
  line-height: 1.1;
}

.text-content p {
  font-size: 1.18rem;
  font-weight: 500;
  margin: 0;
  line-height: 1.5;
  color: whitesmoke;
  max-width: 380px;
}

/* Button style */
.btn-build-start {
  align-self: start;
  background: var(--logo-yellow);
  color: var(--logo-dark);
  font-weight: 700;
  font-size: 1.22rem;
  padding: 16px 50px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.35s ease;
  width: fit-content;
  letter-spacing: 0.04em;
  text-decoration: none;
}

.btn-build-start:hover {
  background: var(--logo-green);
  transform: translateY(-4px);
}

/* SVG container */
.web-builder-svg {
  flex-shrink: 0;
  width: 260px;
  height: auto;
  user-select: none;
}

/* Make SVG fill container */
.web-builder-svg svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 6px 15px rgba(78, 84, 200, 0.4));
}

/* SVG elements styling */
.svg-window {
  fill: var(--logo-dark-light);
  stroke: var(--logo-dark);
  stroke-width: 2.5;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}

.svg-top-bar {
  fill: var(--logo-dark);
}

.svg-btn-close {
  fill: #ff5656;
  animation: pulseAnim 2.5s infinite;
  filter: drop-shadow(0 0 2px #ff5656);
}

.svg-btn-minimize {
  fill: #ffc94f;
  animation: pulseAnim 2.5s infinite 0.45s;
  filter: drop-shadow(0 0 2px #ffc94f);
}

.svg-btn-maximize {
  fill: #35d76f;
  animation: pulseAnim 2.5s infinite 0.9s;
  filter: drop-shadow(0 0 2px #35d76f);
}

.svg-content-block {
  fill: var(--logo-yellow-light);
  rx: 6;
  ry: 6;
  opacity: 0.7;
  transform-origin: center;
  animation: bounceAnim 2.7s infinite ease-in-out;
  filter: drop-shadow(0 2px 5px rgba(70, 75, 170, 0.4));
}

/* Staggered animation delays for blocks */
.block-a {
  animation-delay: 0s;
}
.block-b {
  animation-delay: 0.6s;
}
.block-c {
  animation-delay: 1.2s;
}
.block-d {
  animation-delay: 1.8s;
}

/* Animations */
@keyframes pulseAnim {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.6;
    transform: scale(1.18);
  }
}

@keyframes bounceAnim {
  0%, 100% {
    opacity: 0.7;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-18px);
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive for smaller screens */
@media (max-width: 850px) {
  .build-start-inner {
    padding: 35px 25px;
  }

  /* Stack content vertically */
  .text-content-and-svg {
    display: flex;
    flex-direction: column;
    gap: 40px;
  }

  .text-content p {
    max-width: 100%;
  }

  .web-builder-svg {
    width: 160px;
    margin: 0 auto;
  }

  .btn-build-start {
    align-self: center;
  }
}
/** end bottom get start section */
/** start feature video section */
.feature-video-section {
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  background: white;
}

.feature-video-inner {
  width: 100%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: center;
}

.video-column .video-wrapper {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(0,0,0,0.5);
}

.video-column video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Play button overlay */
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.4);
  transition: opacity 0.3s ease;
  z-index: 2;
}

.play-button {
  background: rgba(255,255,255,0.85);
  border: none;
  border-radius: 50%;
  font-size: 2rem;
  width: 70px;
  height: 70px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  animation: pulse 1.5s infinite;
  transition: transform 0.2s ease, background 0.2s ease;
}

.play-button:hover {
  background: rgba(255,255,255,1);
  transform: scale(1.1);
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0.5);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 20px rgba(255,255,255,0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255,255,255,0);
  }
}

/* Hide overlay when playing */
.video-wrapper.playing .video-overlay {
  opacity: 0;
  pointer-events: none;
}

/* Right column text */
.text-column h1 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: var(--logo-dark);
  margin-bottom: 20px;
  line-height: 1.2;
}

.animated-svg {
  width: 100%;
  max-width: 300px;
  margin-top: 16px;
}

/* Responsive */
@media (max-width: 800px) {
  .feature-video-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .animated-svg {
    margin: 20px auto 0;
  }
}

/** end feature video section */