*{
  margin: 0;
  padding: 0;

  box-sizing: border-box;
}
a{
  text-decoration: none;
}
html {
  scroll-behavior: smooth;
}
h1, h2, h3, h4,h5 {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
}

p, a, button, span,label,input,strong {
  font-family: "Inter", sans-serif;
}
.spinner {
  width: 16px;
  height: 16px;
  border: 2px solid rgba(255,255,255,0.4);
  border-top: 2px solid white;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  animation: spin 0.7s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}

button:disabled {
  cursor: not-allowed !important;
}
.order-button {
  display: flex;
  align-items: center;
  gap: 6px;
  background: black;
  color: white;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
}

.arrow {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

/* 🔥 move arrow when button is hovered */
.order-button:hover .arrow {
  transform: translateX(8px);
}


.sign-up{
  background-color: #0077B5;
  padding: 40px;
}
.h-content{
    padding: 20px;
display:flex;
justify-content: space-between;
align-items: center;

}

body{
  background-color: #F9FBFC;
}
header{
  width: 100%;

  
}
.hero-section{
  width: 100%;
  /* height: auto; */
  /* background-color: #5d3fcc; */
  max-height: max-content;
  box-sizing: border-box;
}

.header{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px;
}
.social2 ul li{
  display: inline-flex;
  margin: 5px;
  border-radius: 100%;
 justify-content: center;
 align-items: center;

}
.head-socials,
.social {
  display: flex;
  align-items: center;
}

.social ul {
  display: flex;
  align-items: center;
  gap: 5px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.social li {
  display: flex;
  align-items: center;
}

.social p {
  margin: 0;
}


.social2 ul li a:hover{
color: black;
   background-color: rgb(189, 188, 188);;
    transition: 0.5s;
}
.social2 ul li a{
 width: 40px;
  height: 40px;
  border-radius: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
    color: rgb(167, 167, 167);
    font-size: 15px;
}
.social2 ul li a{
color: rgb(255, 255, 255);
 width: 40px;
  height: 40px;
  border-radius: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}
.social ul li{
  display: inline-block;
  margin: 10px;
   
}
.social ul li a{
color: black; 
}
.social ul li a:hover{
color: #9B00FF;
transition: 0.5s;
   
}
.social ul li button{
  background-color: black;
  color: white;
  border-radius: 8px;
  padding: 12px;
  width: 120px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.started button{
    background-color: black;
  color: white;
  border-radius: 8px;
  padding: 12px;
  width: 120px;
  border: none;
  cursor: pointer;
  font-weight: bold;
  
}
.started{
  display: none;
}
.main-heading{
 padding: 40px;
 
}

.descrption{
color: #A5ACB3;
 width: 500px;

}

.descrption2{
  width: 400px;
  margin-top: 10px;
  
}

  /* Main Card/Pop-up Style */
        .card {
            background-color: #ffffff;
            padding: 40px;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            width: 100%;
            max-width: 380px;
            box-sizing: border-box;
            text-align: center;
        }
        
        /* Typography */
        .title {
            font-size: 18px;
            font-weight: 600;
            color: #333;
            margin-bottom: 8px;
        }

        .subtitle {
            font-size: 14px;
            color: #777;
            margin-bottom: 30px;
        }

        /* Form Group & Labels */
        .form-group {
            margin-bottom: 20px;
            text-align: left;
        }

        .label {
            display: block;
            font-size: 14px;
            font-weight: 500;
            color: #333;
            margin-bottom: 8px;
        }

        /* Input Container Styling */
        .input-container {
            position: relative;
            display: flex;
            align-items: center;
            border: 1px solid #ccc;
            border-radius: 12px;
            background-color: #fff;
            padding: 0 15px; /* Padding inside the container */
        }

        .input-icon {
            color: #777;
            margin-right: 10px;
        }

        .input-field {
            flex-grow: 1;
            border: none;
            outline: none;
            padding: 12px 0;
            font-size: 16px;
            background: transparent;
        }
        
        /* Specific style for the Password toggle icon */
        .password-input-container {
            padding: 0 15px;
        }
        
        .password-toggle {
            cursor: pointer;
            color: #777;
            padding: 10px 0 10px 10px;
        }
        
        .password-field {
            /* Input field inside the password container */
            padding-right: 0; /* Remove right padding since the icon is there */
        }
        
        /* Focus state for inputs */
        .input-container:focus-within {
            border-color: #000;
            box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
        }

        /* Sign In Button */
        .sign-in-btn {
            width: 100%;
            padding: 15px;
            background-color: #000000;
            color: #ffffff;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            /* margin-top: 10px; */
            transition: background-color 0.2s, box-shadow 0.2s;
        }

        .sign-in-btn:hover {
            background-color: #333;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        /* Separator Line */
        .separator {
            display: flex;
            align-items: center;
            text-align: center;
            /* margin-top:  5px; */
            color: #999;
            font-size: 13px;
        }

        .separator::before,
        .separator::after {
            content: '';
            flex: 1;
            border-bottom: 1px solid #eee;
        }

        .separator:not(:empty)::before {
            margin-right: 15px;
        }

        .separator:not(:empty)::after {
            margin-left: 15px;
        }
        
        /* Social Icons */
        .social-icons {
            display: flex;
            justify-content: center;
            gap: 20px;
        }
        
        .social-icon-link {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 45px;
            height: 45px;
            border: 1px solid #ddd;
            border-radius: 10px;
            font-size: 20px;
            transition: border-color 0.2s, box-shadow 0.2s;
        }
        
        .social-icon-link:hover {
            border-color: #aaa;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
        }

        .social-icon-link .fa-google { color: #DB4437; }
        .social-icon-link .fa-facebook-f { color: #4267B2; }
        .social-icon-link .fa-linkedin-in { color: #0077B5; }

.heading h1{
  font-size: 50px;

}
.gradniet{

/* 1. Define the gradient (the "fill") */
  background-image: linear-gradient(
    to right,
    #9B00FF, /* Purple */
    #FF00A2  /* Pink/Magenta */
  );
  
  /* 2. Clip the background image to the shape of the text */
  -webkit-background-clip: text; 
  background-clip: text;
  
  /* 3. Make the text color transparent so the fill shows through */
  -webkit-text-fill-color: transparent; 
  color: transparent; 
}
.buttons{
  display: flex;
  width: 300px;
  align-items: center;
  justify-content: space-around;
  justify-content: flex-start;
  gap: 20px;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 20px;
}
.buttons2{
display: flex;
  /* width: 300px; */
  box-sizing: border-box;
gap: 20px;
  margin-top: 20px;
  padding: 20px;
  width: 400px;
  margin-left: -50px;
}
.b1 a{
  text-decoration: none;
}
.b1 button{
   padding: 20px;
   text-decoration: none;
  width: 160px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  background-image: linear-gradient(
    to right,
    #9B00FF, /* A bright purple, like the start of the gradient */
    #FF00A2  /* A bright pink/magenta, like the end of the gradient */
  );
  
  /* 2. Set the text color and font style */
  color: white; /* The text is white */
  font-weight: bold;
  text-decoration: none; /* If using an <a> tag */
  

  border: none;
  cursor: pointer;
  
  /* 4. Apply the rounded corners */
  border-radius: 8px; /* Adjust the radius for more or less curve */
  
  /* Optional: Smooth transition for hover effects */
  transition: opacity 0.3s ease;
}
.b12 button{
   padding: 25px;
  height: 40px;
  width: 190px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  background-image: linear-gradient(
    to right,
    #9B00FF, /* A bright purple, like the start of the gradient */
    #FF00A2  /* A bright pink/magenta, like the end of the gradient */
  );
  
  /* 2. Set the text color and font style */
  color: white; /* The text is white */
  font-weight: bold;
  text-decoration: none; /* If using an <a> tag */
  

  border: none;
  cursor: pointer;
  
  /* 4. Apply the rounded corners */
  border-radius: 8px; /* Adjust the radius for more or less curve */
  
  /* Optional: Smooth transition for hover effects */
  transition: opacity 0.3s ease;
}
.b13 button{
    background: none;
  padding: 15px;
  border-radius: 5px;
  border: 1px solid #a5a4a4;
  cursor: pointer;
  box-shadow: 1px black;
  background-color: white;
  width: 150px;
  font-weight: bold;
}
.b13 button:hover{
   opacity: 0.9;
background-color: rgb(187, 187, 187);
transition: 0.5s;
}
.cards{
  width: 100%;
  padding: 20px;

}




/* Optional: Add a slight effect on hover */
.gradient-button:hover {
  opacity: 0.9;
}
.b2 button{
  background: none;
  padding: 12px;
  border-radius: 5px;
  border: 1px solid #a5a4a4;
  cursor: pointer;
  box-shadow: 1px black;
  background-color: rgb(255, 255, 255);
}
.b2 button:hover{
  background-color: rgb(197, 197, 197);
  transition: 0.5s;

}
.b1 button:hover{
opacity: 0.8;
transition: 5sec;
}
.categories button{
padding: 15px;
/* width: 200px; */
border-radius: 30px;
border: none;
cursor: pointer;
width: 170px;
font-size: 12px;
background: none;
  background: none;


    display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;

}
.categories{
  /* background-color: red; */
  padding: 10px;
  width: 50vw;
  padding-left: 40px;
  display: flex;
gap: 20px;
flex-wrap: wrap;
}
  .slider {
    position: relative;
    width: 600px;
    max-width: 90vw;
    height: 350px;
    margin: 20px auto;
    border: none;
    border-radius: 8px;
    overflow: hidden;
    background:transparent;
  }
  .slides img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: translateX(-50px);
    pointer-events: none;
    transition: opacity 1s ease, transform 1s ease;
  }
  .slides img.active {
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }
  .buttons {
    text-align: center;
    margin-top: 10px;
  }
.search-box {
  width: 400px;
  background: #F3F3F5;
  border-radius: 12px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 10px;
  
}


.search-box .icon {
  width: 35px;
  height: 35px;
  opacity: 0.6;
  position: relative;
  top: 5px;
}

.search-box input {
  border: none;
  outline: none;
  width: 100%;
  font-size: 15px;
  color: #555;
  display: flex;
  align-items: center;
  background-color: #F3F3F5;
}

.search-box input::placeholder {
  color: #aaa;
}
 #signInModal {
      display: none;
      position: fixed;
      top:0; left:0; right:0; bottom:0;
      background: rgba(0,0,0,0.5);
      backdrop-filter: blur(4px);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    
    }
    #signInModal.active {
      display: flex;
    }
    #signInModal .modal-content {
      background: white;
      padding: 20px;
      border-radius: 8px;
      text-align: center;
      width: 300px;

 
    }
    .card{
      /* background-color: red; */
      height: 600px;
    }
    #forget-password{
    color: #2b8bf1;
    font-size: 16px;
    cursor: pointer;
    /* padding: 10px; */
    padding-top: 5px;
    padding-left: 5px;
    }
     #forget-password:hover{
     text-decoration: underline;
     cursor: pointer;
    }
    #forgotPassword{
         color: #2b8bf1;
         cursor: pointer;
    }
        #forgotPassword:hover{
       text-decoration: underline;
    }
        .social-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 20px;
            /* padding: 0.8rem; */
            border: 1px solid #d1d5db;
            border-radius: 0.5rem;
            background-color: var(--white);
            cursor: pointer;
            transition: all 0.2s ease;
            width: 100%;
            padding: 12px;
           
        }

        .social-btn:hover {
            border-color: var(--primary-purple);
        }

    #userPhoto {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      display: none;
      /* margin-bottom: 10px; */
      cursor: pointer;
   
      
    }

.controller{
  display: flex;
  align-items: center;
gap: 50px;
padding: 40px;
/* margin-top:8%;  */
/* height: 30px; */
/* width: 100%; */
align-items: center;
justify-content: center;
border-bottom: 1px solid #E5E5E5;
/* background-color: #9B00FF; */
 position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);

}

.filter{
  display: flex;
  align-items: center;
  gap: 10px;
   flex-wrap: wrap;
   justify-content: center;
}
.filter button{
  padding: 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 170px;
  height: 40px;
  font-size: 12px;
  font-weight: bold;
  background: none;
  border:1px solid #E5E5E5;
   display: flex;
   gap: 10px;
  align-items: center;
  justify-content: center;
  background-color: white;
}
.filter button:hover {
transition: transform 0.3s ease-out, box-shadow 0.3s ease-out; /* Smooth transition for scale and shadow */

}

.Pouplar{
  padding: 30px;
 margin-top: 10px;

}
.popular-heading{
  text-align: center;
}
/* Card */
/* Basic Reset and Variables (Optional, but helpful) */
:root {
  --primary-color: #5d3fcc; /* Used for the purple accents */
  --text-dark: #1f1f1f;
  --text-light: #555555;
  --rating-star: #ffc107;
  --card-bg-gradient: linear-gradient(135deg, #f7f7f7 0%, #ffffff 100%);
}

.Services{
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 0;
  margin: 0;
  padding: 10px;

}
/* --- Card Styles --- */
.service-card {
  width: 400px; /* Adjust as needed */
  height: 260px;
  padding: 25px;
  border-radius: 15px;
  background: white; /* Fallback */
  box-sizing: border-box;
  border:1px solid #E5E5E5;
transition: opacity 0.3s ease-in-out; 
    
    /* Initial state (will be instantly set by JS before transition) */
    opacity: 0;
    display: none;
  }
.service-card[style*="display: flex"] {
    display: flex !important;
}
.service-card[style*="opacity: 1"] {
    opacity: 1 !important;
}
.service-card:hover{
  transition: 0.5s;
   box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* --- Header Section (Logo and Rating) --- */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.logo-container {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  /* The purple gradient background for the icon */
  background: linear-gradient(45deg, #9933ff, #ff3399); 
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo-icon {
  font-size: 24px;
  color: white;
  background: transparent;
  display: flex;
}

.rating {
  display: flex;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  /* Soft gradient background for the rating box */
  background: linear-gradient(90deg, #f0f0f0, #ffffff); 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.star-icon {
  color: var(--rating-star);
  font-size: 14px;
  margin-right: 4px;
}

.rating-number {
  font-weight: bold;
  font-size: 14px;
  color: var(--text-dark);
}

/* --- Content Section (Title, Description, Reviews) --- */
.title {
  font-size: 22px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 5px 0;
}

.description{
  font-size: 12px;
  color: var(--text-light);
  line-height: 1.4;
  margin: 0 0 15px 0;
}

.reviews {
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 25px;
}

/* --- Footer Section (Price and Button) --- */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.pricing {
  display: flex;
  align-items: baseline;
}

.starting-text {
  font-size: 16px;
  color: var(--text-dark);
  margin-right: 5px;
}

.price-value {
  font-size: 24px;
  font-weight: bold;
  /* The distinct purple color for the price */
  color: var(--primary-color); 
}

.order-button {
  background-color: var(--text-dark); /* Dark background */
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
}

.order-button:hover {
  background-color: #333;
}
.items{

  /* padding: 20px; */
  width: 100%;
}
.loadmore button{
   background: white;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #a5a4a4;
  cursor: pointer;
  /* box-shadow: 1px black; */
}
.loadmore{

  display: flex;
  justify-content: center;
}
.loadmore button:hover{
  background-color: #c2c1c1;
  transition: 0.5s;
}
.microtemplates{
background: linear-gradient(
    135deg,
    rgba(255, 236, 255, 1) 0%,
    rgba(248, 230, 255, 1) 30%,
    rgba(242, 238, 255, 1) 70%,
    rgba(255, 255, 255, 1) 100%
);
margin-top:20px;
  padding: 60px;
  display: flex;
  justify-content: space-between;

}

.micro-heading h1{
font-size: 50px;
}
.interdouce{
  background-color: white;
  padding: 10px;
  width: 180px;
  text-align: center;
  border-radius: 5px;
  font-size: 10px;
  margin-bottom: 10px;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}
.include-icons{
  display: flex;
  gap: 20px;
  
}
.include{
  /* background-color: #5d3fcc; */
  padding: 10px;
margin-left: -40px;
  width: 400px;
 color: rgb(0, 0, 0);

}
.include-text{
  color: black;
}
.include ul li{
  display: block;
  margin: 30px;
}
.symbol{
  background-color: #e4bcf8;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  border-radius: 10px;
  /* opacity: 1; */
}
.info{
  display: flex;
  gap: 20px;
  padding: 10px;
  margin-left: -40px;
  /* background-color: #5d3fcc; */

}
.div1{
  background-color: #ffffff;
  padding: 80px;
  width: 200px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}
.item-name p{

  width: 150px;
  text-align: center;
}
/* card */
   :root {
            --color-purple: #7a32ff;
            --color-pink: #f53d85;
            --color-dark-text: #1f2937;
            --color-gray-text: #6b7280;
            --color-light-bg: #f9fafb;
            --color-white: #ffffff;
            --color-light-border: #e5e7eb;
            --color-placeholder-bg: #e0e0e0; /* Gray background for placeholder */
            --color-placeholder-text: #9e9e9e; /* Light text for placeholder */
        }

 

        /* --- CARD STYLES --- */
        .templates-card-wrapper {
            /* Ensures the badge can be positioned relative to this container */
            position: relative;
            width: 100%;
            /* UPDATED: Increased max width to 720px */
          width: 500px;
        }

        .templates-card {
            /* The main visual container */
            background-color: var(--color-white);
            padding: 2rem; /* Increased padding slightly */
            border-radius: 1.5rem; /* Large rounded corners */
            border: 1px solid var(--color-light-border);
            
            /* ENHANCED BOX SHADOW */
            box-shadow: 
                0 15px 40px rgba(0, 0, 0, 0.08), /* Main soft shadow */
                0 0 0 1px rgba(0, 0, 0, 0.05), /* Subtle inner border for crispness */
                0 25px 50px rgba(122, 50, 255, 0.12); /* Gradient-like subtle color shadow */

            /* Gradient background for slight glow effect */
            background: linear-gradient(135deg, rgba(255, 255, 255, 1) 90%, rgba(245, 61, 133, 0.05));
        }

        /* Badge Styling (The "New Templates Weekly" button) */
        .templates-badge {
            position: absolute;
            top: 0;
            right: 2rem; /* Adjusted position to match new padding */
            transform: translateY(-50%); /* Pulls it halfway up and out of the card */
            
            /* Visual styling */
            padding: 0.6rem 1.2rem;
            border-radius: 9999px; /* Pill shape */
            font-size: 0.85rem; /* Slightly larger text */
            font-weight: 700;
            color: var(--color-white);
            background: linear-gradient(90deg, var(--color-purple), var(--color-pink));
            box-shadow: 0 4px 12px rgba(122, 50, 255, 0.4);
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 0.25rem;
        }
        .templates-badge::before {
            content: "✨";
            font-size: 1rem;
        }

        /* Placeholder/Image Grid Layout */
        .placeholder-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.5rem; /* Increased gap */
            margin-top: 1.5rem;
            padding-bottom: 2.5rem;
        }

        /* Individual Image/Placeholder Container */
        .image-container {
            position: relative;
            /* Aspect ratio trick: 56.25% for 16:9 ratio (100% / 16 * 9) */
            padding-top: 56.25%; 
            border-radius: 1rem;
            overflow: hidden;
            border: 1px solid var(--color-light-border);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        .image-container:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        /* Image and Placeholder Styling */
        .template-image, .image-placeholder {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: 1rem;
            
            /* Placeholder style */
            background-color: var(--color-placeholder-bg);
            color: var(--color-placeholder-text);
            display: flex;
            justify-content: center;
            align-items: center;
            font-weight: 600;
            font-size: 1rem;
            text-align: center;
        }

        /* --- STATS GRID --- */
        .main-stats-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 1.5rem; /* Increased gap */
            padding-top: 2rem;
            text-align: center;
            /* Separator line */
            border-top: 1px solid var(--color-light-border);
        }

        .stat-value {
            font-size: 2rem; /* Increased size */
            font-weight: 900;
            line-height: 1.2;
            margin-bottom: 0.25rem;
        }

        .stat-label {
            font-size: 1rem; /* Increased size */
            color: var(--color-gray-text);
            font-weight: 600;
        }

        /* Color Overrides for Stats */
        .stat-value.purple {
            color: var(--color-purple);
        }
        .stat-value.pink {
            color: var(--color-pink);
        }
        .stat-value.dark {
            color: var(--color-dark-text);
        }

        /* Responsive adjustments for mobile screens */
        @media (max-width: 640px) {
            .templates-card {
                padding: 1.5rem;
                border-radius: 1.25rem;
            }
            .templates-badge {
                right: 1.5rem;
                font-size: 0.75rem;
            }
            .stat-value {
                font-size: 1.75rem;
            }
            .stat-label {
                font-size: 0.875rem;
            }
        }
        /* footer */
        footer{
          background-color: #101828;
          width: 100%;
        overflow: hidden;

          /* padding: 40px; */
        }
        .newsletter{
          /* background-color: #5d3fcc; */
           padding: 80px;
           border-bottom: 1px solid #1E2939;
        }
  .subscribe{
    /* background-color: red; */
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: white;
  }
  .input input{
    padding: 15px;
    width: 300px;
    border: none;
    border-radius: 10px;
    background-color: #1E2939;
    color: white;
  }
    .input input:focus{
    outline: 3px solid #6b7280;
    transition: 0.5s;
    
  }
  .email{
    /* background-color: #ffd900; */
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .subscribe-button button{
     padding: 10px;
  height: 45px;
  justify-content: center;
  align-items: center;
  width: 150px;
  cursor: pointer;
  border-radius: 10px;
  border: none;
  font-weight: bold;
  background-image: linear-gradient(
    to right,
    #9B00FF, /* A bright purple, like the start of the gradient */
    #FF00A2  /* A bright pink/magenta, like the end of the gradient */
  );
  display: flex;
  gap: 10px;
  /* 2. Set the text color and font style */
  color: white; /* The text is white */
  font-weight: bold;
  text-decoration: none; /* If using an <a> tag */
  

  border: none;
  cursor: pointer;
  
  /* 4. Apply the rounded corners */
  border-radius: 8px; /* Adjust the radius for more or less curve */
  
  /* Optional: Smooth transition for hover effects */
  transition: opacity 0.3s ease;
  }
  .footer-main{
    /* background-color: red; */
    padding: 50px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
gap: 10%;
    border-bottom: 1px solid #1E2939;
  }
  .footer-links{
display: flex;
justify-content: space-between;
flex-wrap: wrap;
gap: 100px;
width: auto;
/* background-color: #5d3fcc; */
  }
    .footer-links ul li a{
text-decoration: none;
color: white;
  }
  .brand-descrption{
    color: white;
  }
  .branding{
    width: 300px;
  }
  .service,.company,.legal,.resources{
     /* background-color: #333; */
     /* padding: 20px; */
     color: white;
  }
 
  .service,.company,.legal,.resources, ul li{
    display: block;
    margin-top: 20px;
    color: white;
  }
  .footer-foot{
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    padding: 20px;
  }
  .copyright{
    color: rgb(167, 167, 167);
    font-size: 15px;
  }
  .footer-legal ul li{
display: inline-block;
margin: 10px;
  }
  .footer-legal ul li a{
    text-decoration: none;
color: rgb(167, 167, 167);
font-size: 14px;
  }
  .footer-legal ul li a:hover{
 color: white;
 transition: 0.5s;
  }

@media screen and (max-width:1156px) {
.controller{
  display: flex;
  flex-direction: column;

}
.search input{
  width: 100%;
}
.search{
  width: 100%;
}
    .templates-card-wrapper {
    width: 400px;
    margin-top: 40px;
    width: 100%;
    }
  }
@media only screen  and (max-width:916px) {
  .slides{
    display: none;
  }
  .main-heading{
    width: 100%;

  }
   .started{
    display: flex;
  }
  .started button{
     background-color: black;
  color: white;
  border-radius: 8px;
  padding: 10px;
  font-size: 10px;
  width: 100px;
  border: none;
  cursor: pointer;
  font-weight: bold;
}
.logo img{
  width: 150px;
}
 .header{
margin-top: 20px;
 }

      .item-name p{
    width: 120px;
    padding: 10px;
    text-align: center;
  }
  .microtemplates{

    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}
.buttons{
  padding: 40px;
  width: 320px;
  margin: 0;
  box-sizing: border-box;

}
#How{
 font-size: 12px;
 height: 40px;
 width: 120px;
}

.buttons2{
display: flex;
  width: 300px;
  box-sizing: border-box;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  text-align: center;
  display: flex;
  gap:20px;
  padding: 0;
    width: 100%;
/* padding: 20px; */
  align-items: center;
  box-sizing: border-box;
  /* margin-left: -50px; */
  width: 320px;
  margin-top: 60px;
  margin: 0;
  /* margin-left: 20px; */

  padding-top: 20px;

}

.subscribe{
  padding: 0;
   width: 100%;
   margin-left: auto;
   margin-right: auto;
}
.newsletter{
  padding: 20px;
  padding-top: 60px;
}
.subscribe h2{
  font-size: 20px;
 
}
.footer-foot{
  flex-direction: column;
  align-items: center;
  gap: 10px;

}
.social2{
  margin-top: 10px;
  
}
.microtemplates{
  padding: 20px;
}
.micro-heading h1{
  font-size: 40px;
}


  .descrption{
    width: 80%;
 
  }
  .categories{
    display: none;
  }
  .main-heading h1{
    font-size: auto;
  }
  .microtemplates{
    display: flex;
    flex-direction: column;
  }
  .Services{
    flex-direction: column;
  }
  .service-card{
    /* background-color: #5d3fcc; */
   width: 100%;
  }
  .controller{
margin-top: 20px;
    height: auto;
  }
  .footer-links{
margin-top: 30px;
gap: 30px;


  }
  .hero-section{
    height: 600px;
  }
 
footer{
  margin-top: 60px;
}
  .info{
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;

  }
  .subscribe-button{
    margin-top: 10px;
  }
.subscribe p{
  font-size: 15px;
}
.search-box {
  width: 300px;
  
}

@media only screen  and (max-width:478px) {
.email{
  display: flex;
  flex-direction: column;
}
.descrption2{
  width: auto;

}

#signInModal {
  position: fixed;
  inset: 0;
  background: #fff;
  overflow-y: auto;
}

.card {
  width: 100%;
  height: 100%;
  border-radius: 0;
  padding: 40px;
  padding-top: 80px;
}
.input-container{
  width: 100%;
}

.subscribe-button{
  background-color: #5d3fcc;
  width: 100%;
  display: flex;
  justify-content:center;
}
.subscribe-button button{
  width: 100%;
}.include{
  width: 100%;
}
header{
  width: 100%;
}
.hero-section{
  width: 100%;

}
*{
  box-sizing: border-box;
}

}
.social-media{
  display: none;
}
#getStartedBtn{
  font-size: 12px;
  width: 100px;
}
.buttons{
margin-left: -70px;

}
  .footer-links{

gap: 10px;

}
.heading h1{
  font-size: 40px;
}
.heading{
  /* background-color: red; */
  width: 300px;
  padding: 0;
  margin-left: -30px;
}
.descrption{
  /* background-color: yellow; */
  width: 300px;
    margin-left: -30px;
}

.hero-section{
  height: 450px;
 
}
.info{
 width: 100%;
 justify-content: center;
 margin-left: auto;
 margin-right: auto;

}
.div1{
    padding: 80px;
  
    width: 80px;

  }
  .count {
    font-size: 14px;
  }
 .item-name{
  font-size: 12px;
 }
}
@media only screen  and (max-width:365px) {
.service-card{
  width: 300px;
  height: 300px;
  margin-left: -30px;
}
#passwordToggle{
position: relative;
right: 30px;
}
.order-button{
  width: 80px;
  padding: 10px;
  font-size: 9px;
}
.service-card{
  
  margin-left: auto;
  margin-right: auto;
  
}
.items{
padding: 0;
}
.cards{

  padding: 0;
}
.buttons2{

  margin-left: auto;
  margin-right: auto;
  padding: 20px;
}
.b12 button{
  width: 120px;
  /* height: 10px; */
  font-size: 10px;
  padding: 10px;
}
.b13 button{
  width: 120px;
  padding: 10px;
}
.buttons{
  padding: 30px;
}
}
/* css for package */
#profileMenu {
    display: none !important; 
    position: absolute;
    top: 60px; 
   right:  20px;
    background-color: #ffffff; 
    min-width: 160px;
    box-shadow: 0px 8px 16px rgba(0,0,0,0.2);
    z-index: 99999; /* Higher than everything else */
    padding: 10px 0;
    list-style: none;
    border-radius: 8px;
    border: 1px solid #ddd;
}

/* 2. The Arrow (^) */
#profileMenu::before {
    content: "";
    position: absolute;
    top: -10px;
    right: 10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid #ffffff;
}

/* 3. This class handles showing it */
#profileMenu.active {
    display: flex !important;
    flex-direction: column;
}

/* Optional: hover effect for links */
#profileMenu li a {
    display: block;
    padding: 10px 20px;
    color: #333;
    text-decoration: none;
}
#profileMenu li a:hover {
    background-color: #f5f5f5;
}
/* This class will be added by JavaScript */

/* THE TRIANGLE SHAPE (^) */

/* Menu Item Styling */
.dropdown-content li a {
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-size: 14px;
    /* transition: background 0.2s; */
}

.dropdown-content li a:hover {
    background-color: #f5f5f5;
}

.sign-out-link {
    color: #d9534f !important;
    border-top: 1px solid #eee;
}

