
    /* Basic Reset */
    * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: #333;
  background: linear-gradient(90deg, #787879, #b6b6b8, #f0e8ec);
  overflow-x: hidden;
 
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  padding: 50px 20px;
  
}

/* Hero Section */
.hero {
  
  color: white;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  
}
.hero::before{
      content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  animation: bg 15s ease-in-out infinite;
  background-size: cover;
  background-position: center;
  opacity: 1; /* Set your desired opacity */
  z-index: -1;
}
@keyframes bg{
    0%{
        
        background-image: url("bg3.jpg");
    }

    50%{
        background-image: url("bg4.jpg");
    }
    100%{
        background-image: url("bg2.jpeg");
    
}
}
.portfolio img{
  width:50%;
  height: 50%;
  padding-left: 20px;
}
@media (max-width:470px){
    .portfolio img{
        margin-top:90px;
    }
}
.portfolio h3 a {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  color: #faf8f8;
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 50px;
}

.portfolio h3 a::before {
  content: "➜";
  position: absolute;
  left: -15%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.2em;
  font-weight: bold;
  color: #fcfafa;
  transition: transform 0.3s ease;
}

.portfolio h3 a::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #f5f3f3;
  transition: width 0.3s ease;
}

/* Hover effects when hovering on image OR the link */
.portfolio:hover h3 a::before {
  transform: translateY(-50%) translateX(5px);
}

.portfolio:hover h3 a::after {
  width: calc(100% - 30px);
}


.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: rgb(252, 250, 250);
  
}

.hero h1 span {
  color: #facc15;
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  
  color: rgb(250, 249, 249);
  text-align: center;
}

.btn {
  display: inline-block;
  background: white;
  color: #4f46e5;
  padding: 15px 30px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s;
}

.btn:hover {
  background: #facc15;
  color: white;
}
@media (max-width:470px) {
  .hero{
    flex-direction: column;
  }
}
/* Services Section */
.services {
  
  
  height: 1000px;
}

.services h2 {
  font-size: 2.2rem;
  margin-bottom: 10px;
}

.subtitle {
  position: absolute;
  left: 59%;  
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 50px;
  max-width: 400px;
  margin-top: 100px;
  text-align: justify;
  font-size: 20px;
}
@media (max-width:470px) {
  .subtitle{
    position: relative;
    top: 0%;
    left: 0%;
    margin-bottom: 100px;
  }
}



.card {
  background-color: rgba(0, 0, 0, 0.5);
  padding: 30px;
  width: 300px;
  box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s, box-shadow 0.3s;
  
}



.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
  cursor: pointer;
  background: linear-gradient(90deg, #4f46e5, #8b5cf6, #ec4899);
}

.card .icon {
  font-size: 50px;
  color: #4f46e5;
  margin-bottom: 20px;
}

.card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
}
.card1 {
    position: absolute;
    top: 1400px;
    left: 28%;
    opacity: 1;  /* Make the card visible */
    cursor: pointer;  /* Indicating it's interactable */
}

.article-popup {
    position: absolute;
    top: 1450px; /* Adjust this based on the card’s position */
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    padding: 20px;
    background-color: #f1f1f1;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    opacity: 0;
    cursor: pointer;
    transition: opacity 0.3s ease;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1100; /* Ensure it's in front */
    text-align: justify;
}
.article-popup{
  background: linear-gradient(90deg, #4f46e5, #8b5cf6, #ec4899);
  color: #eef2ff;
}
.article-popup h2 {
    font-size: 18px;
    margin-bottom: 10px;
}

.article-popup ul {
    margin-top: 10px;
}

.article-popup li {
    margin-bottom: 5px;
}



.card2{
  position: absolute;
  top:1600px;
  left: 50%;
  opacity: 0;
}

.card3{
  position: absolute;
  top:1800px;
  left: 72.26%;
  opacity: 0;
}
.card1, .card2, .card3 {
  opacity: 0;
  
}

/* Forward */
@keyframes forward {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0%); opacity: 1; }
}

/* High */
@keyframes high {
  0% { transform: translateY(-100%); opacity: 0; }
  100% { transform: translateY(0%); opacity: 1; }
}

/* Good */
@keyframes good {
  0% { transform: translateX(100%); opacity: 0; }
  100% { transform: translateX(0%); opacity: 1; }
}
@media (max-width:470px) {
  .card{
    position: relative;
    top: 0%;
    left: 0%;
    margin: 10px auto;
  }

}
/* Process Section */
.process {
  padding: 80px 0;
  height: 900px;
}
.process h2{
  font-size: 40px;
  font-weight: bold;
}

@media (max-width:470px) {
  .process{
    margin-top: 1000px;
    margin-bottom: 500px;
  }

}
.step {
  width: 200px;
}

.step-icon {
  font-size: 40px;
  background: #eef2ff;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.step1 {
  margin-top: 50px;
  position: absolute;
  left: 10%;
  animation: entrance 2s ease forwards;
  display: flex;
  width: 100%;
}
.step-icon1{
  margin-left:300px;
  margin-right: 20px;
}
.step1 h4 {
  font-size: 1.2rem;
  margin-top: 21px;
  margin-right: 30px;
}
.step1 p{
  margin-top: 22px;
}
.hr1{
  position: absolute;
  width: 20%;
  top: 43%;
  margin-left: 1%;
}
/* Basic styles for the page */
.see-more {
    color: blue;
    cursor: pointer;
}

.discovery-box {
    display: none;
    position: fixed;
    top: 10%;
    right: 0;
    width: 400px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 20px;
    overflow-y: auto;
    text-align: justify;
    z-index: 1001;
    
}
.discovery-box span{
  color: black;
}
.discovery-box:hover{
  background: linear-gradient(90deg, #4f46e5, #8b5cf6, #ec4899);
  cursor: pointer;
}
.discovery-content {
    position: relative;
    padding: 20px;
}

.close-btn {
  margin-top: 22px;
    position: fixed;
    top:41px;
    right: 15px;
    font-size: 80px;
    background: none;
    border: none;
    color: rgb(245, 225, 225);
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.8);
}

.close-btn:hover {
    color: red;
}

.step.floating {
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes entrance {
  0% {
    transform: translate(-100%, 100%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}



.step2{
  position: absolute;
  left: 20%;
  top:2450px;
  animation: step2 2s ease forwards;
  margin-top: 50px;
  display: flex;
  width: 100%;
}
.step-icon2{
  margin-left:300px;
  margin-right: 20px;
}
.step2 h4 {
  font-size: 1.2rem;
  margin-top: 21px;
  margin-right: 30px;
}
.step2 p{
  margin-top: 22px;
}
.hr2{
  position: absolute;
  width: 20%;
  top: 43%;
  margin-left: 1%;
}
@keyframes step2 {
  0% {
    transform: translateY( 100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.step3{
  position: absolute;
  left: 10%;
  animation: step3 2s ease forwards;
  top:2530px;
  margin-top: 50px;
  display: flex;
  width: 100%;
}
.step-icon3{
  margin-left:300px;
  margin-right: 20px;
}
.step3 h4 {
  font-size: 1.2rem;
  margin-top: 21px;
  margin-right: 30px;
}
.step3 p{
  margin-top: 22px;
}
.hr3{
  position: absolute;
  width: 20%;
  top: 43%;
  margin-left: 1%;
}
@keyframes step3 {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY( 0);
    opacity: 1;
  }
}
.step4{
  position: absolute;
  left: 20%;
  animation: step4 2s ease forwards;
  top:2610px;
  margin-top: 50px;
  display: flex;
  width: 100%;
}
.step-icon4{
  margin-left:300px;
  margin-right: 20px;
}
.step4 h4 {
  font-size: 1.2rem;
  margin-top: 21px;
  margin-right: 30px;
}
.step4 p{
  margin-top: 22px;
}
.hr4{
  position: absolute;
  width: 20%;
  top: 43%;
  margin-left: 1%;
}

@keyframes step4 {
  0% {
    transform: translate(100%, -100%);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
@media (max-width:470px) {
  .step{
    position: relative;
    left: 0%;
    top: 0%;
   margin: 0%;
   flex-direction: column;
  }
 .hr{
  display: none;
 }
 .step-icon{
  margin-left: 33%;
  margin-top: 10%;
 }
}
/* Contact Section */
.contact {
  background: linear-gradient(90deg, #8b5cf6, #4f46e5);
  color: white;
  padding: 80px 0;
  padding-bottom: 0%;
}

.contact-btn {
  margin-top: 30px;
  background: #facc15;
  color: #4f46e5;
}

.contact-btn:hover {
  background: white;
  color: #4f46e5;
}

/* Responsive */
@media (max-width: 768px) {
  .service-cards, .steps {
    flex-direction: column;
    align-items: center;
  }
}
nav {
          font-size: 20px;
          display: flex;
          justify-content: space-between;
          align-items: center;
          padding: 15px 30px;
          top: 0;
          width: 100%;
          box-shadow: 0 2px 8px black;
          box-sizing: border-box;
          position: fixed;
          z-index: 1000;
          background-color: rgba(0, 0, 0, 0.5);

        }
        nav.fixed-nav {
          position: fixed;
          top: 0;
          left: 0;
          margin: 0;
        }
    
      
    
        .navlogo {
          border-radius: 50%;
          height: 50px;
          width: 50px;
          object-fit: cover;
        }
    
/* Menu button */
#menu-toggle {
    background: none;
    
    border: none;
    font-size: 20px;
    cursor: pointer;
    margin-left: auto; /* Push to the right end */
    display: block; /* Visible initially for mobile */
    padding-right: 15px; /* Added space between buttons */
}


        nav .nav-links {
          background-color: rgba(0, 0, 0, 0.5);
         
          display: none;
          flex-direction: column;
          position: absolute;
          top: 60px;
          left: 205px;
          padding: 10px;
          border-radius: 5px;
        }
    
        nav .nav-links a {
          margin: 0.5rem 0;
          padding: 0.5rem 1rem;
          text-decoration: none;
          transition: background-color 0.3s;
          font-weight: lighter;
          border-radius: 5px;
          color: #eef2ff;
        }
    
        nav a:hover {
          font-weight: bolder;
        }
    
        @media (min-width: 768px) {
          #menu-toggle {
            display: none;
          }
    
          nav .nav-links { 
            display: flex;
            position: static;
            flex-direction: row;
            background: none;
            box-shadow: none;
            padding: 0;
          }
    
          nav .nav-links a {
            margin: 0 1rem;
          }
        }

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}

@keyframes bounceIcon {
  0%, 100% {transform: translateY(0);}
  50% {transform: translateY(-10px);}
}
.imgs {
  position: absolute;
  top:1660px;
  left: 0%;
  margin: 60px auto;
  width: 50%;
  height: 400px;
  animation: changeBackground 10s infinite;
  background-size: cover;       /* Make it fill the box */
  background-position: center;  /* Keep the focus centered */
  background-repeat: no-repeat; /* Prevent image tiling */
                  /* Center the box on the page */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* Optional: dark theme shadow */
}

@keyframes changeBackground {
  0% {
    background-image: url('bg1.jpeg');
  }
  33% {
    background-image: url('bg2.jpeg');
  }
  66% {
    background-image: url('bg3.jpg');
  }
  100% {
    background-image: url('bg4.jpg');
  }
}
@media (max-width:470px) {
  .imgs{
    position: relative;
    top: 0%;
    width: 100%;
  }
}
.footer {
  background: linear-gradient(90deg, #8b5cf6, #4f46e5);
  
  padding: 60px 20px 20px 20px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.footer-logo {
  width: 150px;
  margin-bottom: 15px;
}

.footer-about p {
  font-size: 14px;
  line-height: 1.6;
}

.footer-links h3, .footer-contact h3 {
  margin-bottom: 15px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links ul li {
  margin-bottom: 10px;
}

.footer-links ul li a {
  text-decoration: none;
  font-size: 14px;
}

.footer-links ul li a:hover {
  color: #fff;
}

.footer-contact p {
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-socials a img {
  width: 30px;
  margin-right: 10px;
  vertical-align: middle;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-socials a img:hover {
  transform: scale(1.2);
  filter: brightness(1.3) drop-shadow(0 0 5px rgba(0, 0, 0, 0.2));
}

.footer-bottom {
  border-top: 1px solid #333;
  text-align: center;
  margin-top: 30px;
  padding-top: 20px;
  font-size: 14px;
 
}

.contact-section {
  padding: 4rem 0;
  
}

.contact-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.contact-title {
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

.contact-form {
  background-color: white;
  padding: 2rem;
  border-radius: 0.5rem;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 1rem;
}

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.form-input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #ccc;
  border-radius: 0.375rem;
}

.submit-button {
  background-color: #2563eb;
  color: white;
  padding: 0.5rem 1.5rem;
  border: none;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #1e40af;
}
.templates-carousel-section {
  padding: 4rem 2rem;
  overflow-x: hidden;
}

.templates-carousel-section h2,
.section-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 1.5rem;
}
.templates-carousel-section h2
{font-size: 2.2rem;}
.carousel-wrapper {
  position: relative;
  margin: 0 auto;
  padding: 0 4vw;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  gap: 2rem;
}

.carousel-item {
  min-width: 40vw;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  color: white;
  text-align: justify;
}

.carousel-item img {
  width: 50%;
  height: 50%;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 1rem;
  
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  padding: 0.5rem 1rem;
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
}

.carousel-btn.prev {
  left: 1vw;
}

.carousel-btn.next {
  right: 1vw;
}
.template-text h3{
    text-align: center;
    color: pink;
}
@media (max-width:470px){
    .templates-carousel-section{
        display: none;
    }

}
  
   
        .pricing-card {
          background: white;
          padding: 40px 30px;
          border-radius: 20px;
          box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
          transition: all 0.3s ease;
          cursor: pointer;
        }
  
        .pricing-card:hover {
          transform: scale(1.05);
          box-shadow: 0 20px 35px rgba(0, 0, 0, 0.1);
        }
  
        .pricing-card.highlight {
          background: linear-gradient(to bottom right, #3b82f6, #60a5fa);
          color: white;
          transform: scale(1.05);
          box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
        }
  
        .pricing-card.highlight:hover {
          transform: scale(1.08);
          box-shadow: 0 25px 40px rgba(0, 0, 0, 0.2);
        }
    